DBA Data[Home] [Help]

APPS.AR_IREC_PAYMENTS dependencies on ARP_UTIL

Line 135: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()+0');

131: l_actual_cc_check_digit number := 0; /* First digit of credit card, numbered from right to left */
132: l_mod10_check_digit number := 0; /* Check digit after mod10 algorithm is applied */
133: j number := 0; /* Product table index */
134: BEGIN
135: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()+0');
136:
137: SELECT lengthb(p_credit_card_number)
138: INTO l_len_credit_card_num
139: FROM dual;

Line 180: arp_util.debug('Card is Valid');

176:
177: -- If actual check digit and check_digit after mod10 don't match, the credit card is an invalid one.
178: IF ( l_mod10_check_digit <> l_actual_cc_check_digit)
179: THEN
180: arp_util.debug('Card is Valid');
181: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
182: return(0);
183: ELSE
184: arp_util.debug('Card is not Valid');

Line 181: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');

177: -- If actual check digit and check_digit after mod10 don't match, the credit card is an invalid one.
178: IF ( l_mod10_check_digit <> l_actual_cc_check_digit)
179: THEN
180: arp_util.debug('Card is Valid');
181: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
182: return(0);
183: ELSE
184: arp_util.debug('Card is not Valid');
185: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');

Line 184: arp_util.debug('Card is not Valid');

180: arp_util.debug('Card is Valid');
181: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
182: return(0);
183: ELSE
184: arp_util.debug('Card is not Valid');
185: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
186: return(1);
187: END IF;
188:

Line 185: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');

181: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
182: return(0);
183: ELSE
184: arp_util.debug('Card is not Valid');
185: arp_util.debug('ar_irec_payments_pkg.is_credit_card_number_valid()-');
186: return(1);
187: END IF;
188:
189: END is_credit_card_number_valid;

Line 1988: | arp_util.debug |

1984: | |
1985: | SCOPE - PUBLIC |
1986: | |
1987: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
1988: | arp_util.debug |
1989: | |
1990: | ARGUMENTS : IN: p_message - Message to be writted |
1991: | |
1992: | RETURNS : NONE |

Line 2041: | arp_util.debug |

2037: | |
2038: | SCOPE - PUBLIC |
2039: | |
2040: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
2041: | arp_util.debug |
2042: | |
2043: | ARGUMENTS : IN: p_msg_count - Number of messages from the API |
2044: | p_msg_data - Actual messages from the API |
2045: | |