DBA Data[Home] [Help]

APPS.AP_TAX_ENGINE_PKG dependencies on AP_TAX_ENGINE_PKG

Line 1: package body AP_TAX_ENGINE_PKG as

1: package body AP_TAX_ENGINE_PKG as
2: /* $Header: aptxengb.pls 120.3 2005/10/06 18:13:53 hongliu noship $ */
3:
4: g_current_runtime_level NUMBER;
5: g_level_procedure CONSTANT NUMBER := FND_LOG.LEVEL_PROCEDURE;

Line 30: -- p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type

26: -- p_trx_header_id IN NUMBER,
27: -- p_trx_line_id IN NUMBER,
28: -- p_trx_shipment_id IN NUMBER,
29: -- p_calling_sequence IN VARCHAR2,
30: -- p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
31: --
32: -- RETURNS
33: -- A local tax_info_tbl is returned for Purchasing's requirement. Also a global
34: -- PL/SQL table g_tax_info_tbl stores all the tax information.

Line 70: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',

66: BEGIN
67: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
68: IF (g_level_procedure >= g_current_runtime_level ) THEN
69: FND_LOG.STRING(g_level_procedure,
70: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',
71: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');
72: END IF;
73: END calculate_tax;
74:

Line 71: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');

67: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
68: IF (g_level_procedure >= g_current_runtime_level ) THEN
69: FND_LOG.STRING(g_level_procedure,
70: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',
71: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');
72: END IF;
73: END calculate_tax;
74:
75:

Line 91: -- p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type

87: -- Used by Oracle Payables and Oracle Purchasing.
88: --
89: --
90: -- PARAMETERS
91: -- p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
92: -- p_application_name IN VARCHAR2
93: -- p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
94: --
95: -- RETURNS

Line 93: -- p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type

89: --
90: -- PARAMETERS
91: -- p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
92: -- p_application_name IN VARCHAR2
93: -- p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
94: --
95: -- RETURNS
96: -- A local tax_info_tbl is returned for Purchasing's requirement. Also a global
97: -- PL/SQL table g_tax_info_tbl stores all the tax information.

Line 103: ( p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type

99: -- HISTORY
100: -- Prabha Seshadri 15-NOV-02 Created
101: -----------------------------------------------------------------------
102: PROCEDURE calculate_tax
103: ( p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
104: , p_application_name IN VARCHAR2
105: , p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
106: )
107: IS

Line 105: , p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type

101: -----------------------------------------------------------------------
102: PROCEDURE calculate_tax
103: ( p_pdt_tax_info_tbl IN AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
104: , p_application_name IN VARCHAR2
105: , p_tax_info_tbl IN OUT NOCOPY AP_TAX_ENGINE_PKG.tax_info_rec_tbl_type
106: )
107: IS
108: BEGIN
109: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

Line 112: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',

108: BEGIN
109: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
110: IF (g_level_procedure >= g_current_runtime_level ) THEN
111: FND_LOG.STRING(g_level_procedure,
112: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',
113: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');
114: END IF;
115: END calculate_tax;
116:

Line 113: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');

109: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
110: IF (g_level_procedure >= g_current_runtime_level ) THEN
111: FND_LOG.STRING(g_level_procedure,
112: 'AP.PLSQL.AP_TAX_ENGINE_PKG.calculate_tax',
113: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.calculate_tax)');
114: END IF;
115: END calculate_tax;
116:
117:

Line 148: 'AP.PLSQL.AP_TAX_ENGINE_PKG.copy_record',

144: BEGIN
145: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
146: IF (g_level_procedure >= g_current_runtime_level ) THEN
147: FND_LOG.STRING(g_level_procedure,
148: 'AP.PLSQL.AP_TAX_ENGINE_PKG.copy_record',
149: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.copy_record)');
150: END IF;
151: END copy_record;
152:

Line 149: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.copy_record)');

145: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
146: IF (g_level_procedure >= g_current_runtime_level ) THEN
147: FND_LOG.STRING(g_level_procedure,
148: 'AP.PLSQL.AP_TAX_ENGINE_PKG.copy_record',
149: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.copy_record)');
150: END IF;
151: END copy_record;
152:
153:

Line 180: 'AP.PLSQL.AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec',

176: BEGIN
177: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
178: IF (g_level_procedure >= g_current_runtime_level ) THEN
179: FND_LOG.STRING(g_level_procedure,
180: 'AP.PLSQL.AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec',
181: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec)');
182: END IF;
183: END initialize_g_tax_info_rec;
184:

Line 181: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec)');

177: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
178: IF (g_level_procedure >= g_current_runtime_level ) THEN
179: FND_LOG.STRING(g_level_procedure,
180: 'AP.PLSQL.AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec',
181: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.initialize_g_tax_info_rec)');
182: END IF;
183: END initialize_g_tax_info_rec;
184:
185: ----------------------------------------------------------------------

Line 229: 'AP.PLSQL.AP_TAX_ENGINE_PKG.sum_tax_group_rate',

225: BEGIN
226: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
227: IF (g_level_procedure >= g_current_runtime_level ) THEN
228: FND_LOG.STRING(g_level_procedure,
229: 'AP.PLSQL.AP_TAX_ENGINE_PKG.sum_tax_group_rate',
230: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.sum_tax_group_rate)');
231: END IF;
232: END sum_tax_group_rate;
233:

Line 230: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.sum_tax_group_rate)');

226: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
227: IF (g_level_procedure >= g_current_runtime_level ) THEN
228: FND_LOG.STRING(g_level_procedure,
229: 'AP.PLSQL.AP_TAX_ENGINE_PKG.sum_tax_group_rate',
230: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.sum_tax_group_rate)');
231: END IF;
232: END sum_tax_group_rate;
233:
234: -----------------------------------------------------------------------

Line 275: 'AP.PLSQL.AP_TAX_ENGINE_PKG.offset_factor',

271: BEGIN
272: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
273: IF (g_level_procedure >= g_current_runtime_level ) THEN
274: FND_LOG.STRING(g_level_procedure,
275: 'AP.PLSQL.AP_TAX_ENGINE_PKG.offset_factor',
276: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.offset_factor)');
277: END IF;
278: END offset_factor;
279:

Line 276: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.offset_factor)');

272: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
273: IF (g_level_procedure >= g_current_runtime_level ) THEN
274: FND_LOG.STRING(g_level_procedure,
275: 'AP.PLSQL.AP_TAX_ENGINE_PKG.offset_factor',
276: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.offset_factor)');
277: END IF;
278: END offset_factor;
279:
280: -------------------------------------------------------------------------------

Line 297: 'AP.PLSQL.AP_TAX_ENGINE_PKG.get_amount',

293: BEGIN
294: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
295: IF (g_level_procedure >= g_current_runtime_level ) THEN
296: FND_LOG.STRING(g_level_procedure,
297: 'AP.PLSQL.AP_TAX_ENGINE_PKG.get_amount',
298: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.get_amount)');
299: END IF;
300: END get_amount;
301:

Line 298: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.get_amount)');

294: g_current_runtime_level := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
295: IF (g_level_procedure >= g_current_runtime_level ) THEN
296: FND_LOG.STRING(g_level_procedure,
297: 'AP.PLSQL.AP_TAX_ENGINE_PKG.get_amount',
298: 'Warning - obsolete code being referenced: AP_TAX_ENGINE_PKG.get_amount)');
299: END IF;
300: END get_amount;
301:
302: -------------------------------------------------------------------------------

Line 311: END AP_TAX_ENGINE_PKG;

307: BEGIN
308:
309: NULL;
310:
311: END AP_TAX_ENGINE_PKG;