USP_SAVE_BENEFITGLDISTRIBUTION_LINEITEMS_CUSTOMIZE
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@LINEITEMS | UDT_GENERICID | IN | |
@CHANGEAGENTID | uniqueidentifier | IN | |
@CHANGEDATE | datetime | IN |
Definition
Copy
create procedure dbo.USP_SAVE_BENEFITGLDISTRIBUTION_LINEITEMS_CUSTOMIZE
(
@LINEITEMS UDT_GENERICID readonly,
@CHANGEAGENTID uniqueidentifier = null,
@CHANGEDATE datetime = null
) as
set nocount on;
-- This sp is for Professional Services to create custom benefits distributions
-- Add custom routines here to populate JOURNALENRY table and JOURNALENTRY_EXT table
-- Also set return to something other than 0
-- Product Development should NOT alter this spec
return 0;