DBA Data[Home] [Help]

APPS.OKS_RENCPY_PVT dependencies on IBY_FNDCPT_TRXN_PUB

Line 4268: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.trxnextension_rec_type;

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

Line 4323: 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||

4319: l_trxn_attribs.order_id := p_order_id; --contract id or line id
4320: l_trxn_attribs.trxn_ref_number1 := to_char(SYSDATE,'ddmmyyyyhhmmssss'); --to make order id and trx ref 1 unique
4321:
4322: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
4323: 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||
4324: ' ,p_instr_assignment='||l_instr_assignment||' ,p_trxn_attribs.originating_application_id=515'||' ,p_trxn_attribs.order_id='||p_order_id);
4325: END IF;
4326:
4327:

Line 4328: IBY_FNDCPT_TRXN_PUB.create_transaction_extension(

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

Line 4344: 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||

4340: x_entity_id => x_trx_ext_id,
4341: x_response => l_response);
4342:
4343: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
4344: 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||
4345: ' ,result_code='||l_response.result_code||' ,result_category='||l_response.result_category||' ,result_message='||l_response.result_message);
4346: END IF;
4347:
4348: IF x_return_status = FND_API.g_ret_sts_unexp_error THEN