DBA Data[Home] [Help]

APPS.BEN_PROCESS_USER_UTILITY dependencies on FND_RESPONSIBILITY

Line 97: -- fnd_responsibility.responsibility_id value(which is 15).

93: -- only.
94: --***************************************************************************
95: --
96: -- responsibility_id - should never exceed length of
97: -- fnd_responsibility.responsibility_id value(which is 15).
98: --
99: -- respons_application_id - cannot exceed the length of
100: -- fnd_responsibility.application_id, which is a number type
101: -- with a size of 15.

Line 100: -- fnd_responsibility.application_id, which is a number type

96: -- responsibility_id - should never exceed length of
97: -- fnd_responsibility.responsibility_id value(which is 15).
98: --
99: -- respons_application_id - cannot exceed the length of
100: -- fnd_responsibility.application_id, which is a number type
101: -- with a size of 15.
102: --
103: -- security_group_id -optional for 'ENABLE_SECURITY_GROUPS' profile option =
104: -- 'Y'. Length cannot exceed

Line 133: (responsibility_id fnd_responsibility.responsibility_id%type

129: ----------------------------------------------------------------------------
130: --RECORD STRUCTURE FOR FND_RESPONSIBILITIES
131: -- =========================================
132: TYPE fnd_resp_record IS RECORD
133: (responsibility_id fnd_responsibility.responsibility_id%type
134: ,respons_application_id fnd_responsibility.application_id%type
135: ,security_group_id fnd_security_groups.security_group_id%type
136: ,security_profile_id per_sec_profile_assignments.security_profile_id%type
137: );

Line 134: ,respons_application_id fnd_responsibility.application_id%type

130: --RECORD STRUCTURE FOR FND_RESPONSIBILITIES
131: -- =========================================
132: TYPE fnd_resp_record IS RECORD
133: (responsibility_id fnd_responsibility.responsibility_id%type
134: ,respons_application_id fnd_responsibility.application_id%type
135: ,security_group_id fnd_security_groups.security_group_id%type
136: ,security_profile_id per_sec_profile_assignments.security_profile_id%type
137: );
138: g_fnd_resp_record fnd_resp_record;