DBA Data[Home] [Help]

APPS.OKS_QA_DATA_INTEGRITY dependencies on IBY_FNDCPT_COMMON_PUB

Line 4888: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;

4884: l_payment_type VARCHAR2(30);
4885:
4886:
4887: l_payee_rec IBY_FNDCPT_TRXN_PUB.PayeeContext_rec_type;
4888: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
4889: l_auth_attribs IBY_FNDCPT_TRXN_PUB.AuthAttribs_rec_type;
4890: l_amount IBY_FNDCPT_TRXN_PUB.Amount_rec_type;
4891: l_auth_result IBY_FNDCPT_TRXN_PUB.AuthResult_rec_type;
4892: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;

Line 4892: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;

4888: l_payer_rec IBY_FNDCPT_COMMON_PUB.PayerContext_rec_type;
4889: l_auth_attribs IBY_FNDCPT_TRXN_PUB.AuthAttribs_rec_type;
4890: l_amount IBY_FNDCPT_TRXN_PUB.Amount_rec_type;
4891: l_auth_result IBY_FNDCPT_TRXN_PUB.AuthResult_rec_type;
4892: l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;
4893:
4894:
4895:
4896: G_SUCCESS_HALT_VALIDATION EXCEPTION;

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

4951: IBY_FNDCPT_TRXN_PUB.Create_Authorization
4952: (p_api_version => 1.0
4953: , p_payee => l_payee_rec
4954: , p_payer => l_payer_rec
4955: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)
4956: , p_trxn_entity_id => l_oks_header_rec.trxn_extension_id
4957: , p_auth_attribs => l_auth_attribs
4958: , p_amount => l_amount
4959: , x_auth_result => l_auth_result

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

4979: x_return_status := OKC_API.G_RET_STS_ERROR;
4980:
4981:
4982: --also pick up IBY message in l_response and place onto standard FND message stack
4983: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
4984: FND_MSG_PUB.add_exc_msg(
4985: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
4986: p_procedure_name => 'Create_Authorization',
4987: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

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

5019: IBY_FNDCPT_TRXN_PUB.Create_Authorization
5020: (p_api_version => 1.0
5021: , p_payee => l_payee_rec
5022: , p_payer => l_payer_rec
5023: , p_payer_equivalency => IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_FULL -- we need full instead of default G_PAYER_EQUIV_UPWARD (bug 5163778)
5024: , p_trxn_entity_id => l_oks_lines_rec.trxn_extension_id
5025: , p_auth_attribs => l_auth_attribs
5026: , p_amount => l_amount
5027: , x_auth_result => l_auth_result

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

5046: x_return_status := OKC_API.G_RET_STS_ERROR;
5047:
5048:
5049: --also pick up IBY message in l_response and place onto standard FND message stack
5050: IF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5051: FND_MSG_PUB.add_exc_msg(
5052: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
5053: p_procedure_name => 'Create_Authorization',
5054: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

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

5195: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Result_Message: '|| l_response.Result_Message);
5196: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'l_auth_result.auth_id: '|| l_auth_result.auth_id);
5197: END IF;
5198:
5199: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN
5200: --authorization already exists
5201:
5202: --delete the 'SUCCESS' message put on stack by IBY
5203: FND_MSG_PUB.delete_msg(x_msg_count);

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

5221: FND_MSG_PUB.delete_msg(x_msg_count);
5222:
5223: create_header_authorization;
5224:
5225: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5226: x_return_status := OKC_API.G_RET_STS_ERROR; --show IBY error message (should be in stack) in QA results UI
5227:
5228: --also pick up IBY message in l_response and place onto standard FND message stack
5229: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'

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

5225: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5226: x_return_status := OKC_API.G_RET_STS_ERROR; --show IBY error message (should be in stack) in QA results UI
5227:
5228: --also pick up IBY message in l_response and place onto standard FND message stack
5229: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5230: FND_MSG_PUB.add_exc_msg(
5231: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
5232: p_procedure_name => 'Get_Authorization',
5233: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));

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

5325: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Result_Message: '|| l_response.Result_Message);
5326: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'l_auth_result.auth_id: '|| l_auth_result.auth_id);
5327: END IF;
5328:
5329: IF x_return_status = OKC_API.G_RET_STS_SUCCESS AND l_response.Result_Code = IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN
5330: --authorization already exists
5331:
5332: --delete the 'SUCCESS' message put on stack by IBY
5333: FND_MSG_PUB.delete_msg(x_msg_count);

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

5356:
5357: create_line_authorization;
5358:
5359:
5360: ELSIF NVL(l_response.Result_Category,'x') <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5361:
5362: --show IBY error message (should be in stack) in QA results UI
5363: x_return_status := OKC_API.G_RET_STS_ERROR;
5364:

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

5362: --show IBY error message (should be in stack) in QA results UI
5363: x_return_status := OKC_API.G_RET_STS_ERROR;
5364:
5365: --also pick up IBY message in l_response and place onto standard FND message stack
5366: IF l_response.Result_Category <> IBY_FNDCPT_COMMON_PUB.G_RC_SUCCESS THEN --'SUCCESS'
5367: FND_MSG_PUB.add_exc_msg(
5368: p_pkg_name => 'IBY_FNDCPT_TRXN_PUB',
5369: p_procedure_name => 'Get_Authorization',
5370: p_error_text => SUBSTR(l_response.Result_Message ||' ('||l_response.Result_Code ||')',1,240));