DBA Data[Home] [Help]

APPS.ARP_STANDARD dependencies on STANDARD

Line 1: PACKAGE ARP_STANDARD AS

1: PACKAGE ARP_STANDARD AS
2: /* $Header: ARPLSTDS.pls 120.4 2003/10/22 20:53:30 mraymond ship $ */
3:
4: /*-------------------------------------------------------------------------+
5: | |

Line 102: | moved to arp_standard( public function ) so that it can be used in |

98: | FALSE - The input list was empty, and no word could be found. |
99: | |
100: | NOTES |
101: | Was originally written as part of the package: arp_flex but has been |
102: | moved to arp_standard( public function ) so that it can be used in |
103: | all software. |
104: | |
105: | HISTORY |
106: | 2/11/93 Nigel Smith Created |

Line 415: | Generate standard debug information sending it to dbms_output so that |

411: | enable_debug - Enable run time debugging |
412: | disable_debug - Disable run time debugging |
413: | |
414: | DESCRIPTION |
415: | Generate standard debug information sending it to dbms_output so that |
416: | the client tool can log it for the user. |
417: | |
418: | NOTE: As of 115.16 of this package, we no longer use dbms_output to
419: | route messages to log or screen. As of version 115.36, we now use

Line 424: | arp_standard.debug('arp_util_pkg.get_value()+', --> msg text

420: | FND_LOG routines to record the messages in the FND_LOG_MESSAGES table.
421: |
422: | The current version of the debug procedure works like this:
423: |
424: | arp_standard.debug('arp_util_pkg.get_value()+', --> msg text
425: | 'plsql', --> prefix (source)
426: | 'arp_util_pkg.get_value.begin', --> package name
427: | FND_LOG_LEVEL.PROCEDURE); --> FND constant
428: |

Line 432: | arp_standard.debug('arp_util_pkg.get_value()+');

428: |
429: | Now, in reality, only the first parameter is required and the others
430: | will be defaulted or determined based on content of the message.
431: |
432: | arp_standard.debug('arp_util_pkg.get_value()+');
433: |
434: | Both of the above examples will log the following message:
435: |
436: | module := ar.plsql.arp_util_pkg.get_value.begin

Line 452: | Here are sample uses of arp_standard.debug:

448: | DO NOT HAVE EXTRA SPACES WITHIN PARENS OR PROCEDURE NAMES
449: | (4) The word 'EXCEPTION' is interpreted as an
450: | FND_LOG.LEVEL_EXCEPTION message.
451: |
452: | Here are sample uses of arp_standard.debug:
453: |
454: | Typical entry/exit messages in plsql packages:
455: | arp_standard.debug('ar_rounding.correct_other_receivables()+');
456: |

Line 455: | arp_standard.debug('ar_rounding.correct_other_receivables()+');

451: |
452: | Here are sample uses of arp_standard.debug:
453: |
454: | Typical entry/exit messages in plsql packages:
455: | arp_standard.debug('ar_rounding.correct_other_receivables()+');
456: |
457: | Inline in .pld library:
458: | arp_standard.debug('arxtwmai_folder.validate(EVENT)-','resource');
459: |

Line 458: | arp_standard.debug('arxtwmai_folder.validate(EVENT)-','resource');

454: | Typical entry/exit messages in plsql packages:
455: | arp_standard.debug('ar_rounding.correct_other_receivables()+');
456: |
457: | Inline in .pld library:
458: | arp_standard.debug('arxtwmai_folder.validate(EVENT)-','resource');
459: |
460: | Inline in pro*C:
461: | arp_standard.debug('raaiad()+', 'src.autoinv');
462: |

Line 461: | arp_standard.debug('raaiad()+', 'src.autoinv');

457: | Inline in .pld library:
458: | arp_standard.debug('arxtwmai_folder.validate(EVENT)-','resource');
459: |
460: | Inline in pro*C:
461: | arp_standard.debug('raaiad()+', 'src.autoinv');
462: |
463: | Detail messages in plsql:
464: | arp_standard.debug('request_id = ' || l_request_id,
465: | 'plsql',

Line 464: | arp_standard.debug('request_id = ' || l_request_id,

460: | Inline in pro*C:
461: | arp_standard.debug('raaiad()+', 'src.autoinv');
462: |
463: | Detail messages in plsql:
464: | arp_standard.debug('request_id = ' || l_request_id,
465: | 'plsql',
466: | 'arp_util.get_gl_date');
467: |
468: | Specific exception/error logging:

Line 469: | arp_standard.debug('ERROR: Processed has failed',

465: | 'plsql',
466: | 'arp_util.get_gl_date');
467: |
468: | Specific exception/error logging:
469: | arp_standard.debug('ERROR: Processed has failed',
470: | 'plsql',
471: | 'arp_trx_validate.gl_date',
472: | 'FND_LOG.LEVEL_ERROR');
473: |

Line 734: | init_standard |

730:
731:
732: /*===========================================================================+
733: | PROCEDURE |
734: | init_standard |
735: | |
736: | DESCRIPTION |
737: | New public procedure init_standard defined for initialization |
738: | of arp_standard. This procedure may be called from other modules to run |

Line 737: | New public procedure init_standard defined for initialization |

733: | PROCEDURE |
734: | init_standard |
735: | |
736: | DESCRIPTION |
737: | New public procedure init_standard defined for initialization |
738: | of arp_standard. This procedure may be called from other modules to run |
739: | initialization whenever required. |
740: | |
741: | |

Line 738: | of arp_standard. This procedure may be called from other modules to run |

734: | init_standard |
735: | |
736: | DESCRIPTION |
737: | New public procedure init_standard defined for initialization |
738: | of arp_standard. This procedure may be called from other modules to run |
739: | initialization whenever required. |
740: | |
741: | |
742: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |

Line 752: PROCEDURE INIT_STANDARD(p_org_id number default null);

748: | |
749: +===========================================================================*/
750: --Begin anuj
751: /* Multi-Org Access Control Changes for SSA;Begin;anukumar;11/01/2002*/
752: PROCEDURE INIT_STANDARD(p_org_id number default null);
753: /* Multi-Org Access Control Changes for SSA;end;anukumar;11/01/2002*/
754: --end anuj
755:
756:

Line 760: END ARP_STANDARD;

756:
757: pg_prf_enable_debug VARCHAR2(10) := 'N';
758:
759:
760: END ARP_STANDARD;