DBA Data[Home] [Help]

APPS.PQH_TXH_SHD dependencies on PQH_SS_TRANSACTION_HISTORY

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

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

58: ,rptg_grp_id
59: ,plan_id
60: ,transaction_group
61: ,transaction_identifier
62: from pqh_ss_transaction_history
63: where transaction_history_id = p_transaction_history_id;
64: --
65: l_fct_ret boolean;
66: --

Line 133: from pqh_ss_transaction_history

129: ,rptg_grp_id
130: ,plan_id
131: ,transaction_group
132: ,transaction_identifier
133: from pqh_ss_transaction_history
134: where transaction_history_id = p_transaction_history_id
135: for update nowait;
136: --
137: l_proc varchar2(72) := g_package||'lck';

Line 172: fnd_message.set_token('TABLE_NAME', 'pqh_ss_transaction_history');

168: -- The object is locked therefore we need to supply a meaningful
169: -- error message.
170: --
171: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
172: fnd_message.set_token('TABLE_NAME', 'pqh_ss_transaction_history');
173: fnd_message.raise_error;
174: End lck;
175: --
176: -- ----------------------------------------------------------------------------