DBA Data[Home] [Help]

APPS.BEN_CMT_SHD dependencies on BEN_CM_DLVRY_MTHD_TYP

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_CM_DLVRY_MTHD_TYP_FK3') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'BEN_CM_DLVRY_MTHD_TYP_PK') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'BEN_CM_DLVRY_MTHD_TYP_PK') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 110: from ben_cm_dlvry_mthd_typ

106: cmt_attribute8,
107: cmt_attribute9,
108: dflt_flag,
109: object_version_number
110: from ben_cm_dlvry_mthd_typ
111: where cm_dlvry_mthd_typ_id = p_cm_dlvry_mthd_typ_id;
112: --
113: l_proc varchar2(72) := g_package||'api_updating';
114: l_fct_ret boolean;

Line 217: from ben_cm_dlvry_mthd_typ

213: cmt_attribute8,
214: cmt_attribute9,
215: dflt_flag,
216: object_version_number
217: from ben_cm_dlvry_mthd_typ
218: where cm_dlvry_mthd_typ_id = p_cm_dlvry_mthd_typ_id
219: for update nowait;
220: --
221: l_proc varchar2(72) := g_package||'lck';

Line 260: hr_utility.set_message_token('TABLE_NAME', 'ben_cm_dlvry_mthd_typ');

256: -- The object is locked therefore we need to supply a meaningful
257: -- error message.
258: --
259: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
260: hr_utility.set_message_token('TABLE_NAME', 'ben_cm_dlvry_mthd_typ');
261: hr_utility.raise_error;
262: End lck;
263: --
264: -- ----------------------------------------------------------------------------