DBA Data[Home] [Help]

PACKAGE: APPS.HRBISORGPARAMS

Source


1 PACKAGE HrBisOrgParams AUTHID CURRENT_USER as
2 /* $Header: hrbistab.pkh 115.2 2002/12/06 14:16:47 cbridge ship $ */
3 
4   function GetOrgStructureID
5     ( p_org_structure_version_id   IN  Number )
6   return Number;
7 
8   function GetOrgStructureVersionID
9     ( p_organization_structure_id  IN  Number )
10   return Number;
11 
12   function GetOrgParamID
13   return Number;
14  -- pragma Restrict_References (GetOrgParamID, WNDS, WNPS);
15 
16   function GetOrgParamID
17     ( p_organization_structure_id  IN  Number
18     , p_organization_id            IN  Number
19     , p_organization_process       IN  Varchar2 )
20   return Number;
21   --pragma Restrict_References (GetOrgParamID, WNDS, WNPS);
22 
23   procedure LoadOrgHierarchy
24     ( p_organization_structure_id  IN  Number
25     , p_organization_id            IN  Number
26     , p_organization_process       IN  Varchar2 );
27 
28   procedure LoadAllHierarchies;
29 
30   procedure LoadAllHierarchies
31     ( errbuf                       OUT NOCOPY Varchar2
32     , retcode                      OUT NOCOPY Number );
33 
34   function OrgInHierarchy
35     ( p_org_param_id               IN  Number
36     , p_organization_id_group      IN  Number
37     , p_organization_id_child      IN  Number )
38   return Number;
39   pragma restrict_references (OrgInHierarchy, WNDS, WNPS);
40 
41 end HrBisOrgParams;