DBA Data[Home] [Help]

APPS.GMD_FORMULA_HEADER_PVT dependencies on GMD_SECURITY_PROFILES

Line 60: from gmd_security_profiles

56: and object_type = 'F';
57:
58: Cursor Cur_user_access(vOrgn_id NUMBER) IS
59: select 1, other_organization_id
60: from gmd_security_profiles
61: where organization_id = vOrgn_id
62: and assign_method_ind = 'M'
63: and access_type_ind = 'U'
64: and user_id = fnd_global.user_id;

Line 68: from gmd_security_profiles

64: and user_id = fnd_global.user_id;
65:
66: Cursor Cur_resp_access(vOrgn_id NUMBER) IS
67: select 1, other_organization_id
68: from gmd_security_profiles
69: where organization_id = vOrgn_id
70: and assign_method_ind = 'M'
71: and access_type_ind = 'U'
72: and responsibility_id = fnd_global.resp_id;