DBA Data[Home] [Help]

APPS.ARP_PROCESS_APPLICATION dependencies on ARP_PROCESS_CHARGEBACK

Line 2350: | arp_process_chargeback.validate_cb_reversal - Check if a charge |

2346: | |
2347: | SCOPE - PRIVATE |
2348: | |
2349: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED - |
2350: | arp_process_chargeback.validate_cb_reversal - Check if a charge |
2351: | back has any activity associated with it |
2352: | |
2353: | ARGUMENTS : IN: |
2354: | p_ra_id - Id of application to be reversed |

Line 2480: IF ( arp_process_chargeback.validate_cb_reversal( l_ct_id,

2476:
2477: --This function will check whether any activity is against the
2478: --chargeback
2479:
2480: IF ( arp_process_chargeback.validate_cb_reversal( l_ct_id,
2481: p_module_name,
2482: p_module_version) <> TRUE ) THEN
2483: IF PG_DEBUG in ('Y', 'C') THEN
2484: arp_debug.debug( 'validate_cb_reversal failed' );

Line 2649: IF ( arp_process_chargeback.validate_cb_reversal( l_ps_id,

2645: IF ( l_cb_count <> 0 ) THEN
2646: IF PG_DEBUG in ('Y', 'C') THEN
2647: arp_debug.debug( 'Inside l_cb_count <> 0' );
2648: END IF;
2649: IF ( arp_process_chargeback.validate_cb_reversal( l_ps_id,
2650: l_ass_cr_id, l_cb_count, p_module_name,
2651: p_module_version ) <> TRUE ) THEN
2652: IF PG_DEBUG in ('Y', 'C') THEN
2653: arp_debug.debug( 'validate_cb_reversal failed' );

Line 2759: | arp_process_chargeback.reverse_chargeback - Procedure to reverse |

2755: | |
2756: | SCOPE - PRIVATE |
2757: | |
2758: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED - |
2759: | arp_process_chargeback.reverse_chargeback - Procedure to reverse |
2760: | a chargeback |
2761: | arp_process_adjustments.reverse_adjustments- Procedure to reverse |
2762: | a adjustment |
2763: | arp_ps_util.get_closed_dates - Calculate and get closed dates |

Line 2968: arp_process_chargeback.reverse_chargeback(

2964: END IF;
2965: --
2966: -- reverse chargeback
2967: --
2968: arp_process_chargeback.reverse_chargeback(
2969: l_adj_rec.chargeback_customer_trx_id,
2970: p_reversal_gl_date, p_reversal_date,
2971: p_module_name, p_module_version );
2972: IF PG_DEBUG in ('Y', 'C') THEN

Line 8370: | arp_process_chargeback.reverse_chargeback - Procedure to reverse |

8366: | |
8367: | SCOPE - PRIVATE |
8368: | |
8369: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED - |
8370: | arp_process_chargeback.reverse_chargeback - Procedure to reverse |
8371: | a chargeback |
8372: | |
8373: | ARGUMENTS : IN: |
8374: | p_chargeback_customer_trx_id - chargeback customer trx id |

Line 8403: arp_process_chargeback.reverse_chargeback(

8399: END IF;
8400: --
8401: -- reverse chargeback
8402: -- For receipt chargeback,there is no adjustment associated with it
8403: arp_process_chargeback.reverse_chargeback(
8404: p_chargeback_customer_trx_id,
8405: p_reversal_gl_date,
8406: p_reversal_date,
8407: p_module_name,