Tomahawk1.1.3 ugrade exception...ExtensionsFilter not correctly configured.

Hi Experts,
I new to the world of JSF and im presently playing around with MyFaces Tomhawk implementation.
I tried the tree example using tomahawk.jar ,myfaces-api and myfaces-impl.
I was able to get the tree working with these version of jars.
But now when i upgraded to the latest jars i.e
myfaces-api 1.1.3
myfaces-imple1.1.3 and
tomahawk-1.1.3
I'm getting the following error...see the stack trace below:
java.lang.IllegalStateException: ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
org.apache.myfaces.renderkit.html.util.AddResourceFactory.throwExtensionsFilterMissing(AddResourceFactory.java:371)
org.apache.myfaces.renderkit.html.util.AddResourceFactory.checkEnvironment(AddResourceFactory.java:333)
org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:288)
org.apache.myfaces.custom.tree2.HtmlTreeRenderer.encodeJavascript(HtmlTreeRenderer.java:611)
org.apache.myfaces.custom.tree2.HtmlTreeRenderer.encodeBegin(HtmlTreeRenderer.java:152)
javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:512)
I googled for this also did the required changes.
here are the links i visited.
1) http://wiki.apache.org/myfaces/Upgrading_to_Tomahawk_1.1.3
2) http://www.mail-archive.com/[email protected]/msg23110.html
3) http://www.mail-archive.com/[email protected]/msg23094.html
Here's my web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.PRETTY_HTML</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config.xml</param-value>
</context-param>
<!-- The following listener is needed when using the Apache MyFaces
JSF implementation -->
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
</listener>
<!-- Extensions Filter -->
<filter>
<filter-name>MyFacesExtensionsFilter</filter-name>
<filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
<init-param>
<param-name>maxFileSize</param-name>
<param-value>20m</param-value>
</init-param>
</filter>
<!-- extension mapping for adding <script/>, <link/>, and other resource
tags to JSF-pages -->
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
<!-- extension mapping for serving page-independent resources (javascript,
stylesheets, images, etc.) -->
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>
<!-- Extensions Filter -->
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
</web-app>
Please help me out in fixing this exception.....im sure lot of people must have encountered this exception.
Thanks
Ved

Hi,
I have made some changes and it is now working.But i want it work in a portlet.There it is showing the text box but not the pop up button.It works fine as a stand alone application.How can i resolve this??
My code is as follows...
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="conference-room" version="2.4"
     xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
     <display-name>Conference Room</display-name>
     <context-param>
          <param-name>
               org.apache.myfaces.CHECK_EXTENSIONS_FILTER
          </param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
          <param-value>server</param-value>
     </context-param>
     <context-param>
          <param-name>javax.faces.application.CONFIG_FILES</param-name>
          <param-value>/WEB-INF/faces-config.xml</param-value>
     </context-param>
     <context-param>
          <description>
               This parameter tells MyFaces if javascript code should be
               allowed in the rendered HTML output. If javascript is
               allowed, command_link anchors will have javascript code that
               submits the corresponding form. If javascript is not
               allowed, the state saving info and nested parameters will be
               added as url parameters. Default: "true"
          </description>
          <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
          <param-value>true</param-value>
     </context-param>
     <context-param>
          <description>
               This parameter tells MyFaces if javascript code should be
               allowed in the rendered HTML output. If javascript is
               allowed, command_link anchors will have javascript code that
               submits the corresponding form. If javascript is not
               allowed, the state saving info and nested parameters will be
               added as url parameters. Default: "false"
               Setting this param to true should be combined with
               STATE_SAVING_METHOD "server" for best results.
               This is an EXPERIMENTAL feature. You also have to enable the
               detector filter/filter mapping below to get JavaScript
               detection working.
          </description>
          <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
          <param-value>false</param-value>
     </context-param>
     <context-param>
          <description>
               If true, rendered HTML code will be formatted, so that it is
               "human readable". i.e. additional line separators and
               whitespace will be written, that do not influence the HTML
               code. Default: "true"
          </description>
          <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
          <param-value>true</param-value>
     </context-param>
     <context-param>
          <description>
               If true, a javascript function will be rendered that is able
               to restore the former vertical scroll on every request.
               Convenient feature if you have pages with long lists and you
               do not want the browser page to always jump to the top if
               you trigger a link or button action that stays on the same
               page. Default: "false"
          </description>
          <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
          <param-value>true</param-value>
     </context-param>
     <!-- Extensions Filter -->
     <filter>
          <filter-name>extensionsFilter</filter-name>
          <filter-class>
               org.apache.myfaces.component.html.util.ExtensionsFilter
          </filter-class>
          <init-param>
               <description>
                    Set the size limit for uploaded files. Format: 10 - 10
                    bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
               </description>
               <param-name>uploadMaxFileSize</param-name>
               <param-value>100m</param-value>
          </init-param>
          <init-param>
               <description>
                    Set the threshold size - files below this limit are
                    stored in memory, files above this limit are stored on
                    disk.
                    Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
               </description>
               <param-name>uploadThresholdSize</param-name>
               <param-value>100k</param-value>
          </init-param>
     </filter>
     <!-- Filter Mappings -->
     <filter-mapping>
          <filter-name>extensionsFilter</filter-name>
          <url-pattern>*.jsf</url-pattern>
     </filter-mapping>
     <filter-mapping>
          <filter-name>extensionsFilter</filter-name>
          <url-pattern>/faces/*</url-pattern>
     </filter-mapping>
     <!-- Listener, that does all the startup work (configuration, init). -->
     <listener>
          <listener-class>
               org.apache.myfaces.webapp.StartupServletContextListener
          </listener-class>
     </listener>
     <!-- Faces Servlet -->
     <servlet>
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
     </servlet>
     <!-- Jetspeed Servlet -->
     <servlet>
          <description>
               MVC Servlet for Jetspeed Portlet Applications
          </description>
          <display-name>Jetspeed Container</display-name>
          <servlet-name>JetspeedContainer</servlet-name>
          <servlet-class>
               org.apache.jetspeed.container.JetspeedContainerServlet
          </servlet-class>
          <init-param>
               <param-name>contextName</param-name>
               <param-value>conference-room</param-value>
          </init-param>
          <load-on-startup>0</load-on-startup>
     </servlet>
     <!-- servlet mapping -->
     <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>*.jsf</url-pattern>
     </servlet-mapping>
     <servlet-mapping>
          <servlet-name>JetspeedContainer</servlet-name>
          <url-pattern>/container/*</url-pattern>
     </servlet-mapping>
     <welcome-file-list>
          <welcome-file>index.html</welcome-file>
          <welcome-file>index.htm</welcome-file>
          <welcome-file>index.jsp</welcome-file>
          <welcome-file>default.html</welcome-file>
          <welcome-file>default.htm</welcome-file>
          <welcome-file>default.jsp</welcome-file>
     </welcome-file-list>
</web-app>
Thanks and regards,
Gaurav Goel.

Similar Messages

  • JSF mapping missing. ExtensionsFilter not correctly configured.

    I am new to JSF's and using JBoss 4.2.0 application server.
    I trying to use <t:panelTabbedPane> and <t:panelTab> in my page like this:
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    <t:panelTabbedPane id= "tbParticipant" selectedIndex = "0">
         <t:panelTab id = "ptFirstName" label = "First Name"></t:panelTab>
         <t:panelTab id = "ptLastName" label = "Last Name"></t:panelTab>
    </t:panelTabbedPane>
    When I open my page i get this error
    ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered.
    Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    I have my web.xml configured exactlly as described at http://myfaces.apache.org/tomahawk/extensionsFilter.html
    Actually I copied and paste the whole text word by word as shown below but still getting that error.
    <filter>
         <filter-name>MyFacesExtensionsFilter</filter-name>
         <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>maxFileSize</param-name>
    <param-value>20m</param-value>
    <description>Set the size limit for uploaded files.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB
    </description>
    </init-param>
    </filter>
    <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.) -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
    </filter-mapping>
         Alternate mapping using a url-pattern instead of a servlet-name (you still need the /faces/myFacesExtensionResource/* mapping as well):
    <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    Please help and thank you in advance.

    Please post the configuration of the FacesServlet in the web.xml.

  • Integrate tomahawk into sun jsf ,extensionsFilter not correctly configured.

    Hi,All
    I find a issue when I integrate tomahawk 1.1.3 into sun jsf 1.1_02:
    tomcat 5.0.28
    java.lang.IllegalStateException: ExtensionsFilter not correctly configured. Resource mapping missing. Resources cant be delivered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.throwExtensionsFilterMissing(AddResourceFactory.java:371)
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.checkEnvironment(AddResourceFactory.java:352)
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:288)
    org.apache.myfaces.custom.tree2.HtmlTreeRenderer.encodeJavascript(HtmlTreeRenderer.java:611)
    I read information about it from "http://myfaces.apache.org/tomahawk/extensionsFilter.html"
    and reconfiguration my web.xml, but don't work. my code as follow:
    <!-- web.xml> -->
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
    <display-name>Web Configuration Info</display-name>
    <description>Platform</description>
         <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/Config/faces-config.xml,/WEB-INF/Config/faces-managed-beans.xml,/WEB-INF/Config/faces-config-validators.xml,/WEB-INF/Config/faces-config-taglibs.xml</param-value>
    </context-param>
         <filter>
              <filter-name>ExtensionsFilter</filter-name>
              <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
              <init-param>
                   <param-name>maxFileSize</param-name>
                   <param-value>20m</param-value>
              </init-param>
         </filter>
         <filter-mapping>
         <filter-name>ExtensionsFilter</filter-name>
              <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
              <servlet-name>FacesServlet</servlet-name>
         </filter-mapping>
         <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>FacesServlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
    </servlet>
         <servlet-mapping>
    <servlet-name>FacesServlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    <!-- index.jsp -->
    <%@ page session="false" contentType="text/xml;charset=utf-8"%>
    <%
    response.sendRedirect("./test/tree.jsf");
    %>
    I write web.xml reference to extensionsFilter.html, but doesn't work!
    what's make this issue?

    I think you need the following additional mapping:
        <filter-mapping>
            <filter-name>MyFacesExtensionFilter</filter-name>
            <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
        </filter-mapping>

  • JSF + Facelets + Tomahawk: ExtensionsFilter not correctly configured.

    Hello,
    I want to use JSF with facelets and tomahawk...
    I have a standard facelets configuration like the demo on their website...
    But at the moment, there is a tomahawk component in one of the pages I get the following error:
    java.lang.IllegalStateException: ExtensionsFilter not correctly configured. Resource mapping missing. Resources cant be delivered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    I googled the entire internet (two times), but nothing helps...
    I'm using Glassfish v2.1
    My web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5">
        <welcome-file-list>
            <welcome-file>welcome.jsp</welcome-file>
        </welcome-file-list>
        <context-param>
            <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
            <param-value>.xhtml</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.jsf</url-pattern>
        </servlet-mapping>
        <filter>
            <filter-name>MyFacesExtensionsFilter</filter-name>
            <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
            <init-param>
                <param-name>maxFileSize</param-name>
                <param-value>20m</param-value>
            </init-param>
        </filter>
        <filter-mapping>
            <filter-name>MyFacesExtensionsFilter</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
        </filter-mapping>
        <error-page>
            <error-code>500</error-code>
            <location>/errors/fatal.jsf</location>
        </error-page>
    </web-app>It didn't work with the JSF RI or MyFaces.
    Hoping, somebody could help me.

    I think you need the following additional mapping:
        <filter-mapping>
            <filter-name>MyFacesExtensionFilter</filter-name>
            <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
        </filter-mapping>

  • Youtube error message "The server is not correctly configured", what can i do?

    I have iPod Touch 3rd Generation with last iOS v4.3.5.
    Using the Youtube app i can not read any video!
    Always says "The server is not correctly configured" when i try reading any youtube video.
    I made some test, it's doing it even with Safari on my iPOD.
    My son have the same problem with an older iOS on his 3rd gen iPOD, and my wife have the same problem using her iPAD2.
    Does somebody knows what is going on?
    Thank you for your help.

    With any other device such as my Samsung TV or portable computers, access to Youtube is flawless, everything working perfectly.
    So i assume that any Apple iOS device with recent updates have a problem with Youtube.
    A bug or else from Apple iOS.
    Apple iOS is not compatible with Flash and now it seems it's not compatible with Youtube either.
    Maybe Youtube is using to much flash type programs.
    If you can help, please do so, because we can not show our Youtube videos with Apple iPod Touch or iPAD2 anymore.
    Hey, does Google have Youtube now?  If so, maybe Google is giving a hard time to Apple?
    Anybody from Apple or the community can't help?
    Thanks.

  • "server is not correctly configured" error  play podcast in iTunes?

    so my podcast madness radio streams and downloads fine from a desktop computer.
    but on the iphone 3gs 3.0.1 i get the "server is not correctly configured" error when i try to play the same podcast in the iTunes iPhone app.
    any idea the reason for this?
    thanks!
    - will hall

    what is the name of the podcast and file you're trying to play? i can try it on my 3g and let you know what happens there.

  • Why I can't to open youtube video that shown the server is not correctly configured?

    Youtube has an error the server is not correctly configured. Could you help me to solve this problem?

    With any other device such as my Samsung TV or portable computers, access to Youtube is flawless, everything working perfectly.
    So i assume that any Apple iOS device with recent updates have a problem with Youtube.
    A bug or else from Apple iOS.
    Apple iOS is not compatible with Flash and now it seems it's not compatible with Youtube either.
    Maybe Youtube is using to much flash type programs.
    If you can help, please do so, because we can not show our Youtube videos with Apple iPod Touch or iPAD2 anymore.
    Hey, does Google have Youtube now?  If so, maybe Google is giving a hard time to Apple?
    Anybody from Apple or the community can't help?
    Thanks.

  • The server is not correctly configured.

    I get this error when viewing YouTube videos on my iPad(4.3), while my iPhone (4.2.1) has no issues. Both connected to the same wifi network. How do I troubleshoot/resolve this issue?

    Side note: when I clicked the link in the email notification for this thread, it brought me here but signed in under your ID (JimHdk). Weird, guess it's a bug from the new discussions site.
    As for the network settings, everything is identical except for the IP (for obvious reasons). This is at my job, so there may be some odd things going on with the network layer (even though the iPad and iPhone are on the same vlan).
    I'm going to test this at home and see if I have any luck there.

  • Logon ticket missing; Single Sign-On is not correctly configured

    Dear Experts,
    we have tried to configure SSO on SAP PI environment, but without success.
    Can you pls advise where to look for fixing the SSO?
    regards,
    PM

    Hi
    Have you checked below links
    SSO between .Net and SAP PI
    http://help.sap.com/saphelp_nwpi71/helpdata/en/32/1c1041a0f6f16fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw70/Helpdata/en/32/1c1041a0f6f16fe10000000a1550b0/content.htm
    Regards,
    Venkata Ramesh

  • BX/BF  - Valuated Stock not correct in Bex-Query

    Hello Gurus,
    (we are on BI 7.0 with Sp16)
    The first qty for the material 10102883 was (assigned to Store) was posted on 01/16/2007.Why does the 01/2004 - 12/2006 shows as -4 and why does 01/2007 shows as 0.I have loaded BX [With 'NO MARKER UPDATE' Indicator NOT set] and the loaded History BF [With 'NO MARKER UPDATE' Indicator  SET] .Marker Update etc is correct.
    All I want to do is get  rid of -8 value for my history which is not correct in my query result:List cube value also pated in the end.:
    For :
    Material     Plant     
    10102883 2919
    ***************Without Movt Type Drill Down********
    Cal Yr/Moth Valuated stock qty     ValStockValue
    01.2004     -8.00 EA     -$ 27,580.72
    02.2004     -8.00 EA     -$ 27,580.72
    03.2004     -8.00 EA     -$ 27,580.72
    04.2004     -8.00 EA     -$ 27,580.72
    05.2004     -8.00 EA     -$ 27,580.72
    06.2004     -8.00 EA     -$ 27,580.72
    07.2004     -8.00 EA     -$ 27,580.72
    08.2004     -8.00 EA     -$ 27,580.72
    09.2004     -8.00 EA     -$ 27,580.72
    10.2004     -8.00 EA     -$ 27,580.72
    11.2004     -8.00 EA     -$ 27,580.72
    12.2004     -8.00 EA     -$ 27,580.72
    01.2005     -8.00 EA     -$ 27,580.72
    02.2005     -8.00 EA     -$ 27,580.72
    03.2005     -8.00 EA     -$ 27,580.72
    04.2005     -8.00 EA     -$ 27,580.72
    05.2005     -8.00 EA     -$ 27,580.72
    06.2005     -8.00 EA     -$ 27,580.72
    07.2005     -8.00 EA     -$ 27,580.72
    08.2005     -8.00 EA     -$ 27,580.72
    09.2005     -8.00 EA     -$ 27,580.72
    10.2005     -8.00 EA     -$ 27,580.72
    11.2005     -8.00 EA     -$ 27,580.72
    12.2005     -8.00 EA     -$ 27,580.72
    01.2006     -8.00 EA     -$ 27,580.72
    02.2006     -8.00 EA     -$ 27,580.72
    03.2006     -8.00 EA     -$ 27,580.72
    04.2006     -8.00 EA     -$ 27,580.72
    05.2006     -8.00 EA     -$ 27,580.72
    06.2006     -8.00 EA     -$ 27,580.72
    07.2006     -8.00 EA     -$ 27,580.72
    08.2006     -8.00 EA     -$ 27,580.72
    09.2006     -8.00 EA     -$ 27,580.72
    10.2006     -8.00 EA     -$ 27,580.72
    11.2006     -8.00 EA     -$ 27,580.72
    12.2006     -8.00 EA     -$ 27,580.72
    01.2007     -4.00 EA     -$ 13,790.36
    02.2007     -4.00 EA     -$ 13,790.36
    03.2007     -4.00 EA     -$ 13,790.36
    04.2007     0.00 EA     $ 0.00
    01.2004     4.00 EA     $ 13,790.36
    02.2004     4.00 EA     $ 13,790.36
    03.2004     4.00 EA     $ 13,790.36
    04.2004     4.00 EA     $ 13,790.36
    05.2004     4.00 EA     $ 13,790.36
    06.2004     4.00 EA     $ 13,790.36
    07.2004     4.00 EA     $ 13,790.36
    08.2004     4.00 EA     $ 13,790.36
    09.2004     4.00 EA     $ 13,790.36
    10.2004     4.00 EA     $ 13,790.36
    11.2004     4.00 EA     $ 13,790.36
    12.2004     4.00 EA     $ 13,790.36
    01.2005     4.00 EA     $ 13,790.36
    02.2005     4.00 EA     $ 13,790.36
    03.2005     4.00 EA     $ 13,790.36
    04.2005     4.00 EA     $ 13,790.36
    05.2005     4.00 EA     $ 13,790.36
    06.2005     4.00 EA     $ 13,790.36
    07.2005     4.00 EA     $ 13,790.36
    08.2005     4.00 EA     $ 13,790.36
    09.2005     4.00 EA     $ 13,790.36
    10.2005     4.00 EA     $ 13,790.36
    11.2005     4.00 EA     $ 13,790.36
    12.2005     4.00 EA     $ 13,790.36
    01.2006     4.00 EA     $ 13,790.36
    02.2006     4.00 EA     $ 13,790.36
    03.2006     4.00 EA     $ 13,790.36
    04.2006     4.00 EA     $ 13,790.36
    05.2006     4.00 EA     $ 13,790.36
    06.2006     4.00 EA     $ 13,790.36
    07.2006     4.00 EA     $ 13,790.36
    08.2006     4.00 EA     $ 13,790.36
    09.2006     4.00 EA     $ 13,790.36
    10.2006     4.00 EA     $ 13,790.36
    11.2006     4.00 EA     $ 13,790.36
    12.2006     4.00 EA     $ 13,790.36
    01.2007     4.00 EA     $ 13,790.36
    02.2007     4.00 EA     $ 13,790.36
    03.2007     4.00 EA     $ 13,790.36
    04.2007     0.00 EA     $ 0.00
    01.2004     0.00 EA     $ 0.00
    02.2004     0.00 EA     $ 0.00
    03.2004     0.00 EA     $ 0.00
    04.2004     0.00 EA     $ 0.00
    05.2004     0.00 EA     $ 0.00
    06.2004     0.00 EA     $ 0.00
    07.2004     0.00 EA     $ 0.00
    08.2004     0.00 EA     $ 0.00
    09.2004     0.00 EA     $ 0.00
    10.2004     0.00 EA     $ 0.00
    11.2004     0.00 EA     $ 0.00
    12.2004     0.00 EA     $ 0.00
    01.2005     0.00 EA     $ 0.00
    02.2005     0.00 EA     $ 0.00
    03.2005     0.00 EA     $ 0.00
    04.2005     0.00 EA     $ 0.00
    05.2005     0.00 EA     $ 0.00
    06.2005     0.00 EA     $ 0.00
    07.2005     0.00 EA     $ 0.00
    08.2005     0.00 EA     $ 0.00
    09.2005     0.00 EA     $ 0.00
    10.2005     0.00 EA     $ 0.00
    11.2005     0.00 EA     $ 0.00
    12.2005     0.00 EA     $ 0.00
    01.2006     0.00 EA     $ 0.00
    02.2006     0.00 EA     $ 0.00
    03.2006     0.00 EA     $ 0.00
    04.2006     0.00 EA     $ 0.00
    05.2006     0.00 EA     $ 0.00
    06.2006     0.00 EA     $ 0.00
    07.2006     0.00 EA     $ 0.00
    08.2006     0.00 EA     $ 0.00
    09.2006     0.00 EA     $ 0.00
    10.2006     0.00 EA     $ 0.00
    11.2006     0.00 EA     $ 0.00
    12.2006     0.00 EA     $ 0.00
    01.2007     0.00 EA     $ 0.00
    02.2007     0.00 EA     $ 0.00
    03.2007     0.00 EA     $ 0.00
    04.2007     0.00 EA     $ 0.00
    05.2007     0.00 EA     $ 0.00
    06.2007     0.00 EA     $ 0.00
    07.2007     0.00 EA     $ 0.00
    07.2007     0.00 EA     $ 0.00
    09.2008     4.00 EA     $ 13,790.36
         4.00 EA     $ 13,790.36
    ********With Movt Type Drill Down ************************
    Calendar Year/Month     Movement Type     Valuated stock qty     Valuated stock qty
    01.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    02.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    03.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    04.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    05.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    06.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    07.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    08.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    09.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    10.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    11.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    12.2004     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    01.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    02.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    03.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    04.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    05.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    06.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    07.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    08.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    09.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    10.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    11.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    12.2005     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    01.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    02.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    03.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    04.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    05.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    06.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    07.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    08.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    09.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    10.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    11.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    12.2006     101     -8.00 EA     -8.000 EA
         102     4.00 EA     4.000 EA
    01.2007     101     -4.00 EA     -4.000 EA
         102     4.00 EA     4.000 EA
    02.2007     101     -4.00 EA     -4.000 EA
         102     4.00 EA     4.000 EA
    03.2007     101     -4.00 EA     -4.000 EA
         102     4.00 EA     4.000 EA
    09.2008     #     4.00 EA     4.000 EA
    Over All Result          4.00 EA     4.000 EA
    **********************R/3 Values From MB5B ********************
    The MB5B (in R/3) values are as follows :
    Valuation Area   2919                                                                    
    Material         10102883                                                                
    Description      NUBBINS:LIFT,11-3/4" 54.50 LB FJL                                                                               
    Stock/Value on 01/01/0000                    0,000  EA                         0,00  USD 
      Total/Val. of Receipts                    12,000  EA                    41.371,08  USD 
      Total/Value of Issues                      8,000- EA                    27.580,72- USD 
    Stock/Value on 12/31/9999                    4,000  EA                    13.790,36  USD                                                                               
    SLoc MvT S Mat. Doc.  Item DocumentNo Pstng Date          Quantity BUn     Amount in LC                                                                               
    SB04 101 Q 5000509175    3 5000000647 01/16/2007            4,000  EA        13.790,36  
    SB04 102 Q 5000529373    3 5000004152 04/02/2007            4,000- EA        13.790,36- 
    SB01 101 Q 5000537141    2 5000005641 04/25/2007            4,000  EA        13.790,36  
    TPSI 415 Q 4900197566    1 4900003128 07/03/2007            4,000- EA        13.790,36- 
    TPSI 415 Q 4900197566    2 4900003128 07/03/2007            4,000  EA        13.790,36  
    List cube value  ********
    2919     000000000010102883     321     Q     B     Q     03.07.2007     200707     EA     USD     0,000     0,00     4,000
    2919     000000000010102883     321     Q     A     Q     03.07.2007     200707     EA     USD     4,000     0,00     0,000
    2919     000000000010102883     415     Q     A     Q     03.07.2007     200707     EA     USD     4,000     13.790,36     4,000
    2919     000000000010102883          Q     A     Q     10.09.2008     200809     EA     USD     4,000     13.790,36     0,000
    2919     000000000010102883     101     Q     B     Q     16.01.2007     200701     EA     USD     4,000     13.790,36     0,000
    2919     000000000010102883     102     Q     B     Q     02.04.2007     200704     EA     USD     4,000-     13.790,36-     0,000
    2919     000000000010102883     101     Q     B     Q     25.04.2007     200704     EA     USD     4,000     13.790,36     0,000
                                            EA          16,000     41.371,08     8,000
    *****************************End of List cube **Values .
    Most of the materials display the stock in the Bex correctly.Few of them (UOM) with EA (each- UOM) is behaving strangely.
    I hope some one can address this issue.      
    Pints will be awarded for sure.Thanks in Advance.

    Hello,
    I have the same problem with Flat mode is not supported! at ... Characteristic.setHierarchy(Characteristic.java:335):
    Open, close, reload of the query does not help.
    Other SDN-thread "500 Internal Sever - Flat Mode is not Supported!" related to transaction RSRT.
    Execution of query via RSRT works, but the problem still persists in the BEx Web Analyzer.
    Could be related to a BEx Web Analyzer "bookmark" ("Personalize Web Application").
    I have not deleted any item. We use SAP BW 7.0 with a patch level approx. 09.2009.
    The "flat-mode" seems to be the  "BEx table mode".
    SAP hints do not seem to fit here:
    - 715820 BW 3.x Front-End Patch 14 (we use BW 7.0)
    - 874825 SAPBWNews for BW 3.x Front-End Support Package 19
    - 874827 SAPBWNews for BW 3.5 Front-End Patch 08 (we use BW 7.0)
    - 905229 update to SAPTableTree
    - 909824 Termination in flat mode when an object is deleted (old?)
    - 909827 Incorrect InfoProvider-dependent characteristic values
    - 910602 Condition includes too many characteristics (usage of deleted elements)
    - 915215 Termination when a query definition is changed (old? visibility of elements?)
    - 968273 Cache with flat files: Exception is not caught (does not apply to given error)
    Any new solutions?
    Best regards
    Thomas

  • Create the object - not correct data in the file ?

    I have the text file, then I parse and create objects MyDocument (one row = one document). If row is corect then I create object MyDocument. But what I must do when row is not correct. The row can have 3 type of errors:
    1.Not correct length of row
    2.Not filled required fields in row
    3.Field are filled by not correct data
    Is a good to throw exception when I get one of this errors. Do I need to store this errors on separate class (MyObjectErrors extends Exception)?
    So when row is correct I create the object MyDocument. Otherwise I NOT create object MyDocument and throw exception. Is this a good solution?

    One question These 3 error you want together or what let me know i ll do that code n give you

  • Email body format is not correctly in SOST using SO_DOCUMENT_SEND_API1

    Hi Experts,
    I am sending email from my program, Email body is not coming correct format in the SOST as it is in the internal table.
    Below code i was written if any one knows please suggest.
        CONCATENATE DBHOST ':' SY-REPID INTO SUBJECT.
        DESCRIBE TABLE EMAIL_BODY LINES LINCOUNT.
        MOVE SUBJECT TO V_DATA-OBJ_DESCR.
        V_DATA-OBJ_NAME = 'TEXT'.
      IT_PACK-HEAD_START = '000000000000001'.
      IT_PACK-BODY_START = '000000000000001'.
      IT_PACK-DOC_TYPE = 'HTM' .
      IT_PACK-BODY_NUM = LINCOUNT.
      APPEND IT_PACK.
      IT_RECEIVER-RECEIVER = ADDRESSEE.
      IT_RECEIVER-REC_TYPE = 'U'.
      IT_RECEIVER-COM_TYPE = 'INT'.
      APPEND IT_RECEIVER.
      LOOP AT EMAIL_BODY.
        MOVE EMAIL_BODY-TDLINE TO IT_TEXT-LINE.
        APPEND IT_TEXT.
        CLEAR IT_TEXT.
      ENDLOOP.
        lv_RECEIVER = program input field email address.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
         DOCUMENT_DATA                    = V_DATA
         PUT_IN_OUTBOX                    = 'X'
         SENDER_ADDRESS                   = lv_RECEIVER
         SENDER_ADDRESS_TYPE              = 'INT '
        TABLES
          PACKING_LIST                    = IT_PACK
         CONTENTS_TXT                     =  IT_TEXT
          RECEIVERS                       = IT_RECEIVER
       EXCEPTIONS
         TOO_MANY_RECEIVERS               = 1
         DOCUMENT_NOT_SENT                = 2
         DOCUMENT_TYPE_NOT_EXIST          = 3
         OPERATION_NO_AUTHORIZATION       = 4
         PARAMETER_ERROR                  = 5
         X_ERROR                          = 6
         ENQUEUE_ERROR                    = 7
         OTHERS                           = 8.
    Eagerly waiting for your response.
    Thanks,
    Kumar

    what do you mean by "not correctly"?  Is the text wrapping at 80 characters, or ??  Where's your example of the "not correctly" text?

  • SiteMinder Authentication Realm has NOT been correctly configured and...

    Hi All,
    When I set the realm (associated with the authentication provider) as UNPROTECTED, I see the following in my AUWebAgent.log (authentication web agent log):
    [31 Aug 2006 16:19:07,050] [main] [INFO] Configuration: Support for TP cookies is : ENABLED.
    [31 Aug 2006 16:19:07,050] [main] [INFO] Configuration: DefaultAgentName: bppttest.micron.com.
    [31 Aug 2006 16:19:07,051] [main] [INFO] Configuration: FilterDomainName: DISABLED
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Creating caches ..
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: No Cache Timeout specified. Default is 600 seconds
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: No Resource Cache Size specified. Default is: 0
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: No Authentication Cache Size specified. Default is: 0
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: No Authorization Cache size specified. Default is: 0
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: Auditing is DISABLED
    [31 Aug 2006 16:19:07,051] [main] [DEBUG] Configuration: Caching for anonymous users is DISABLED
    [31 Aug 2006 16:19:07,053] [main] [DEBUG] The SiteMinder Resource Manager is checking if resource "/smauthenticationrealm" is Protected.
    [31 Aug 2006 16:19:07,129] [main] [INFO] Resource "/smauthenticationrealm" is NOT Protected.
    [31 Aug 2006 16:19:07,129] [main] [ERROR] The SiteMinder Authentication Realm has NOT been correctly configured and is unavailable.
    Additional info:
    Using SiteMinder 5.5 on WebLogic 8.1 sp5
    When & if I set all my realms as protected then I am unable to startup my servers and get the folowing error:
    We are trying to setup (as in intergrate SiteMinder with Savvion) SiteMinder v2 with weblogic 8.1 sp 5. We have appropriately included the references to variours siteminder related jars as per Netegrity's ASA document. We aren't using any webserver, instead wewould be using launching page (which be a protected resource). The following is the installation, configuration, and testing information related to various siteminder components:
    SiteMinder Identity Asserter (IA) - installed, configured & tested successfully.
    SiteMinder Authentication Provider - installed, configured & test result -> Unsuccessful.
    SiteMinder Authorziation provider - installed, configured & test result -> Unsuccessful.
    Has anyone seen anything similar to the following? My guess on the above is that it looks like it is trying initialise siteminder stuff every time we start each of the servers(admin, ejb and portal). Since the initialisation happens for the 1st time) when the admin server is started, an error is thrown complaining about not being to initialise when we start either portal or ejb after that. If this is true then is there a way around this problem?
    The Admin Server starts fine. But when we try to start either of the ejb or portal server, we get the following error:
    <Aug 16, 2006 4:03:01 PM MDT> <Critical> <WebLogicServer> <BEA-000364> <Server failed during initialization. Exception:weblogic.security.service.SecurityServiceRuntimeException: [Security:090371]Problem instantiating Authentication Provider weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [java.rmi.MarshalException: failed to marshal invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String ;); nested exception is:
            java.io.NotSerializableException: com.netegrity.siteminder.weblogic.sspi.auth.a9]
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090371]Problem instantiating Authentication Provider weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [java.rmi.MarshalException: failed to marshal invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String ;); nested exception is:
            java.io.NotSerializableException: com.netegrity.siteminder.weblogic.sspi.auth.a9]
    at weblogic.security.service.PrincipalAuthenticator.initialize(PrincipalAuthenticator.java:225)
    at weblogic.security.service.PrincipalAuthenticator.<init>(PrincipalAuthenticator.java:283)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doATN(SecurityServiceManagerDelegateImpl.java :581)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealm(SecurityServiceManagerDelegateImpl.java:420)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.loadRealm (SecurityServiceManagerDelegateImpl.java:700)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealms(SecurityServiceManagerDelegateImpl.java:733)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize (SecurityServiceManagerDelegateImpl.java:876)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:734)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:821)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
    at weblogic.Server.main(Server.java:32)
    >
    <Aug 16, 2006 4:03:01 PM MDT> <Emergency> <WebLogicServer> <BEA-000342> <Unable to initialize the server: weblogic.security.service.SecurityServiceRuntimeException: [Security:090371]Problem instantiating Authentication Provider weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [java.rmi.MarshalException : failed to marshal invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;); nested exception is:
            java.io.NotSerializableException: com.netegrity.siteminder.weblogic.sspi.auth.a9 ]>
    The WebLogic Server did not start up properly.
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090371]Problem instantiating Authentication Provider weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [java.rmi.MarshalException: failed to marshal invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String ;); nested exception is:
            java.io.NotSerializableException: com.netegrity.siteminder.weblogic.sspi.auth.a9]
    at weblogic.security.service.PrincipalAuthenticator.initialize(PrincipalAuthenticator.java:225)
    at weblogic.security.service.PrincipalAuthenticator.<init>(PrincipalAuthenticator.java:283)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doATN(SecurityServiceManagerDelegateImpl.java :581)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealm(SecurityServiceManagerDelegateImpl.java:420)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.loadRealm (SecurityServiceManagerDelegateImpl.java:700)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealms(SecurityServiceManagerDelegateImpl.java:733)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize (SecurityServiceManagerDelegateImpl.java:876)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:734)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:821)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
    at weblogic.Server.main(Server.java:32)
    Reason: weblogic.security.service.SecurityServiceRuntimeException : [Security:090371]Problem instantiating Authentication Provider weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [java.rmi.MarshalException: failed to marshal invoke(Ljavax.management.ObjectName ;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;); nested exception is:
            java.io.NotSerializableException: com.netegrity.siteminder.weblogic.sspi.auth.a9]
    Any help would be appreciated.
    Regards,
    Prashant

    but it just says it cannot repair due to another program being installed.
    I'd like to have a closer look at that error message please.
    Generate the error message again. While the error message box is open, hold down the Alt key and hit the PrtSc key. Paste the screenshot into an image file (using a program like Paint), and save the file.
    Start a reply here and click the wee camera icon at the top of the reply window. Click "Choose file", browse to the image file, select the file and click "Open". Now click "Insert file" to insert the screenshot into the reply.

  • ISO code 57 is not correct in the VAT registration number

    Hi Gurus,
    When we are trying to upload the customer master data, while entering the VAT No it is saying the following error:
    ISO code 57 is not correct in the VAT registration number
    Message no. AR191
    Could some body help me out.
    regards
    Srikanth

    Hi,
    Reason can be due to,
    The length of the VAT number, which is important for this check,
    is stored in field UINLN.
    If the check comes across an invalid format, an incorrect country key, or an incorrect check digit, the exception NOT_VALID is triggered, and an error message is sent.  If the check runs successfully, nothing will be drawn to the attention of the user.
    The check rules are stored in table T005 in the field PRUIN.
    There are few rules defined for
    1          Maximum value length, without gaps
    2          Maximum value length, numerical, without gaps
    3          Length to be kept to exactly, without gaps
    4          Length to be kept to exactly, numerical, without
    5          Maximum value length
    6          Maximum value length, numerical
    7          Length to be kept to exactly
    8          Length to be kept to exactly, numerical
    9          Check against country-specific edit format
    0          Deactivate Postal Code Check for USA

  • Cumulative Balances in PCA Balance Sheet cube are not correct.

    Hi
    Could you please help me in sorting out this Issue.
    Cumulative Balances in PCA Balance Sheet cube are not correct.
    After doing a reconciliation my conclusions are:
    Opening balance for 2005 (fiscal period 009.2005) is not in BW
    Opening balance for 2006 (fiscal period 000.2006) is not in BW
    Opening balance for 2008 (fiscal period 000.2008) is not in BW
    Opening balance for 2009 (fiscal period 000.2009) is not in BW.
    With the exception of fiscal year 2007(opening balance is in BW u2013 000.2007) the cumulative balance resets itself at the start of each fiscal year. The attached spreadsheet has an example of the data in BW and screen dumps from R3.
    Please help me how to find Opening balance in BW for PCA
    Thanks
    Bharti

    you need to derive your begining balance based on the fiscal year in your selection. It will be minus 1 year and period 12 for that year.
    pts appreciated.

Maybe you are looking for