DBA Data[Home] [Help]

APPS.AP_IMPORT_UTILITIES_PKG dependencies on FND_CURRENCY

Line 1600: FND_CURRENCY.GET_INFO(

1596: IF (AP_IMPORT_INVOICES_PKG.g_debug_switch = 'Y') then
1597: Print(AP_IMPORT_INVOICES_PKG.g_debug_switch,debug_info);
1598: END IF;
1599:
1600: FND_CURRENCY.GET_INFO(
1601: p_base_currency_code ,
1602: p_base_precision ,
1603: l_ext_precision ,
1604: p_base_min_acct_unit);

Line 5264: FUNCTION Cache_Fnd_Currency (

5260: APP_EXCEPTION.RAISE_EXCEPTION;
5261:
5262: END Cache_Payment_Method;
5263:
5264: FUNCTION Cache_Fnd_Currency (
5265: P_Fnd_Currency_Table OUT NOCOPY AP_IMPORT_INVOICES_PKG.fnd_currency_tab_type,
5266: P_Calling_Sequence IN VARCHAR2)
5267: RETURN BOOLEAN IS
5268:

Line 5265: P_Fnd_Currency_Table OUT NOCOPY AP_IMPORT_INVOICES_PKG.fnd_currency_tab_type,

5261:
5262: END Cache_Payment_Method;
5263:
5264: FUNCTION Cache_Fnd_Currency (
5265: P_Fnd_Currency_Table OUT NOCOPY AP_IMPORT_INVOICES_PKG.fnd_currency_tab_type,
5266: P_Calling_Sequence IN VARCHAR2)
5267: RETURN BOOLEAN IS
5268:
5269: CURSOR currency_code_cur IS

Line 5284: l_curr_calling_sequence := 'Cache_Fnd_Currency <- '||P_calling_sequence;

5280:
5281:
5282: BEGIN
5283:
5284: l_curr_calling_sequence := 'Cache_Fnd_Currency <- '||P_calling_sequence;
5285: IF AP_IMPORT_INVOICES_PKG.g_debug_switch = 'Y' THEN
5286: AP_IMPORT_UTILITIES_PKG.Print(
5287: AP_IMPORT_INVOICES_PKG.g_debug_switch,l_curr_calling_sequence);
5288: END IF;

Line 5290: l_debug_info := 'Caching Currency from Fnd Currency';

5286: AP_IMPORT_UTILITIES_PKG.Print(
5287: AP_IMPORT_INVOICES_PKG.g_debug_switch,l_curr_calling_sequence);
5288: END IF;
5289:
5290: l_debug_info := 'Caching Currency from Fnd Currency';
5291: IF AP_IMPORT_INVOICES_PKG.g_debug_switch = 'Y' THEN
5292: AP_IMPORT_UTILITIES_PKG.Print(
5293: AP_IMPORT_INVOICES_PKG.g_debug_switch,l_debug_info);
5294: END IF;

Line 5298: BULK COLLECT INTO P_Fnd_Currency_Table;

5294: END IF;
5295:
5296: OPEN currency_code_cur;
5297: FETCH currency_code_cur
5298: BULK COLLECT INTO P_Fnd_Currency_Table;
5299: CLOSE currency_code_cur;
5300:
5301: RETURN(TRUE);
5302:

Line 5313: END Cache_Fnd_Currency;

5309: FND_MESSAGE.SET_TOKEN('DEBUG_INFO', l_debug_info);
5310: END IF;
5311: APP_EXCEPTION.RAISE_EXCEPTION;
5312:
5313: END Cache_Fnd_Currency;
5314:
5315: END AP_IMPORT_UTILITIES_PKG;