DBA Data[Home] [Help]

APPS.PA_TRX_IMPORT dependencies on FND_PROFILE

Line 236: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');

232: g_payroll_accrual_flag VARCHAR2(1) default NULL; ---- Added for payroll billable_flag changes for 12.2 end bug#12344689
233:
234: -- 10253400: Payroll integration enhancement for 12.2..end
235:
236: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
237:
238: P_BTC_SRC_RESRC varchar2(1) := NVL(FND_PROFILE.value('PA_RPT_BTC_SRC_RESRC'), 'N'); -- 4057874
239: G_Cbs_Element_Id NUMBER DEFAULT NULL; -- Added for CBS Enhancement Bug 16220146
240: -- R12 funds management uptake : Below global variables stores adjusting expenditures data

Line 238: P_BTC_SRC_RESRC varchar2(1) := NVL(FND_PROFILE.value('PA_RPT_BTC_SRC_RESRC'), 'N'); -- 4057874

234: -- 10253400: Payroll integration enhancement for 12.2..end
235:
236: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
237:
238: P_BTC_SRC_RESRC varchar2(1) := NVL(FND_PROFILE.value('PA_RPT_BTC_SRC_RESRC'), 'N'); -- 4057874
239: G_Cbs_Element_Id NUMBER DEFAULT NULL; -- Added for CBS Enhancement Bug 16220146
240: -- R12 funds management uptake : Below global variables stores adjusting expenditures data
241: -- which will be accessed by fundscheck autonomous API's
242:

Line 7690: fnd_profile.get('PA_DEBUG_MODE',G_debug_mode);

7686: -- written out for the Interface programs from AP.
7687: -- The following two lines should take care of this problem.
7688:
7689: If G_debug_mode is NULL Then
7690: fnd_profile.get('PA_DEBUG_MODE',G_debug_mode);
7691: G_debug_mode := NVL(G_debug_mode, 'N');
7692:
7693: pa_debug.set_process(x_process => 'PLSQL',
7694: x_debug_mode => G_debug_mode);

Line 7770: /* if NVL(fnd_profile.value('PA_DEBUG_MODE'), 'N') = 'Y' then --FSIO Change

7766: /* Check if gms is enabled and keep the status in a variable */
7767:
7768: l_gms_enabled := gms_pa_costing_pkg.grants_implemented;
7769:
7770: /* if NVL(fnd_profile.value('PA_DEBUG_MODE'), 'N') = 'Y' then --FSIO Change
7771: G_FSIO_ENABLED := 'Y';
7772: else
7773: G_FSIO_ENABLED := 'N';
7774: end if; */

Line 10155: fnd_profile.get('PA_DEBUG_MODE',G_debug_mode);

10151:
10152: -- Get the debug mode, if the debug is turned on then write
10153: -- log messages to the log file.
10154:
10155: fnd_profile.get('PA_DEBUG_MODE',G_debug_mode);
10156: G_debug_mode := NVL(G_debug_mode, 'N');
10157:
10158: pa_debug.set_process(x_process => 'PLSQL',
10159: x_debug_mode => G_debug_mode);