The Win32 enviroment is currently not supported

Bonjour,
J'ai généré une dll en C++ avec Visual Studio 2010. Maintenant je voulais utiliser cette dll dans mon application CVI. Lors de la compilation des messages d'erreurs s'affichent. J'ai ajouté des fichiers .h "wchar.h" et "crtdefs.h". Avec ceci un autre message s'affiche que je me plante avec. 
"crtdefs.h"(32,2) "The Win32 enviroment is currently not supported."
A ce stade je me pose la question : est-ce que je peux introduire une win32 dll dans mon application CVI ??? d'après une petite recherche la réponse est oui, mais je ne sais pas comment procéder. Merci de m'aider à résoudre ce problème.
Ci-joint vous trouvez les .dll (son extension est .doc pour que je puisse l'uploader), .h et .c.
Merci.
Attachments:
hidapi.h ‏13 KB
hid.c ‏23 KB
hidapi.doc ‏37 KB

Voici un bon site web pour développer une DLL C + + pour être utilisé dans LabWindows / CVI à partir de Visual C + +
Ian M.
National Instruments

Similar Messages

  • XSL Element Currently not Supported

    Hi,
    I have started using Muenchian method of grouping using xsl:keys and apply-templates.
    But I couldn't because I receive the message "XSL element currently not supported" and I don't know why.
    Is there any workaround for this ?
    Thanks for your time.

    Yes.
    I paste the xsl again because I did any corrections.
    I tested it and, without grouping, is working well.
    But, when I define the key element the issue appears.
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper
      <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
      <mapSources>
        <source type="XSD">
          <schema location="../xsd/VATGenericExtractor_20new.xsd"/>
          <rootElement name="VATGenericExtractor" namespace="VATGenericExtractor"/>
        </source>
      </mapSources>
      <mapTargets>
        <target type="XSD">
          <schema location="../xsd/VatList_1.3.xsd"/>
          <rootElement name="VatList" namespace="http://www.minfin.fgov.be/VatList"/>
        </target>
      </mapTargets>
      <!-- GENERATED BY ORACLE XSL MAPPER 11.1.1.6.0(build 111214.0600.1553) AT [THU AUG 01 15:39:57 GFT 2013]. -->
    ?>
    <xsl:stylesheet version="1.0"
                    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
                    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
                    xmlns:ns1="http://www.minfin.fgov.be/VatList"
                    xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
                    xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
                    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
                    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:med="http://schemas.oracle.com/mediator/xpath"
                    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
                    xmlns:ns0="VATGenericExtractor"
                    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
                    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
                    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
                    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                    xmlns:ora="http://schemas.oracle.com/xpath/extension"
                    xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
                    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
                    exclude-result-prefixes="xsi xsl ns0 xsd ns1 bpws xp20 mhdr bpel oraext dvm hwf med ids bpm xdk xref ora socket ldap">
      <xsl:key name="Supplier-by-TaxID" match="ns0:VATGenericExtractor/ns0:VATTransaction/ns0:SupplierorCustomer" use="ns0:VATGenericExtractor/ns0:VATTransaction/ns0:SupplierorCustomer/ns0:AddrTaxID"/>
      <xsl:template match="/">
           <ns1:VatList>
          <ns1:AgentRepr>
            <ns1:CompanyInfo>
              <ns1:VATNum>
                <xsl:value-of select="/ns0:VATGenericExtractor/ns0:FiscalCompany/ns0:LegalRepresentative/ns0:AddrTaxID"/>
              </ns1:VATNum>
              <ns1:Name>
                <xsl:value-of select="/ns0:VATGenericExtractor/ns0:FiscalCompany/ns0:LegalRepresentative/ns0:AddrName"/>
              </ns1:Name>
            </ns1:CompanyInfo>
          </ns1:AgentRepr>
          <ns1:DeclarantList>
            <xsl:for-each select="/ns0:VATGenericExtractor/ns0:VATTransactionsContainer/ns0:VATTransaction/ns0:SupplierOrCustomer">
              <xsl:sort select="ns0:AddrTaxID"/>
              <ns1:ClientList>
                <ns1:CompanyInfo>
                  <ns1:VATNum>
                    <xsl:value-of select="ns0:AddrTaxID"/>
                  </ns1:VATNum>
                </ns1:CompanyInfo>
                <ns1:Amount>
                  <xsl:value-of select="../ns0:TransDetail/ns0:TransactionTaxInfo/ns0:AmountSalesTaxAuthority1"/>
                </ns1:Amount>
                <ns1:TurnOver>
                  <xsl:value-of select="../ns0:TransDetail/ns0:Amounts/ns0:Amount_Taxable"/>
                </ns1:TurnOver>
              </ns1:ClientList>
            </xsl:for-each>
          </ns1:DeclarantList>
        </ns1:VatList>
      </xsl:template>
    </xsl:stylesheet>
    This is the XML example:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <ns0:VATGenericExtractor xmlns:ns0="VATGenericExtractor" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="VATGenericExtractor file:/C:/JDeveloper/mywork/Generic VAT/Project1/xsd/VATGenericExtractor new.xsd">
       <ns0:ExtractionInfo>
          <ns0:ReportInfo>
             <ns0:ReportName>P700001</ns0:ReportName>
             <ns0:ReportDescription>XML VAT Generation Process</ns0:ReportDescription>
             <ns0:ReportIdentification>BE_RPT723</ns0:ReportIdentification>
             <ns0:VersionName>GT0006</ns0:VersionName>
             <ns0:VersionDescription>Generic VAT Report XML Generation 723</ns0:VersionDescription>
             <ns0:AuditInfo>
                <ns0:UserID>I_9019066</ns0:UserID>
                <ns0:WorkStation>J700000006</ns0:WorkStation>
                <ns0:DateProcessed>113144</ns0:DateProcessed>
                <ns0:TimeProcessed>154649</ns0:TimeProcessed>
             </ns0:AuditInfo>
          </ns0:ReportInfo>
          <ns0:SystemConstants>
             <ns0:TaxRulesAdjustment_AR_1>Y</ns0:TaxRulesAdjustment_AR_1>
             <ns0:TaxRulesAdjustment_AR_2>N</ns0:TaxRulesAdjustment_AR_2>
             <ns0:TaxRulesAdjustment_AP_1>Y</ns0:TaxRulesAdjustment_AP_1>
             <ns0:TaxRulesAdjustment_AP_2>N</ns0:TaxRulesAdjustment_AP_2>
          </ns0:SystemConstants>
          <ns0:VATDeclaration>
             <ns0:DeclarationNbr>08888723</ns0:DeclarationNbr>
             <ns0:DeclarationType>Complementary</ns0:DeclarationType>
             <ns0:DeclPeriodType>Monthly</ns0:DeclPeriodType>
             <ns0:DeclarationPeriod>02</ns0:DeclarationPeriod>
             <ns0:DeclarationDate>113151</ns0:DeclarationDate>
             <ns0:FromDate>113032</ns0:FromDate>
             <ns0:ToDate>113059</ns0:ToDate>
             <ns0:Year>2013</ns0:Year>
             <ns0:DeclarationSite>@SDFASDFASDFASDFASDFASDF@</ns0:DeclarationSite>
             <ns0:VATDeclaration_FlexField>
                <ns0:Tag/>
                <ns0:Value/>
             </ns0:VATDeclaration_FlexField>
          </ns0:VATDeclaration>
          <ns0:Extraction_FlexField>
             <ns0:Tag>P700001BEPO05Replaced Client List723/725</ns0:Tag>
             <ns0:Value>00000123</ns0:Value>
          </ns0:Extraction_FlexField>
          <ns0:Extraction_FlexField>
             <ns0:Tag>P700001BEPO07File Type723/725</ns0:Tag>
             <ns0:Value>Std Load</ns0:Value>
          </ns0:Extraction_FlexField>
          <ns0:Extraction_FlexField>
             <ns0:Tag>P700001BEPO08File Name723/725</ns0:Tag>
             <ns0:Value>NAME</ns0:Value>
          </ns0:Extraction_FlexField>
          <ns0:Extraction_FlexField>
             <ns0:Tag>P700001BEPO09File Description723/725</ns0:Tag>
             <ns0:Value>DESCRIPTION</ns0:Value>
          </ns0:Extraction_FlexField>
          <ns0:Extraction_FlexField>
             <ns0:Tag>P700001BEPO10Comment723/725</ns0:Tag>
             <ns0:Value>COMMNET</ns0:Value>
          </ns0:Extraction_FlexField>
       </ns0:ExtractionInfo>
       <ns0:FiscalCompany>
          <ns0:CoNbr>01212</ns0:CoNbr>
          <ns0:CoName>JDEdwards and Company Belgium</ns0:CoName>
          <ns0:CoAddressNbr>
             <ns0:AddrNbr>00012001</ns0:AddrNbr>
             <ns0:AddrName>Belgium company UN 12001</ns0:AddrName>
             <ns0:AddrMailingName>Belgium  BU  mailing name</ns0:AddrMailingName>
             <ns0:AddrTaxID>798171123187562100</ns0:AddrTaxID>
             <ns0:Addr2ndTaxID>7777777777</ns0:Addr2ndTaxID>
             <ns0:AddrPersonCorpCode>2</ns0:AddrPersonCorpCode>
             <ns0:AddrCompleteAddress>
                <ns0:AddressLine1>AV.Belgium 8543</ns0:AddressLine1>
                <ns0:AddressLine2>linea2</ns0:AddressLine2>
                <ns0:AddressLine3>linea3</ns0:AddressLine3>
                <ns0:AddressLine4>linea4</ns0:AddressLine4>
                <ns0:City>Brusellas</ns0:City>
                <ns0:ZipCode>3000</ns0:ZipCode>
                <ns0:State>BEL</ns0:State>
                <ns0:Country>
                   <ns0:CountryCode>BE</ns0:CountryCode>
                   <ns0:CountryDesc>Belgium</ns0:CountryDesc>
                </ns0:Country>
             </ns0:AddrCompleteAddress>
             <ns0:AddrPhone>
                <ns0:AreaCode>1234</ns0:AreaCode>
                <ns0:PhoneNbr>6543</ns0:PhoneNbr>
             </ns0:AddrPhone>
             <ns0:AddrEmail>mailto:[email protected]</ns0:AddrEmail>
          </ns0:CoAddressNbr>
          <ns0:CoCurrency>
             <ns0:CurrencyCode>EUR</ns0:CurrencyCode>
             <ns0:CurrencyDesc>European Community Currency</ns0:CurrencyDesc>
          </ns0:CoCurrency>
          <ns0:LegalRepresentative>
             <ns0:AddrNbr>00001214</ns0:AddrNbr>
             <ns0:AddrName>Colores Company</ns0:AddrName>
             <ns0:AddrMailingName>belgium Company 1214</ns0:AddrMailingName>
             <ns0:AddrTaxID>17823333333</ns0:AddrTaxID>
             <ns0:Addr2ndTaxID>19898989898</ns0:Addr2ndTaxID>
             <ns0:AddrPersonCorpCode>C</ns0:AddrPersonCorpCode>
             <ns0:AddrCompleteAddress>
                <ns0:AddressLine1>1212 O Street</ns0:AddressLine1>
                <ns0:AddressLine2/>
                <ns0:AddressLine3/>
                <ns0:AddressLine4/>
                <ns0:City>Belgium</ns0:City>
                <ns0:ZipCode>68516</ns0:ZipCode>
                <ns0:State>BEL</ns0:State>
                <ns0:Country>
                   <ns0:CountryCode>BE</ns0:CountryCode>
                   <ns0:CountryDesc>Belgium</ns0:CountryDesc>
                </ns0:Country>
             </ns0:AddrCompleteAddress>
             <ns0:AddrPhone>
                <ns0:AreaCode>402</ns0:AreaCode>
                <ns0:PhoneNbr>4020084</ns0:PhoneNbr>
             </ns0:AddrPhone>
             <ns0:AddrEmail/>
             <ns0:Addr_FlexField>
                <ns0:Tag>P700001BEPO03Identification Type723/725</ns0:Tag>
                <ns0:Value>passports</ns0:Value>
             </ns0:Addr_FlexField>
          </ns0:LegalRepresentative>
          <ns0:Co_FlexField>
             <ns0:Tag/>
             <ns0:Value/>
          </ns0:Co_FlexField>
       </ns0:FiscalCompany>
       <ns0:VATTransactionsContainer>
          <ns0:VATTransaction>
             <ns0:DocCompany>
                <ns0:CoNbr>01212</ns0:CoNbr>
             </ns0:DocCompany>
             <ns0:Company>
                <ns0:CoNbr>01212</ns0:CoNbr>
             </ns0:Company>
             <ns0:DocNbr>00000011</ns0:DocNbr>
             <ns0:DocType>PV</ns0:DocType>
             <ns0:SupplierOrCustomer>
                <ns0:AddrNbr>00034000</ns0:AddrNbr>
                <ns0:AddrName>Belgium Supplier  1</ns0:AddrName>
                <ns0:AddrMailingName>1 Supplier  ccc</ns0:AddrMailingName>
                <ns0:AddrTaxID>1256889-01</ns0:AddrTaxID>
                <ns0:Addr2ndTaxID/>
                <ns0:AddrPersonCorpCode>C</ns0:AddrPersonCorpCode>
                <ns0:AddrCompleteAddress>
                   <ns0:AddressLine1>street xxx</ns0:AddressLine1>
                   <ns0:AddressLine2>l2</ns0:AddressLine2>
                   <ns0:AddressLine3/>
                   <ns0:AddressLine4/>
                   <ns0:City>belgium</ns0:City>
                   <ns0:ZipCode>1300</ns0:ZipCode>
                   <ns0:State>BEL</ns0:State>
                   <ns0:Country>
                      <ns0:CountryCode>BE</ns0:CountryCode>
                      <ns0:CountryDesc>Belgium</ns0:CountryDesc>
                   </ns0:Country>
                </ns0:AddrCompleteAddress>
                <ns0:AddrPhone>
                   <ns0:AreaCode>12</ns0:AreaCode>
                   <ns0:PhoneNbr>123555</ns0:PhoneNbr>
                </ns0:AddrPhone>
                <ns0:AddrEmail/>
             </ns0:SupplierOrCustomer>
             <ns0:TransactionCurrency>
                <ns0:CurrencyCode>EUR</ns0:CurrencyCode>
                <ns0:CurrencyDesc>European Community Currency</ns0:CurrencyDesc>
             </ns0:TransactionCurrency>
             <ns0:Trans_FlexField>
                <ns0:Tag/>
                <ns0:Value/>
             </ns0:Trans_FlexField>
             <ns0:TransDetail>
                <ns0:LineNumber>000000</ns0:LineNumber>
                <ns0:OrderSuffix>001</ns0:OrderSuffix>
                <ns0:Dates>
                   <ns0:Date_GL>113043</ns0:Date_GL>
                   <ns0:Date_ServiceTax>113046</ns0:Date_ServiceTax>
                   <ns0:Date_OrderTransaction>113134</ns0:Date_OrderTransaction>
                </ns0:Dates>
                <ns0:Batch>
                   <ns0:BatchNbr>06927193</ns0:BatchNbr>
                   <ns0:BatchType>V</ns0:BatchType>
                   <ns0:BatchDate>113134</ns0:BatchDate>
                </ns0:Batch>
                <ns0:Item>
                   <ns0:ItemNbrShort>00000000</ns0:ItemNbrShort>
                   <ns0:ItemNbr2nd/>
                   <ns0:ItemNbr3rd/>
                   <ns0:ItemDesc/>
                </ns0:Item>
                <ns0:UnitOfMeasure/>
                <ns0:BusinessUnit>
                   <ns0:MCUCode>12001</ns0:MCUCode>
                   <ns0:MCUDescription>Turquesa</ns0:MCUDescription>
                   <ns0:MCUAddrNbr>
                      <ns0:AddrNbr>00001001</ns0:AddrNbr>
                      <ns0:AddrName>Edwards, J.D. &amp; Company</ns0:AddrName>
                      <ns0:AddrMailingName>test</ns0:AddrMailingName>
                      <ns0:AddrTaxID>15502499</ns0:AddrTaxID>
                      <ns0:Addr2ndTaxID/>
                      <ns0:AddrPersonCorpCode>P</ns0:AddrPersonCorpCode>
                      <ns0:AddrCompleteAddress>
                         <ns0:AddressLine1>8055 E. Tufts Ave.</ns0:AddressLine1>
                         <ns0:AddressLine2/>
                         <ns0:AddressLine3/>
                         <ns0:AddressLine4/>
                         <ns0:City>Denver</ns0:City>
                         <ns0:ZipCode>80237</ns0:ZipCode>
                         <ns0:State>CO</ns0:State>
                         <ns0:Country>
                            <ns0:CountryCode/>
                            <ns0:CountryDesc>United States</ns0:CountryDesc>
                         </ns0:Country>
                      </ns0:AddrCompleteAddress>
                      <ns0:AddrPhone>
                         <ns0:AreaCode>303</ns0:AreaCode>
                         <ns0:PhoneNbr>844-8000</ns0:PhoneNbr>
                      </ns0:AddrPhone>
                      <ns0:AddrEmail/>
                   </ns0:MCUAddrNbr>
                </ns0:BusinessUnit>
                <ns0:TaxArea>
                   <ns0:TaxRateArea>BEL003</ns0:TaxRateArea>
                   <ns0:TaxDescription>Belgium bel003</ns0:TaxDescription>
                   <ns0:TaxExplCode>V</ns0:TaxExplCode>
                   <ns0:GLOffset>VATB</ns0:GLOffset>
                </ns0:TaxArea>
                <ns0:TransactionTaxInfo>
                   <ns0:TaxRate1>0010000</ns0:TaxRate1>
                   <ns0:TaxRate2>0000000</ns0:TaxRate2>
                   <ns0:TaxRate3>0000000</ns0:TaxRate3>
                   <ns0:TaxRate4>0000000</ns0:TaxRate4>
                   <ns0:TaxRate5>0000000</ns0:TaxRate5>
                   <ns0:SalesTaxAuthority1>00006154</ns0:SalesTaxAuthority1>
                   <ns0:SalesTaxAuthority2>00000000</ns0:SalesTaxAuthority2>
                   <ns0:SalesTaxAuthority3>00000000</ns0:SalesTaxAuthority3>
                   <ns0:SalesTaxAuthority4>00000000</ns0:SalesTaxAuthority4>
                   <ns0:SalesTaxAuthority5>00000000</ns0:SalesTaxAuthority5>
                   <ns0:AmountSalesTaxAuthority1>1500000</ns0:AmountSalesTaxAuthority1>
                   <ns0:AmountSalesTaxAuthority2>0</ns0:AmountSalesTaxAuthority2>
                   <ns0:AmountSalesTaxAuthority3>0</ns0:AmountSalesTaxAuthority3>
                   <ns0:AmountSalesTaxAuthority4>0</ns0:AmountSalesTaxAuthority4>
                   <ns0:AmountSalesTaxAuthority5>0</ns0:AmountSalesTaxAuthority5>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>S</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                </ns0:TransactionTaxInfo>
                <ns0:OrderQuantity>0</ns0:OrderQuantity>
                <ns0:Amounts>
                   <ns0:Amount_Gross>0</ns0:Amount_Gross>
                   <ns0:Amount_Taxable>15000000</ns0:Amount_Taxable>
                   <ns0:Amount_NonTaxable>0</ns0:Amount_NonTaxable>
                   <ns0:Amount_Tax>1500000</ns0:Amount_Tax>
                   <ns0:Amount_ExtendedPrice>16500000</ns0:Amount_ExtendedPrice>
                   <ns0:Amount_TaxVariance>0</ns0:Amount_TaxVariance>
                </ns0:Amounts>
             </ns0:TransDetail>
             <ns0:TransDetail>
                <ns0:LineNumber>000000</ns0:LineNumber>
                <ns0:OrderSuffix>001</ns0:OrderSuffix>
                <ns0:Dates>
                   <ns0:Date_GL>113043</ns0:Date_GL>
                   <ns0:Date_ServiceTax>113046</ns0:Date_ServiceTax>
                   <ns0:Date_OrderTransaction>113137</ns0:Date_OrderTransaction>
                </ns0:Dates>
                <ns0:Batch>
                   <ns0:BatchNbr>06927310</ns0:BatchNbr>
                   <ns0:BatchType>V</ns0:BatchType>
                   <ns0:BatchDate>113137</ns0:BatchDate>
                </ns0:Batch>
                <ns0:Item>
                   <ns0:ItemNbrShort>00000000</ns0:ItemNbrShort>
                   <ns0:ItemNbr2nd/>
                   <ns0:ItemNbr3rd/>
                   <ns0:ItemDesc/>
                </ns0:Item>
                <ns0:UnitOfMeasure/>
                <ns0:BusinessUnit>
                   <ns0:MCUCode>12001</ns0:MCUCode>
                   <ns0:MCUDescription>Turquesa</ns0:MCUDescription>
                   <ns0:MCUAddrNbr>
                      <ns0:AddrNbr>00001001</ns0:AddrNbr>
                      <ns0:AddrName>Edwards, J.D. &amp; Company</ns0:AddrName>
                      <ns0:AddrMailingName>test</ns0:AddrMailingName>
                      <ns0:AddrTaxID>15502499</ns0:AddrTaxID>
                      <ns0:Addr2ndTaxID/>
                      <ns0:AddrPersonCorpCode>P</ns0:AddrPersonCorpCode>
                      <ns0:AddrCompleteAddress>
                         <ns0:AddressLine1>8055 E. Tufts Ave.</ns0:AddressLine1>
                         <ns0:AddressLine2/>
                         <ns0:AddressLine3/>
                         <ns0:AddressLine4/>
                         <ns0:City>Denver</ns0:City>
                         <ns0:ZipCode>80237</ns0:ZipCode>
                         <ns0:State>CO</ns0:State>
                         <ns0:Country>
                            <ns0:CountryCode/>
                            <ns0:CountryDesc>United States</ns0:CountryDesc>
                         </ns0:Country>
                      </ns0:AddrCompleteAddress>
                      <ns0:AddrPhone>
                         <ns0:AreaCode>303</ns0:AreaCode>
                         <ns0:PhoneNbr>844-8000</ns0:PhoneNbr>
                      </ns0:AddrPhone>
                      <ns0:AddrEmail/>
                   </ns0:MCUAddrNbr>
                </ns0:BusinessUnit>
                <ns0:TaxArea>
                   <ns0:TaxRateArea>BEL003</ns0:TaxRateArea>
                   <ns0:TaxDescription>Belgium bel003</ns0:TaxDescription>
                   <ns0:TaxExplCode>V</ns0:TaxExplCode>
                   <ns0:GLOffset>VATB</ns0:GLOffset>
                </ns0:TaxArea>
                <ns0:TransactionTaxInfo>
                   <ns0:TaxRate1>0010000</ns0:TaxRate1>
                   <ns0:TaxRate2>0000000</ns0:TaxRate2>
                   <ns0:TaxRate3>0000000</ns0:TaxRate3>
                   <ns0:TaxRate4>0000000</ns0:TaxRate4>
                   <ns0:TaxRate5>0000000</ns0:TaxRate5>
                   <ns0:SalesTaxAuthority1>00006154</ns0:SalesTaxAuthority1>
                   <ns0:SalesTaxAuthority2>00000000</ns0:SalesTaxAuthority2>
                   <ns0:SalesTaxAuthority3>00000000</ns0:SalesTaxAuthority3>
                   <ns0:SalesTaxAuthority4>00000000</ns0:SalesTaxAuthority4>
                   <ns0:SalesTaxAuthority5>00000000</ns0:SalesTaxAuthority5>
                   <ns0:AmountSalesTaxAuthority1>1000000</ns0:AmountSalesTaxAuthority1>
                   <ns0:AmountSalesTaxAuthority2>0</ns0:AmountSalesTaxAuthority2>
                   <ns0:AmountSalesTaxAuthority3>0</ns0:AmountSalesTaxAuthority3>
                   <ns0:AmountSalesTaxAuthority4>0</ns0:AmountSalesTaxAuthority4>
                   <ns0:AmountSalesTaxAuthority5>0</ns0:AmountSalesTaxAuthority5>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>S</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>G</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                </ns0:TransactionTaxInfo>
                <ns0:OrderQuantity>0</ns0:OrderQuantity>
                <ns0:Amounts>
                   <ns0:Amount_Gross>0</ns0:Amount_Gross>
                   <ns0:Amount_Taxable>10000000</ns0:Amount_Taxable>
                   <ns0:Amount_NonTaxable>0</ns0:Amount_NonTaxable>
                   <ns0:Amount_Tax>1000000</ns0:Amount_Tax>
                   <ns0:Amount_ExtendedPrice>11000000</ns0:Amount_ExtendedPrice>
                   <ns0:Amount_TaxVariance>0</ns0:Amount_TaxVariance>
                </ns0:Amounts>
             </ns0:TransDetail>
             <ns0:TransDetail>
                <ns0:LineNumber>000000</ns0:LineNumber>
                <ns0:OrderSuffix>001</ns0:OrderSuffix>
                <ns0:Dates>
                   <ns0:Date_GL>113036</ns0:Date_GL>
                   <ns0:Date_ServiceTax>113046</ns0:Date_ServiceTax>
                   <ns0:Date_OrderTransaction>113134</ns0:Date_OrderTransaction>
                </ns0:Dates>
                <ns0:Batch>
                   <ns0:BatchNbr>06927195</ns0:BatchNbr>
                   <ns0:BatchType>V</ns0:BatchType>
                   <ns0:BatchDate>113134</ns0:BatchDate>
                </ns0:Batch>
                <ns0:Item>
                   <ns0:ItemNbrShort>00000000</ns0:ItemNbrShort>
                   <ns0:ItemNbr2nd/>
                   <ns0:ItemNbr3rd/>
                   <ns0:ItemDesc/>
                </ns0:Item>
                <ns0:UnitOfMeasure/>
                <ns0:BusinessUnit>
                   <ns0:MCUCode>12001</ns0:MCUCode>
                   <ns0:MCUDescription>Turquesa</ns0:MCUDescription>
                   <ns0:MCUAddrNbr>
                      <ns0:AddrNbr>00001001</ns0:AddrNbr>
                      <ns0:AddrName>Edwards, J.D. &amp; Company</ns0:AddrName>
                      <ns0:AddrMailingName>test</ns0:AddrMailingName>
                      <ns0:AddrTaxID>15502499</ns0:AddrTaxID>
                      <ns0:Addr2ndTaxID/>
                      <ns0:AddrPersonCorpCode>P</ns0:AddrPersonCorpCode>
                      <ns0:AddrCompleteAddress>
                         <ns0:AddressLine1>8055 E. Tufts Ave.</ns0:AddressLine1>
                         <ns0:AddressLine2/>
                         <ns0:AddressLine3/>
                         <ns0:AddressLine4/>
                         <ns0:City>Denver</ns0:City>
                         <ns0:ZipCode>80237</ns0:ZipCode>
                         <ns0:State>CO</ns0:State>
                         <ns0:Country>
                            <ns0:CountryCode/>
                            <ns0:CountryDesc>United States</ns0:CountryDesc>
                         </ns0:Country>
                      </ns0:AddrCompleteAddress>
                      <ns0:AddrPhone>
                         <ns0:AreaCode>303</ns0:AreaCode>
                         <ns0:PhoneNbr>844-8000</ns0:PhoneNbr>
                      </ns0:AddrPhone>
                      <ns0:AddrEmail/>
                   </ns0:MCUAddrNbr>
                </ns0:BusinessUnit>
                <ns0:TaxArea>
                   <ns0:TaxRateArea>BEL002</ns0:TaxRateArea>
                   <ns0:TaxDescription>Belgium bel002</ns0:TaxDescription>
                   <ns0:TaxExplCode>V</ns0:TaxExplCode>
                   <ns0:GLOffset>VATB</ns0:GLOffset>
                </ns0:TaxArea>
                <ns0:TransactionTaxInfo>
                   <ns0:TaxRate1>0010000</ns0:TaxRate1>
                   <ns0:TaxRate2>0000000</ns0:TaxRate2>
                   <ns0:TaxRate3>0000000</ns0:TaxRate3>
                   <ns0:TaxRate4>0000000</ns0:TaxRate4>
                   <ns0:TaxRate5>0000000</ns0:TaxRate5>
                   <ns0:SalesTaxAuthority1>00006154</ns0:SalesTaxAuthority1>
                   <ns0:SalesTaxAuthority2>00000000</ns0:SalesTaxAuthority2>
                   <ns0:SalesTaxAuthority3>00000000</ns0:SalesTaxAuthority3>
                   <ns0:SalesTaxAuthority4>00000000</ns0:SalesTaxAuthority4>
                   <ns0:SalesTaxAuthority5>00000000</ns0:SalesTaxAuthority5>
                   <ns0:AmountSalesTaxAuthority1>20000</ns0:AmountSalesTaxAuthority1>
                   <ns0:AmountSalesTaxAuthority2>0</ns0:AmountSalesTaxAuthority2>
                   <ns0:AmountSalesTaxAuthority3>0</ns0:AmountSalesTaxAuthority3>
                   <ns0:AmountSalesTaxAuthority4>0</ns0:AmountSalesTaxAuthority4>
                   <ns0:AmountSalesTaxAuthority5>0</ns0:AmountSalesTaxAuthority5>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>GT</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>S</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                </ns0:TransactionTaxInfo>
                <ns0:OrderQuantity>0</ns0:OrderQuantity>
                <ns0:Amounts>
                   <ns0:Amount_Gross>0</ns0:Amount_Gross>
                   <ns0:Amount_Taxable>200000</ns0:Amount_Taxable>
                   <ns0:Amount_NonTaxable>0</ns0:Amount_NonTaxable>
                   <ns0:Amount_Tax>20000</ns0:Amount_Tax>
                   <ns0:Amount_ExtendedPrice>220000</ns0:Amount_ExtendedPrice>
                   <ns0:Amount_TaxVariance>0</ns0:Amount_TaxVariance>
                </ns0:Amounts>
             </ns0:TransDetail>
             <ns0:TransDetail>
                <ns0:LineNumber>000000</ns0:LineNumber>
                <ns0:OrderSuffix>001</ns0:OrderSuffix>
                <ns0:Dates>
                   <ns0:Date_GL>113033</ns0:Date_GL>
                   <ns0:Date_ServiceTax>113033</ns0:Date_ServiceTax>
                   <ns0:Date_OrderTransaction>113134</ns0:Date_OrderTransaction>
                </ns0:Dates>
                <ns0:Batch>
                   <ns0:BatchNbr>06927199</ns0:BatchNbr>
                   <ns0:BatchType>I</ns0:BatchType>
                   <ns0:BatchDate>113134</ns0:BatchDate>
                </ns0:Batch>
                <ns0:Item>
                   <ns0:ItemNbrShort>00000000</ns0:ItemNbrShort>
                   <ns0:ItemNbr2nd/>
                   <ns0:ItemNbr3rd/>
                   <ns0:ItemDesc/>
                </ns0:Item>
                <ns0:UnitOfMeasure/>
                <ns0:BusinessUnit>
                   <ns0:MCUCode>12001</ns0:MCUCode>
                   <ns0:MCUDescription>Turquesa</ns0:MCUDescription>
                   <ns0:MCUAddrNbr>
                      <ns0:AddrNbr>00001001</ns0:AddrNbr>
                      <ns0:AddrName>Edwards, J.D. &amp; Company</ns0:AddrName>
                      <ns0:AddrMailingName>test</ns0:AddrMailingName>
                      <ns0:AddrTaxID>15502499</ns0:AddrTaxID>
                      <ns0:Addr2ndTaxID/>
                      <ns0:AddrPersonCorpCode>P</ns0:AddrPersonCorpCode>
                      <ns0:AddrCompleteAddress>
                         <ns0:AddressLine1>8055 E. Tufts Ave.</ns0:AddressLine1>
                         <ns0:AddressLine2/>
                         <ns0:AddressLine3/>
                         <ns0:AddressLine4/>
                         <ns0:City>Denver</ns0:City>
                         <ns0:ZipCode>80237</ns0:ZipCode>
                         <ns0:State>CO</ns0:State>
                         <ns0:Country>
                            <ns0:CountryCode/>
                            <ns0:CountryDesc>United States</ns0:CountryDesc>
                         </ns0:Country>
                      </ns0:AddrCompleteAddress>
                      <ns0:AddrPhone>
                         <ns0:AreaCode>303</ns0:AreaCode>
                         <ns0:PhoneNbr>844-8000</ns0:PhoneNbr>
                      </ns0:AddrPhone>
                      <ns0:AddrEmail/>
                   </ns0:MCUAddrNbr>
                </ns0:BusinessUnit>
                <ns0:TaxArea>
                   <ns0:TaxRateArea>BEL002</ns0:TaxRateArea>
                   <ns0:TaxDescription>Belgium bel002</ns0:TaxDescription>
                   <ns0:TaxExplCode>V</ns0:TaxExplCode>
                   <ns0:GLOffset>VATB</ns0:GLOffset>
                </ns0:TaxArea>
                <ns0:TransactionTaxInfo>
                   <ns0:TaxRate1>0010000</ns0:TaxRate1>
                   <ns0:TaxRate2>0000000</ns0:TaxRate2>
                   <ns0:TaxRate3>0000000</ns0:TaxRate3>
                   <ns0:TaxRate4>0000000</ns0:TaxRate4>
                   <ns0:TaxRate5>0000000</ns0:TaxRate5>
                   <ns0:SalesTaxAuthority1>00006154</ns0:SalesTaxAuthority1>
                   <ns0:SalesTaxAuthority2>00000000</ns0:SalesTaxAuthority2>
                   <ns0:SalesTaxAuthority3>00000000</ns0:SalesTaxAuthority3>
                   <ns0:SalesTaxAuthority4>00000000</ns0:SalesTaxAuthority4>
                   <ns0:SalesTaxAuthority5>00000000</ns0:SalesTaxAuthority5>
                   <ns0:AmountSalesTaxAuthority1>-80000</ns0:AmountSalesTaxAuthority1>
                   <ns0:AmountSalesTaxAuthority2>0</ns0:AmountSalesTaxAuthority2>
                   <ns0:AmountSalesTaxAuthority3>0</ns0:AmountSalesTaxAuthority3>
                   <ns0:AmountSalesTaxAuthority4>0</ns0:AmountSalesTaxAuthority4>
                   <ns0:AmountSalesTaxAuthority5>0</ns0:AmountSalesTaxAuthority5>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F740003 RNO 1 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>GT</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                   <ns0:TaxInfo_FlexField>
                      <ns0:Tag>F74B0010 Transaction Nature 723</ns0:Tag>
                      <ns0:Value>G</ns0:Value>
                   </ns0:TaxInfo_FlexField>
                </ns0:TransactionTaxInfo>
                <ns0:OrderQuantity>0</ns0:OrderQuantity>
                <ns0:Amounts>
                   <ns0:Amount_Gross>0</ns0:Amount_Gross>
                   <ns0:Amount_Taxable>-800000</ns0:Amount_Taxable>
                   <ns0:Amount_NonTaxable>0</ns0:Amount_NonTaxable>
                   <ns0:Amount_Tax>-80000</ns0:Amount_Tax>
                   <ns0:Amount_ExtendedPrice>-880000</ns0:Amount_ExtendedPrice>
                   <ns0:Amount_TaxVariance>0</ns0:Amount_TaxVariance>
                </ns0:Amounts>
             </ns0:TransDetail>
          </ns0:VATTransaction>
       </ns0:VATTransactionsContainer>
    </ns0:VATGenericExtractor>
    Thanks a lot.

  • The PDF file you selected is currently not supported

    error message.  received PDF file, able to sign it, but not to fill in blanks.  When I open it under my adobe account, the error message is, "the PDF file you selected is currently not supported"

    Not sure what you mean by Adobe account for working with a PDF file. You are in the Acrobat forum and would normally open the PDF in Acrobat (or Reader if that is what you have). It may be that you can fill it in because you have already signed it. Normally the signing locks the form. Without locking the form for further changes, the legal meaning of signing the form would not exist.

  • Power view couldn't load the model or data source because the data source type is not supported

    Hi,
    I have SQL 2012 standard edition in my local. I have developed SSAS & deployed in local. I have been asked to develop power view report in excel 2013 using this SSAS. But when I tried to do in Excel 2013 professional Plus, I am getting below error:
    Power view couldn't load the model or data source because the data source type is not supported.
    Does power view is supported in standard edition of SQL or it requires Business/Enterprise edition of SQL server?
    Thanks in advance

    What type of SSAS install are you using?
    PowerView in Excel 2013 currently only supports Tabular data sources.
    Only PowerView in Sharepoint 2013 supports both Tabular and Multi-Dim data sources. (provided you have the required Sharepoint and SQL updates installed)
    http://darren.gosbell.com - please mark correct answers

  • HT3275 Since updating OS to Mountain Lion from leopard, I get the following error message when trying to backup with time machine on external drive.  Could not complete backup to media share.  The network backup disk does not support the required AFP feat

    Since updating OS to Mountain Lion from leopard, I get the following error message when trying to backup with time machine on external drive.  "Could not complete backup to media share.  The network backup disk does not support the required AFP features."  What are AFP features and how do I get Time Machine to backup to my current external backup?

    This means that your NAS does not support the required encryption. Update your NAS to the latest firmware or ditch it and buy a Time Capsule (they are the most reliable when using TM).

  • Cannot open install assistant.  I get this error message: The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Pleas

    How can I downloade a trial of Adobe Elements 12? 
    I followed the instructions to download assistant...but get this message: The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Please contact the application author.

    Hi alposer,
    Please remove the copy of the Adobe Download Assistant you currently have installed and then reinstall the Adobe Download Assistant.
    Regards,
    Rave

  • Beta versions and other browsers are currently not supported by an application I use everyday, what do I need to do?

    When logging in to an application I get this message:
    You are attempting to access ezLaborManager with the following unsupported browser:
    Firefox Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20100101 Firefox/6.0.2
    ezLaborManager is only supported on current production versions of Internet Explorer and Firefox. "Beta" versions and other browsers are currently not supported.
    It is strongly recommended that you use a supported browser to avoid encountering access and display issues.
    WHAT VERSION OF FIREFOX SHOULD I USE?

    Well, you can waste a lot of time and money trying to get your old iron up to speed but the sad fact is, even though it may work with Color, it will most likely end in a less than satisfactory experience all around. You need to determine if your G5 has PCI, PCI-x or PCIe slots and then purchase the appropriate cards.
    However, Final Cut Studio 2 is optimized for the Intel processors. You will see users here and there using the newest models G5 with great success but quite honestly, you need a Mac Pro.
    Or just purchase the Aja IO/HD which is a firewire 800 interface and the only firewire device that will preview externally Color.

  • The application version J2EE_1_4_OR_LESS is not supported

    Hi All,
    What does the below shown exception mean? Please help.
    I found the below shown exception in the Netweaver 7.1 logs:
    com.sap.tc.jtools.jlinee.orpersistence.model.ORPersistenceModelBuilder##com.sap.tc.jtools.jlinee.orpersistence.model.ORPersistenceModelBuilder#Administrator#244####f9b12dc0ca1311dccbed0050568211b5#1     Telnet unknown            Wed Jan 23 16:32:01 PST 2008##0#0#Debug#1#/System/Server#Java###The application version J2EE_1_4_OR_LESS is not supported.
    No persistence units, if any, will be processed for this archive.
    [EXCEPTION]
    #1#java.lang.Throwable
                at com.sap.tc.jtools.jlinee.orpersistence.model.ORPersistenceModelBuilder.build(ORPersistenceModelBuilder.java:64)
                at com.sap.tc.jtools.jlinee.lib.model.impl.AbstractModelBuilderTest.execute(AbstractModelBuilderTest.java:48)
                at com.sap.tc.jtools.jlinee.lib.framework.dependency.Node.execute(Node.java:211)
                at com.sap.tc.jtools.jlinee.lib.framework.JLinEETestProcessor.executeAll(JLinEETestProcessor.java:153)
                at com.sap.tc.jtools.jlinee.lib.framework.JLinEETestProcessor.execute(JLinEETestProcessor.java:123)
                at com.sap.engine.jlinee.lib.impl.TestManager.executeTestsForAppComponent(TestManager.java:153)
                at com.sap.engine.jlinee.lib.impl.TestManager.executeTests(TestManager.java:88)
                at com.sap.engine.jlinee.lib.JLinEEValidatorImpl.validateApplication(JLinEEValidatorImpl.java:143)
                at com.sap.engine.services.deploy.server.validate.jlin.impl.JLinPluninImpl.exec(JLinPluninImpl.java:78)
                at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.validateApplication(DeployUtilTransaction.java:342)
                at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:241)
                at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:215)
                at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:384)
                at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:418)
                at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:2194)
                at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:318)
                at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:275)
                at com.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:109)
                at com.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:113)
                at com.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:55)
                at com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:160)
                at com.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:48)
                at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:178)
                at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
                at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:77)
                at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.performDeploy(DeployerImpl.java:631)
                at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doDeploy(DeployerImpl.java:488)
                at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:209)
                at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:154)
                at com.sap.engine.services.dc.cmd.telnet.impl.deploy.DeployerCommand.exec(DeployerCommand.java:238)
                at com.sap.engine.services.dc.cmd.telnet.impl.deploy.DeployerCommand.exec(DeployerCommand.java:181)
                at com.sap.engine.services.shell.processor.environment.CommandBase.exec(CommandBase.java:132)
                at com.sap.engine.services.shell.processor.Interpreter.applyLineCommand(Interpreter.java:401)
                at com.sap.engine.services.shell.processor.Interpreter.apply(Interpreter.java:153)
                at com.sap.engine.services.shell.processor.Shell.work(Shell.java:148)
                at com.sap.engine.services.shell.processor.managers.ShellProcessThread.run(ShellProcessThread.java:114)

    Please refere back to your installation guide for your respective Netweaver System.  NW 7.1 is not compatable with Java 1.4, it requires at least a java version of 1.5 to operate.  If you use the 'java -version' command, this will tell you what your current java release is.
    If this answers your question, please set this thread to answered.

  • OBIEE Error[14041] Nested Aggregation measure are currently not supported

    Hi,
    Please provide workaround for the OBIEE Error[14041] Error in measure definiion. Nested aggregation measures are currently not supported.
    I have two logical columns - Current YTD Invoice Quantity and Prior YTD Invoice Price. I want to create a column which is -
    (Current YTD Invoice Quantity * Prior YTD Invoice Price)/ sum(Current YTD Invoice Quantity * Prior YTD Invoice Price)
    sum in the denominator should be the sum of all rows returned by the report. So level based measures cannot be used as there are multiple report and dimension used may vary.
    Columns Current YTD Invoice Quantity and Prior YTD Invoice Price are already aggregated to Sum.
    If I try to do the sum on the physical column while creating logical column, the query is running for 6-7 hours and not giving any result. Both the columns belong to different alias table in physical layer.
    Please let me know if you guys know any work around for this issue. Also let me know whether this type of nested aggregation are supported in 11g or not?
    Thanks.

    Hi Adil,
    Yes, I did create a hierarchy for the time dimesion.
    No, I was not able to specify the aggregate rule since the source of the logical column is another logical column
    But the time hierarchy works for rows that is not based upon the SUM aggregate at the answers level.
    Say I have 3 columns: Income,Expense, Bottom Line (formula : Income- Expense)
    Income is created based upon a case statement in the Logical Column and
    Expense is also created based upon a case statement in the Logical Column.
    Income 1000 Rupees
    Expense -300 Rupees
    Bottom Line 700 Rupees (where the Bottom line is a row based upon the Answers aggregate formula
    which is SUM(Income+Expense))
    When I add a column year, I get the following output
    Income 2009 500 Rs
    Income 2008 500 Rs
    Expense 2009 -150 Rs
    Expense 2008 -150 Rs
    Bottom Line 2009 700 Rs
    Bottom Line 2008 700 Rs
    The Bottom Line doesn't spread across the Year
    Hope this helps you to understand what my problems is.
    Thank you!

  • How to resolve Error: "xsl:import" XSL Element Currently not Supported

    Hello Everyone,
    I have a xsl in my process to perform transformation of source schema to target schema.
    This xsl is importing another xsl.
    I am using <xsl:import> for this purpose.
    But when I try to see the "design" editor I am getting the error given below:
    Error: "xsl:import" XSL Element Currently not Supported
    In "source" editor JDeveloper is giving no error.
    I request you all to please come forward for the rescue ;-)
    Thanks in advance.
    Regards,
    Shanty

    I think the error message is telling you that the visual design surface that simplifies creating transforms doesn't support the <xsl:import>. If you need to use <xsl:import>, and assuming that <xsl:include> (which is quite similar to import) is also not supported, then the only other option is working on the XSLT stylesheet in the source editor.

  • Nested aggregate measure definitions are currently not supported

    Hi,
    I created a logical column which is based upon an existing logical column.
    The column has the formula SUM(existing_logical_column) and I get the following error when I tried to check in the changes "Nested aggregate measure definitions are currently not supported"
    Is there any work around this problem.
    Kindly help !

    Hi Adil,
    Yes, I did create a hierarchy for the time dimesion.
    No, I was not able to specify the aggregate rule since the source of the logical column is another logical column
    But the time hierarchy works for rows that is not based upon the SUM aggregate at the answers level.
    Say I have 3 columns: Income,Expense, Bottom Line (formula : Income- Expense)
    Income is created based upon a case statement in the Logical Column and
    Expense is also created based upon a case statement in the Logical Column.
    Income 1000 Rupees
    Expense -300 Rupees
    Bottom Line 700 Rupees (where the Bottom line is a row based upon the Answers aggregate formula
    which is SUM(Income+Expense))
    When I add a column year, I get the following output
    Income 2009 500 Rs
    Income 2008 500 Rs
    Expense 2009 -150 Rs
    Expense 2008 -150 Rs
    Bottom Line 2009 700 Rs
    Bottom Line 2008 700 Rs
    The Bottom Line doesn't spread across the Year
    Hope this helps you to understand what my problems is.
    Thank you!

  • How do you repair the EFI systems partitions when you mac tells you that the live file system is not supported?

    how do you repair the EFI systems partitions when you mac tells you that the live file system is not supported?

    I don't have good news. You will need to repartition and reformat the hard drive in order to determine if the drive is still OK or if it needs to be replaced. If your computer is a 2011 model or later do the following:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer.
    If your computer is pre-2011 model, then locate the original installer discs that came with the computer. Then do this:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1. You can now download a version of OS X from which to upgrade from your Purchases page in the App Store.

  • When trying to play videos I get the message "requested URL is not supported on this network" how do I fix this?

    I receive the error "requested URL is not supported on this network" when trying to play videos on my iPhone. Can you please advise how to fix this problem?

    Hi,
    You will need to re-instal iCal as an optional install from your OSX installer DVDs. Then run the Mac OS X 10.5.8 Combo Update.
    Best wishes

  • I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    Run MDP to HDMI for picture. Use a cable like this to run sound from your audio out on your Mac to your TV's audio in.  That's about all  you can do.

  • When i connect my macbook using the mini hdmi to my HD samsung tv, the response is always "mode not supported".  ideas?

    I'm using the mini HDMI to connec to a Samsung HDTV.  The response is always "Mode Not Supported."  Anyone know what to do?  Trying to watch TV shows from iTunes on the TV.  Thanks, Hugh

    Hi Jake,
    It's impossible to know without troubleshooting, but it sure sounds like a bad adapter or cable.

Maybe you are looking for

  • MSI 970a-g46 motherboard starts up but doesn't display anything.

    Hello, I'm having problems with a new motherboard I got from Amazon, specifically the 970a-g46. The following are my specs in use with this motherboard: CPU: AMD Phenom 2 x4 965 GPU: nVidia GeForce 560 GTX Ram: 8gb Kingston HyperX Fury 1866mhz. PSU:

  • How to call parameter of 101 page on page 1

    Greetings, i wanted to call parameter on login page "P101_USERNAME" on page 1 . Cust_user is a table from where i m authticating my username and password, Authtication is doing fine but i want the customer id of the specific customer in the cust_user

  • Apache + 2 Tomcats session replication problem.

    Greetings everyone. Before stating the problem, let me explain how my environment is set. I have two machines. One (PC1) running Apache (HTTP server 2.0.58) and one instance of Tomcat (5.0.28) and another machine (PC2) with another instance of Tomcat

  • Tcode for Purchase order Changes

    Hello Expert I Know there is one Tcode from which we could find changes happen in Purchase order at item level . Can any one let me know on the same which Tcode. I know the regular option by selecting the line item Environment->Item changes thanks Ab

  • ACS 4.2 to ACS 5.4 database replication

    Hello All, I would like to know if its possible setup database replication from Cisco ACS 4.2 server to ACS 5.4 server ? Thanks in advance Mohsin Saleem