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 | Description |
Id | String | True | The id of the import job. |
Table | String | True | The table that data was imported to. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object. |
LocalPath | String | False | The absolute path where the file will be saved. |
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. |