DBA Data[Home] [Help]

APPS.BIX_CALLS_HANDLED_RPT_PKG dependencies on FND_PROFILE

Line 426: g_nls_date_format := FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK');

422: l_temp_date DATE;
423: BEGIN
424:
425: /* Fetch the icx date format mask ; paramters from and to date is passed to the package in this format */
426: g_nls_date_format := FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK');
427:
428: /* Parse all the parameter values from the variable p_context : pContext (Drill down ID) , Agent Group */
429: /* Site , Classification , Period Indicator , From date and Time , To Date and Time */
430: g_parent := bix_util_pkg.get_parameter_value(p_context, 'pContext');

Line 503: SELECT fnd_profile.value('BIX_DM_RPT_TIME_RANGE')

499: INTO g_sysdate
500: FROM dual;
501:
502: /* Get the User preferred time range (1/2 or 1 or 2 or 4 hour or 1 day) */
503: SELECT fnd_profile.value('BIX_DM_RPT_TIME_RANGE')
504: INTO g_time_range
505: FROM dual;
506:
507: /* If there is no user prefered time range , set it to 1/2 hour */

Line 536: SELECT fnd_profile.value('BIX_DM_DEFAULT_GROUP')

532: END IF;
533:
534: /* If the user has selected "All" for agent group paramter , display the default group of the user */
535: IF (l_group_id = -999) THEN
536: SELECT fnd_profile.value('BIX_DM_DEFAULT_GROUP')
537: INTO l_group_id
538: FROM dual;
539: END IF;
540: