DBA Data[Home] [Help]

APPS.HR_UTILITY dependencies on DBMS_OUTPUT

Line 77: DKERR 24-SEP-1999 Call dbms_output.enable(1000000) if trace dest

73: switch_logging_off()
74: changed != to <>
75: NBRISTOW 18-JUL-2001 Added read_trace_table to improve PYUPIP
76: performance.
77: DKERR 24-SEP-1999 Call dbms_output.enable(1000000) if trace dest
78: set appropriately
79: DHARRIS 23-AUG-1999 115.12
80: Performance changes for set_location which
81: comprise of:

Line 98: DKERR 12-May-1999 trace/set_location can use dbms_output.

94: TBATTOO 24-MAY-1999 changed chk_product_install to use hr_legislation_installations
95: MREID 18-MAY-1999 Added I to language code check for 11i
96: DKERR 13-MAY-1999 Replaced chr() with fnd_global.local_chr()
97: which is portable.
98: DKERR 12-May-1999 trace/set_location can use dbms_output.
99: scgrant 21-Apr-1999 Multi-radix changes.
100: DKERR 23-MAR-1999 Added set_trace_options and support for
101: writing to the rdbms trace file.
102: MREID 06-NOV-1998 Added language parameter to chk_product_install

Line 421: elsif g_trace_dest = 'DBMS_OUTPUT' then

417: fnd_message.raise_error ;
418:
419: end if;
420:
421: elsif g_trace_dest = 'DBMS_OUTPUT' then
422:
423: -- DK 14-MAY-2002 Truncate at 255 to prevent error
424: dbms_output.put_line(substr(trace_data,1,255));
425: --

Line 424: dbms_output.put_line(substr(trace_data,1,255));

420:
421: elsif g_trace_dest = 'DBMS_OUTPUT' then
422:
423: -- DK 14-MAY-2002 Truncate at 255 to prevent error
424: dbms_output.put_line(substr(trace_data,1,255));
425: --
426: elsif g_trace_dest = 'PAY_LOG' then
427: --
428: pay_proc_logging.PY_LOG_TXT(

Line 637: ELSIF hr_utility.g_trace_dest = 'DBMS_OUTPUT' THEN

633: -- Set a message so that the error is visible in forms.
634: fnd_message.set_name('PAY','HR_51356_UTILITY_PIPE_TIMEOUT');
635: fnd_message.raise_error ;
636: END IF;
637: ELSIF hr_utility.g_trace_dest = 'DBMS_OUTPUT' THEN
638: dbms_output.put_line(hr_utility.g_sl_mess_text);
639: --
640: ELSIF hr_utility.g_trace_dest = 'PAY_LOG' then
641: --

Line 638: dbms_output.put_line(hr_utility.g_sl_mess_text);

634: fnd_message.set_name('PAY','HR_51356_UTILITY_PIPE_TIMEOUT');
635: fnd_message.raise_error ;
636: END IF;
637: ELSIF hr_utility.g_trace_dest = 'DBMS_OUTPUT' THEN
638: dbms_output.put_line(hr_utility.g_sl_mess_text);
639: --
640: ELSIF hr_utility.g_trace_dest = 'PAY_LOG' then
641: --
642: pay_proc_logging.PY_LOG_TXT(

Line 1245: -- If the user has set dbms_output then

1241: then
1242: g_trace_dest := replace(p_options,l_trace_dest);
1243:
1244: -- DK 99-09-24
1245: -- If the user has set dbms_output then
1246: -- we set the buffer to be the maximum size. Ideally
1247: -- the buffer size would only be set if it was the default
1248: -- size but there doesn't seem to be an easy way of doing that
1249: --

Line 1250: if ( g_trace_dest = 'DBMS_OUTPUT' )

1246: -- we set the buffer to be the maximum size. Ideally
1247: -- the buffer size would only be set if it was the default
1248: -- size but there doesn't seem to be an easy way of doing that
1249: --
1250: if ( g_trace_dest = 'DBMS_OUTPUT' )
1251: then
1252: dbms_output.enable(1000000);
1253: end if;
1254:

Line 1252: dbms_output.enable(1000000);

1248: -- size but there doesn't seem to be an easy way of doing that
1249: --
1250: if ( g_trace_dest = 'DBMS_OUTPUT' )
1251: then
1252: dbms_output.enable(1000000);
1253: end if;
1254:
1255: end if;
1256: end;