DBA Data[Home] [Help]

APPS.OKS_QA_DATA_INTEGRITY dependencies on FND_MSG_PUB

Line 3068: FND_MSG_PUB.ADD;

3064: FND_MESSAGE.set_token('PROG_NAME', G_PKG_NAME || '.' || l_api_name);
3065: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
3066: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.input_validation', FALSE);
3067: END IF;
3068: FND_MSG_PUB.ADD;
3069: RAISE FND_API.g_exc_error;
3070: END IF;
3071:
3072: -- initialize return status

Line 4837: FND_MSG_PUB.add_exc_msg(

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

Line 4847: FND_MSG_PUB.delete_msg(x_msg_count);

4843: RAISE G_ERROR_HALT_VALIDATION;
4844: END IF;
4845:
4846: --delete the 'AUTH_SUCCESS' message put on stack by IBY
4847: FND_MSG_PUB.delete_msg(x_msg_count);
4848:
4849: --put success message to display in QA result list for header
4850: OKC_API.set_message(
4851: p_app_name => G_APP_NAME,

Line 4904: FND_MSG_PUB.add_exc_msg(

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

Line 4914: FND_MSG_PUB.delete_msg(x_msg_count);

4910: RAISE G_ERROR_HALT_VALIDATION;
4911: END IF;
4912:
4913: --delete the 'AUTH_SUCCESS' message put on stack by IBY
4914: FND_MSG_PUB.delete_msg(x_msg_count);
4915:
4916: --put success message to display in QA result list for line
4917: OKC_API.set_message(
4918: p_app_name => G_APP_NAME,

Line 5056: FND_MSG_PUB.delete_msg(x_msg_count);

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

Line 5074: FND_MSG_PUB.delete_msg(x_msg_count);

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

Line 5083: FND_MSG_PUB.add_exc_msg(

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

Line 5186: FND_MSG_PUB.delete_msg(x_msg_count);

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

Line 5204: FND_MSG_PUB.delete_msg(x_msg_count);

5200: -- which means that authorization does not exist and we need to create one
5201: -- authorization does not already exist so go ahead and create a new one
5202:
5203: --delete the 'INVALID_AUTHORIZATION' or 'INVALID_TXN_EXTENSION' message put on stack by IBY
5204: FND_MSG_PUB.delete_msg(x_msg_count);
5205:
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 does not exist so creating new one.');
5208: END IF;

Line 5220: FND_MSG_PUB.add_exc_msg(

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