USP_LEDGERACCOUNT_MARKINACTIVE_PROMPTDATA
Provides the prompt for the "Ledger Account: Mark Inactive" 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_MARKINACTIVE_PROMPTDATA
(
@ID uniqueidentifier,
@ACCOUNTSTRING nvarchar(130) = null output
)
as begin
set nocount on;
set @ACCOUNTSTRING = dbo.UFN_LEDGERACCOUNT_GETACCOUNTSTRING(@ID)
return 0;
end