DBA Data[Home] [Help]

APPS.OKS_RENCPY_PVT dependencies on IBY_FNDCPT_COMMON_PUB

Line 4265: l_payer IBY_FNDCPT_COMMON_PUB.payercontext_rec_type;

4261: l_cust_account_id NUMBER;
4262: l_party_id NUMBER;
4263: l_instr_assignment NUMBER;
4264:
4265: l_payer IBY_FNDCPT_COMMON_PUB.payercontext_rec_type;
4266: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.trxnextension_rec_type;
4267: l_response IBY_FNDCPT_COMMON_PUB.result_rec_type;
4268:
4269: BEGIN

Line 4267: l_response IBY_FNDCPT_COMMON_PUB.result_rec_type;

4263: l_instr_assignment NUMBER;
4264:
4265: l_payer IBY_FNDCPT_COMMON_PUB.payercontext_rec_type;
4266: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.trxnextension_rec_type;
4267: l_response IBY_FNDCPT_COMMON_PUB.result_rec_type;
4268:
4269: BEGIN
4270:
4271: --log key input parameters

Line 4312: l_payer.payment_function := IBY_FNDCPT_COMMON_PUB.G_PMT_FUNCTION_CUST_PMT; --CUSTOMER_PAYMENT

4308: OPEN c_instr(p_old_trx_ext_id);
4309: FETCH c_instr INTO l_instr_assignment;
4310: CLOSE c_instr;
4311:
4312: l_payer.payment_function := IBY_FNDCPT_COMMON_PUB.G_PMT_FUNCTION_CUST_PMT; --CUSTOMER_PAYMENT
4313: l_payer.party_id := l_party_id;
4314: l_payer.cust_account_id := l_cust_account_id;
4315:
4316: l_trxn_attribs.originating_application_id := 515; --service contracts OKS

Line 4334: p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_UPWARD, --UPWARD

4330: x_return_status => x_return_status,
4331: x_msg_count => x_msg_count,
4332: x_msg_data => x_msg_data,
4333: p_payer => l_Payer,
4334: p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_UPWARD, --UPWARD
4335: p_pmt_channel => IBY_FNDCPT_SETUP_PUB.G_CHANNEL_CREDIT_CARD, --CREDIT_CARD
4336: p_instr_assignment => l_instr_assignment,
4337: p_trxn_attribs => l_trxn_attribs,
4338: x_entity_id => x_trx_ext_id,

Line 4353: IF (l_response.result_code <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS) THEN

4349: RAISE FND_API.g_exc_error;
4350: END IF;
4351:
4352: --also check the pmt api result code
4353: IF (l_response.result_code <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS) THEN
4354: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, l_response.result_message||'('||l_response.result_code||':'||l_response.result_category||')');
4355: RAISE FND_API.g_exc_error;
4356: END IF;
4357: