USP_DATAFORMTEMPLATE_VIEW_EXCHANGEDOWNLOADPROCESSHPROCESSSTATUS
The load procedure used by the view dataform template "Exchange Download Process Status View Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter used to load the fields defined on the form. |
@DATALOADED | bit | INOUT | Output parameter indicating whether or not data was actually loaded. |
@BUSINESSPROCESSCATALOGID | uniqueidentifier | INOUT | BUSINESSPROCESSCATALOGID |
@PARAMETERSETID | uniqueidentifier | INOUT | PARAMETERSETID |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_EXCHANGEDOWNLOADPROCESSHPROCESSSTATUS
(
@ID uniqueidentifier,
@DATALOADED bit = 0 output,
@BUSINESSPROCESSCATALOGID uniqueidentifier = null output,
@PARAMETERSETID uniqueidentifier = null output
)
as
set nocount on;
set @DATALOADED = 0;
select
@DATALOADED = 1,
@BUSINESSPROCESSCATALOGID = '60C090D3-5A0E-49E9-8CFB-8C89719B5281',
@PARAMETERSETID = @ID
from
dbo.EXCHANGEDOWNLOADPROCESS
where
EXCHANGEDOWNLOADPROCESS.ID = @ID;
return 0;