DBA Data[Home] [Help]

APPS.AR_CUSTOM_PARAMS_HOOK_PKG dependencies on AR_CUSTOM_PARAMS_HOOK_PKG

Line 1: PACKAGE BODY AR_CUSTOM_PARAMS_HOOK_PKG AS

1: PACKAGE BODY AR_CUSTOM_PARAMS_HOOK_PKG AS
2: /*$Header: ARCUSPARB.pls 120.1 2010/08/03 20:19:25 mraymond noship $*/
3:
4: PG_DEBUG VARCHAR2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
5:

Line 49: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateCAOwnerAttributes()+');

45:
46: PROCEDURE populateCAOwnerAttributes AS
47: BEGIN
48: IF PG_DEBUG IN ('Y', 'C') THEN
49: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateCAOwnerAttributes()+');
50: END IF;
51: /*
52: User needs to write code here to populate Attribute columns
53: */

Line 55: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateCAOwnerAttributes()-');

51: /*
52: User needs to write code here to populate Attribute columns
53: */
54: IF PG_DEBUG IN ('Y', 'C') THEN
55: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateCAOwnerAttributes()-');
56: END IF;
57:
58:
59: END;

Line 83: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateContingencyAttributes()+');

79: PROCEDURE populateContingencyAttributes(
80: p_source IN VARCHAR2 DEFAULT 'ALL') AS
81: BEGIN
82: IF PG_DEBUG IN ('Y', 'C') THEN
83: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateContingencyAttributes()+');
84: END IF;
85:
86: /*
87: User needs to write code here to populate Attribute columns.

Line 99: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateContingencyAttributes()-');

95: the custom parameters you defined.
96: */
97:
98: IF PG_DEBUG IN ('Y', 'C') THEN
99: log('AR_CUSTOM_PARAMS_HOOK_PKG.populateContingencyAttributes()-');
100: END IF;
101:
102: END;
103:

Line 105: END AR_CUSTOM_PARAMS_HOOK_PKG;

101:
102: END;
103:
104:
105: END AR_CUSTOM_PARAMS_HOOK_PKG;