DBA Data[Home] [Help]

APPS.JAI_AR_TCS_REP_PKG dependencies on JAI_CMN_RGM_RECORDING_PKG

Line 238: || by calling the function jai_cmn_rgm_recording_pkg.get_account

234:
235:
236: /*********************************************************************************************************
237: || Get the code combination id from the Organization/Regime Registration setup
238: || by calling the function jai_cmn_rgm_recording_pkg.get_account
239: *********************************************************************************************************/
240:
241: /*commented by csahoo for bug# 6401388
242: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,

Line 243: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'

239: *********************************************************************************************************/
240:
241: /*commented by csahoo for bug# 6401388
242: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
243: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'
244: );*/
245: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
246: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
247: p_organization_type => jai_constants.orgn_type_io ,

Line 245: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

241: /*commented by csahoo for bug# 6401388
242: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
243: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'
244: );*/
245: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
246: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
247: p_organization_type => jai_constants.orgn_type_io ,
248: p_organization_id => p_organization_id ,
249: p_location_id => p_location_id ,

Line 256: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'

252: );
253:
254: /*commented by csahoo for bug# 6401388
255: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
256: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'
257: );*/
258: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
259: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
260: p_organization_type => jai_constants.orgn_type_io ,

Line 258: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

254: /*commented by csahoo for bug# 6401388
255: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
256: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'
257: );*/
258: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
259: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
260: p_organization_type => jai_constants.orgn_type_io ,
261: p_organization_id => p_organization_id ,
262: p_location_id => p_location_id ,

Line 273: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account

269: IF v_int_liab_acc_ccid IS NULL OR
270: v_liab_acc_ccid IS NULL
271: THEN
272: /**********************************************************************************************************
273: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account
274: || This is an error condition and the current processing has to be stopped
275: **********************************************************************************************************/
276: /*commented by csahoo for bug# 6401388
277: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,

Line 278: pv_log_msg => 'Error in call to jai_cmn_rgm_recording_pkg.get_account'

274: || This is an error condition and the current processing has to be stopped
275: **********************************************************************************************************/
276: /*commented by csahoo for bug# 6401388
277: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
278: pv_log_msg => 'Error in call to jai_cmn_rgm_recording_pkg.get_account'
279: );*/
280: p_process_flag := jai_constants.expected_error;
281: p_process_message := 'Invalid Code combination ,please check the TCS Tax - Tax Accounting Setup';
282: return;

Line 513: || by calling the function jai_cmn_rgm_recording_pkg.get_account

509: LOOP
510:
511: /*********************************************************************************************************
512: || Get the code combination id from the Organization/Regime Registration setup
513: || by calling the function jai_cmn_rgm_recording_pkg.get_account
514: *********************************************************************************************************/
515:
516: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
517: p_regime_id => rec_cur_get_picking_taxes.regime_id ,

Line 516: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

512: || Get the code combination id from the Organization/Regime Registration setup
513: || by calling the function jai_cmn_rgm_recording_pkg.get_account
514: *********************************************************************************************************/
515:
516: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
517: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
518: p_organization_type => jai_constants.orgn_type_io ,
519: p_organization_id => p_organization_id ,
520: p_location_id => p_line_location_id ,

Line 525: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

521: p_tax_type => rec_cur_get_picking_taxes.tax_type ,
522: p_account_name => jai_constants.liability
523: );
524:
525: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
526: p_regime_id => rec_cur_get_picking_taxes.regime_id ,
527: p_organization_type => jai_constants.orgn_type_io ,
528: p_organization_id => p_organization_id ,
529: p_location_id => p_line_location_id ,

Line 861: || by calling the function jai_cmn_rgm_recording_pkg.get_account

857:
858:
859: /*********************************************************************************************************
860: || Get the code combination id from the Organization/Regime Registration setup
861: || by calling the function jai_cmn_rgm_recording_pkg.get_account
862: *********************************************************************************************************/
863:
864: /*commented by csahoo for bug# 6401388
865: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,

Line 866: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'

862: *********************************************************************************************************/
863:
864: /*commented by csahoo for bug# 6401388
865: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
866: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'
867: );*/
868: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
869: p_regime_id => rec_cur_get_inv_det.regime_id ,
870: p_organization_type => jai_constants.orgn_type_io ,

Line 868: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

864: /*commented by csahoo for bug# 6401388
865: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
866: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for int liab'
867: );*/
868: v_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
869: p_regime_id => rec_cur_get_inv_det.regime_id ,
870: p_organization_type => jai_constants.orgn_type_io ,
871: p_organization_id => rec_cur_get_inv_det.organization_id ,
872: p_location_id => rec_cur_get_inv_det.location_id ,

Line 879: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'

875: );
876:
877: /*commented by csahoo for bug# 6401388
878: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
879: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'
880: );*/
881: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
882: p_regime_id => rec_cur_get_inv_det.regime_id ,
883: p_organization_type => jai_constants.orgn_type_io ,

Line 881: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (

877: /*commented by csahoo for bug# 6401388
878: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
879: pv_log_msg => 'Before call to jai_cmn_rgm_recording_pkg.get_account for liab'
880: );*/
881: v_int_liab_acc_ccid := jai_cmn_rgm_recording_pkg.get_account (
882: p_regime_id => rec_cur_get_inv_det.regime_id ,
883: p_organization_type => jai_constants.orgn_type_io ,
884: p_organization_id => rec_cur_get_inv_det.organization_id ,
885: p_location_id => rec_cur_get_inv_det.location_id ,

Line 896: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account

892: IF v_int_liab_acc_ccid IS NULL OR
893: v_liab_acc_ccid IS NULL
894: THEN
895: /**********************************************************************************************************
896: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account
897: || This is an error condition and the current processing has to be stopped
898: **********************************************************************************************************/
899: /*commented by csahoo for bug# 6401388
900: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,

Line 901: pv_log_msg => 'Error in call to jai_cmn_rgm_recording_pkg.get_account'

897: || This is an error condition and the current processing has to be stopped
898: **********************************************************************************************************/
899: /*commented by csahoo for bug# 6401388
900: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,
901: pv_log_msg => 'Error in call to jai_cmn_rgm_recording_pkg.get_account'
902: );*/
903: p_process_flag := jai_constants.expected_error;
904: p_process_message := 'Invalid Code combination ,please check the TCS Tax - Tax Accounting Setup';
905: return;

Line 5683: || by calling the function jai_cmn_rgm_recording_pkg.get_account

5679:
5680:
5681: /*********************************************************************************************************
5682: || Get the code combination id from the Organization/Regime Registration setup
5683: || by calling the function jai_cmn_rgm_recording_pkg.get_account
5684: *********************************************************************************************************/
5685:
5686: ln_ccid_tax_type_tcs := jai_cmn_rgm_recording_pkg.get_account (
5687: p_regime_id => p_rgm_ref.regime_id ,

Line 5686: ln_ccid_tax_type_tcs := jai_cmn_rgm_recording_pkg.get_account (

5682: || Get the code combination id from the Organization/Regime Registration setup
5683: || by calling the function jai_cmn_rgm_recording_pkg.get_account
5684: *********************************************************************************************************/
5685:
5686: ln_ccid_tax_type_tcs := jai_cmn_rgm_recording_pkg.get_account (
5687: p_regime_id => p_rgm_ref.regime_id ,
5688: p_organization_type => jai_constants.orgn_type_io ,
5689: p_organization_id => p_rgm_ref.organization_id ,
5690: p_location_id => null ,

Line 5696: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account

5692: p_account_name => jai_constants.liability
5693: );
5694: IF ln_ccid_tax_type_tcs IS NULL THEN
5695: /**********************************************************************************************************
5696: || Code Combination id has been returned as null from the function jai_cmn_rgm_recording_pkg.get_account
5697: || This is an error condition and the current processing has to be stopped
5698: **********************************************************************************************************/
5699: /*commented by csahoo for bug# 6401388
5700: jai_cmn_debug_contexts_pkg.print ( pn_reg_id => ln_reg_id ,