My Oracle Support Banner

Card Support For Discover Starting With '65' (Doc ID 2770599.1)

Last updated on APRIL 26, 2021

Applies to:

Oracle Communications Billing and Revenue Management - Version 7.4.0.1.0 and later
Information in this document applies to any platform.

Goal

As per the Discover BIN list ..valid pattern for Discover can start with '65'. fm_cust_pol_valid_payinfo is restricting it.

  case '6':
  /* Looks like PIN_CC_TYPE_DISCOVER */
  if ((strncmp(card, "6011", 4)) && (card[1] != '2') &&
  (card[1] != '3') && (card[1] != '8')) {
  ebufp->pin_err = PIN_ERR_BAD_VALUE;
  return;
  }
  if (card_length != 16) {
  ebufp->pin_err = PIN_ERR_BAD_VALUE;
  return;
  }
  break;

'65' is valid reg-ex as per the pin_cc_patterns.h file. Please let us know why this difference and can make code changes to support '65'? If yes, will there be any issues with dm_fusa identifying the card?
 

Solution

To view full details, sign in with your My Oracle Support account.

Don't have a My Oracle Support account? Click to get started!


In this Document
Goal
Solution
References


My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.