Is element/type substitution supported?

Hi,
I have a schema that uses element/type substitution group. When I try to use these elements/types in <assign> section, I always get error saying type not found.
I'm wondering if the element/type substitution is supported? If yes, is there any samples?
I'm using PM2.1.1/Designer 0.9.10
Thanks in advance.

The WSDL of the EachService is test.wsdl (test1.xsd, test2.xsd) in the WSDLTest.jar ZIP file that I sent to [email protected] yesterday.

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.

  • Premiere Elements 8 & native support for Samsung AVCHD MP4 video?

    I'm excited about the release of version 8 of PSE and PE, but my big unanswered question is stated in the subject line: will Premiere Elements 8 natively support the MP4 files produced by my Samsung HMX-H104 ?
    I've been entirely unsuccessful with this file format and PE7.
    I've read throught the product descriptions and FAQ and Adobe makes reference to cameras from flash-drive camcorders, but doesn't offer any specifics. Native support looks like a crapshoot. Anybody with some insight to contribute?

    Thanks for pointing that out -- yeah, I see my error. I just did a little bit of web searching and it's not AVCHD. This seems to pretty well summarize it:
    http://www.camcorderinfo.com/content/Samsung-SC-HMX10-Camcorder-Review-34476/Format.htm
    "The Samsung ... outputs video in the H.264/MPEG-4 format (the file extension is .MP4). This highly-compressed video codec should not be confused with the competing AVCHD format. AVCHD is a type of H.264/MPEG-4 codec, but the version Samsung employs is different, with both benefits and drawbacks.
    "...the MPEG-4 video ... is adequate. ... this type of MPEG-4 is space efficient and less processor-intensive to edit than AVCHD."
    ...and...
    http://www.camcorderinfo.com/content/Samsung-HMX-H105-First-Impressions-Camcorder-Review-3 6130/Compression-amp-Media.htm
    "The Samsung HMX-H105 records video in the MPEG-4 AVC/H.264 format, the same as models from the previous years. MPEG-4 has clearly been adopted as the format of choice for HD camcorders, split into two camps. Sony, Canon, Panasonic, and most recently JVC, all use AVCHD, which is a subset of AVC/H.264. AVCHD experienced some serious stumbling blocks in its first few years, as existing hardware and software choked on the heavy data loads. It has, however, gotten much better in the past year. AVC/H.264 is also data-heavy, at least compared to old standard definition camcorders, but the format is easier to read. QuickTime can work perfectly with the files, and has the benefit of being free and dual-platform."
    I know this aspect has all been covered to death on these forums in the past, with respect to PE7 (which chokes on any Samsung .MP4 file I throw at it). While I've bookmarked the workaround posted by you in this thread (thanks!), I was hoping to avoid the extra steps à la native compatability with PE8.

  • Cost element type 90

    I need information about primary cost elements with cost element type 90.
    Has someone hands-on experience?
    I try to use this type of cost element linked to a reconciliation (customer) accont.

    Hello
    Cost Element Category 90
    Cost element for balance sheet accounts in Financial Accounting
    Cost elements of this category are generated automatically when you create cost elements in Controlling that have asset reconciliation accounts, that is, special balance sheet accounts, as corresponding general ledger accounts in Financial Accounting.
    You cannot change this cost element category in CO master data maintenance.
    FI does not require CO account assignments of category 90. However, if you do enter a CO account assignment, this is only updated statistically even for true CO objects.
    Cost elements of category 90 enable you to control the costs of an order or project budget during the acquisition of fixed assets that can be directly capitalized. To achieve this you enter a capital investment order or work breakdown structure (WBS) element in the appropriate field in the asset master data. The Asset Management (AM) component ensures that when the asset is acquired, the order or WBS element is automatically entered in the document.
    In Controlling, orders and WBS elements are debited statistically. This statistical debit is checked with the budget during availability control.
    The system does not support other uses of category 90 cost elements at present. You cannot plan using these cost elements.
    Reg
    *assign points if useful

  • Getting error while creating the variable of Schema Element type

    Hi everybody,
    For creating a variable of schema element type I am doing the following steps...
    Select 'Variables' after right clicking on bpel process. IN this window, go to 'Create VAriable' then select 'Element' type. Now in Type Choose, I expanded the my imported schema files. And selected a element type, then click ok to create this variable... I am getting the message...
    IN ORDER TO SAVE IMPORTED WSDL/SCHEMA FILES, YOU MUST HAVE A PARTNER LINK LOCATED UNDER THE CURRENT PROJECT DIRECTORY.
    What is mean by that.
    I have imported the schema files in project. AFter that I have imported them into the WSDL also. Now why I am getting error while creating the variable. However I can create variable directly in .BPEL file then everything is fine. And it is working also. But what is mean with the above error? Why I am not able to create variable through GUI?
    Thanks.

    Hi,
    I have this same problem this morning, and I was going crazy, until I found this webpage on the internet:
    [http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process|http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process]
    The idea is that the jdeveloper is not very good working with directories with spaces on the directory name. If you move all your work to a directory without spaces, it will work smoothly. At least, it had worked for me.
    Regards,
    Nacho

  • I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    This is most probably because the Periodicity input value has been configured as "Required" and no value has been input for it.
    Please enter a value and try to re-run Quick Pay.

  • I cannot get a dvd to play. The error message says "media type not supported". I think it is a .m2ts. Any idea on how I can get it to play?

    I cannot get a dvd to play on my computer. The error message says in iDVD is "media type not supported".
    The DVD was produced with a video camera and is in HD format. I think the the format is .m2ts?
    Any ideas on how to get this to play?

    Check out > Mac App Store - Free MTS M2TS Converter
    and/or others at > playing .m2ts format in OS X - Google Search

  • Loops not work - File type not supported

    Hi guys and girls
    one of the imacs (10.6.7) at the site I work at has begun to display the following message when you try to select any of the loops from within garageband.
    "file type not supported" and then you have no other option other than to abort. I have tried deleting the loop directory before dragging the loops back into garageband which has always fixed any issues with loops in the past, however the error still displays.
    Can anyone shed any light on this issue?

    The message I get is "Cannot open the file. Verify that the path and file name are correct and try again".
    Please see the Microsoft support doument Windows Media Player 9 Series for Mac OS X Readme. Scroll down to the section on Playing Protected Files.
    Sometimes you can view the source code for the web page to locate the specific media file. If you copied that address and then pasted that address in File > Open URL in Windows Media Player, you may get to listen to or watch the file. This trick does not always work.

  • E5 - unable to open. object type not supported

    hi. 
    2 Month back i brought Nokia E-5 Mobile and after few weeks i upgraded the Memory from 2Gb to 8GB. After copying all files from 2gb to 8gb am not able to open or install any existing programs and files. Even maps are not working. When trying to open or install the files am getting this erro " unable to open object type not supported " . Kindly help on this error.
    Thanks
    Velavan

    I have never attempted what you did, so can't say for certain, but I don't think memory card data is meant to be copied from one card to another (unless we're talking about data files like pictures or mp3's).  I don't understand what you mean by being unable to install files.  Are you trying to reinstall the programs that aren't working?  If your 2GB card still works normally, I suggest you format the 8 GB card, reinstall the programs to the empty card, and re-download the maps data.  If the programs still give you trouble, you may need to uninstall them from the 2 GB card first, but I don't think that should be necessary.  I hope that helps.

  • Could not generate stub object - The element type "META" must be terminated by the matching end-tag "".

    I am getting the following error message when I try invoking
    a webservice.
    Could not generate stub objects for web service invocation.
    Name: ProgrammePrivilege. WSDL:
    https://clientaccweb.reseaudistinction.com/CardHolderInfo.asmx?WSDL.
    org.xml.sax.SAXException: Fatal Error: URI=null Line=11: The
    element type "META" must be terminated by the matching end-tag "".
    It is recommended that you use a web browser to retrieve and
    examine the requested WSDL document for correctness. If the
    requested WSDL document can't be retrieved or it is dynamically
    generated, it is likely that the target web service has programming
    errors.
    The problem is, the webservice is working fine, the
    application was working yesterday, the error message just appears
    after a couple of days and I have to refresh the service in the CF
    Administrator. Once I refresh it, everything starts working again.
    Anyone else got this problem? ANY help would be appreciated!
    If you guys need my code anyway, I can attach it but like I
    said, everything works for a couple of days, then, out of the blue,
    it stops working so I doubt that it's my CFINVOKE that's the
    problem...

    Similar kind of problems here - reported back to Adobe a
    couple of months ago, so let's wait and hope for the best. My
    problems have related to registering multiple web services and
    executing them. One problem is that, If I register two identical
    (and quite complex) web services, I can only execute either of
    them. After CF restart, either of them works, but invoking the
    other doesn't work.
    For example; CF_Restart -> Try A first, A works -> B
    doesn't. Also, CF_Restart -> Try B first, B works -> A
    doesn't.
    CFMX7.0.2, Apache 2.2, WinXP

  • "In initializer for 'mxmlContent', type Object is not assignable to target Array element type..."

    Hi all,
    So I've have built an application on flash builder 4.5 using Christophe Coenraets' tutorial "Building an EmployeeDirectory" (http://www.adobe.com/devnet/flex/articles/employee-directory-android-flex.html#articlecont entAdobe_numberedheader).
    I'm getting this error message "In initializer for 'mxmlContent', type Object is not assignable to target Array element type mx.core.IVisualElement." and then the debugger highlights my code this line of my code "</s:List>" in my EmployeeDetails.mxml file. This started after I coded Part 5, Step 2 "Integrating with the Device Capabilities: Triggering the Actions".   The rest of the code debugged fine.
    I think it relates to Christophe's note "Note: Make sure you import spark.events.IndexChangeEvent (and not mx.events.IndexChangedEvent) for this code to compile.".  I don't know where to place this
    " import spark.events.IndexChangeEvent;" line of code. 
    Any help?  Tks in advance..
    Any help would be greatly appreciated.  Thanks

    You have a DataGrid directly inside a State element. Perhaps wrap it in an AddChild element?
    More information on using states can be found here:
    http://livedocs.adobe.com/flex/3/html/help.html?content=using_states_1.html

  • ERROR OGG-01148 programming error, data type not supported for column

    I am getting following error when I put null in insert statement
    2011-03-31 18:30:45 ERROR OGG-01148 programming error, data type not supported for column TXID in table advoss.tblaudittrail.
    I am replicating MySQL 5.5.9 to Oracle 11g rel2 via goldengate 11

    I am able to diagnose what is cuasing the problem
    unsigned flag was the culprit of this error
    I am able to insert null after removing unsigned flag.
    thank you very much for your kind support

  • Whether timestamp types are supported in oracle dynamic sql?

    Oracle has two dynamic sql models. The old and the new ANSI model. I wish to know where and how the timestamp oracle data types are supported.
    I am having trouble setting the timestamp data through pro*c using old dynamic sql. I tried to set it to raw 11 bytes and use type 187 (timestamp) and it segfaults! I try now to set it to string type and oracle says invalid month! I tried even using nls_timestamp_format setting but no luck. Obviously some thing is amiss.
    Can some body help me?
    I need this info rather urgently.
    Thanks.

    Yes it is possible
    TO_DATE(:variable,'FORMAT') in dynamic SQL

  • Cost Element  Type change  with balance in it

    Hi All,
    I have a P &L account created in FS00 maintained as cost element of type 1 , and now we want to change it as type 12 sales and Deductions Cost element, so when I try to change in FS00 it didn't allow me to do so as it is having some balance, so 
    What can I do now ?
    How can I change that cost element type from 1 to 12 ?
    How can I clear  the balance that  is that account now ?
    and where can I see what  balance is in that Cost element?
    Your Help greately appreciated,
    Sandhya

    Hi Eli,
    Thank you for the valueble report, But it shows I have no data in that cost element ,
    But When I try to change the CE category in FS00 it is saying the transactional data exists Message KS134 , 
    where can I see the actual dollar amount sitting in that Cost Element?
    and
    If I don't know how much in that CE how can I transfer the amount from this CE to another CE?
    Please Help me Guru s,,,
    Sandhya

  • APP-PAY-51119: Error was encountered when processing Element Type US_TAX_VE

    Hi.,
    Getiing Error while running the quickpay request.
    Application :11.5.10.2
    Database :10.2.0.5
    OS : HP UX
    Error
    HR_51118_HRPROC_ERR_OCC_ON_ASG
    ASGNO 179279
    APP-PAY-51118: Error was encountered when processing assignment 179279
    HR_51119_HRPROC_ERR_OCC_ON_ET
    ETNAME US_TAX_VERTEX
    APP-PAY-51119: Error was encountered when processing Element Type US_TAX_VERTEX
    Invalid jurisdiction code found in primary work location

    Please see (Payroll Process Fails: FORMULA_ERROR_TEXT A compiled version of the formula 431 cannot be found Compiled Version of formula cannot be found [ID 358881.1]).
    Thanks,
    Hussein

Maybe you are looking for

  • How to use asolute in the RTF

    Hi all, I am developing some reports in rtf using xml as sourece. I have one variable -VR I am passing some value to it. It is running balance of sub ledger. Value is –VE. I want to absolute the value and display CR for –VE value. Regards Dixit

  • ORABPEL-02178  - How to Solve

    I have a cluster with 2 nodes. My bpel proccess deploy and seems to be replicated to the other node but do not execute on the other node with this error: <2010-11-30 09:32:33,638> <ERROR> <default.collaxa.cube.engine> <BPELXExecLetUtil::getVariableDa

  • Packages from CVS?

    Hi guys, i have one quick question. i am new to Arch, so please excuse me if that was already asked. Is it possible to make packages from CVS? thanks for the help, Shemeta

  • Need Explanation on JDBC drivers

    Hi, I have write classes for database connection & resultset. I plan to make it as library jar so i can use it for future developments. I develop this on netbeans and have set the classpath for Mysql driver & Ms SQL driver. After i have created the j

  • Wie Ebenen ausrichten in Photoshop Elements 4?

    Hallo, ich finde einfach eine Funktion im Photoshop Elements nicht - oder gibt's die gar nicht (kann ich mir eigentlich kaum vorstellen)?? Und zwar möchte ich Ebenen ausrichten. Beispielsweise wenn ich in ein Bild ein anderes, kleineres Bild als Eben