DBA Data[Home] [Help]

APPS.BEN_XID_SHD dependencies on BEN_EXT_INCL_DATA_ELMT

Line 36: If (p_constraint_name = 'BEN_EXT_INCL_DATA_ELMT_PK') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_EXT_INCL_DATA_ELMT_PK') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);
39: fnd_message.set_token('STEP','5');
40: fnd_message.raise_error;

Line 77: from ben_ext_incl_data_elmt

73: last_update_login,
74: created_by ,
75: object_version_number,
76: ext_data_elmt_in_rcd_id
77: from ben_ext_incl_data_elmt
78: where ext_incl_data_elmt_id = p_ext_incl_data_elmt_id;
79: --
80: l_proc varchar2(72) := g_package||'api_updating';
81: l_fct_ret boolean;

Line 158: from ben_ext_incl_data_elmt

154: last_update_login,
155: created_by ,
156: object_version_number,
157: ext_data_elmt_in_rcd_id
158: from ben_ext_incl_data_elmt
159: where ext_incl_data_elmt_id = p_ext_incl_data_elmt_id
160: for update nowait;
161: --
162: l_proc varchar2(72) := g_package||'lck';

Line 201: fnd_message.set_token('TABLE_NAME', 'ben_ext_incl_data_elmt');

197: -- The object is locked therefore we need to supply a meaningful
198: -- error message.
199: --
200: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
201: fnd_message.set_token('TABLE_NAME', 'ben_ext_incl_data_elmt');
202: fnd_message.raise_error;
203: End lck;
204: --
205: -- ----------------------------------------------------------------------------