DBA Data[Home] [Help]

APPS.PER_PSO_SHD dependencies on PER_SECURITY_ORGANIZATIONS

Line 32: If (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_FK1') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_FK1') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 37: ElsIf (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_FK2') Then

33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;
37: ElsIf (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_FK2') Then
38: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
39: fnd_message.set_token('PROCEDURE', l_proc);
40: fnd_message.set_token('STEP','10');
41: fnd_message.raise_error;

Line 42: ElsIf (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_PK') Then

38: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
39: fnd_message.set_token('PROCEDURE', l_proc);
40: fnd_message.set_token('STEP','10');
41: fnd_message.raise_error;
42: ElsIf (p_constraint_name = 'PER_SECURITY_ORGANIZATIONS_PK') Then
43: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
44: fnd_message.set_token('PROCEDURE', l_proc);
45: fnd_message.set_token('STEP','15');
46: fnd_message.raise_error;

Line 75: from per_security_organizations

71: ,security_profile_id
72: ,entry_type
73: ,object_version_number
74: ,security_organization_id
75: from per_security_organizations
76: where security_organization_id = p_security_organization_id;
77: --
78: l_fct_ret boolean;
79: --

Line 145: from per_security_organizations

141: ,security_profile_id
142: ,entry_type
143: ,object_version_number
144: ,security_organization_id
145: from per_security_organizations
146: where security_organization_id = p_security_organization_id
147: for update nowait;
148: --
149: l_proc varchar2(72) := g_package||'lck';

Line 194: fnd_message.set_token('TABLE_NAME', 'per_security_organizations');

190: -- The object is locked therefore we need to supply a meaningful
191: -- error message.
192: --
193: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
194: fnd_message.set_token('TABLE_NAME', 'per_security_organizations');
195: fnd_message.raise_error;
196: End lck;
197: --
198: -- ----------------------------------------------------------------------------