DBA Data[Home] [Help]

PACKAGE: APPS.ZX_MIGRATE_TAX_DEF_COMMON

Source


1 PACKAGE zx_migrate_tax_def_common AUTHID CURRENT_USER AS
2 /* $Header: zxstaxdefmigs.pls 120.3 2005/10/30 01:52:23 appldev ship $ */
3 
4   -- ****** PUBLIC DATA STRUCTURES ******
5   TYPE loc_str_rec_type IS RECORD
6   (country_code              VARCHAR2(60),
7    id_flex_num               NUMBER,
8    seg_att_type1             VARCHAR2(30),
9    seg_att_type2             VARCHAR2(30),
10    seg_att_type3             VARCHAR2(30),
11    seg_att_type4             VARCHAR2(30),
12    seg_att_type5             VARCHAR2(30),
13    seg_att_type6             VARCHAR2(30),
14    seg_att_type7             VARCHAR2(30),
15    seg_att_type8             VARCHAR2(30),
16    seg_att_type9             VARCHAR2(30),
17    seg_att_type10            VARCHAR2(30),
18    tax_currency_code         VARCHAR2(15),
19    tax_precision             NUMBER(1),
20    tax_mau                   NUMBER,
21    rounding_rule_code        VARCHAR2(30),
22    allow_rounding_override   VARCHAR2(30),
23    org_id                    NUMBER,
24    tax_account_id            NUMBER(15)
25   );
26 
27   -- LOC_STR_REC is used to populate zx_taxes for US Sales Tax Migration
28   loc_str_rec                loc_str_rec_type;
29 
30 
31 -- ****** PUBLIC PROCEDURES ******
32 PROCEDURE load_results_for_ap (p_tax_id   NUMBER);
33 
34 PROCEDURE load_results_for_ar (p_tax_id   NUMBER);
35 
36 PROCEDURE  load_tax_comp_results_for_ar (p_tax_id NUMBER);
37 
38 PROCEDURE load_results_for_intercomp_ap (p_tax_id  NUMBER);
39 
40 PROCEDURE load_results_for_intercomp_ar (p_tax_id  NUMBER);
41 
42 PROCEDURE LOAD_REGIMES;
43 
44 
45 END zx_migrate_tax_def_common;