DBA Data[Home] [Help]

APPS.PSP_SUM_ADJ dependencies on GMS_INSTALL

Line 2937: l_gms_install BOOLEAN DEFAULT gms_install.enabled; -- Introduced for bug fix 2908859

2933: l_txn_source VARCHAR2(30);
2934: gms_rec gms_transaction_interface_all%ROWTYPE;
2935: l_txn_interface_id number(15);
2936: l_person_name VARCHAR2(240); -- Included for bug fix 1828519
2937: l_gms_install BOOLEAN DEFAULT gms_install.enabled; -- Introduced for bug fix 2908859
2938:
2939: -- Included the following cursor here for acessing local variables for bug fix 1765678
2940: CURSOR time_period_cur IS
2941: SELECT period_name, end_date

Line 3037: if (l_gms_install) then -- replaced site-enabled call with l_gms_install as part of bug fix 2908859

3033: END IF;
3034: CLOSE transaction_source_cur;
3035:
3036: -- get the gms source name
3037: if (l_gms_install) then -- replaced site-enabled call with l_gms_install as part of bug fix 2908859
3038: BEGIN
3039: -- Replaced the earlier 'select stmt.' code with new 'cursor' code for bug fix 1765678
3040:
3041: OPEN site_transaction_source_cur;

Line 3321: if (l_gms_install) then -- Changed award_id check to gms_install check as part of bug fix 2908859

3317: mo_global.set_policy_context('M', null);
3318:
3319: --- moved this code from below 2671594
3320: -- if gms_interface_rec.award_id is not null then
3321: if (l_gms_install) then -- Changed award_id check to gms_install check as part of bug fix 2908859
3322: l_txn_source := l_gms_transaction_source;
3323: else
3324: l_txn_source := l_transaction_source;
3325: end if;