USP_DATAFORMTEMPLATE_PRELOAD_JOB_2
The load procedure used by the edit dataform template "Job Add Form 2"
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
| @SITEREQUIRED | bit | INOUT | Site Required |
| @SITEID | uniqueidentifier | INOUT | Site |
| @BASECURRENCYID | uniqueidentifier | INOUT | Base currency |
Definition
Copy
CREATE procedure dbo.[USP_DATAFORMTEMPLATE_PRELOAD_JOB_2]
(
@CURRENTAPPUSERID uniqueidentifier,
@SITEREQUIRED bit = null output,
@SITEID uniqueidentifier = null output,
@BASECURRENCYID uniqueidentifier = null output
)
as
begin
set nocount on;
exec dbo.[USP_DATAFORMTEMPLATE_PRELOAD_JOBWITHCURRENCYCONTEXT]
null,
@CURRENTAPPUSERID,
@SITEREQUIRED output,
@SITEID output,
@BASECURRENCYID output;
return 0;
end