DBA Data[Home] [Help]

APPS.PQH_TSH_INS dependencies on PQH_SS_TRANS_STATE_HISTORY

Line 90: -- Insert the row into: pqh_ss_trans_state_history

86: --
87: --
88: --
89: --
90: -- Insert the row into: pqh_ss_trans_state_history
91: --
92: insert into pqh_ss_trans_state_history
93: (transaction_history_id
94: ,approval_history_id

Line 92: insert into pqh_ss_trans_state_history

88: --
89: --
90: -- Insert the row into: pqh_ss_trans_state_history
91: --
92: insert into pqh_ss_trans_state_history
93: (transaction_history_id
94: ,approval_history_id
95: ,creator_person_id
96: ,creator_role

Line 186: -- Cursor C_Sel1 is select pqh_ss_trans_state_history_s.nextval from sys.dual;

182: Procedure pre_insert
183: (p_rec in out nocopy pqh_tsh_shd.g_rec_type
184: ) is
185: --
186: -- Cursor C_Sel1 is select pqh_ss_trans_state_history_s.nextval from sys.dual;
187: --
188: Cursor C_Sel2 is
189: Select null
190: from pqh_ss_trans_state_history

Line 190: from pqh_ss_trans_state_history

186: -- Cursor C_Sel1 is select pqh_ss_trans_state_history_s.nextval from sys.dual;
187: --
188: Cursor C_Sel2 is
189: Select null
190: from pqh_ss_trans_state_history
191: where transaction_history_id = pqh_tsh_ins.g_transaction_history_id_i
192: and approval_history_id = pqh_tsh_ins.g_approval_history_id_i;
193: --
194: l_proc varchar2(72) := g_package||'pre_insert';

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

209: --
210: -- The primary key values are already in use.
211: --
212: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
213: fnd_message.set_token('TABLE_NAME','pqh_ss_trans_state_history');
214: fnd_message.raise_error;
215: End If;
216: Close C_Sel2;
217: --

Line 279: (p_module_name => 'PQH_SS_TRANS_STATE_HISTORY'

275: --
276: when hr_api.cannot_find_prog_unit then
277: --
278: hr_api.cannot_find_prog_unit_error
279: (p_module_name => 'PQH_SS_TRANS_STATE_HISTORY'
280: ,p_hook_type => 'AI');
281: --
282: end;
283: --