USP_DATALIST_RE7INTEGRATIONERROR
Lists RE7 Integration errors for a given job ID.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @JOBID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_RE7INTEGRATIONERROR(@JOBID uniqueidentifier)
as
set nocount on;
select
ID,
RE7RECORDID,
MESSAGE
from
dbo.RE7INTEGRATIONERROR
where
JOBID = @JOBID