USP_DATAELEMENT_MARKACTIVE_PROMPTDATA
Provides the prompt for the "Accounting Element: Mark Active" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Represents information to be displayed in the record operation prompt. |
@ELEMENTNAME | nvarchar(100) | INOUT | |
@SHORTID | nvarchar(100) | INOUT |
Definition
Copy
CREATE procedure USP_DATAELEMENT_MARKACTIVE_PROMPTDATA
(
@ID uniqueidentifier,
@ELEMENTNAME nvarchar(100) = null output,
@SHORTID nvarchar(100) = null output
)
as begin
set nocount on;
declare @r int;
exec @r = dbo.USP_DATAELEMENT_RECORDOPERATION_PROMPTDATA
@ID,
@ELEMENTNAME output,
@SHORTID output
if @@error <> 0
begin
if @r <> 0 return @r;
return 1;
end
return @r;
end