DBA Data[Home] [Help]

APPS.PQH_TAH_SHD dependencies on PQH_SS_APPROVAL_HISTORY

Line 21: If (p_constraint_name = 'PQH_SS_APPROVAL_HISTORY_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PQH_SS_APPROVAL_HISTORY_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 61: from pqh_ss_approval_history

57: ,orig_system
58: ,orig_system_id
59: ,notification_id
60: ,user_comment
61: from pqh_ss_approval_history
62: where
63: approval_history_id = p_approval_history_id
64: and transaction_history_id = p_transaction_history_id;
65: --

Line 136: from pqh_ss_approval_history

132: ,orig_system
133: ,orig_system_id
134: ,notification_id
135: ,user_comment
136: from pqh_ss_approval_history
137: where
138: approval_history_id = p_approval_history_id
139: and transaction_history_id = p_transaction_history_id
140: for update nowait;

Line 183: fnd_message.set_token('TABLE_NAME', 'pqh_ss_approval_history');

179: -- The object is locked therefore we need to supply a meaningful
180: -- error message.
181: --
182: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
183: fnd_message.set_token('TABLE_NAME', 'pqh_ss_approval_history');
184: fnd_message.raise_error;
185: End lck;
186: --
187: -- ----------------------------------------------------------------------------