DBA Data[Home] [Help]

PACKAGE BODY: APPS.HRI_OLTP_VIEW_SECURITY

Source


1 PACKAGE BODY hri_oltp_view_security AS
2 /* $Header: hriovsec.pkb 115.0 2003/04/01 17:23:33 cbridge noship $ */
3 
4   FUNCTION exist_orghvrsn_for_security(p_org_structure_version_id
5                    per_org_structure_versions.org_structure_version_id%type)
6                    RETURN VARCHAR2 IS
7 
8   BEGIN
9 
10        -- call business process layer function
11        RETURN hri_bpl_org.exist_orghvrsn_for_security(p_org_structure_version_id);
12 
13   END exist_orghvrsn_for_security;
14 
15 
16   FUNCTION exist_orgh_for_security(p_organization_structure_id
17                    per_org_structure_versions.organization_structure_id%type)
18                    RETURN VARCHAR2 IS
19 
20   BEGIN
21        -- call business process layer function
22        RETURN hri_bpl_org.exist_orgh_for_security(p_organization_structure_id);
23   END exist_orgh_for_security;
24 
25 END hri_oltp_view_security;