CreateAttachment
Attach a file to a record.
Note: This procedure makes use of indexed parameters. Indexed parameters facilitate providing multiple instances a single parameter as inputs for the procedure.
Suppose there is an input parameter named Param#. To input multiple instances of an indexed parameter like this, execute:
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
In the table below, indexed parameters are denoted with a '#' character at the end of their names.
Input
Name | Type | Description |
TopLevelEntity | String | The name of the entity for which you are going to attach a file. |
KeyValue# | String | The values for one or more key fields of the record to which you are going to attach a file. You should provide the number and order of key fields as they are defined on the corresponding Acumatica ERP form. |
LocalFile | String | The local file path including the file name of the file to be attached. |
FileName | String | The name of the file that you are going to attach with the extension. |
Result Set Columns
Name | Type | Description |
Status | String | Specific message text describing the status or any errors or warning for the stored procedure. |