DBA Data[Home] [Help]

PACKAGE: APPS.AMW_ASSERTIONS_PKG

Source


1 PACKAGE AMW_ASSERTIONS_PKG AS
2 /* $Header: amwtasts.pls 120.0 2005/05/31 20:26:46 appldev noship $ */
3 -- ===============================================================
4 -- Function name
5 --          ACCT_ASSERTIONS_PRESENT
6 -- Purpose
7 -- 		    return non translated character (Y/N) to indicate the
8 --          selected(associated) Assertion
9 -- ===============================================================
10 FUNCTION ACCT_ASSERTIONS_PRESENT (
11     p_natural_account_id  IN         NUMBER,
12     p_assertion_code      IN         VARCHAR2
13 ) RETURN VARCHAR2;
14 
15 
16 -- ===============================================================
17 -- Function name
18 --          ACCT_ASSERTIONS_PRESENT_MEAN
19 -- Purpose
20 -- 		    return translated meaning (Yes/No) to indicate the
21 --          selected(associated) Compliance Environment
22 -- ===============================================================
23 FUNCTION ACCT_ASSERTIONS_PRESENT_MEAN (
24     p_natural_account_id  IN         NUMBER,
25     p_assertion_code      IN         VARCHAR2
26 ) RETURN VARCHAR2;
27 
28 -- ===============================================================
29 -- Procedure name
30 --          PROCESS_ACCT_ASSERTION_ASSOCS
31 -- Purpose
32 -- 		    Update the Account Assertion associations depending
33 --          on the specified p_select_flag .
34 -- ===============================================================
35 PROCEDURE PROCESS_ACCT_ASSERTION_ASSOCS (
36                    p_select_flag         IN         VARCHAR2,
37                    p_natural_account_id  IN         NUMBER,
38                    p_assertion_code      IN         VARCHAR2
39 );
40 
41 -- ----------------------------------------------------------------------
42 END  AMW_ASSERTIONS_PKG;