DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on DBMS_UTILITY

Line 418: debugger(dbms_utility.format_call_stack);

414:
415: if is_debugging then
416: debugger('=* '||name||'='||value);
417: if name like debug_trace_name then
418: debugger(dbms_utility.format_call_stack);
419: end if;
420: end if;
421:
422: return true;

Line 469: sqlcode, dbms_utility.format_error_stack);

465:
466: exception
467: when others then
468: throw('fnd_global.put('||name||','||value||')',
469: sqlcode, dbms_utility.format_error_stack);
470: end put;
471:
472: -- same as put_nosys but disposes of the return value
473: procedure put_nosys(name varchar2, value varchar2)

Line 1230: debugger(dbms_utility.format_call_stack);

1226: mon_lk := nls_date_format like '%MON%';
1227: mm_lk := nls_date_format like '%MM%';
1228:
1229: if is_debugging then
1230: debugger(dbms_utility.format_call_stack);
1231: debugger('? p_nls_date_language is null :'
1232: ||fnd_const.bool(nul_dl));
1233: debugger('? is_new(FND_CONST.NLS_DATE_LANGUAGE) :'
1234: ||fnd_const.bool(new_dl));

Line 1492: sqlcode, dbms_utility.format_error_stack);

1488: when others then
1489: throw('fnd_global.set_nls.set_parameter('''||
1490: p_parameter||''','''||
1491: p_value||''')',
1492: sqlcode, dbms_utility.format_error_stack);
1493: end set_parameter;
1494:
1495: --
1496: -- calls dbms_session.set_nls

Line 1585: sqlcode, dbms_utility.format_error_stack);

1581:
1582: exception
1583: when others then
1584: throw('fnd_global.set_nls',
1585: sqlcode, dbms_utility.format_error_stack);
1586: end set_nls;
1587:
1588: -- legacy routine that simply calls through to set_nls.
1589: --

Line 1602: debugger(dbms_utility.format_call_stack);

1598: check_logging;
1599:
1600: if is_debugging then
1601: debugger('begin set_nls_context');
1602: debugger(dbms_utility.format_call_stack);
1603: dump_context;
1604: end if;
1605:
1606: reset_nls;

Line 1647: debugger(dbms_utility.format_call_stack);

1643: check_logging;
1644:
1645: if is_debugging then
1646: debugger('begin set_nls');
1647: debugger(dbms_utility.format_call_stack);
1648: dump_context;
1649: end if;
1650:
1651: reset_nls;

Line 1679: log('fnd_global.set_nls.13', sqlcode, dbms_utility.format_error_stack);

1675: end if;
1676:
1677: exception
1678: when others then
1679: log('fnd_global.set_nls.13', sqlcode, dbms_utility.format_error_stack);
1680: end set_nls;
1681:
1682: --
1683: -- builds the conditions passed to fnd_product_initialization.

Line 1986: debugger(dbms_utility.format_call_stack);

1982: check_logging;
1983:
1984: if is_debugging then
1985: debugger('begin initialize');
1986: debugger(dbms_utility.format_call_stack);
1987: dump_context;
1988: end if;
1989:
1990: -- Store away the argument values passed in case needed later for a

Line 2508: sqlcode, dbms_utility.format_error_stack);

2504: dbms_sql.close_cursor(curs);
2505: end if;
2506: in_fnd_init_sql := FALSE;
2507: throw('fnd_global.initialize[fnd_init_sql]',
2508: sqlcode, dbms_utility.format_error_stack);
2509: end;
2510:
2511: -- Bug 12875860 - mskees - HR security group profile control
2512: --

Line 2694: debugger(dbms_utility.format_call_stack);

2690: if (FND_GLOBAL.ORG_ID <> to_number(value)) then
2691: if is_debugging then
2692: -- This will indicate the caller of this API when an attempt to
2693: -- change the org context is made.
2694: debugger(dbms_utility.format_call_stack);
2695: -- This indicates what the org context is being changed to, and what
2696: -- it is currently set to.
2697: debugger('Org Context change:New ORG_ID='||value||' FND_GLOBAL.ORG_ID='
2698: ||FND_GLOBAL.ORG_ID);

Line 2726: sqlcode, dbms_utility.format_error_stack);

2722: initialize(FND_CONST.SECURITY_GROUP_ID, to_char(security_group_id));
2723: exception
2724: when others then
2725: log('fnd_global.set_security_group_id_context',
2726: sqlcode, dbms_utility.format_error_stack);
2727: end;
2728:
2729: --
2730: --