DBA Data[Home] [Help]

APPS.OKS_RENCPY_PVT dependencies on IBY_FNDCPT_COMMON_PUB

Line 4267: l_payer IBY_FNDCPT_COMMON_PUB.payercontext_rec_type;

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

Line 4269: l_response IBY_FNDCPT_COMMON_PUB.result_rec_type;

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

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

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

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

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

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

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