DBA Data[Home] [Help]

APPS.FV_DC_ASSIGN_FINANCE_CHRG dependencies on GL_LEDGERS

Line 2080: l_currency_code gl_ledgers.currency_code%TYPE;

2076: p_retcode OUT NOCOPY NUMBER
2077: ) IS
2078: l_module_name VARCHAR2(200);
2079: l_location VARCHAR2(200);
2080: l_currency_code gl_ledgers.currency_code%TYPE;
2081: l_req_id NUMBER;
2082:
2083: CURSOR c1 (c_ledger_id NUMBER) IS
2084: SELECT DISTINCT hzca.cust_Account_id customer_id,

Line 2122: FROM gl_ledgers_public_v

2118: END IF;
2119:
2120: SELECT currency_code
2121: INTO l_currency_code
2122: FROM gl_ledgers_public_v
2123: WHERE ledger_id = g_set_of_books_id;
2124:
2125: IF (fnd_log.level_statement >= g_CURRENT_LOG_LEVEL) THEN
2126: debug(l_module_name,'l_currency_code='||l_currency_code);

Line 2133: l_location := l_module_name||'.select_gl_ledgers_public_v';

2129: EXCEPTION
2130: WHEN OTHERS THEN
2131: p_retcode := g_FAILURE;
2132: p_errbuf := SQLERRM;
2133: l_location := l_module_name||'.select_gl_ledgers_public_v';
2134: fv_utility.log_mesg(fnd_log.level_unexpected, l_location,l_location) ;
2135: fv_utility.log_mesg(fnd_log.level_unexpected, l_location,p_errbuf) ;
2136: END;
2137: