DBA Data[Home] [Help]

APPS.PQH_TSH_SHD dependencies on PQH_SS_TRANS_STATE_HISTORY

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PQH_SS_TRANS_STATE_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_trans_state_history

57: ,last_update_role
58: ,parent_transaction_id
59: ,relaunch_function
60: ,transaction_document
61: from pqh_ss_trans_state_history
62: where transaction_history_id = p_transaction_history_id
63: and approval_history_id = p_approval_history_id;
64: --
65: l_fct_ret boolean;

Line 135: from pqh_ss_trans_state_history

131: ,last_update_role
132: ,parent_transaction_id
133: ,relaunch_function
134: ,transaction_document
135: from pqh_ss_trans_state_history
136: where transaction_history_id = p_transaction_history_id
137: and approval_history_id = p_approval_history_id
138: for update nowait;
139: --

Line 181: fnd_message.set_token('TABLE_NAME', 'pqh_ss_trans_state_history');

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