DBA Data[Home] [Help]

PACKAGE: APPS.AP_WEB_NOTES_PKG

Source


1 PACKAGE AP_WEB_NOTES_PKG AUTHID CURRENT_USER AS
2 /* $Header: apwnotes.pls 115.1 2004/06/14 23:07:50 rlangi noship $ */
3 
4 -----------------------------------------------------------------------------
5 /* These are the source object codes used for OIE Notes */
6 -----------------------------------------------------------------------------
7 c_ER_Object_Code          CONSTANT AP_NOTES.SOURCE_OBJECT_CODE%TYPE := 'OIE_EXPENSE_REPORT';
8 c_CCTrxn_Object_Code      CONSTANT AP_NOTES.SOURCE_OBJECT_CODE%TYPE := 'OIE_CREDIT_CARD_TXN';
9 
10 -----------------------------------------------------------------------------
11 /* These are the note types used for OIE Notes */
12 -----------------------------------------------------------------------------
13 c_Prep_Aud_Note_Type      CONSTANT AP_NOTES.NOTE_TYPE%TYPE := 'OIE_PREPARER_AUDITOR';
14 c_Aud_Aud_Note_Type       CONSTANT AP_NOTES.NOTE_TYPE%TYPE := 'OIE_AUDITOR_AUDITOR';
15 c_Dispute_Note_Type       CONSTANT AP_NOTES.NOTE_TYPE%TYPE := 'OIE_DISPUTE';
16 
17 
18 -----------------------------------------------------------------------------
19 /*Written By : Ron Langi
20   Purpose    : Creates an Expense Report Preparer to Auditor Note
21                used for Approval Communications.
22 */
23 -----------------------------------------------------------------------------
24 procedure CreateERPrepToAudNote (
25   p_report_header_id IN NUMBER,
26   p_note IN VARCHAR2,
27   p_lang IN VARCHAR2,
28   p_entered_by                  IN         NUMBER   := fnd_global.user_id
29 );
30 
31 
32 -----------------------------------------------------------------------------
33 /*Written By : Ron Langi
34   Purpose    : Deletes all Notes for an Expense Report object
35 */
36 -----------------------------------------------------------------------------
37 procedure DeleteERNotes (
38   p_src_report_header_id IN NUMBER
39 );
40 
41 
42 -----------------------------------------------------------------------------
43 /*Written By : Ron Langi
44   Purpose    : Copies all Notes for an Expense Report object
45 */
46 -----------------------------------------------------------------------------
47 procedure CopyERNotes (
48   p_src_report_header_id IN NUMBER,
49   p_tgt_report_header_id IN NUMBER
50 );
51 
52 
53 
54 END AP_WEB_NOTES_PKG;