GetImportJobFailures
Returns the list of failures for the import batch job
Execute
Sample EXECUTE GetImportJobFailures Id=1612, Table='Leads'
EXECUTE GetImportJobFailures Id=1612, Table='CustomObject_cdata', LocalPath='C:/users/cdata/file.txt'
EXECUTE GetImportJobFailures Id=1612, Table='ProgramMembers ', LocalPath='/tmp/file.txt'
Input
| Name | Type | Required | Accepts Output Streams | Description |
| Id | String | True | False | The id of the import job. |
| Table | String | True | False | The table that data was imported to. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object. |
| LocalPath | String | False | False | The absolute path where the file will be saved. |
| OutputStream | Binary | False | True | An instance of an output stream where file data is written to. Only used if LocalPath is not set. |
Result Set Columns
| Name | Type | Description |
| FileData | String | If the LocalPath and FileStream inputs are empty, file data will be output as BASE64. |
| Success | Boolean | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
| Details | String | Details of execution failure. NULL if success=true. |