DBA Data[Home] [Help]

PACKAGE: APPS.AP_WEB_AUDIT_HOOK

Source


1 PACKAGE AP_WEB_AUDIT_HOOK AUTHID CURRENT_USER AS
2 /* $Header: apwaudhs.pls 115.2 2002/11/14 22:59:09 kwidjaja noship $ */
3 
4 /*=======================================================================+
5  |  Declare PUBLIC Data Types and Variables
6  +=======================================================================*/
7 
8 /*========================================================================
9  | PUBLIC PROCEDURE audit_expense_report
10  |
11  | DESCRIPTION
12  |   This package contains customization hook used to extend / replace default
13  |   logic for selecting expense reports for audit.
14  |
15  | CALLED FROM PROCEDURES/FUNCTIONS (local to this package body)
16  |   Called from BC4J.
17  |
18  | CALLS PROCEDURES/FUNCTIONS (local to this package body)
19  |
20  | RETURNS
21  |
22  | PARAMETERS
23  |   p_expense_report_id           IN  Expense report header Identifier
24  |   p_audit_reason_code           OUT NOCOPY Audit reason code, when report is
25  |                                     audited this code will be stored
26  |                                     in table AP_AUD_AUDIT_REASONS.
27  |                                     If Null is passed, no row will be created.
28  |   p_audit_report                OUT NOCOPY TRUE if report needs to be audited, FALSE
29  |                                     otherwise. Null is considered as FALSE.
30  |   p_override_default_processing OUT NOCOPY TRUE if customization overrides default audit
31  |                                     processing, FALSE otherwise.
32  |                                     Null is considered as FALSE.
33  |
34  | MODIFICATION HISTORY
35  | Date                  Author            Description of Changes
36  | 25-May-2002           J Rautiainen      Created
37  |
38  *=======================================================================*/
39 PROCEDURE audit_expense_report(p_expense_report_id           IN  NUMBER,
40                                p_audit_reason_code           OUT NOCOPY VARCHAR2,
41                                p_audit_report                OUT NOCOPY BOOLEAN,
42                                p_override_default_processing OUT NOCOPY BOOLEAN);
43 
44 END AP_WEB_AUDIT_HOOK;