DBA Data[Home] [Help]

APPS.OKS_RENCPY_PVT dependencies on IBY_FNDCPT_TRXN_PUB

Line 4266: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.trxnextension_rec_type;

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
4270:

Line 4321: FND_LOG.string(FND_LOG.level_statement, l_mod_name || '.create_trxn_extn', 'calling IBY_FNDCPT_TRXN_PUB.create_transaction_extension, p_payer.party_id='||l_party_id||' ,p_payer.cust_account_id='||l_cust_account_id||

4317: l_trxn_attribs.order_id := p_order_id; --contract id or line id
4318: l_trxn_attribs.trxn_ref_number1 := to_char(SYSDATE,'ddmmyyyyhhmmssss'); --to make order id and trx ref 1 unique
4319:
4320: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
4321: FND_LOG.string(FND_LOG.level_statement, l_mod_name || '.create_trxn_extn', 'calling IBY_FNDCPT_TRXN_PUB.create_transaction_extension, p_payer.party_id='||l_party_id||' ,p_payer.cust_account_id='||l_cust_account_id||
4322: ' ,p_instr_assignment='||l_instr_assignment||' ,p_trxn_attribs.originating_application_id=515'||' ,p_trxn_attribs.order_id='||p_order_id);
4323: END IF;
4324:
4325:

Line 4326: IBY_FNDCPT_TRXN_PUB.create_transaction_extension(

4322: ' ,p_instr_assignment='||l_instr_assignment||' ,p_trxn_attribs.originating_application_id=515'||' ,p_trxn_attribs.order_id='||p_order_id);
4323: END IF;
4324:
4325:
4326: IBY_FNDCPT_TRXN_PUB.create_transaction_extension(
4327: p_api_version => 1.0,
4328: p_init_msg_list => FND_API.G_FALSE,
4329: p_commit => FND_API.G_FALSE,
4330: x_return_status => x_return_status,

Line 4342: FND_LOG.string(FND_LOG.level_statement, l_mod_name || '.create_trxn_extn', 'after call to IBY_FNDCPT_TRXN_PUB.create_transaction_extension, x_return_status='||x_return_status||' ,x_entity_id='||x_trx_ext_id||

4338: x_entity_id => x_trx_ext_id,
4339: x_response => l_response);
4340:
4341: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
4342: FND_LOG.string(FND_LOG.level_statement, l_mod_name || '.create_trxn_extn', 'after call to IBY_FNDCPT_TRXN_PUB.create_transaction_extension, x_return_status='||x_return_status||' ,x_entity_id='||x_trx_ext_id||
4343: ' ,result_code='||l_response.result_code||' ,result_category='||l_response.result_category||' ,result_message='||l_response.result_message);
4344: END IF;
4345:
4346: IF x_return_status = FND_API.g_ret_sts_unexp_error THEN