DBA Data[Home] [Help]

APPS.OKS_TAX_UTIL_PVT dependencies on FND_MESSAGE

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

1700: --1. get hdr details from okc table and do basic id validation
1701: OPEN okc_hdr_csr(p_chr_id);
1702: FETCH okc_hdr_csr INTO l_okc_hdr_rec;
1703: IF (okc_hdr_csr%notfound) THEN
1704: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_INV_CONTRACT');
1705: FND_MESSAGE.set_token('CONTRACT_ID', p_chr_id);
1706: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1707: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.basic_validation', FALSE);
1708: END IF;

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

1701: OPEN okc_hdr_csr(p_chr_id);
1702: FETCH okc_hdr_csr INTO l_okc_hdr_rec;
1703: IF (okc_hdr_csr%notfound) THEN
1704: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_INV_CONTRACT');
1705: FND_MESSAGE.set_token('CONTRACT_ID', p_chr_id);
1706: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1707: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.basic_validation', FALSE);
1708: END IF;
1709: FND_MSG_PUB.ADD;

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

1900: OPEN get_operating_unit(G_RAIL_REC.ORG_ID);
1901: FETCH get_operating_unit INTO l_op_unit_name;
1902: CLOSE get_operating_unit;
1903:
1904: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_NO_TRX_TYPE');
1905: FND_MESSAGE.set_token('NAME', l_op_unit_name);
1906: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1907: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.no_trx_type', FALSE);
1908: END IF;

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

1901: FETCH get_operating_unit INTO l_op_unit_name;
1902: CLOSE get_operating_unit;
1903:
1904: FND_MESSAGE.set_name(G_OKS_APP_NAME, 'OKS_NO_TRX_TYPE');
1905: FND_MESSAGE.set_token('NAME', l_op_unit_name);
1906: IF (FND_LOG.level_error >= FND_LOG.g_current_runtime_level) THEN
1907: FND_LOG.message(FND_LOG.level_error, l_mod_name || '.no_trx_type', FALSE);
1908: END IF;
1909: FND_MSG_PUB.ADD;