DBA Data[Home] [Help]

PACKAGE: APPS.AHL_OSP_COST_PVT

Source


1 PACKAGE AHL_OSP_COST_PVT AUTHID CURRENT_USER AS
2 /* $Header: AHLVOSCS.pls 115.1 2003/09/18 20:56:00 cxcheng noship $ */
3 
4 -- Start of Comments --
5 --  Procedure name    : Get_OSP_Cost
6 --  Type              : Private
7 --  Function          : Private API to calculate the Outside Proessing cost of
8 --                      a CMRO Work order.
9 --  Pre-reqs    :
10 --  Parameters  :
11 --      p_workorder_id                  IN      NUMBER       Required
12 --      x_osp_cost                      OUT     NUMBER       Required
13 --
14 --  Version :
15 --      Initial Version   1.0
16 --
17 --  End of Comments.
18 
19 PROCEDURE Get_OSP_Cost
20 (
21     x_return_status       OUT  NOCOPY    VARCHAR2,
22     p_workorder_id          IN   NUMBER,
23     x_osp_cost              OUT  NOCOPY   NUMBER);
24 
25 ----------------------------------------
26 
27 End AHL_OSP_COST_PVT;