USP_DATAFORMTEMPLATE_VIEW_UNMAPPEDERRORPROCESS
The load procedure used by the view dataform template "GL Account Mapping Message Update Process View Data 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. |
@PDACCOUNTSYSTEMID | uniqueidentifier | INOUT | Account System ID |
@PARAMETERSID | uniqueidentifier | INOUT | Parameter ID |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_VIEW_UNMAPPEDERRORPROCESS
(
@ID uniqueidentifier,
@DATALOADED bit = 0 output,
@PDACCOUNTSYSTEMID uniqueidentifier = null output,
@PARAMETERSID uniqueidentifier = null output
)
as
set nocount on;
-- be sure to set this, in case the select returns no rows
set @DATALOADED = 0;
select @DATALOADED = 1,
@PDACCOUNTSYSTEMID = PDACCOUNTSYSTEMID,
@PARAMETERSID = @ID
from dbo.GLACCOUNTMAPPINGERRORUPDATEPROCESS
where ID = @ID;
return 0;