DBA Data[Home] [Help]

APPS.OKS_QA_DATA_INTEGRITY dependencies on FND_MSG_PUB

Line 3137: FND_MSG_PUB.ADD;

3133: FND_MESSAGE.set_token('PROG_NAME', G_PKG_NAME || '.' || l_api_name);
3134: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
3135: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.input_validation', FALSE);
3136: END IF;
3137: FND_MSG_PUB.ADD;
3138: RAISE FND_API.g_exc_error;
3139: END IF;
3140:
3141: -- initialize return status

Line 4984: FND_MSG_PUB.add_exc_msg(

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));
4988: END IF;

Line 4994: FND_MSG_PUB.delete_msg(x_msg_count);

4990: RAISE G_ERROR_HALT_VALIDATION;
4991: END IF;
4992:
4993: --delete the 'AUTH_SUCCESS' message put on stack by IBY
4994: FND_MSG_PUB.delete_msg(x_msg_count);
4995:
4996: --put success message to display in QA result list for header
4997: OKC_API.set_message(
4998: p_app_name => G_APP_NAME,

Line 5051: FND_MSG_PUB.add_exc_msg(

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));
5055: END IF;

Line 5061: FND_MSG_PUB.delete_msg(x_msg_count);

5057: RAISE G_ERROR_HALT_VALIDATION;
5058: END IF;
5059:
5060: --delete the 'AUTH_SUCCESS' message put on stack by IBY
5061: FND_MSG_PUB.delete_msg(x_msg_count);
5062:
5063: --put success message to display in QA result list for line
5064: OKC_API.set_message(
5065: p_app_name => G_APP_NAME,

Line 5203: FND_MSG_PUB.delete_msg(x_msg_count);

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);
5204:
5205: --put success message to display in QA result list for header
5206: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
5207: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Authorization already exists so returning success for header');

Line 5221: FND_MSG_PUB.delete_msg(x_msg_count);

5217: -- which means that authorization does not exist and we need to create one
5218: -- authorization does not already exist so go ahead and create a new one
5219:
5220: --delete the 'INVALID_AUTHORIZATION' or 'INVALID_TXN_EXTENSION' message put on stack by IBY
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'

Line 5230: FND_MSG_PUB.add_exc_msg(

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));
5234: END IF;

Line 5333: FND_MSG_PUB.delete_msg(x_msg_count);

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);
5334:
5335: --put success message to display in QA result list for line currently being processed
5336: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
5337: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Authorization already exists so returning success for line');

Line 5351: FND_MSG_PUB.delete_msg(x_msg_count);

5347: -- which means that authorization does not exist and we need to create one
5348: -- authorization does not already exist so go ahead and create a new one
5349:
5350: --delete the 'INVALID_AUTHORIZATION' or 'INVALID_TXN_EXTENSION' message put on stack by IBY
5351: FND_MSG_PUB.delete_msg(x_msg_count);
5352:
5353: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
5354: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME || '.' || l_api_name,'Authorization does not exist so creating new one.');
5355: END IF;

Line 5367: FND_MSG_PUB.add_exc_msg(

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));
5371: END IF;