USP_SAVE_REVENUEGLDISTRIBUTION_CUSTOMIZE

Saves customized revenue GL distributions for a revenue record.

Parameters

Parameter Parameter Type Mode Description
@REVENUEID uniqueidentifier IN
@CHANGEAGENTID uniqueidentifier IN
@CHANGEDATE datetime IN

Definition

Copy


create procedure dbo.USP_SAVE_REVENUEGLDISTRIBUTION_CUSTOMIZE
    (
        @REVENUEID uniqueidentifier,
        @CHANGEAGENTID uniqueidentifier = null,
        @CHANGEDATE datetime = null                
    )
    as
        set nocount on;
      -- This sp is for Professional Services to create custom revenue distributions

      -- Add custom routines here to populate GLTRANSACTION table and REVENUEGLDISTRIBUTION table 

      -- Also set return to something other than 0

      -- Product Development should NOT alter this spec



    return 0;