DBA Data[Home] [Help]

APPS.PER_ASP_BUS dependencies on PER_SECURITY_PROFILES

Line 111: from per_security_profiles a

107: l_dummy varchar2(1);
108: --
109: cursor c1 is
110: select null
111: from per_security_profiles a
112: where a.security_profile_id = p_security_profile_id;
113: --
114: Begin
115: --

Line 127: -- check if security_profile_id value exists in per_security_profiles table

123: and nvl(p_security_profile_id,hr_api.g_number)
124: <> nvl(per_asp_shd.g_old_rec.security_profile_id,hr_api.g_number)
125: or not l_api_updating) then
126: --
127: -- check if security_profile_id value exists in per_security_profiles table
128: --
129: open c1;
130: --
131: fetch c1 into l_dummy;

Line 136: -- raise error as FK does not relate to PK in per_security_profiles

132: if c1%notfound then
133: --
134: close c1;
135: --
136: -- raise error as FK does not relate to PK in per_security_profiles
137: -- table.
138: --
139: per_asp_shd.constraint_error('PER_SEC_PROFILE_ASSIGNMENTS_FK');
140: --