DBA Data[Home] [Help]

APPS.PQH_STS_SHD dependencies on PQH_FR_STAT_SITUATIONS

Line 23: If (p_constraint_name = 'PQH_FR_STAT_SITUATIONS_PK') Then

19:
20: --
21: Begin
22: --
23: If (p_constraint_name = 'PQH_FR_STAT_SITUATIONS_PK') Then
24: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
25: fnd_message.set_token('PROCEDURE', l_proc);
26: fnd_message.set_token('STEP','5');
27: fnd_message.raise_error;

Line 84: from pqh_fr_stat_situations

80: ,max_duration_per_renewal
81: ,max_tot_continuous_duration
82: ,object_version_number
83: ,remunerate_assign_status_id
84: from pqh_fr_stat_situations
85: where statutory_situation_id = p_statutory_situation_id;
86: --
87: l_fct_ret boolean;
88: --

Line 182: from pqh_fr_stat_situations

178: ,max_duration_per_renewal
179: ,max_tot_continuous_duration
180: ,object_version_number
181: ,remunerate_assign_status_id
182: from pqh_fr_stat_situations
183: where statutory_situation_id = p_statutory_situation_id
184: for update nowait;
185: --
186: l_proc varchar2(72) := g_package||'lck';

Line 247: fnd_message.set_token('TABLE_NAME', 'pqh_fr_stat_situations');

243: -- The object is locked therefore we need to supply a meaningful
244: -- error message.
245: --
246: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
247: fnd_message.set_token('TABLE_NAME', 'pqh_fr_stat_situations');
248: fnd_message.raise_error;
249: End lck;
250: --
251: -- ----------------------------------------------------------------------------