DBA Data[Home] [Help]

APPS.OKS_TAX_UTIL_PVT dependencies on FND_MESSAGE

Line 1656: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_INV_CONTRACT');

1652: --1. get hdr details from okc table and do basic id validation
1653: OPEN okc_hdr_csr(p_chr_id);
1654: FETCH okc_hdr_csr INTO l_okc_hdr_rec;
1655: IF (okc_hdr_csr%notfound) THEN
1656: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_INV_CONTRACT');
1657: FND_MESSAGE.set_token('CONTRACT_ID', p_chr_id);
1658: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1659: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.basic_validation', FALSE);
1660: END IF;

Line 1657: FND_MESSAGE.set_token('CONTRACT_ID', p_chr_id);

1653: OPEN okc_hdr_csr(p_chr_id);
1654: FETCH okc_hdr_csr INTO l_okc_hdr_rec;
1655: IF (okc_hdr_csr%notfound) THEN
1656: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_INV_CONTRACT');
1657: FND_MESSAGE.set_token('CONTRACT_ID', p_chr_id);
1658: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1659: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.basic_validation', FALSE);
1660: END IF;
1661: FND_MSG_PUB.ADD;

Line 1856: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_NO_TRX_TYPE');

1852: OPEN get_operating_unit(G_RAIL_REC.ORG_ID);
1853: FETCH get_operating_unit INTO l_op_unit_name;
1854: CLOSE get_operating_unit;
1855:
1856: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_NO_TRX_TYPE');
1857: FND_MESSAGE.set_token('NAME', l_op_unit_name);
1858: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1859: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.no_trx_type', FALSE);
1860: END IF;

Line 1857: FND_MESSAGE.set_token('NAME', l_op_unit_name);

1853: FETCH get_operating_unit INTO l_op_unit_name;
1854: CLOSE get_operating_unit;
1855:
1856: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_NO_TRX_TYPE');
1857: FND_MESSAGE.set_token('NAME', l_op_unit_name);
1858: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1859: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.no_trx_type', FALSE);
1860: END IF;
1861: FND_MSG_PUB.ADD;