USP_GLPOST_GETPARAMETERS
Returns the parameters for a given parameter set instance of the GL Post business process.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_GLPOST_GETPARAMETERS (@ID uniqueidentifier)
as
begin
set nocount on
select INCLUDEBYPOSTDATE, POSTTHROUGHDATECODE, SUMMARIZEBYDATECODE, CREATEOUTPUTIDSET, OUTPUTIDSETNAME, OVERWRITEOUTPUTIDSET
from dbo.GLPOSTPROCESS
where ID = @ID
end