DBA Data[Home] [Help]

APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on ZX_TAX_TAXWARE_REV

Line 887: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration

883: -- Verify the integration with the version of Taxware product is certified.
884: Begin
885: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
886: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,
887: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration
888: with the version of Taxware product is certified' );
889: END IF;
890: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;
891: if l_rel_ret_code = ZX_TAXWARE_TAX_SERVICE_PKG.NOT_VALID_VERSION then

Line 890: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;

886: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,
887: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration
888: with the version of Taxware product is certified' );
889: END IF;
890: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;
891: if l_rel_ret_code = ZX_TAXWARE_TAX_SERVICE_PKG.NOT_VALID_VERSION then
892: Raise VERSION_ERROR;
893: end if;
894: Exception

Line 901: g_string :='Call to ZX_TAX_TAXWARE_REV.GET_RELEASE failed with exception';

897: FND_LOG.STRING(g_level_exception,
898: G_PKG_NAME||'.'||l_api_name,'Current Taxware version is imcompaitable with Oracle Apps');
899: END IF;
900: x_error_status := FND_API.G_RET_STS_UNEXP_ERROR;
901: g_string :='Call to ZX_TAX_TAXWARE_REV.GET_RELEASE failed with exception';
902: error_exception_handle(g_string);
903: x_messages_tbl:=g_messages_tbl;
904: return;
905: End;