DBA Data[Home] [Help]

PACKAGE: APPS.GMF_PROCESS_COST_PUB

Source


1 PACKAGE  GMF_PROCESS_COST_PUB AS
2 /* $Header: GMFPPCPS.pls 120.0 2005/11/21 14:01:49 sschinch noship $ */
3 
4 /************************************************************************************
5   *  PROCEDURE
6   *     Get_Prior_Period_Cost
7   *
8   *  DESCRIPTION
9   *     This procedure will return prior period cost for an organization/item for the cost
10   *     type defined in fiscal policy.
11   *
12   *  AUTHOR
13   *    Sukarna Reddy Chinchod 21-NOV-2005
14   *
15   *  INPUT PARAMETERS
16   *   p_inventory_item_id
17   *   p_organization_id
18   *   p_transaction_date
19   *
20   *  OUTPUT PARAMETERS
21   *	Returns Prior cost of an item.
22   *	Status 'S' or 'E'
23   *
24   * HISTORY
25   *
26   **************************************************************************************/
27 
28   PROCEDURE Get_Prior_Period_Cost(p_inventory_item_id IN          NUMBER,
29                                   p_organization_id   IN          NUMBER,
30                                   p_transaction_date  IN          DATE,
31                                   x_unit_cost         OUT NOCOPY  NUMBER,
32                                   x_msg_data          OUT NOCOPY  VARCHAR2,
33                                   x_return_status     OUT NOCOPY  VARCHAR2
34                                );
35 END GMF_PROCESS_COST_PUB;