DBA Data[Home] [Help]

APPS.PQH_TXH_INS dependencies on PQH_SS_TRANSACTION_HISTORY

Line 87: -- Insert the row into: pqh_ss_transaction_history

83: --
84: --
85: --
86: --
87: -- Insert the row into: pqh_ss_transaction_history
88: --
89: insert into pqh_ss_transaction_history
90: (transaction_history_id
91: ,creator_person_id

Line 89: insert into pqh_ss_transaction_history

85: --
86: --
87: -- Insert the row into: pqh_ss_transaction_history
88: --
89: insert into pqh_ss_transaction_history
90: (transaction_history_id
91: ,creator_person_id
92: ,assignment_id
93: ,selected_person_id

Line 187: -- Cursor C_Sel1 is select pqh_ss_transaction_history_s.nextval from sys.dual;

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

Line 191: from pqh_ss_transaction_history

187: -- Cursor C_Sel1 is select pqh_ss_transaction_history_s.nextval from sys.dual;
188: --
189: Cursor C_Sel2 is
190: Select null
191: from pqh_ss_transaction_history
192: where transaction_history_id = pqh_txh_ins.g_transaction_history_id_i;
193: --
194: l_proc varchar2(72) := g_package||'pre_insert';
195: l_exists varchar2(1);

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

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

Line 288: (p_module_name => 'PQH_SS_TRANSACTION_HISTORY'

284: --
285: when hr_api.cannot_find_prog_unit then
286: --
287: hr_api.cannot_find_prog_unit_error
288: (p_module_name => 'PQH_SS_TRANSACTION_HISTORY'
289: ,p_hook_type => 'AI');
290: --
291: end;
292: --