DBA Data[Home] [Help]

APPS.IBY_FNDCPT_SETUP_PUB dependencies on IBY_CREDITCARD_PKG

Line 1908: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;

1904: IF (lx_card_rec.Card_Id IS NULL) THEN
1905:
1906: -- validate billing address information
1907: IF (NOT Validate_CC_Billing(FND_API.G_FALSE,p_card_instrument)) THEN
1908: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;
1909: iby_fndcpt_common_pub.Prepare_Result
1910: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
1911: RETURN;
1912: END IF;

Line 1978: iby_creditcard_pkg.Create_Card

1974: ELSE
1975: iby_debug_pub.add('database registration',
1976: iby_debug_pub.G_LEVEL_INFO,l_dbg_mod);
1977:
1978: iby_creditcard_pkg.Create_Card
1979: (FND_API.G_FALSE,
1980: p_card_instrument.Owner_Id, p_card_instrument.Card_Holder_Name,
1981: p_card_instrument.Billing_Address_Id,
1982: p_card_instrument.Address_Type,

Line 2037: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;

2033: END IF;
2034:
2035: -- validate billing address information
2036: IF (NOT Validate_CC_Billing(FND_API.G_TRUE,p_card_instrument)) THEN
2037: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;
2038: iby_fndcpt_common_pub.Prepare_Result
2039: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2040: RETURN;
2041: END IF;

Line 2045: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_CCEXPIRY;

2041: END IF;
2042: -- validate expiration date
2043: IF (TRUNC(p_card_instrument.Expiration_Date,'DD') < TRUNC(SYSDATE,'DD'))
2044: THEN
2045: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_CCEXPIRY;
2046: iby_fndcpt_common_pub.Prepare_Result
2047: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2048: RETURN;
2049: END IF;

Line 2051: iby_creditcard_pkg.Update_Card

2047: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2048: RETURN;
2049: END IF;
2050:
2051: iby_creditcard_pkg.Update_Card
2052: (FND_API.G_FALSE, lx_card_rec.Card_Id, p_card_instrument.Owner_Id,
2053: p_card_instrument.Card_Holder_Name,
2054: p_card_instrument.Billing_Address_Id,
2055: p_card_instrument.Address_Type,

Line 2313: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;

2309: l_info_only := p_card_instrument.Info_Only_Flag;
2310: END IF;
2311: -- validate billing address information
2312: IF (NOT Validate_CC_Billing(FND_API.G_TRUE,p_card_instrument)) THEN
2313: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_ADDRESS;
2314: iby_fndcpt_common_pub.Prepare_Result
2315: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2316: RETURN;
2317: END IF;

Line 2319: iby_creditcard_pkg.Update_Card

2315: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2316: RETURN;
2317: END IF;
2318:
2319: iby_creditcard_pkg.Update_Card
2320: (FND_API.G_FALSE, p_card_instrument.Card_Id, p_card_instrument.Owner_Id,
2321: p_card_instrument.Card_Holder_Name,
2322: p_card_instrument.Billing_Address_Id,
2323: p_card_instrument.Address_Type,

Line 2593: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_CCNUMBER;

2589: lx_return_status, lx_msg_count, lx_msg_data, lx_cc_number
2590: );
2591:
2592: IF (lx_cc_number IS NULL) THEN
2593: x_response.Result_Code := iby_creditcard_pkg.G_RC_INVALID_CCNUMBER;
2594: iby_fndcpt_common_pub.Prepare_Result
2595: (l_prev_msg_count,x_return_status,x_msg_count,x_msg_data,x_response);
2596: RETURN;
2597: END IF;