USP_DATAFORMTEMPLATE_EDIT_JOBLICENSE
USP_DATAFORMTEMPLATE_EDIT_JOBLICENSE
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter indicating the ID of the record being edited. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the procedure. |
@LICENSECODEID | uniqueidentifier | IN | License |
Definition
Copy
CREATE procedure USP_DATAFORMTEMPLATE_EDIT_JOBLICENSE
(
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier,
@LICENSECODEID uniqueidentifier
)
as
set nocount on;
declare @ISREQUIRED bit;
exec dbo.USP_DATAFORMTEMPLATE_EDITLOAD_JOBLICENSE
@ID = @ID,
@ISREQUIRED = @ISREQUIRED output
exec dbo.USP_DATAFORMTEMPLATE_EDIT_JOBLICENSE_2
@ID,
@CHANGEAGENTID,
@LICENSECODEID,
@ISREQUIRED
return 0;