DBA Data[Home] [Help]

APPS.OKS_QA_DATA_INTEGRITY dependencies on IBY_FNDCPT_COMMON_PUB

Line 4741: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;

4737: l_payment_type VARCHAR2(30);
4738:
4739:
4740: l_payee_rec IBY_FNDCPT_TRXN_PUB.PayeeContext_rec_type;
4741: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
4742: l_auth_attribs IBY_FNDCPT_TRXN_PUB.AuthAttribs_rec_type;
4743: l_amount IBY_FNDCPT_TRXN_PUB.Amount_rec_type;
4744: l_auth_result IBY_FNDCPT_TRXN_PUB.AuthResult_rec_type;
4745: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;

Line 4745: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;

4741: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
4742: l_auth_attribs IBY_FNDCPT_TRXN_PUB.AuthAttribs_rec_type;
4743: l_amount IBY_FNDCPT_TRXN_PUB.Amount_rec_type;
4744: l_auth_result IBY_FNDCPT_TRXN_PUB.AuthResult_rec_type;
4745: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;
4746:
4747:
4748:
4749: G_SUCCESS_HALT_VALIDATION EXCEPTION;

Line 4808: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)

4804: IBY_FNDCPT_TRXN_PUB.Create_Authorization
4805: (p_api_version => 1.0
4806: , p_payee => l_payee_rec
4807: , p_payer => l_payer_rec
4808: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)
4809: , p_trxn_entity_id => l_oks_header_rec.trxn_extension_id
4810: , p_auth_attribs => l_auth_attribs
4811: , p_amount => l_amount
4812: , x_auth_result => l_auth_result

Line 4836: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

4832: x_return_status := OKC_API.G_RET_STS_ERROR;
4833:
4834:
4835: --also pick up IBY message in l_response and place onto standard FND message stack
4836: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
4837: FND_MSG_PUB.add_exc_msg(
4838: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
4839: p_procedure_name => 'Create_Authorization',
4840: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

Line 4876: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)

4872: IBY_FNDCPT_TRXN_PUB.Create_Authorization
4873: (p_api_version => 1.0
4874: , p_payee => l_payee_rec
4875: , p_payer => l_payer_rec
4876: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)
4877: , p_trxn_entity_id => l_oks_lines_rec.trxn_extension_id
4878: , p_auth_attribs => l_auth_attribs
4879: , p_amount => l_amount
4880: , x_auth_result => l_auth_result

Line 4903: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

4899: x_return_status := OKC_API.G_RET_STS_ERROR;
4900:
4901:
4902: --also pick up IBY message in l_response and place onto standard FND message stack
4903: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
4904: FND_MSG_PUB.add_exc_msg(
4905: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
4906: p_procedure_name => 'Create_Authorization',
4907: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

Line 5052: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN

5048: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Result_Message: '|| l_response.Result_Message);
5049: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'l_auth_result.auth_id: '|| l_auth_result.auth_id);
5050: END IF;
5051:
5052: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN
5053: --authorization already exists
5054:
5055: --delete the 'SUCCESS' message put on stack by IBY
5056: FND_MSG_PUB.delete_msg(x_msg_count);

Line 5078: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

5074: FND_MSG_PUB.delete_msg(x_msg_count);
5075:
5076: create_header_authorization;
5077:
5078: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5079: x_return_status := OKC_API.G_RET_STS_ERROR; --show IBY error message (should be in stack) in QA results UI
5080:
5081: --also pick up IBY message in l_response and place onto standard FND message stack
5082: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

Line 5082: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

5078: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5079: x_return_status := OKC_API.G_RET_STS_ERROR; --show IBY error message (should be in stack) in QA results UI
5080:
5081: --also pick up IBY message in l_response and place onto standard FND message stack
5082: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5083: FND_MSG_PUB.add_exc_msg(
5084: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
5085: p_procedure_name => 'Get_Authorization',
5086: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

Line 5182: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN

5178: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Result_Message: '|| l_response.Result_Message);
5179: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'l_auth_result.auth_id: '|| l_auth_result.auth_id);
5180: END IF;
5181:
5182: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN
5183: --authorization already exists
5184:
5185: --delete the 'SUCCESS' message put on stack by IBY
5186: FND_MSG_PUB.delete_msg(x_msg_count);

Line 5213: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

5209:
5210: create_line_authorization;
5211:
5212:
5213: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5214:
5215: --show IBY error message (should be in stack) in QA results UI
5216: x_return_status := OKC_API.G_RET_STS_ERROR;
5217:

Line 5219: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

5215: --show IBY error message (should be in stack) in QA results UI
5216: x_return_status := OKC_API.G_RET_STS_ERROR;
5217:
5218: --also pick up IBY message in l_response and place onto standard FND message stack
5219: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5220: FND_MSG_PUB.add_exc_msg(
5221: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
5222: p_procedure_name => 'Get_Authorization',
5223: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));