USP_LEDGERACCOUNT_MARKACTIVE_PROMPTDATA

Provides the prompt for the "Ledger Account: Mark Active" record operation.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Represents information to be displayed in the record operation prompt.
@ACCOUNTSTRING nvarchar(130) INOUT

Definition

Copy


CREATE procedure dbo.USP_LEDGERACCOUNT_MARKACTIVE_PROMPTDATA
(
    @ID uniqueidentifier,
    @ACCOUNTSTRING nvarchar(130) = null output
)
as begin
    set nocount on;
    --set @ACCOUNTSTRING = dbo.UFN_LEDGERACCOUNT_GETACCOUNTSTRING(@ID);

  select @ACCOUNTSTRING = GLACCOUNT.ACCOUNTSTRING from dbo.GLACCOUNT where ID = @ID;
    return 0;
end