DBA Data[Home] [Help]

APPS.JAI_OM_WDD_TRIGGER_PKG dependencies on JAI_RGM_THHOLD_PROC_PKG

Line 1898: JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES

1894: b. If yes, check the current threshold slab
1895: c. If threshold up (not null threshold_slab_id) then derrive the tax_category_id attached
1896: in the threshold setup for the slab
1897: d. Based on the tax category (p_threshold_tax_cat_id) defaul the additional taxes by calling
1898: JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES
1899: e. Added the call to jai_ar_tcs_rep_pkg.wsh_interim_accounting to do the interim accounting for TCS type of taxes.
1900:
1901: 28. 16/Apr/2007 Bgowrava for forward porting bug#5989740 11i Bug#5907436 - File version
1902: ENH : HANDLING SECONDARY AND HIGHER EDUCATION CESS

Line 1928: Modified the p_assessable_value parameter during call to JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES

1924: When comparing the register balance, the amount in INR is not compared. Instead the amount in the Fc is compared.
1925: This has been corrected by multiplying the v_tot_excise_amt with the currency conversion factor.
1926:
1927: 31. 16/10/2007 CSahoo for bug#6498072, File Version 120.8
1928: Modified the p_assessable_value parameter during call to JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES
1929: p_assessable_value => nvl(v_assessable_value * v_shipped_quantity, 0)
1930: Moved cursor uom_code to the start of the loop to fetch v_order_quantity_uom
1931:
1932: 32. 16/10/2008 CSahoo for bug#5189432, File Version 120.9.12010000.2

Line 2422: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Get threshold_slab_id. Before calling JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_SLAB_ID');*/ --commented by bgowrava for bug#5631784

2418: open c_get_regime_id (cp_regime_code => jai_constants.tcs_regime);
2419: fetch c_get_regime_id into ln_tcs_regime_id;
2420: close c_get_regime_id;
2421: /* Find out what is the current slab */
2422: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Get threshold_slab_id. Before calling JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_SLAB_ID');*/ --commented by bgowrava for bug#5631784
2423: jai_rgm_thhold_proc_pkg.get_threshold_slab_id
2424: (
2425: p_regime_id => ln_tcs_regime_id
2426: , p_organization_id => v_organization_id

Line 2423: jai_rgm_thhold_proc_pkg.get_threshold_slab_id

2419: fetch c_get_regime_id into ln_tcs_regime_id;
2420: close c_get_regime_id;
2421: /* Find out what is the current slab */
2422: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Get threshold_slab_id. Before calling JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_SLAB_ID');*/ --commented by bgowrava for bug#5631784
2423: jai_rgm_thhold_proc_pkg.get_threshold_slab_id
2424: (
2425: p_regime_id => ln_tcs_regime_id
2426: , p_organization_id => v_organization_id
2427: , p_party_type => jai_constants.party_type_customer

Line 2435: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_SLAB_ID');

2431: , p_threshold_slab_id => ln_threshold_slab_id
2432: , p_process_flag => lv_process_flag
2433: , p_process_message => lv_process_message
2434: );
2435: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_SLAB_ID');
2436: jai_cmn_debug_contexts_pkg.print (ln_reg_id,
2437: 'lv_process_flag =' ||lv_process_flag||chr(10)
2438: ||'lv_process_message =' ||lv_process_message
2439: ); */ --commented by bgowrava for bug#5631784

Line 2451: jai_rgm_thhold_proc_pkg.get_threshold_tax_cat_id

2447: end if;
2448:
2449: if ln_threshold_slab_id is not null then
2450: /* Threshold level is up. Surcharge needs to be defaulted , so find out the tax category based on the threshold slab */
2451: jai_rgm_thhold_proc_pkg.get_threshold_tax_cat_id
2452: (
2453: p_threshold_slab_id => ln_threshold_slab_id
2454: , p_org_id => v_org_id
2455: , p_threshold_tax_cat_id => ln_threshold_tax_cat_id

Line 2460: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_TAX_CAT_ID');

2456: , p_process_flag => lv_process_flag
2457: , p_process_message => lv_process_message
2458: );
2459:
2460: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.GET_THRESHOLD_TAX_CAT_ID');
2461: jai_cmn_debug_contexts_pkg.print (ln_reg_id
2462: ,'lv_process_flag =' ||lv_process_flag||chr(10)
2463: ||'lv_process_message =' ||lv_process_message
2464: ); */ --commented by bgowrava for bug#5631784

Line 2492: || The api jai_rgm_thhold_proc_pkg.default_thhold_taxes inserts lines as per the same specified in the TCS tax category

2488: and jtc.tax_type = jai_constants.tax_type_tcs;
2489:
2490: /*
2491: ||Call the helper method to default surcharge taxes on top of the SO taxes using the tax category
2492: || The api jai_rgm_thhold_proc_pkg.default_thhold_taxes inserts lines as per the same specified in the TCS tax category
2493: || into the JAI_OM_WSH_LINE_TAXES table
2494: */
2495:
2496: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Calling JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');*/ --commented by bgowrava for bug#5631784

Line 2496: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Calling JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');*/ --commented by bgowrava for bug#5631784

2492: || The api jai_rgm_thhold_proc_pkg.default_thhold_taxes inserts lines as per the same specified in the TCS tax category
2493: || into the JAI_OM_WSH_LINE_TAXES table
2494: */
2495:
2496: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Calling JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');*/ --commented by bgowrava for bug#5631784
2497:
2498: jai_rgm_thhold_proc_pkg.default_thhold_taxes
2499: (
2500: p_source_trx_id => ''

Line 2498: jai_rgm_thhold_proc_pkg.default_thhold_taxes

2494: */
2495:
2496: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Calling JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');*/ --commented by bgowrava for bug#5631784
2497:
2498: jai_rgm_thhold_proc_pkg.default_thhold_taxes
2499: (
2500: p_source_trx_id => ''
2501: , p_source_trx_line_id => v_delivery_detail_id
2502: , p_source_event => jai_constants.source_ttype_delivery

Line 2519: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');

2515: , p_process_flag => lv_process_flag
2516: , p_process_message => lv_process_message
2517: );
2518:
2519: /* jai_cmn_debug_contexts_pkg.print (ln_reg_id, 'Process Result for JAI_RGM_THHOLD_PROC_PKG.DEFAULT_THHOLD_TAXES');
2520: jai_cmn_debug_contexts_pkg.print (ln_reg_id
2521: ,'lv_process_flag =' ||lv_process_flag||chr(10)
2522: ||'lv_process_message =' ||lv_process_message
2523: ); */ --commented by bgowrava for bug#5631784