Error While doing reverse engineering on XML file

I am getting the error when I try to do reverse-engineering on a xml file.
I have set up topology like this:
JDBC Driver: com.sunnopsis.jdbc.driver.xml.SnpsXmlDriver
JDBC URL: jdbc:snps:xml?file=c:\Temp\hoy\CRM_CR_CURRENCY.xml&dtd=C:\Temp\hoy\ServiciosSerivaConsultasTypes0.xsd
The XSD file:
<?xml version = '1.0' encoding = 'UTF-8'?>
<xs:schema xmlns:s3="http://www.openuri.org/2006/12/wsdl/upgradedJWS" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://co/com/bancodecredito/eai/serviciosLinea/seriva" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="" targetNamespace="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl" attributeFormDefault="unqualified" elementFormDefault="qualified">
<xs:element name="indicadoresResponse">
<xs:complexType>
<xs:sequence>
     <xs:element name="WS_ResultadoConsultaIndicadores">
          <xs:complexType>
               <xs:sequence>
                    <xs:element name="Error" type="xs:string"/>
                    <xs:element name="Descripcion" type="xs:string"/>
                    <xs:element name="indicadores" maxOccurs="unbounded" minOccurs="0">
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="fecha" type="xs:string"/>
<xs:element name="descripcion" type="xs:string"/>
<xs:element name="tipoIndicador" type="xs:int"/>
<xs:element name="codigoIndicador" type="xs:int"/>
<xs:element name="codigoVertice" type="xs:int"/>
<xs:element name="plazo" type="xs:int"/>
<xs:element name="valor" type="xs:double"/>
<xs:element name="comportamiento" type="xs:int"/>
<xs:element name="formato" type="xs:int"/>
                         </xs:sequence>
                         </xs:complexType>
                    </xs:element>
               </xs:sequence>
          </xs:complexType>
     </xs:element>
</xs:sequence>      
</xs:complexType>
</xs:element>
</xs:schema>
and the xml file:
<?xml version = '1.0' encoding = 'UTF-8'?>
<m:indicadoresResponse xmlns:m="http://co/com/bancodecredito/eai/serviciosLinea/seriva">
<ns0:WS_ResultadoConsultaIndicadores xmlns:ns0="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl">
<ns0:Error>0</ns0:Error>
<ns0:Descripcion>Transacción exitosa</ns0:Descripcion>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>312</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>COMPRA (BID) UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>313</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VENTA (ASK) UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>314</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>BID BANCO REPUBLICA EUR/EUR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>396</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.4367</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>ASK BANCO REPUBLICA EUR/EUR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>397</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.4367</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>TRM BANCO REPUBLICA EUR/EUR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>398</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.4367</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>BID BANCO REPUBLICA UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>432</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>ASK BANCO REPUBLICA UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>433</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>TRM BANCO REPUBLICA UVR/UVR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>434</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>196.9975</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>BID BANCO REPUBLICA USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>390</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1800.7300</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>ASK BANCO REPUBLICA USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>391</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1801.2100</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>TRM BANCO REPUBLICA USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>395</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1800.9700</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) EUR/EUR</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>241</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.4267</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>246</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>6.4573</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>251</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>4.3000</ns0:valor>
<ns0:comportamiento>0</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>256</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>0.9913</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>261</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>12.4332</ns0:valor>
<ns0:comportamiento>1</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>272</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>77.2692</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) GBP/GBP</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>277</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.6341</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>282</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>5.2216</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
<ns0:indicadores>
<ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
<ns0:descripcion>VALORACION (TRM VIGENTE) AUD/AUD</ns0:descripcion>
<ns0:tipoIndicador>3</ns0:tipoIndicador>
<ns0:codigoIndicador>340</ns0:codigoIndicador>
<ns0:codigoVertice>0</ns0:codigoVertice>
<ns0:plazo>0</ns0:plazo>
<ns0:valor>1.0198</ns0:valor>
<ns0:comportamiento>2</ns0:comportamiento>
<ns0:formato>3</ns0:formato>
</ns0:indicadores>
</ns0:WS_ResultadoConsultaIndicadores>
</m:indicadoresResponse>
When I try do reverse engineering I get:
java.sql.SQLException: class java.sql.SQLException
com.sunopsis.tools.core.exception.SnpsRuntimeException: ODI-40798 Tipo Desconocido: {0}element
What is the issue ?
When I change the xml file , and I remove the namespaces, so that xml file is changed like this:
<?xml version = '1.0' encoding = 'UTF-8'?>
<indicadoresResponse >
<WS_ResultadoConsultaIndicadores >
<Error>0</Error>
<Descripcion>Transacción exitosa</Descripcion>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>312</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>COMPRA (BID) UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>313</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VENTA (ASK) UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>314</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>BID BANCO REPUBLICA EUR/EUR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>396</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.4367</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>ASK BANCO REPUBLICA EUR/EUR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>397</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.4367</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>TRM BANCO REPUBLICA EUR/EUR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>398</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.4367</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>BID BANCO REPUBLICA UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>432</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>ASK BANCO REPUBLICA UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>433</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>TRM BANCO REPUBLICA UVR/UVR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>434</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>196.9975</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>BID BANCO REPUBLICA USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>390</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1800.7300</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>ASK BANCO REPUBLICA USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>391</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1801.2100</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>TRM BANCO REPUBLICA USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>395</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1800.9700</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) EUR/EUR</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>241</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.4267</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>246</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>6.4573</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>251</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>4.3000</valor>
<comportamiento>0</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>256</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>0.9913</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>261</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>12.4332</valor>
<comportamiento>1</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>272</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>77.2692</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) GBP/GBP</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>277</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.6341</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>282</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>5.2216</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
<indicadores>
<fecha>2011-08-10 00:00:00.0</fecha>
<descripcion>VALORACION (TRM VIGENTE) AUD/AUD</descripcion>
<tipoIndicador>3</tipoIndicador>
<codigoIndicador>340</codigoIndicador>
<codigoVertice>0</codigoVertice>
<plazo>0</plazo>
<valor>1.0198</valor>
<comportamiento>2</comportamiento>
<formato>3</formato>
</indicadores>
</WS_ResultadoConsultaIndicadores>
</indicadoresResponse>
It works!!!! I can do reverse engineering....What is the issue? I am running everthing with agent as Local
I really appreciate any hints.
Thanks in advance,
Deibys

Hi,
Try specifying the "re" (Root Element) parameter in the URL. For example re=indicadoresResponse
If it still fails could you post the full java error stack?
Good luck!
Jose

Similar Messages

  • Getting Error while doing Reverse Engineering Processes.

    Hi all,
    I am new to ODI, i tried ODI with SAP ABAP, after i my all settings after doing reverse Engineer Processes, I cant able to see the Metadata browser while checking Log i am getting the below given error.
    ODI-1217: Session Sap ERP Source (27001) fails with return code 7000.
    ODI-1226: Step Sap ERP Source fails after 1 attempt(s).
    ODI-1229: An error occurred while performing a Reverse operation on model code SAP_ERP_SOURCE.
    Caused By: org.apache.bsf.BSFException: BeanShell script error: Sourced file: inline evaluation of: ``//////////////////////////////////////////////////////////////////////////////// . . . '' : Class: DestinationDataProvider not found in namespace : at Line: 275 : in file: inline evaluation of: ``//////////////////////////////////////////////////////////////////////////////// . . . '' : DestinationDataProvider
    BSF info: Create Java Classes at line: 0 column: columnNo
    Pl. help me to come out from this error.
    bdharanr

    Hi,
    Thanks for the reply.
    I am trying to reverse SAP tables. Initially the Reversal process stuck at Set MetaData step. I stopped the session and restarted it then Set MetaData completed successfully but Set FlexFields give the error.
    Any idea?
    Regards,
    Arsalan.

  • Error in Reverse Engineering an XML file

    I am tring to set up ODI to read and XML file and post it to a DB.
    I am using Oracle Data Integrator 10.1.3.5
    I have set up the Connection in the Topology Manager and when I ran the Test it returned OK.
    I went to the Model tab in the Designer and tried to Reverse engineer the file. I followed the instruction int he User's Guide but I get an error:
    The Technology or the Driver used doesn not support Reverse Engineering. The User's guide says you can do it, but Designer tells me I can't.
    Has anyone received this error before and how can i get around it.
    I am using:
    com.sunopsis.jdbc.driver.xml.SnpsXmlDriver
    as the JDBC Driver. THat is the one used in the guide and example.
    JDBC URL:
    jdbc:snps:xml?f=c:\OraHome_1\Oracledi\MercuryGate\MGTransImpTemplatev1.0.1.xml&re=MercuryGate&ro=true&case_sens=true&s=MercGate
    Any help will be appreciated.

    Try the Oracle Data Integrator Forum
    Data Integrator
    Edited by: Johnreardon on 13-Jan-2011 05:34

  • Error  while export data from a xml file to an relational table

    Hi,
    I am Creating an ODI Project: Developing an ODI XML to Database Transformation Using Interface with ODI Constraint following this link
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/odi_project_xml-to-table/odi_project_xml-to-table.htm
    This project executed successfully with some warning.*Target Table is automatically created in database and also populated with data*.But when I right-click Target Datastore(in Mapping Tab of the Interface), and then select Data to View Data that needs to be inserted in the target table. I get some error like this:-
    Execution of Query Failed.
    Details:-
    See com.borland.dx.dataset.DataSetException error code: BASE+62
    com.borland.dx.dataset.DataSetException: Execution of query failed.
         at com.borland.dx.dataset.DataSetException.a(Unknown Source)
         at com.borland.dx.dataset.DataSetException.queryFailed(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.a(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
         at com.borland.dx.sql.dataset.QueryDataSet.refresh(Unknown Source)
         at com.sunopsis.graphical.frame.DwgDataFrame.initialize(DwgDataFrame.java:368)
         at com.sunopsis.graphical.frame.DwgDataFrame.<init>(DwgDataFrame.java:77)
         at oracle.odi.ui.etlmodeler.diag.inspector.pane.popup.DiagramActionDispayDataTarget.actionPerformed(DiagramActionDispayDataTarget.java:91)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1223)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1264)
         at java.awt.Component.processMouseEvent(Component.java:6263)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6028)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4630)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Chained exception:
    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:947)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1283)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1441)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671)
         at com.borland.dx.sql.dataset.o.f(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.e(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
         at com.borland.dx.sql.dataset.QueryDataSet.refresh(Unknown Source)
         at com.sunopsis.graphical.frame.DwgDataFrame.initialize(DwgDataFrame.java:368)
         at com.sunopsis.graphical.frame.DwgDataFrame.<init>(DwgDataFrame.java:77)
         at oracle.odi.ui.etlmodeler.diag.inspector.pane.popup.DiagramActionDispayDataTarget.actionPerformed(DiagramActionDispayDataTarget.java:91)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1223)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1264)
         at java.awt.Component.processMouseEvent(Component.java:6263)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6028)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4630)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Please Help

    Michael R wrote:
    The target table will be created when you execute the interface, if you set the option on the flow tab as instructed in step #6 of the "Setting up ODI Constraint on CLIENT Datastore" Section.
    Option     Value
    CREATE_TARG_TABLE      trueHi Michel,
    This was not my required answer.I am sorry that I was unable to clarify my question.Actually
    +This project executed successfully with some warning.Target Table is automatically created in database and also populated with data.But when I right-click Target Datastore(in >Mapping Tab of the Interface), and then select Data to View Data that needs to be inserted in the target table.I get some error like this:-...+This above line is the result of my project my problem is
    when I right-click Target Datastore(in Mapping Tab of the Interface), and then select Data to View Data that already inserted in the target table.Is not shown by the view data operation.
    I meant to say I am facing this error
    At the10(1010 written) step of
    Creating a New ODI Interface to Perform XML File to RDBMS Table Transformation
    wehre it says
    Open the Interface tab. Select Mapping tab, right-click Target Datastore - CLIENT, and then select Data. View Data inserted in the target table. Close Data Editor. Close the tabs...
    In my case when I use my sqldeveloper I can see data successfully inserted in my target table and also in error table (data that can't satisfy the constraint) .But I was unable to check this by following the above mentioned 10 th step and got this error.
    Thanks

  • Error while doing Reversal of goods movements

    Hi,
    we have requirement where swap the quantity between batches, selection criteria is sales order number.
    In this program used BAPI_GOODSMVMT_CREATE with code '06' and t-code 'MB11'.
    now the problem is in developement the program is working but in the quality it is giving the error like
    with BAPI return message followed by
    Deficit of Customer stock unr. 2 EA : <amtnr>7209874 <plant>5140 <batch>ZZZZ W Order 0005112214
    some times it is saying        'Maintain Characterstic value for class only
    if anyone know the solution, please reply back.
    thank you.
    Regards,
    Madhavi

    Hi Gupta,
    i checked in MMBE for the material stock is available and one more thing exactly i am not sure where to check
    the materail classfication.
    please let me know how to check the same.
    thank you for quick reply.
    Regards,
    Madhavi

  • Error while doing File to File Scenario

    All,
    I am trying a simple file to file scenario - where xi picks up the file from a location and maps the message and dumps it in another location.
    I am Getting the below error while doing the same .........
    Time Stamp Status Description
    2009-03-30 14:30:24 Success Channel Test_send_cc: Send binary file  "d:\input\input.xml". Size 203 with QoS EO
    2009-03-30 14:30:24 Success Application attempting to send an XI message asynchronously using connection AFW.
    2009-03-30 14:30:24 Success Trying to put the message into the send queue.
    2009-03-30 14:30:24 Success Message successfully put into the queue.
    2009-03-30 14:30:24 Success The application sent the message asynchronously using connection AFW. Returning to application.
    2009-03-30 14:30:24 Error Attempt to delete file "d:\input\input.xml" after processing failed. Retry
    2009-03-30 14:30:24 Success The message was successfully retrieved from the send queue.
    2009-03-30 14:30:24 Success The message status set to DLNG.
    *+2009-03-30 14:30:24 Error Transmitting the message to endpoint http://filip:8000/sap/xi/engine?type=entry using connection AFW failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: Received HTTP response code 401 : Unauthorized.*
    2009-03-30 14:30:24 Success The asynchronous message was successfully scheduled to be delivered at Mon Mar 30 14:35:24 GMT+05:30 2009.
    And i cant see the meesages using the SXMB_MONI trasaction
    please help me resolve ths issue
    Regards,
    Mahesh.
    Edited by: mahesh uma on May 3, 2008 2:12 PM

    Hi Uma,
    Go through this links::
    Hope these links are useful to you..
    Urgent: Message not transmitted from AFW to Integration server
    Error with huge file
    File to JDBC error
    Thanks,
    Satya Kumar..

  • Error while doing file to mail scenario

    Hai All,
              I am getting the following errors while doing the file to mail scenario.
    Error:Exception caught by adapter framework: Failed to call the endpoint
    Error:Delivery of the message to the application using connection AFW failed, due to: Failed to call the endpoint.
    Can anyone please give me solution...

    Try this:
    Re: "Could not determine code page" inbound side error
    and this
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d19fe210-0d01-0010-4094-a6fba344e098
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cdded790-0201-0010-6db8-beb9bb2b2660

  • Weblogic 9.1 with JDK1.6 giving error ( while doing weblogic.appc )

    hi,
    I am trying to build my ear using jdk1.6 with weblogic 9.1.
    I am getting this error while doing weblogic.appc using my ant scripts. Could some one pls let me know the solution for this problem.
    [java] Created working directory: c:\windows\TEMP\appcgen_gdoasis.jar
    [java] <02-Aug-2007 14:54:22 o'clock BST> <Error> <J2EE> <BEA-160187> <weblogic.appc failed to compile yo
    ur application. Recompile with the -verbose option for more details. Please see the error message(s) below.>
    [java] javax.xml.stream.FactoryConfigurationError: Provider javax.xml.stream.XMLInputFactory could not be
    instantiated: java.lang.InstantiationException
    [java] at javax.xml.stream.XMLInputFactory.newInstance(XMLInputFactory.java:158)
    [java] at weblogic.ejb.container.dd.xml.DDUtils.<clinit>(DDUtils.java:85)
    [java] at weblogic.ejb.container.ejbc.EJBCompiler.parseDescriptors(EJBCompiler.java:1345)
    [java] at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:431)
    [java] at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:292)
    [java] at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:95)
    [java] at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:113)
    [java] at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:43)
    [java] at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:55)
    [java] at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    [java] at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:24)
    [java] at weblogic.application.compiler.Appc.runBody(Appc.java:151)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [java] at weblogic.application.compiler.Appc.main(Appc.java:162)
    [java] at weblogic.appc.main(appc.java:14)
    [java] Provider javax.xml.stream.XMLInputFactory could not be instantiated: java.lang.InstantiationExcept
    ion
    Thanks

    Hi,
    First thing, I am not sure this will work :-)
    The main issue is that there is no StAX provider to parse I-not-know-what XML file.
    You may try to execute appc with the parameter
    -Djavax.xml.stream.XMLInputFactory=com.bea.xml.stream.MXParserFactory
    Anyhow, you may still have some issues given that Java 6 is not a supported Java version for WL 9.1.
    Regards,
    lg

  • Error while doing "Visulaize Plan"

    Hi,
    Before i did Visualize plan many times without any problem.Now I am getting error while doing so.
    I was able to run "Explain Plan" successfully.
    I am on HANA revision 60.
    I saved above error log and the log information is given below:
    I can identify invalid XML tag <TablesInvolved><![CDATA[raj/AN_VIZ]]></TablesInvolved> but how to fix this issue?
    I gone through various blogs related to Visulaization Plan but not found related to this issue.
    <Plan xmlns="http://www.sap.com/ndb/planviz" ID="ID_0" Type="Estimated">
    <SQL><![CDATA[SELECT KOKRS, BELNR, PERIO, SUM(MEGBTR)
    FROM "_SYS_BIC"."raj/AN_VIZ"
    GROUP BY KOKRS, BELNR, PERIO]]></SQL>
    <CompileTime>
      <Start Unit="us">1401281467643661</Start>
      <End Unit="us">1401281467658329</End>
    </CompileTime>
    <RootRelation ID="ID_0" TypeName="PROJECT" Status="Finished">
      <Name>Project</Name>
      <ExecutionType>Row Search</ExecutionType>
      <Summary><![CDATA[raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO, SUM(raj/AN_VIZ.MEGBTR)]]></Summary>
      <Location>hanasp7:30003</Location>
      <EstimatedCost>
       <Exclusive Unit="us">2.12902e+06</Exclusive>
       <Inclusive Unit="us">2.64021e+06</Inclusive>
      </EstimatedCost>
      <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
      <Details><![CDATA[{"Projected Cols":"raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO, SUM(raj/AN_VIZ.MEGBTR)","Project column0":"NString(4, 0)  __trex_field_NVarchar3__() ....... [3]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [0]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [1]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 0 ....... [2]:LOAD:<4/5 (4B)>:","Project column1":"NString(10, 0)  __trex_field_NVarchar3__() ....... [8]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [5]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [6]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 1 ....... [7]:LOAD:<4/5 (4B)>:","Project column2":"NString(3, 0)  __trex_field_NVarchar3__() ....... [13]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [10]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [11]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 2 ....... [12]:LOAD:<4/5 (4B)>:","Project column3":"Decimal(18, 3)  __typecast__() ....... [23]:076:<10/12 (16B)>:
      /1/ Fixed16(18, 3)  __trex_field_Fixed16__() ....... [19]:043:<6/8 (16B)>: 
         /1/ void*  \"__rids__\" ....... [15]:NOP:<0/1 (8B)>:
         /2/ int32_t(10, 0) const := 0 ....... [16]:LOAD:<3/4 (4B)>:
         /3/ int32_t(10, 0) const := 3 ....... [17]:LOAD:<4/5 (4B)>:
         /4/ int32_t(10, 0) const := 3 ....... [18]:LOAD:<5/6 (4B)>: 
      /2/ int32_t(10, 0) const := 18 ....... [21]:LOAD:<8/9 (4B)>:
      /3/ int32_t(10, 0) const := 3 ....... [22]:LOAD:<9/10 (4B)>:"}]]></Details>
      <Child ID="ID_8" >
      </Child>
    </RootRelation>
    <Relation ID="ID_8" TypeName="TREX_SEARCH" Status="Finished">
      <Name>Column Search</Name>
      <ExecutionType>Column Search</ExecutionType>
      <Summary><![CDATA[Aggregation on a single table]]></Summary>
      <Location>hanasp7:30003</Location>
      <EstimatedCost>
       <Exclusive Unit="us">511194</Exclusive>
       <Inclusive Unit="us">511194</Inclusive>
      </EstimatedCost>
      <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
      <TablesInvolved><![CDATA[raj/AN_VIZ]]></TablesInvolved>
      <LogicalPlan ID="ID_11" Type="Estimated">
       <RootRelation ID="ID_11" TypeName="PROJECT" Status="Finished">
        <Name>Project</Name>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
        <Child ID="ID_12" >
        </Child>
       </RootRelation>
       <Relation ID="ID_12" TypeName="GROUP_BY" Status="Finished">
        <Name>Aggregation</Name>
        <Summary><![CDATA[raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO\nSUM(raj/AN_VIZ.MEGBTR)]]></Summary>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
        <Details><![CDATA[{"Grouping Cols":"raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO","Aggregation Cols":"SUM(raj/AN_VIZ.MEGBTR)"}]]></Details>
        <Child ID="ID_13" >
        </Child>
       </Relation>
       <Relation ID="ID_13" TypeName="TABLE" Status="Finished">
        <Name>Column View</Name>
        <Schema><![CDATA[_SYS_BIC]]></Schema>
        <ObjectName><![CDATA[raj/AN_VIZ]]></ObjectName>
        <Location>hanasp7:30003</Location>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>682404</EstimatedOutputCardinality>
       </Relation>
      </LogicalPlan>
    </Relation>
    </Plan>
    Regards
    Raj

    Hi,
    To solve this you must update your studio. In lower studio versions (PlanViz) does not allow "unknown" XML tags sent by higher version servers. A fix for this issue was made so that PlanViz parser can simply skip unknown tags.
    Please go to version 74, if possible.
    Regards,
    Michael

  • Error while doing LSMW

    Hi, Freinds
    I m getting error while doing LSMW.
    In the step <b>Convert Data</b> it gives the following error <i>'Syntax error in program /icadmc/sap_lsmw_conv_0000027
    line 27
    for type 'C' a maximum length specification of 65535 is allowed'</i>
    Please Help
    Its Urgent
    Regards

    Hello,
    Try to convert the same file in the development server. May be some records get wired in your file.
    Regards,
    Naimesh

  • Error while doing recovrry

    HI
    I am getting the bellow error while doing the standby recovery
    SQL> recover datafile 1;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110: data file 1: '/pchpgi/oradata/data02/system01.dbf'
    SQL> select *from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>
    SQL> recover standby database;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110: data file 1: '/pchpgi/oradata/data02/system01.dbf'
    Thanks
    Edited by: 887400 on Dec 3, 2011 4:37 PM

    887400 wrote:
    HI
    I am getting the bellow error while doing the standby recovery
    SQL> recover datafile 1;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110: data file 1: '/pchpgi/oradata/data02/system01.dbf'
    SQL> select *from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>
    SQL> recover standby database;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110: data file 1: '/pchpgi/oradata/data02/system01.dbf'
    Thanks
    Edited by: 887400 on Dec 3, 2011 4:37 PM
    01124, 00000, "cannot recover data file %s - file is in use or recovery"
    // *Cause:  An attempt to do media recovery found that the file was not
    //          available for recovery. Either it is online and the database is
    //          open in some instance, or another process is curently doing
    //          media recovery on the file.
    // *Action: Do not do media recovery.

  • E26 253 Error while checking in and storing: \\sapserver\file.tif

    Hi Experts,
    I have now been fighting with this problem for a couple of weeks, and not been able to solve the issue.
    My problem is to upload/check-in documents from the application serve in background.
    I have a program to create DIF and attach files using BAPI_DOCUMENT_CREATE2.
    When I'm running the program in foreground there is no problem.
    When I run it in background I get the error message E26 254 Error while checking in and storing:
    sapserver\file.tif
    I have checked that the background process can see the document on the server and that is OK, so the problem must be within the actual storing of the document in DMS in the BAPI.
    Any input to how I can solve this issue is appreciated.
    Thanks in advance,
    Thomas

    Hi All,
    We have now done some testing.
    We got it to work on one of our systems but not on the other
    I ran report RSCMST on both systems with the same backend directory. (A directory on the application server of the one that fails).
    Running this report I get this result on the system that does not work.
    HTTP interface test using function group SCMS_HTTP
    21.06.2010 14:39:01
    serverInfo:
    contRep                   ZEBAN
    contRepDescription        PR Attachments
    serverStatus              running
    serverVendor              Copyright SAP AG, All rights reserved 1998, 2001
    serverVersion             6300
    serverBuild               193
    serverTime                123902
    serverDate                21.06.2010
    serverStatusDescription
    pVersion                  0046
    contRepStatus             data(89%) log(1%)
    contRepStatusDescription
                                                      ok           58.848
    create(1): new doc (frontend)                     ok          445.211
    create(2): new doc (back end)
    check_subrc: subrc     2  instead          0
    check_subrc: HTTP error: 400 Bad Request
    create(2): new doc (back end)                    error
    docGet/create(1): copy document                   ok          105.684
    info(1): existing doc                             ok           26.881
    update(1): new comp                               ok           47.050
    info(2): after update                             ok           30.458
    delete(1): unknown doc                            ok           33.061
    delete(2): unknown comp                           ok           31.669
    delete(3): existing doc                           ok           53.330
    delete(4): deleted doc                            ok           34.781
    delete(5): existing doc                           ok           31.088
    putCert:                                          ok           35.785
             1  errors
    Any ideas to what could be wrong?
    Thanks in advance.

  • Error while doing GR : Deficit of PU GR quantity 5 EA

    I am getting the below error while doing the reversal of GR:
    Deficit of PU GR quantity 5 EA : <material><plant><pur grp>
    Please let me know the solution to rectify it.
    Thanks in advance.

    Hi,
    Check the latest goods issue docs for this quantity and cancel that GI doc. This will bring the required stock to enable you cancel the GR. After creating new GR, cancel the "cancelled GI doc" to complete the loop.
    or
    Increase the stock by doing GR against 501. After new GR, cancel this 501 doc.
    or
    Post issue return (202) for this quantity. After new GR, cancel this 202 doc.
    or
    thro' physical inventory, you can add the stock. After new GR, make another PI doc. to set right the stock.
    While the first option is a best one, based on your urgency/superior approval, you may opt for other options also.
    Regards,
    Siva

  • Error while doing the repository export

    hi,
    I am getting error while doing the export repository,Message: GEN-13, Additional Message: Dictionary is not available on this database, can anyone help me how to resolve this issue.
    thanks,
    Sundar M

    Hi Sundar,
    Please provide the export repository command, what you used and the log file to review.
    The error "Dictionary is not available on this database" will pop up when Siebel Repository is not present in DB.
    For export process you have to give repository name as "Siebel Repository" and it will export schema in to *.dat file.
    NOTE: Do not change Siebel Repository name for export process.
    Thanks,
    Shilpi

  • When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for

  • Open letter to Cisco regarding the UC320 platform

    Cisco, I have never in my life been exposed to a "production" piece of equipment with so many bugs, missing features and oddities as the UC320. While I am sure many of you are working hard to reign in the problems, this platform is an utter embarrass

  • Use of cheap LCD displays

    I recently acquired a GEM GM-170 display (VGA only). I hooked it up to my Mac Mini, configured for 1024x768, and allowed the two devices to sort things out among themselves. The screen was dim, but worked. I tried to calibrate the monitor using Displ

  • Songs skip every 5 seconds...

    Hello. I have a problem with my iPod mini. Two nights ago I went to play one of my playlists as usual. It has been working fine for a few months now (after I got the old generation replaced when the battery died). All of the sudden, I press play and

  • Can i get referral from apple for the repair of unlocked iphone?

    Is it possible to get referral from Apple (HK) to repair my unlocked iphone in the Philippines? the unit was originally purchased from HK and brought to the Philippines, but it encountered hardware problem, I am thinking that it is cheaper if the rep

  • New GL concepts, Document splitting and how teh system behaves in different

    Hi gurus, I need this NEW GL Concepts Thanks Srinivas