DBA Data[Home] [Help]

APPS.JAI_CMN_MTAX_PKG dependencies on JAI_CMN_MTAX_PKG

Line 1: PACKAGE BODY jai_cmn_mtax_pkg AS

1: PACKAGE BODY jai_cmn_mtax_pkg AS
2: /* $Header: jai_cmn_mtax.plb 120.11.12010000.3 2008/09/23 09:47:47 jmeena ship $ */
3:
4: /*START, Added the following procedures by Bgowrava for the forward porting bug#5724855*/
5:

Line 60: jai_cmn_mtax_pkg.do_tax_redefaultation

56: begin
57:
58: if p_called_from is null then
59: /* Called from concurrent JAINMTCH */
60: jai_cmn_mtax_pkg.do_tax_redefaultation
61: (
62: p_err_buf => p_err_buf
63: ,p_ret_code => p_ret_code
64: ,p_org_id => p_org_id

Line 88: jai_cmn_mtax_pkg.process_tax_cat_update

84: );
85:
86: elsif p_called_from = 'JAINUCTG' then
87: /* Called from Update Tax Categories form */
88: jai_cmn_mtax_pkg.process_tax_cat_update
89: (
90: p_err_buf => p_err_buf
91: ,p_ret_code => p_ret_code
92: ,p_org_id => p_org_id

Line 292: v_log_file_name VARCHAR2(50); -- := 'jai_cmn_mtax_pkg.do_tax_redefaultation.log'; --Ramananda for File.Sql.35

288: v_enable_trace FND_CONCURRENT_PROGRAMS.enable_trace%TYPE;
289:
290:
291: -- used for log file Generation
292: v_log_file_name VARCHAR2(50); -- := 'jai_cmn_mtax_pkg.do_tax_redefaultation.log'; --Ramananda for File.Sql.35
293: v_utl_location VARCHAR2(512);
294: v_myfilehandle UTL_FILE.FILE_TYPE;
295:
296: --//~~~~~~~~ Declaration Section for Preprocessing of the variables ~~~~~~~~~~//

Line 898: 120.3 Aiyer R12 JAI A Changed for bug 4565665. Spec and body change in jai_cmn_mtax_pkg

894: 115.2 LGOPALSA IN60106 + Added Cess tax code
895: 4146708
896:
897: 115.3 hjujjuru 4245089 VAT Implelentationfnd_file.put_line(fnd_file.log,
898: 120.3 Aiyer R12 JAI A Changed for bug 4565665. Spec and body change in jai_cmn_mtax_pkg
899: --------------------------------------------------------------------------------------------------------------------------*/
900:
901: /* Ramananda for File.Sql.35 */
902: p_override_manual_taxes := nvl(pv_override_manual_taxes, jai_constants.no);

Line 917: v_log_file_name := 'jai_cmn_mtax_pkg.do_tax_redefaultation.log';

913: v_document_find_failed := 'N';
914: v_failed := 'N';
915: p_from_date := fnd_date.canonical_to_date(pv_from_date);
916: p_to_date := fnd_date.canonical_to_date(pv_to_date);
917: v_log_file_name := 'jai_cmn_mtax_pkg.do_tax_redefaultation.log';
918: /* Added below code for bug#7351304 by JMEENA*/
919: IF p_from_date IS NULL THEN
920: p_from_date := to_date('01/01/1940','DD-MM-YYYY');
921: END IF;

Line 1554: jai_cmn_mtax_pkg.del_taxes_after_validate

1550: WHERE line_focus_id = shipment_rec.line_focus_id;
1551:
1552: v_success := 5; -- means the override manual taxes is selected by user and all the attached taxes with the shipment are removed to default the new taxes
1553: ELSE
1554: jai_cmn_mtax_pkg.del_taxes_after_validate
1555: ( 'PO', shipment_rec.line_focus_id, v_line_location_id, shipment_rec.po_line_id,
1556: v_success, v_message
1557: );
1558: END IF;

Line 2117: jai_cmn_mtax_pkg.del_taxes_after_validate

2113: WHERE line_focus_id = releases_rec.line_focus_id;
2114:
2115: v_success := 5; -- means the override manual taxes is selected by user and all the attached taxes with the shipment are removed to default the new taxes
2116: ELSE
2117: jai_cmn_mtax_pkg.del_taxes_after_validate
2118: ( 'PO', releases_rec.line_focus_id, releases_rec.line_location_id, releases_rec.po_line_id,
2119: v_success, v_message
2120: );
2121: END IF;

Line 2686: jai_cmn_mtax_pkg.del_taxes_after_validate( 'REQUISITION', null, null, reqn_rec.requisition_line_id,

2682: WHERE requisition_line_id = reqn_rec.requisition_line_id;
2683:
2684: v_success := 5; -- means the override manual taxes is selected by user and all the attached taxes with the shipment are removed to default the new taxes
2685: ELSE
2686: jai_cmn_mtax_pkg.del_taxes_after_validate( 'REQUISITION', null, null, reqn_rec.requisition_line_id,
2687: v_success, v_message );
2688: END IF;
2689:
2690: IF v_debug THEN

Line 3203: jai_cmn_mtax_pkg.del_taxes_after_validate( 'SO', null, null, so_rec.line_id, v_success, v_message );

3199: WHERE line_id = so_rec.line_id;
3200:
3201: v_success := 5; -- means the override manual taxes is selected by user and all the attached taxes with the shipment are removed to default the new taxes
3202: ELSE
3203: jai_cmn_mtax_pkg.del_taxes_after_validate( 'SO', null, null, so_rec.line_id, v_success, v_message );
3204: END IF;
3205:
3206: IF v_debug THEN
3207: UTL_FILE.PUT_LINE(v_myfilehandle, 'v_success -> '||v_success||', v_message -> '||v_message);

Line 3682: lv_object_name CONSTANT VARCHAR2(61) := 'jai_cmn_mtax_pkg.del_taxes_after_validate'; /* Added by Ramananda for bug#4407165 */

3678:
3679: v_dflt_temp NUMBER;
3680: v_debug VARCHAR2(1); -- := 'N'; --Ramananda for File.Sql.35
3681:
3682: lv_object_name CONSTANT VARCHAR2(61) := 'jai_cmn_mtax_pkg.del_taxes_after_validate'; /* Added by Ramananda for bug#4407165 */
3683:
3684: BEGIN
3685:
3686: /*--------------------------------------------------------------------------------------------------------------------------

Line 3687: CHANGE HISTORY for FILENAME - jai_cmn_mtax_pkg.del_taxes_after_validate_p.sql

3683:
3684: BEGIN
3685:
3686: /*--------------------------------------------------------------------------------------------------------------------------
3687: CHANGE HISTORY for FILENAME - jai_cmn_mtax_pkg.del_taxes_after_validate_p.sql
3688: S.No Date Author and Details
3689: -------------------------------------------------
3690: 1. 30/12/2002 cbabu for EnhancementBug# 2427465, FileVersion# 615.1
3691: Procedure created to check whether the line passed to this procedure has no dependency problems related to

Line 3958: END jai_cmn_mtax_pkg;

3954: app_exception.raise_exception;
3955:
3956: END del_taxes_after_validate;
3957:
3958: END jai_cmn_mtax_pkg;