DBA Data[Home] [Help]

PACKAGE: APPS.PA_XLA_INTF_REV_EVENTS

Source


1 PACKAGE PA_XLA_INTF_REV_EVENTS AS
2 /* $Header: PAXLARVS.pls 120.5 2005/09/05 04:46:49 lveerubh noship $ */
3 
4 /*----------------------------------------------------------------------------------------+
5 |   Procedure  :   create_events                                                          |
6 |   Purpose    :   Will create accounting event for revenues eligible for transfer to SLA |
7 |                  by calling XLA Create_Event API.
8 |   Parameters :                                                                          |
9 |     ==================================================================================  |
10 |     Name                    Mode            Description                                 |
11 |     ==================================================================================  |
12 |                                                                                         |
13 |      p_request_id           IN              Request id of the run                       |
14 |                                                                                         |
15 |      p_return_status        OUT NOCOPY      Return status of the API                    |
16 |                                                                                         |
17 |     ==================================================================================  |
18 +----------------------------------------------------------------------------------------*/
19 
20 PROCEDURE create_events (p_request_id 		NUMBER,
21 			 p_return_status OUT NOCOPY VARCHAR2);
22  FUNCTION Get_Sla_Ccid( P_Acct_Event_Id                IN PA_Draft_Revenues_All.Event_Id%TYPE
23                         ,P_Transfer_Status_Code         IN PA_draft_revenues_All.Transfer_Status_Code%TYPE
24                         ,P_Source_Distribution_Id_Num_1 IN XLA_Distribution_Links.Source_Distribution_Id_Num_1%TYPE
25                         ,P_Source_Distribution_Id_Num_2 IN XLA_Distribution_Links.Source_Distribution_Id_Num_2%TYPE
26                         ,P_Distribution_Type            IN XLA_Distribution_Links.SOURCE_DISTRIBUTION_TYPE%TYPE
27                         ,P_Ledger_Id                    IN PA_Implementations_All.Set_Of_Books_Id%TYPE
28                        ) RETURN NUMBER;
29 
30 END PA_XLA_INTF_REV_EVENTS;