This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
bw2:file_writer_tool [2024/01/08 14:17] wgates [Uploaded Versago Data] |
bw2:file_writer_tool [2024/09/24 16:22] (current) dlee [File Writer Variables] |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Introduction (File Writer)====== | ||
| - | |||
| - | This page describes the use of the “File Writer” tool in Bizweaver. Information regarding the associated File Operations and File Reader tools is found in separate documents. | ||
| ====== File Writer Tool ====== | ====== File Writer Tool ====== | ||
| Line 159: | Line 156: | ||
| /* Convert image data to base64 Binary and insert it into a holding table named SignatureCapture. | /* Convert image data to base64 Binary and insert it into a holding table named SignatureCapture. | ||
| Assumes a text field named “Name” is used to capture the signature name */ | Assumes a text field named “Name” is used to capture the signature name */ | ||
| - | insert into SignatureConvert | + | INSERT INTO SignatureConvert |
| (ObjectID, ControlID, RecordId, FileName, FileType, FileContent, | (ObjectID, ControlID, RecordId, FileName, FileType, FileContent, | ||
| - | select | + | SELECT |
| - | @Object,' | + | |
| - | cast('' | + | ,' |
| - | from F2_SigCapture | + | ,@vgoRecNum |
| + | ,ISNULL(Name,' | ||
| + | ,' | ||
| + | ,CAST('' | ||
| + | ,' | ||
| + | ,GETDATE() | ||
| + | FROM F2_SigCapture | ||
| + | WHERE vgoRecNum = @vgoRecNum | ||
| </ | </ | ||
| Line 197: | Line 201: | ||
| | StepMessage|During a failure the reason for failure will be populated here | | | StepMessage|During a failure the reason for failure will be populated here | | ||
| | StepStatus | | StepStatus | ||
| + | |||
| + | ---- | ||
| + | **[[bizweaver: | ||