DBA Data[Home] [Help]

APPS.HR_GENERAL dependencies on DBMS_DESCRIBE

Line 105: DBMS_DESCRIBE.DESCRIBE_PROCEDURE to

101: rvydyana 24/05/2000 115.27 Added new function get_xbg_profile
102: tcewis 29-FEB-00 115.21 added the function chk_maintain_tax
103: records.
104: arashid 13-OCT-00 115.22 Added a cover routine for:
105: DBMS_DESCRIBE.DESCRIBE_PROCEDURE to
106: compile an invalid package. The new
107: routine is called: DESCRIBE_PROCEDURE.
108: stlocke 23-JAN-2001 115.33 Added procedure init-fndload.
109: stlocke 08-FEB-2001 115.34 Procedure init-fndload removed.

Line 411: -- Cover routine for DBMS_DESCRIBE.DESCRIBE_PROCEDURE. If describe_procedure

407: -- ---------------------------------------------------------------------------
408: -- |----------------------< describe_procedure >-----------------------------|
409: -- ---------------------------------------------------------------------------
410: -- Description:
411: -- Cover routine for DBMS_DESCRIBE.DESCRIBE_PROCEDURE. If describe_procedure
412: -- fails because a package is not compiled, it will attempt to compile the
413: -- package and call DESCRIBE_PROCEDURE again. Other DESCRIBE_PROCEDURE errors
414: -- will be propagated upwards.
415: -- Notes:

Line 417: -- from DBMS_DESCRIBE.DESCRIBE_PROCEDURE will be returned. This procedure does

413: -- package and call DESCRIBE_PROCEDURE again. Other DESCRIBE_PROCEDURE errors
414: -- will be propagated upwards.
415: -- Notes:
416: -- If the attempted package compilation fails, the standard -20003 exception
417: -- from DBMS_DESCRIBE.DESCRIBE_PROCEDURE will be returned. This procedure does
418: -- not raise any exceptions other then the ones raised by DESCRIBE_PROCEDURE.
419: -- ---------------------------------------------------------------------------
420: procedure describe_procedure
421: (object_name in varchar2

Line 424: ,overload out nocopy dbms_describe.number_table

420: procedure describe_procedure
421: (object_name in varchar2
422: ,reserved1 in varchar2
423: ,reserved2 in varchar2
424: ,overload out nocopy dbms_describe.number_table
425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table

Line 425: ,position out nocopy dbms_describe.number_table

421: (object_name in varchar2
422: ,reserved1 in varchar2
423: ,reserved2 in varchar2
424: ,overload out nocopy dbms_describe.number_table
425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table

Line 426: ,level out nocopy dbms_describe.number_table

422: ,reserved1 in varchar2
423: ,reserved2 in varchar2
424: ,overload out nocopy dbms_describe.number_table
425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table

Line 427: ,argument_name out nocopy dbms_describe.varchar2_table

423: ,reserved2 in varchar2
424: ,overload out nocopy dbms_describe.number_table
425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table

Line 428: ,datatype out nocopy dbms_describe.number_table

424: ,overload out nocopy dbms_describe.number_table
425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table

Line 429: ,default_value out nocopy dbms_describe.number_table

425: ,position out nocopy dbms_describe.number_table
426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table

Line 430: ,in_out out nocopy dbms_describe.number_table

426: ,level out nocopy dbms_describe.number_table
427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table

Line 431: ,length out nocopy dbms_describe.number_table

427: ,argument_name out nocopy dbms_describe.varchar2_table
428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table
435: ,spare out nocopy dbms_describe.number_table

Line 432: ,precision out nocopy dbms_describe.number_table

428: ,datatype out nocopy dbms_describe.number_table
429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table
435: ,spare out nocopy dbms_describe.number_table
436: );

Line 433: ,scale out nocopy dbms_describe.number_table

429: ,default_value out nocopy dbms_describe.number_table
430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table
435: ,spare out nocopy dbms_describe.number_table
436: );
437:

Line 434: ,radix out nocopy dbms_describe.number_table

430: ,in_out out nocopy dbms_describe.number_table
431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table
435: ,spare out nocopy dbms_describe.number_table
436: );
437:
438:

Line 435: ,spare out nocopy dbms_describe.number_table

431: ,length out nocopy dbms_describe.number_table
432: ,precision out nocopy dbms_describe.number_table
433: ,scale out nocopy dbms_describe.number_table
434: ,radix out nocopy dbms_describe.number_table
435: ,spare out nocopy dbms_describe.number_table
436: );
437:
438:
439: end HR_GENERAL;