USP_DATAFORMTEMPLATE_PRELOAD_ADD_R68
The load procedure used by the edit dataform template "R68 Process Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@REVENUEAPPLICATIONRECORDTYPEID | uniqueidentifier | INOUT | |
@CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_PRELOAD_ADD_R68
(
@REVENUEAPPLICATIONRECORDTYPEID uniqueidentifier = null output,
@CURRENTAPPUSERID uniqueidentifier = null
)
as
set nocount on;
select @REVENUEAPPLICATIONRECORDTYPEID = ID
from dbo.RECORDTYPE
where upper(NAME) = 'FINANCIAL TRANSACTION LINE ITEM';
return 0;