USP_LEDGERACCOUNT_DELETE_PROMPTDATA
Provides the prompt for the "Ledger Account: Delete" 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_DELETE_PROMPTDATA
(
@ID uniqueidentifier,
@ACCOUNTSTRING nvarchar(130) = null output
)
as begin
set nocount on;
select @ACCOUNTSTRING = GLACCOUNT.ACCOUNTSTRING from dbo.GLACCOUNT where ID = @ID
return 0;
end