DBA Data[Home] [Help]

APPS.ZX_WRAPPER_PKG dependencies on ZX_API_PUB

Line 9: | to the ZX_API_PUB.redef_tax_classification_code.It is used to populate

5:
6:
7: /* ======================================================================
8: | PROCEDURE redef_tax_class_wrapper: This procedure acts as a wrapper
9: | to the ZX_API_PUB.redef_tax_classification_code.It is used to populate
10: | the ZX_API_PUB.def_tax_cls_code_info_rec_type and then pass this record
11: | as a parameter to redef_tax_classification_code.
12: * ======================================================================*/
13: PROCEDURE redef_tax_class_wrapper(

Line 10: | the ZX_API_PUB.def_tax_cls_code_info_rec_type and then pass this record

6:
7: /* ======================================================================
8: | PROCEDURE redef_tax_class_wrapper: This procedure acts as a wrapper
9: | to the ZX_API_PUB.redef_tax_classification_code.It is used to populate
10: | the ZX_API_PUB.def_tax_cls_code_info_rec_type and then pass this record
11: | as a parameter to redef_tax_classification_code.
12: * ======================================================================*/
13: PROCEDURE redef_tax_class_wrapper(
14: p_api_version number,

Line 63: l_tax_class_code_record ZX_API_PUB.def_tax_cls_code_info_rec_type;

59: x_msg_count out nocopy number ,
60: x_msg_data out nocopy varchar2,
61: x_return_status out nocopy varchar2
62: ) AS
63: l_tax_class_code_record ZX_API_PUB.def_tax_cls_code_info_rec_type;
64:
65: BEGIN
66:
67: l_tax_class_code_record.application_id := p_application_id ;

Line 108: ZX_API_PUB.redef_tax_classification_code

104: l_tax_class_code_record.tax_user_override_flag := p_tax_user_override_flag ;
105: l_tax_class_code_record.overridden_tax_cls_code := p_overridden_tax_cls_code;
106:
107:
108: ZX_API_PUB.redef_tax_classification_code
109: (
110: p_api_version ,
111: p_init_msg_list ,
112: p_commit ,

Line 127: | to the ZX_API_PUB.calculate_tax.It is used to populate

123: end;
124:
125: /* ======================================================================
126: | PROCEDURE calculate_tax_wrapper: This procedure acts as a wrapper
127: | to the ZX_API_PUB.calculate_tax.It is used to populate
128: | the ZX_API_PUB.transaction_rec_type and then pass this record
129: | as a parameter to calculate_tax.
130: * ======================================================================*/
131: PROCEDURE calculate_tax_wrapper

Line 128: | the ZX_API_PUB.transaction_rec_type and then pass this record

124:
125: /* ======================================================================
126: | PROCEDURE calculate_tax_wrapper: This procedure acts as a wrapper
127: | to the ZX_API_PUB.calculate_tax.It is used to populate
128: | the ZX_API_PUB.transaction_rec_type and then pass this record
129: | as a parameter to calculate_tax.
130: * ======================================================================*/
131: PROCEDURE calculate_tax_wrapper
132: ( p_api_version IN NUMBER,

Line 161: l_transaction_rec ZX_API_PUB.transaction_rec_type;

157: p_data_transfer_mode IN VARCHAR2,
158: x_doc_level_recalc_flag OUT NOCOPY VARCHAR2
159: ) AS
160:
161: l_transaction_rec ZX_API_PUB.transaction_rec_type;
162:
163: BEGIN
164:
165: l_transaction_rec.APPLICATION_ID :=p_application_id;

Line 184: ZX_API_PUB.calculate_tax(

180: l_transaction_rec.DOC_EVENT_STATUS :=p_doc_event_status;
181: l_transaction_rec.APPLICATION_DOC_STATUS :=p_application_doc_status;
182:
183:
184: ZX_API_PUB.calculate_tax(
185: p_api_version,p_init_msg_list ,
186: p_commit ,
187: p_validation_level ,
188: x_return_status ,