Forms applet does not load when request forwarded from custom servlet

I have an existing forms app that I wish to call from a newly-developed servlet. The servlet determines which form to call and then forwards the request to the forms servlet using RequestDispatcher.forward().
The request is forwarded correctly but when it is done all I see is a blank browser (IE7) window. When I View Source I see all the correct HTML code (from basejpi.htm) but it seems my browser does not attempt to load the forms applet. No messages are displayed in the Java Console. This is the same HTML that comes back if I run the forms app directly, e.g. click a link that goes straight to the forms servlet URL, only in that case the forms app starts up fine.
Anyone know why this does not work?

Figured out what is going on:
In basejpi.htm there is "<SCRIPT LANGUAGE=JavaScript SRC=java/forms_ie.js>" that creates an OBJECT tag to load the forms applet. I believe since the context of my custom servlet is different than that of the forms servlet, forms_ie.js is not found when the request is forwarded from my servlet.
One question answered raises another. There is also an OBJECT tag inside a NOSCRIPT tag for machines where scripting has been disabled:
<!-- Forms applet definition (start) -->
<NOSCRIPT>
<OBJECT name=FormsApplet
type="application/x-java-applet"
...>
</NOSCRIPT>
<SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>
My thinking is to remove the NOSCRIPT tag, and also the SCRIPT tag mentioned above, so all machines will simply see the OBJECT tag, like so:
<!-- Forms applet definition (start) -->
<OBJECT name=FormsApplet
type="application/x-java-applet"
...>
This makes me wonder why the SCRIPT option is there to begin with. Anyone see a downside to this approach?
Kevin

Similar Messages

  • Applet does not load in IE when hosted in form via SHDocVw.dll

    Hi
    I have a signed applet that usually works well in IE and Mozilla FireFox.
    It shows a popup window with the security question Yes/No/Always and works great thereafter.
    However
    We have now developed a Vb.Net application which hosts the SHDocVw.dll and now when for example I navigate to the web page within this embedded browser control from Microsoft the applet does not load and the popup window does not appear, when trying to access it via clientside scriptring it does not find the applet object.
    // this fails when called from embedded browser control
    <script>
    document.applets[0].prepareControl();
    </script>
    Please help me I would really like to get the applet to work when using this new vb.net application with the embedded browser control because it is becoming our company's standard to hos apps in this new app and not open a new instance of IE for each application.
    Thanks
    Ian Coetzer

    What does the trace say?
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}
    If no trace is created my guess is that the jre is never started, try the <object tag
    instead for your applet (html page) because your browser tries to run the applet with msjvm.

  • Applet does not load on app server when Free Design Layout

    Hi,
    I have to embed a an applet in a webpage of an web application. Before I go on to anything.. let me first tell you, I am using Netbeans 6.0
    As shown in the tuorial:
    [http://www.netbeans.org/kb/articles/tutorial-applets-40.html]
    1. I first made the "Applet" source say HelloApplet. java. After compiling and running it I get the HelloApplet.jar.
    2. I created a WebApplication and then from the properties -> packaging -> I "Add Project" HelloApplet.jar.
    3. Then I a webpage I "embeded" the applet.
    4. I run the web app and the applet gets loaded and everything is just fine.
    But before I go on I must tell you that the applet was designed in Null Layout. Now I edited the applet source once again and changed the layout to Free Design Layout*. ( this is available from Netbeans..on the HelloApplet.java .. go to the design view.. right click on the form and from the context menu you can change the layout to FreeDesign or whatever you might want).
    When I expand the "Libraries" node I see the that the library Swing Layout Extensions - swing-layout-1.0.3.jar has been added.
    When I "run" the "HelloApplet.java" file, the applet is shown in the appletviewer. No problems with that.
    But!
    When I try to Clean & Build and Run the WebApplication, the applet does not get loaded. On inspecting the java console I see the following error:
    java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: org.jdesktop.layout.GroupLayout$Group
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 10 moreIt clearly shows that the Free Design Layout has something to do with the GroupLayout which can be found by expanding the "Swing Layout Extensions - swing-layout-1.0.3.jar". Now when the HelloApplet.jar is created only the HelloApplet.class file gets included together with some other data but NOT the swing extensions. Hence when I run the web app the class file looks for the GroupLayout.class definition but can find it in the jar as its not included when the HelloApplet.jar is created.
    But with null layout there isint a problem because null layout takes the definitions from the JRE on the machine.. and so it runs without a hitch.
    My Question is : How can I run the applet with Free Design Layout? or is it possible to package the swing layout extensions in the HelloApplet.jar?<</u>
    Thanks for all your replies.
    Cheers.
    Edited by: arijit_datta on May 15, 2008 4:07 PM

    Solved.
    Here is the solution:
    [http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html|http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html]
    Cheers..
    Edited by: arijit_datta on May 16, 2008 7:41 AM

  • Applet does not load using java 1.5 through reverse proxy with certific...

    Hi,
    we have the following problem:
    When using java 1.5 in our browser, our applet does not load. Using java 1.4.2 it works. It also works using java 1.5.0 using another reverse proxy.
    The differences between the 2 reverse proxies (one works, one works not) we use is that the one through which the applet does not load has a certificate installed that is not for its hostname. Can this be the reason the applet does not load? Where can I find information about the sandbox of java 1.5.0 concerning these issues. Are there any docs of the security restrictions imposed by java 1.5.0 sandbox?
    Greetings,
    Tim

    Ok,
    the solution to this specific problem was a misconfigured reverse dns lookup.
    Greets,
    Tim

  • I have inserted an image into my form that does not reflect when i save it a a pdf

    I have insetred an image into my form that does not reflect when i save it as a pdf - please cna you assist?

    Hi leannedatel,
    There was a possible answer to this posted previously. Try this thread for a solution:
    http://forums.adobe.com/docs/DOC-4144
    Cheers!

  • XML Form Builder does not load

    I am having the following problem, when executing the Form Builder tool under Content Management, it does not load and i get the following error message:
    CONNECTION ERROR: couldn't read response code*
    And sometimes the window gets freezed.
    I have read some previous Threads regarding this issue but the solution did not work to me.
    Someting really strange is happening because if i log to port 80 (http://...) it works, but when I log to port 50000 (https://...) it does not, and that error message pops up.
    I have alredy run the Enviroment check Tool and results were OK in both urls, as follows:
    <i><b>https://*****.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 13:12:48                       *
    End Time: 2006-12-05 13:12:04                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:48
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:04
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:13
         -      Successfully loaded XML Forms Builder Jar from https://***net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 13:12:13
         -      End Time: 2006-12-05 13:12:47
         -      Successfully loaded SAP XML Toolkit Jar from https://****/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 13:12:47
         -      End Time: 2006-12-05 13:12:48
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:48
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:03
         -      Successfully loaded project list:
    http://*******.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 14:12:33                       *
    End Time: 2006-12-05 14:12:46                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:33
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:46
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 14:12:33
         -      End Time: 2006-12-05 14:12:23
         -      Successfully loaded XML Forms Builder Jar from http://****.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 14:12:23
         -      End Time: 2006-12-05 14:12:27
         -      Successfully loaded SAP XML Toolkit Jar from http://*******.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 14:12:27
         -      End Time: 2006-12-05 14:12:28
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 14:12:28
         -      End Time: 2006-12-05 14:12:29
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 14:12:29
         -      End Time: 2006-12-05 14:12:46
         -      Successfully loaded project list:
    </b></i>
    Don't know what can be, so if anyone has any idea it would be very helpful.
    Cheers,
    Ivan Milkovic

    Hello,
    Immediately after opening the XML forms editor from the Content Manager page, you will get a link Start Environment Check Tool.... Click on that and proceed for a check. It will take some 5-10 mins based on your connection speed.If every thing is successful, clear the browser cache and restart the browser and open forms editor again. It will open the data schema and properties filed and project browser and all.
    I was having this problem just now and i resolved it with the above steps.
    My JRE version is 1.6 and portal is EP 7 SPS 21 patched.
    Regards
    BP

  • ITunes does not load when connecting iPod Nano (4th Gen)

    I have my iTunes settings 'disable automatic syncing for iphones and ipods' unchecked, and in my iPod settings i have 'open iTunes when connected' option checked, and iTunes still does not load. How do I solve this?

    If you have itunes open and then connect the nano, what happens?

  • Ecore diagram editor does not load when I click the (aird) file

    When I click on an aird file , which I created for the first time to graphically edit an ecore diagram, the diagram editor does not load, but instead, Eclipse opens the aird file as xml in a text editor! Why this is happening? and how can I solve this? any thoughts?
    I am using Eclipse 4.4.2. in mac.
    I updated the content, with the hope to get a reply.

    Hi, sorry for the lag.
    This might happen depending on the perspective you are using, please try with the "Modeling" perspective.
    You should be able to load the .aird using right-click=>open and then see the corresponding diagrams as childs of the .aird file.

  • The last tab, furthest to the right, does not load when restarting FireFox.

    Whenever I restart firefox, the last tab I had opened does not load. The matter of restarting can be any kind: new add on installed, new firefox update, restarting the browser manually, or restarting my computer so that firefox is automatically closed. It's always the same problem. The last tab will be displayed as my New Tab page, which is blank. I can have 3 tabs open, and the first 2 will load just fine, but the last doesn't. This means that if I restart for an add-on or something, I need to go back into my history to pull up this last tab, which is inconvenient. And it may not have been my most recent tab. I may open this last tab, go back to an earlier tab and surf the web on that, building my history, and then restart firefox for whatever reason. In those instances, I need to open up the history window and dig for that last tab from memory.

    Alright. It appears to be an addon called Load Tabs Progressively. I'll just leave that disabled.

  • Back button on IE 11 does not load the dropdown selections from previous form

    We have a site in clasic ASP. There is a search criteria form with a few drop downs and a few radio buttons. While working in IE 11, When this form filled and submitted, the results show up. When the back button is hit, the previous form loads but the selections
    are lost. This works perfectly fine in IE 9. What has changed in IE 11 that this does not work. 
    Is there some setting that can get this feature back.
    Arun 

    Hi,
    your question would be better answered in a developers forum. Include with your question a link to your website so that it can be tested.
    usually the query parameters from a get request are used to populate a form with previously entered values. You may have coded your page to always refresh from the server.
    IE documentation for developers can be found here -
    http://msdn.microsoft.com/en-us/ie/ - there are no MSDN support forums for classic asp.
    Questions regarding Internet Explorer 8, 9 and 10 and Internet Explorer 11 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions. If you are a consumer looking for answers or to
    raise a question, it's highly recommended you head on over to http://answers.microsoft.com/en-us
    Rob^_^

  • Applet does not load with jre6

    Hi,
    I am getting following exception when I try to load an applet after installing jre6 in my machine.
    Applet works fine when I remove Jre6 and continue with earlier version of 1.4.2.
    My company's firewall does not create any issue when the version is 1.4.2.So I think
    that should not be a problem.Also I have tried testing the applet stuff after
    stopping the windows messenger process but it did not help either.
    Please suggest.
    Java Plug-in 1.6.0_10
    Using JRE version 1.6.0_10 Java HotSpot(TM) Client VM
    User home directory = D:\Documents and Settings\thapr02
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.NoClassDefFoundError: gias/olf_file
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
    at java.lang.Class.getDeclaredMethod(Unknown Source)
    at java.awt.Component.isCoalesceEventsOverriden(Unknown Source)
    at java.awt.Component.access$300(Unknown Source)
    at java.awt.Component$3.run(Unknown Source)
    at java.awt.Component$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Component.checkCoalescing(Unknown Source)
    at java.awt.Component.<init>(Unknown Source)
    at java.awt.Container.<init>(Unknown Source)
    at java.awt.Panel.<init>(Unknown Source)
    at java.awt.Panel.<init>(Unknown Source)
    at java.applet.Applet.<init>(Unknown Source)
    at gias.step4calicenses.<init>(step4calicenses.java:90)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: gias.olf_file
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 24 more

    From the forums,I can see that this problem remained unresolved...Just to inform..i have tried the following with no result:
    Are you using a proxy to access the internet? If you are (if you have
    selected a proxy in Tools -> Options -> General -> Connection Settings),
    then make sure that the Java plugin uses the same: [assuming Windows &
    Java 1.5] Start -> Settings -> Control Panel -> Java -> General ->
    Network settings -> Use browser settings.
    Can your browser run an applet from your local file system (i.e. a
    "file://"-URL instead of a "http://"-URL in the addressbar)?
    If you have installed the JDK you can find a couple of applets in the
    demo subdirectory of the JDK, e.g.
    C:\Program Files\Java\jdk1.5.0_04\demo\applets\Clock
    Try clearing your browser cache (Tools -> Options -> Privacy -> Cache
    -> Clear)
    Try clearing the Java plugin cache (Start -> Settings -> Control
    Panel -> Java -> General -> Temporary Internet Files -> Delete Files)
    Make sure that the Java plugin supports the <APPLET> tag: Start ->
    Settings -> Control Panel -> Java -> Advanced -> <APPLET> tag support
    PLEASE HELP

  • QuickTime Content Does Not Load When Using Safari

    For the past week or so, I've noticed that when using Safari, any QuickTime content fails to display, but instead, the QuickTime logo is displayed with a question mark in the center. That would indicate to me that Safari is not seeing that QuickTime is installed, but of course, it is. I tried actually reinstalling QuickTime, but that did not resolve the issue.
    Again, this has only started in the last week or so. I'm new to the MAC world, so my troubleshooting skills are more limited with OSX. I also have Firefox installed, and QuickTime content opens as normal when using Firefox.
    Any help would be appreciated. Thanks.
    iMac (Intel)   Mac OS X (10.4.7)  

    I have had the same problem for some time now. As well as this problem, some QT movies load into QT but the sound does not play.
    This all started when I loaded various other players such as VLC to run Windows Media Player stuff before Flip 4 Mac became universal. I have tried dumping prefs, turning off plug ins and a dozen other things between QT and Safari, including resetting Safarai and losing all my log ins etc.
    Nothing runs on say www.youtube.com We just get the big Q with a question mark over it. The keynote address released yesterday does not play with sound.
    I suggest we all look back and list what we did/installed just before the problem started and then we can compare and look for a common element.
    As to checking "block pop ups" I never had that on to begin with.
    We need to see if the problem is in Safari or Quicktime - or both. There are too many variables at the moment to narrow down the problem.
    Our other iMac which is identical does NOT have the problem - because I didn't try to load any other software on to it.

  • Nm-applet is not loading when using Slim

    I was using Gdm as login manager and networkmanager + nm-applet to manage the network. I just switched to Slim. But after that, nm-applet will not start automatically upon the login. Here is rc.conf looks like,
    INTERFACES=(!eth0 !wlan0)
    ROUTES=(!gateway)
    DAEMONS=(syslog-ng !network netfs dbus hal slim !gdm networkmanager @alsa @crond)
    What am I doing wrong?
    Last edited by navaneethkn (2010-05-23 04:44:22)

    Ok. I figured it out. I was running nm-applet& command after exec gnome-session command. I put it before that and it started working. But I still need to say "sudo nm-applet&".
    Now nm-applet is starting fine. But it is not remembering the password for the wireless connection. This is the message appearing when I start it.
    No keyring secrets found for Auto linux/802-11-wireless-security; asking user
    All these were working fine with Gdm. I am not sure about getting this correct with Slim.  I have done the setting changes described in http://wiki.archlinux.org/index.php/SLi … me_Keyring page. Here is my /etc/pam.d/slim file looks like.
    auth requisite pam_nologin.so
    auth required pam_env.so
    auth required pam_unix.so
    account required pam_unix.so
    session required pam_limits.so
    session required pam_unix.so
    password required pam_unix.so
    auth optional pam_gnome_keyring.so
    session optional pam_gnome_keyring.so auto_start
    Any help?
    Last edited by navaneethkn (2010-05-23 06:16:21)

  • Weblogic Admin console applet does not load

    I have installed Weblogic 6.1 SP3 with JDK 1.4.2_03. The admin console applet was
    working initially but when I installed oracle 8.1, the applet failed to load.
    A cross sign appears instead of navigation applet tree in the console application.
    I have set the classpath and java_home variables correctly. I tried to point java_home
    to jdk1.3.1 (java version shipped with Weblogic 6.1) and also changed entire classpath
    to point to jdk1.3.1 but no effect. The same configuration works on another machine
    where oracle is not installed.
    Please help...
    Thanks in advance
    Mahesh

    If you have any pride you will get off Tripod as quickly as possible. It forces popups and other unwanted advertising on visitors. Any time I see that a site is on Tripod or About, I just ignore it and click the next choice.
    BTW if you stay on Tripod, you should consider changing the 'e' in your user name to an 'o'.

  • WF does not restart when requester accept changes

    Hi,
    We have a problem with the non badi Workflow in SRM Server 5.0 (even with a 1 step Workflow WS10000129). When a approver (bbp_wfl_security = low)changes the Quantity or the Price the changed shopping cart returns to the Inbox of the requester. When the requester goes into his inbox and looks at the approval preview for the changed shopping cart in the graphic mode the result is “Approved”. When the requester clicks on “Accept changes” the shopping cart disappears out of his inbox. The shopping cart does not go to the approver again. The shopping cart becomes not a purchase order. We would expect that the workflow would restart after the requester clicks on “Accept Changes” however now it is a black box.
    Greetings,
    Wilko Karrenbeld

    Hi
    What type of Workflow is used in the ystem - Item level Workflow or SC Workflow. ?
    Couple of reasons can be behind this.
    1) Either  the BADI code in custom implementation is incorrect.
    2) start conditions for Workflows and sub-workflows are not correctly determined.
    3) Missing OSS note / Bug in ths system.
    Please refer to these OSS notes.
    <b>990317 Work item transferred after change has been accepted
    899943 'Accept changes' after rejection
    846334 BAdI workflows: Problems with 'Accept changes'
    944984 Non-BAdI workflows: No deletion when changes are accepted
    942089 'Accept changes' creates restart
    948733 Endless loop during approver determination of WS14000109
    725250 No workflow determined when creating a shopping cart
    986724 RBBP_OFFLINE_EVAL: Errors in "Accept Changes"
    995773 Partial rejections result in endless loops in approval
    976267 Partly rejected shopping carts cannot be changed
    863757 Item approval: Accepting changes goes back to same manager
    862661 Item approval: Accepting changes incorrect II
    796992 BADI Workflow with back and forth logic: No restart (PO)
    502918 EBP: Work item "for resubmission" remains in inbox
    855867 ordering on behalf remains in awaiting approval
    815415 Item approval: Accepting changes
    866089 Button "Accept changes" at complete rejection
    955863 Button "Accept changes" for approver</b>
    Incase nothing helps, please raise an OSS message with SAP as well.
    Regards
    - Atul

Maybe you are looking for

  • Which Sales order created a purchase order?

    Dear Experts, What would be the table to look at to check which Sales order is  used to create a type of purchase order? I know the stock purchase order but not the sales order number that triggered an auto creation of this PO. Pls advise. Thanks reg

  • IPhone Slow to Open Messages

    We have roughly 80 iPhones deployed all tied to Exchange 2003. These are mostly iPhone 4 and about 10 iPhone 4S units. We have one iPhone 4S which is problematic. It is running IOS 5.0.1 (as most of them are) and opens e-mail very slowly. By open I d

  • Sharing .indd files online

    Is it possible to share an .indd file that would allow someone to make and save edits online?  I basically want to be able to collaborate without having to screen share or package and email the file back and forth -- i just want the file to "live" in

  • How to detect conversion errors due to charset mismatch client/server?

    If a character cannot be converted by OCIStmtExecute (Bind Variable) and/or OCIStmtFetch (Into Variable), either a replacement character (usually question mark) or a similar character (e.g. è -> e) is used instead. I am looking for a possibility to g

  • Downgrade Safari to 4.0.5 after OS 10.6.4 update possible?

    Has anyone successfully downgraded safari 5 to ver. 4.0.5 after doing the latest OS 10.6.4 upgrade? Specifically, I was going to use pacifist to do this, as described in the following thread: http://discussions.apple.com/thread.jspa?threadID=2456152&