DBA Data[Home] [Help]

APPS.ZX_TAXWARE_TAX_SERVICE_PKG dependencies on ZX_TAX_TAXWARE_REV

Line 895: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration

891: -- Verify the integration with the version of Taxware product is certified.
892: Begin
893: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
894: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,
895: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration
896: with the version of Taxware product is certified' );
897: END IF;
898: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;
899: if l_rel_ret_code = ZX_TAXWARE_TAX_SERVICE_PKG.NOT_VALID_VERSION then

Line 898: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;

894: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,
895: 'Calling ZX_TAX_TAXWARE_REV.GET_RELEASE Verify the integration
896: with the version of Taxware product is certified' );
897: END IF;
898: l_rel_ret_code := ZX_TAX_TAXWARE_REV.GET_RELEASE;
899: if l_rel_ret_code = ZX_TAXWARE_TAX_SERVICE_PKG.NOT_VALID_VERSION then
900: Raise VERSION_ERROR;
901: end if;
902: Exception

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

905: FND_LOG.STRING(g_level_exception,
906: G_PKG_NAME||'.'||l_api_name,'Current Taxware version is imcompaitable with Oracle Apps');
907: END IF;
908: x_error_status := FND_API.G_RET_STS_UNEXP_ERROR;
909: g_string :='Call to ZX_TAX_TAXWARE_REV.GET_RELEASE failed with exception';
910: error_exception_handle(g_string);
911: x_messages_tbl:=g_messages_tbl;
912: return;
913: End;