DBA Data[Home] [Help]

APPS.AP_WEB_DISC_PKG dependencies on FND_PROFILE

Line 1218: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_tempChar);

1214: AP_WEB_UTILITIES_PKG.logProcedure('AP_WEB_DISC_PKG', 'start parseExpReportReceipts');
1215: -- check whether descriptive flexfield is enabled under profile option
1216: debug_info := 'Check profile option: descriptive flexfield';
1217: AP_WEB_UTILITIES_PKG.logStatement('AP_WEB_DISC_PKG', debug_info);
1218: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_tempChar);
1219: -- Bug 3985122 Y-Lines Only, B - Both Header and Lines
1220: --l_dflex_enabled := (NVL(l_tempChar, 'N') = 'Y');
1221: l_dflex_enabled := ((NVL(l_tempChar, 'N') = 'Y') OR (NVL(l_tempChar, 'N') = 'B'));
1222:

Line 1980: FND_PROFILE.GET('AP_WEB_ALLOW_CREDIT_LINES', l_allow_credit_lines_profile);

1976: -- validate core lines fields
1977: l_debug_info := 'ValidateExpLinesCoreFields';
1978: getPrompts(601,'AP_WEB_EXP_VIEW_REC',l_title,l_prompts);
1979:
1980: FND_PROFILE.GET('AP_WEB_ALLOW_CREDIT_LINES', l_allow_credit_lines_profile);
1981: if (l_allow_credit_lines_profile = 'Y') then
1982: l_allow_credit_lines := TRUE;
1983: else
1984: l_allow_credit_lines := FALSE;

Line 2194: FND_PROFILE.GET('DISPLAY_INVERSE_RATE', l_invRate);

2190:
2191: l_recCount NUMBER := 0;
2192: BEGIN
2193:
2194: FND_PROFILE.GET('DISPLAY_INVERSE_RATE', l_invRate);
2195: debug_info := 'Header info';
2196:
2197: l_amtDueEmployee := 0;
2198: l_recCount := to_number(ReportHdrInfo.receipt_count);

Line 2637: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_tempChar);

2633:
2634: -- check whether descriptive flexfield is enabled under profile option
2635: debug_info := 'Check profile option: descriptive flexfield';
2636: AP_WEB_UTILITIES_PKG.logStatement('AP_WEB_DISC_PKG', debug_info);
2637: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_tempChar);
2638: -- Bug 3985122 Y-Lines Only, B - Both Header and Lines
2639: --l_dflex_enabled := (NVL(l_tempChar, 'N') = 'Y');
2640: l_dflex_enabled := ((NVL(l_tempChar, 'N') = 'Y') OR (NVL(l_tempChar, 'N') = 'B'));
2641:

Line 3420: FND_PROFILE.GET('DISPLAY_INVERSE_RATE', l_inverse_rate_profile);

3416: BEGIN
3417: --
3418: -- Get inverse rate profile option.
3419: --
3420: FND_PROFILE.GET('DISPLAY_INVERSE_RATE', l_inverse_rate_profile);
3421:
3422: -- if inverse rate profile option is set to yes, we need to
3423: -- convert the rate to 1/rate.
3424: IF (l_inverse_rate_profile = 'Y') THEN