DBA Data[Home] [Help]

APPS.ASO_COPY_QUOTE_PVT dependencies on IBY_FNDCPT_TRXN_PUB

Line 5663: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.TrxnExtension_rec_type;

5659: l_payer IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
5660: lx_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;
5661: lx_assign_id number;
5662: lx_entity_id number;
5663: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.TrxnExtension_rec_type;
5664: l_qte_line_rec ASO_QUOTE_PUB.Qte_Line_Rec_Type;
5665: l_entities IBY_FNDCPT_COMMON_PUB.Id_tbl_type;
5666: l_payment_ref_number varchar2(240);
5667: lx_channel_attrib_uses IBY_FNDCPT_SETUP_PUB.PmtChannel_AttribUses_rec_type;

Line 5702: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');

5698: if (l_payment_rec.trxn_extension_id is not null or l_payment_rec.trxn_extension_id <> fnd_api.g_miss_num) then
5699:
5700: -- Check to see if cvv2 is mandatory or not
5701: IF aso_debug_pub.g_debug_flag = 'Y' THEN
5702: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');
5703: END IF;
5704:
5705: IBY_FNDCPT_SETUP_PUB.Get_Payment_Channel_Attribs
5706: (

Line 5717: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');

5713: x_channel_attrib_uses => lx_channel_attrib_uses,
5714: x_response => lx_response);
5715:
5716: IF aso_debug_pub.g_debug_flag = 'Y' THEN
5717: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');
5718: aso_debug_pub.add('Return Status: '||x_return_status, 1, 'Y');
5719: aso_debug_pub.add('cvv2 use: '||lx_channel_attrib_uses.Instr_SecCode_Use, 1, 'Y');
5720: aso_debug_pub.add('x_response.result_code: '|| to_char(lx_response.result_code), 1, 'Y');
5721: aso_debug_pub.add('x_response.result_category:'|| to_char(lx_response.result_category), 1, 'Y');

Line 5765: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');

5761: l_trxn_attribs.VoiceAuth_Code := null;
5762: l_trxn_attribs.Additional_Info := null;
5763:
5764: IF aso_debug_pub.g_debug_flag = 'Y' THEN
5765: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');
5766: aso_debug_pub.add('Instrument Assignment id: '|| l_payment_rec.instr_assignment_id, 1, 'Y');
5767: aso_debug_pub.add('payment id is : '|| l_payment_rec.payment_id,1,'Y');
5768: aso_debug_pub.add('quote line id is : '|| l_payment_rec.quote_line_id,1,'Y');
5769: aso_debug_pub.add('party_id is : '|| l_payer.party_id,1,'Y');

Line 5772: IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension

5768: aso_debug_pub.add('quote line id is : '|| l_payment_rec.quote_line_id,1,'Y');
5769: aso_debug_pub.add('party_id is : '|| l_payer.party_id,1,'Y');
5770: END IF;
5771:
5772: IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension
5773: (
5774: p_api_version => 1.0,
5775: p_init_msg_list => FND_API.G_FALSE,
5776: p_commit => FND_API.G_FALSE,

Line 5789: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');

5785: x_entity_id => lx_entity_id,
5786: x_response => lx_response);
5787:
5788: IF aso_debug_pub.g_debug_flag = 'Y' THEN
5789: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');
5790: aso_debug_pub.add('Return Status: '||x_return_status, 1, 'Y');
5791: aso_debug_pub.add('lx_entity_id: '||lx_entity_id, 1, 'Y');
5792: aso_debug_pub.add('x_response.result_code: '|| to_char(lx_response.result_code), 1, 'Y');
5793: aso_debug_pub.add('x_response.result_category:'|| to_char(lx_response.result_category), 1, 'Y');

Line 5800: FND_MESSAGE.Set_Token('API', 'IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', FALSE);

5796:
5797: if x_return_status <> fnd_api.g_ret_sts_success then
5798: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
5799: FND_MESSAGE.Set_Name('ASO', 'ERROR_RETURNED');
5800: FND_MESSAGE.Set_Token('API', 'IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', FALSE);
5801: FND_MSG_PUB.ADD;
5802: END IF;
5803: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
5804: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;