DBA Data[Home] [Help]

PACKAGE: APPS.GMS_BURDEN_COSTING

Source


1 package GMS_BURDEN_COSTING  AUTHID CURRENT_USER as
2 -- /* $Header: gmscbcas.pls 120.1 2005/07/26 14:21:36 appldev ship $ */
3 
4 -- Package holds all the burden cost accounting functions and procedures
5 
6    -- Procedure to update the current project_id in package variable
7    PROCEDURE set_current_project_id(x_project_id in number);
8    PRAGMA RESTRICT_REFERENCES(set_current_project_id, WNDS);
9 
10    -- function to retrive the current project id
11    FUNCTION get_current_project_id RETURN NUMBER;
12    PRAGMA RESTRICT_REFERENCES(get_current_project_id, WNDS, WNPS);
13 
14 end GMS_BURDEN_COSTING;