DBA Data[Home] [Help]

APPS.AP_WEB_CREDIT_CARD_PKG dependencies on IBY_FNDCPT_SETUP_PUB

Line 50: p_card_instrument IBY_FNDCPT_SETUP_PUB.CREDITCARD_REC_TYPE;

46: ) return number IS
47: x_return_status VARCHAR2(4000);
48: x_msg_count NUMBER;
49: x_msg_data VARCHAR2(4000);
50: p_card_instrument IBY_FNDCPT_SETUP_PUB.CREDITCARD_REC_TYPE;
51: x_instr_id NUMBER;
52: x_response IBY_FNDCPT_COMMON_PUB.RESULT_REC_TYPE;
53:
54: begin

Line 56: iby_fndcpt_setup_pub.card_exists(1.0,NULL,

52: x_response IBY_FNDCPT_COMMON_PUB.RESULT_REC_TYPE;
53:
54: begin
55: -- return instrument id if card already exists in oracle payments
56: iby_fndcpt_setup_pub.card_exists(1.0,NULL,
57: x_return_status, x_msg_count, x_msg_data,
58: null , p_card_number, -- party id is null as we reference cards through ap_cards_all.employee_id
59: p_card_instrument, x_response);
60: if (x_return_status = 'S') then

Line 65: iby_fndcpt_setup_pub.update_card(1.0,NULL,'F',x_return_status,x_msg_count,x_msg_data, p_card_instrument,x_response);

61: x_instr_id := p_card_instrument.card_id;
62: -- Inserting an update_card to set the new expiration date if it is not null
63: IF (p_exp_date IS NOT NULL) THEN
64: p_card_instrument.Expiration_Date := p_exp_date;
65: iby_fndcpt_setup_pub.update_card(1.0,NULL,'F',x_return_status,x_msg_count,x_msg_data, p_card_instrument,x_response);
66: END IF;
67: if (x_instr_id is not null) then
68: return x_instr_id;
69: end if;

Line 83: iby_fndcpt_setup_pub.create_card(1.0,NULL,'F',x_return_status,x_msg_count,x_msg_data,

79: end if;
80: p_card_instrument.Info_Only_Flag := 'Y';
81: -- to register the invalid cards in IBY. Always set to 'Y' PA-DSS Implementation
82: p_card_instrument.Register_Invalid_Card := 'Y';
83: iby_fndcpt_setup_pub.create_card(1.0,NULL,'F',x_return_status,x_msg_count,x_msg_data,
84: p_card_instrument,x_instr_id,x_response);
85: if (x_return_status = 'S') then
86: return x_instr_id;
87: else