DBA Data[Home] [Help]

APPS.ASO_COPY_QUOTE_PVT dependencies on IBY_FNDCPT_TRXN_PUB

Line 6971: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.TrxnExtension_rec_type;

6967: l_payer IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
6968: lx_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;
6969: lx_assign_id number;
6970: lx_entity_id number;
6971: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.TrxnExtension_rec_type;
6972: l_qte_line_rec ASO_QUOTE_PUB.Qte_Line_Rec_Type;
6973: l_entities IBY_FNDCPT_COMMON_PUB.Id_tbl_type;
6974: l_payment_ref_number varchar2(240);
6975: lx_channel_attrib_uses IBY_FNDCPT_SETUP_PUB.PmtChannel_AttribUses_rec_type;

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

7006: if (l_payment_rec.trxn_extension_id is not null or l_payment_rec.trxn_extension_id <> fnd_api.g_miss_num) then
7007:
7008: -- Check to see if cvv2 is mandatory or not
7009: IF aso_debug_pub.g_debug_flag = 'Y' THEN
7010: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');
7011: END IF;
7012:
7013: IBY_FNDCPT_SETUP_PUB.Get_Payment_Channel_Attribs
7014: (

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

7021: x_channel_attrib_uses => lx_channel_attrib_uses,
7022: x_response => lx_response);
7023:
7024: IF aso_debug_pub.g_debug_flag = 'Y' THEN
7025: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Get_Payment_Channel_Attribs ', 1, 'Y');
7026: aso_debug_pub.add('Return Status: '||x_return_status, 1, 'Y');
7027: aso_debug_pub.add('cvv2 use: '||lx_channel_attrib_uses.Instr_SecCode_Use, 1, 'Y');
7028: aso_debug_pub.add('x_response.result_code: '|| to_char(lx_response.result_code), 1, 'Y');
7029: aso_debug_pub.add('x_response.result_category:'|| to_char(lx_response.result_category), 1, 'Y');

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

7069: l_trxn_attribs.VoiceAuth_Code := null;
7070: l_trxn_attribs.Additional_Info := null;
7071:
7072: IF aso_debug_pub.g_debug_flag = 'Y' THEN
7073: aso_debug_pub.add('Before calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');
7074: aso_debug_pub.add('Instrument Assignment id: '|| l_payment_rec.instr_assignment_id, 1, 'Y');
7075: aso_debug_pub.add('payment id is : '|| l_payment_rec.payment_id,1,'Y');
7076: aso_debug_pub.add('quote line id is : '|| l_payment_rec.quote_line_id,1,'Y');
7077: aso_debug_pub.add('party_id is : '|| l_payer.party_id,1,'Y');

Line 7080: IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension

7076: aso_debug_pub.add('quote line id is : '|| l_payment_rec.quote_line_id,1,'Y');
7077: aso_debug_pub.add('party_id is : '|| l_payer.party_id,1,'Y');
7078: END IF;
7079:
7080: IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension
7081: (
7082: p_api_version => 1.0,
7083: p_init_msg_list => FND_API.G_FALSE,
7084: p_commit => FND_API.G_FALSE,

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

7093: x_entity_id => lx_entity_id,
7094: x_response => lx_response);
7095:
7096: IF aso_debug_pub.g_debug_flag = 'Y' THEN
7097: aso_debug_pub.add('after calling IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', 1, 'Y');
7098: aso_debug_pub.add('Return Status: '||x_return_status, 1, 'Y');
7099: aso_debug_pub.add('lx_entity_id: '||lx_entity_id, 1, 'Y');
7100: aso_debug_pub.add('x_response.result_code: '|| to_char(lx_response.result_code), 1, 'Y');
7101: aso_debug_pub.add('x_response.result_category:'|| to_char(lx_response.result_category), 1, 'Y');

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

7104:
7105: if x_return_status <> fnd_api.g_ret_sts_success then
7106: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
7107: FND_MESSAGE.Set_Name('ASO', 'ERROR_RETURNED');
7108: FND_MESSAGE.Set_Token('API', 'IBY_FNDCPT_TRXN_PUB.Create_Transaction_Extension ', FALSE);
7109: FND_MSG_PUB.ADD;
7110: END IF;
7111: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
7112: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;