DBA Data[Home] [Help]

APPS.IGS_UC_TRX_GEN_HOOK dependencies on IGS_UC_TRAN_PROCESSOR_PKG

Line 42: which was returned with return1, return2 OUT NOCOPY parameters when some error is occurred in igs_uc_tran_processor_pkg.trans_build().

38: anwest 29-May-2006 Bug #5190520 UCTD320 - UCAS 2006 CLEARING ISSUES
39: rbezawad 31-Jul-2002 While creating the LD Transaction with Withdrawn Status(W), the comments_in_offer field was being populated
40: with the text 'WITHDRAWN'. The code removed and the parameter is passed with NULL value w.r.t. Bug 2483587.
41: rbezawad 17-Sep-2002 Added logic to create RD or RX transactions in clearing period. And also added logic to add the message to stack
42: which was returned with return1, return2 OUT NOCOPY parameters when some error is occurred in igs_uc_tran_processor_pkg.trans_build().
43: Modifications are done w.r.t. UCFD06 Build 2570389.
44: smaddali 02-oct-2002 Modified for bug 2603384 ,
45: 1) added 3 new parameters to trans_build call .passing auto_generated_flag='Y' since
46: these transactions are automatically generated

Line 208: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => 'RX',

204: lv_system_outcome_status IN ('OFFER', 'COND-OFFER') AND
205: (l_ucas_cycle >= 2006 OR cur_app_clr_rnd%FOUND) THEN
206:
207: -- Create a RX transaction with the decision A
208: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => 'RX',
209: p_app_no => l_alt_appl_id,
210: p_choice_no => lv_choice_no,
211: p_decision => l_decision_value,
212: p_course => l_ucas_program_code,

Line 237: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => 'RD',

233:
234: -- 29-MAY-2006 anwest Bug #5190520 UCTD320 - UCAS 2006 CLEARING ISSUES
235: ELSIF (lv_system_outcome_status IN ('OFFER', 'REJECTED')) THEN
236: -- Create a RD transaction with decision A
237: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => 'RD',
238: p_app_no => l_alt_appl_id,
239: p_choice_no => lv_choice_no,
240: p_decision => l_decision_value,
241: p_course => NULL,

Line 341: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => l_transaction_type,

337: END IF; -- End if for system status
338:
339: -- Call the transaction builder for the above transactions
340: IF l_transaction_type IS NOT NULL AND l_decision_value IS NOT NULL THEN
341: igs_uc_tran_processor_pkg.trans_build ( p_tran_type => l_transaction_type,
342: p_app_no => l_alt_appl_id,
343: p_choice_no => lv_choice_no,
344: p_decision => l_decision_value,
345: p_course => NULL,