DBA Data[Home] [Help]

APPS.AZW_REPORT dependencies on FND_PROFILE

Line 1518: g_current_mode := fnd_profile.value('AZ_CURRENT_MODE');

1514: *-----------------------------------------------------------------------*/
1515: PROCEDURE get_translated_labels IS
1516: v_locator PLS_INTEGER := 0;
1517: BEGIN
1518: g_current_mode := fnd_profile.value('AZ_CURRENT_MODE');
1519: g_planning := FND_MESSAGE.get_string('AZ', 'AZW_RPT_PR');
1520: g_monitor := FND_MESSAGE.get_string('AZ', 'AZW_RPT_SR');
1521: g_related := FND_MESSAGE.get_string('AZ', 'AZW_RPT_RELATED');
1522: g_ipr := FND_MESSAGE.get_string('AZ', 'AZW_RPT_IPR');

Line 2317: * Retrieve the value for fnd profile option 'WEB_APPS_AGENT', the string

2313: /*------------------------------------------------------------------------
2314: * GET_WEB_AGENT
2315: *
2316: * Private procedure.
2317: * Retrieve the value for fnd profile option 'WEB_APPS_AGENT', the string
2318: * represents the URL for the host server.
2319: *-----------------------------------------------------------------------*/
2320: PROCEDURE get_web_agent IS
2321: v_slash NUMBER;

Line 2325: FND_PROFILE.get('APPS_WEB_AGENT', g_web_agent);

2321: v_slash NUMBER;
2322: v_len NUMBER;
2323:
2324: BEGIN
2325: FND_PROFILE.get('APPS_WEB_AGENT', g_web_agent);
2326: --
2327: -- checking the slash at the end
2328: --
2329: v_len := LENGTH(g_web_agent);