Trip form - Warning PageBuilder will run with wrong client window ID"

Dear All,
I am getting following warning message before opening Trop form.
"error starting iView webdynpro PageBuilder will run with wrong client window ID"
If we click on OK button, the pdf form ets opened correctly.
How to remove this warning ?
Thanks,
Vinod

We ran into the exact problem when opening a PCR form from the "Status Overview" iView in MSS.
The solution is here: [Note 1171930 - Application will run with a wrong client window ID alert|https://service.sap.com/sap/support/notes/1171930]
This applies if you have one of the following versions and an iView is launched in a new window:
- NW04s SP15
- EhP1
Best regards,
Jill

Similar Messages

  • Error - Application will run with a wrong client window ID!

    Anyone here knows how to resolve this error:
    An error occurred while starting the iView.
    Application /webdynpro/dispatcher/ ... ... ... will run with a wrong client window ID!
    Do not continue; please report this problem to your administrator.
    The user encountered this pop-up message after she upgraded her browser to IE8. However, she's the only one having this error. Others who have switched to IE8 didn't encounter this error.
    SAP Note 1171930 -- is not applicable to us.
    Your prompt response is appreciated.

    I guess you need not use the library. The note says its a problem with library.
    It applies to you if you use custom framework page other than standard framework page.
    SAP can give you better response on why only one user gets it. In my scenario, we are able to consistently reproduce this.
    And I guess most of the bugs will have similar statements attached 'it occurs only for one user'. 

  • I have a I-mac that is not able to upgrade the os past 10.7.5, when I go to upgrade Pages it says i have to be running os 10.10, how can I get Pages that will run with os 10.7.5.

    I have a I-mac that is not able to upgrade the os past 10.7.5, when I go to upgrade Pages it says i have to be running os 10.10, how can I get Pages that will run with os 10.7.5.

    Click here and follow the instructions. If they’re not applicable, buy an iWork 09 DVD from a source such as Amazon or eBay.
    (116937)

  • HT1338 How do I get a driver for my Epson Stylus Photo 1400 so that it will run with Mountain LIon?  I tried "Software Update" and says "no update available"

    How do I get a driver for my Epson Stylus Photo 1400 so that it will run with Mountain LIon?  I tried "Software Update" and says "no update available".  I contacted Epson and was told all driver updates had to be obtained using "Software Update"?

    You will find the latest Epson drivers herehttp://support.apple.com/kb/DL1398.
    If you don't find a driver for your printer in the above, then install the Gutenprint drivers. It supports your model.

  • Is there a version of Quicktime that will run with Win8?

    I just got a new PC and nrrd to know if there is a version of quicktime that will run with Win8.
    Thanks for any help.
    Bob

    http://support.apple.com/kb/DL837

  • Pop up error encountered after upgrade--wrong client window id--POP UP

    Hi All,
       We have upgraded the system to EP7 SP15.on the upgraded system on certain actions i am getting a error pop up showing the following error message
    An error occured while starting the iview
    Application will run with a wrong client window ID!
    Do not continue please report this problem to your administrator
    Also
    we refered to R3 Note 1171930 which says its an SAP bug and for NWDS SP15 EPPSERVSP patch#2 should be applied.
    After applying the patch also i still encounter the POP -UPs.
    Please help

    If the user is using link from favourites of browser, Ask him to delete it and manually enter the url and Try.
    In my case, The user just deleted the saved link from Favorites and tried entering the url manually,
    though it is weird it worked.
    or else try these Notes 1450543, 1171930 .

  • Program will run with errors, but not at all in a .jar file

    First off, here is my program right now:
    import java.io.*;
    import java.util.*;
    import javax.swing.JOptionPane;
    public class prune
        public static void main(String args[])
            String steamid="",time="";
            BufferedReader infile = null;
            BufferedWriter outfile = null;
            FileReader fr = null;
            FileWriter wr = null;
            StringTokenizer strtk = null;
            String line = null;
         JOptionPane.showMessageDialog
          (null, "Vault.ini Pruner v2");
         String filepath = JOptionPane.showInputDialog("Enter the filepath to your vault.ini file.");
         String strdeletenumber = JOptionPane.showInputDialog("Enter the number that vault entries under will be deleted");
         int deletenumber = Integer.parseInt(strdeletenumber);
            try
                infile = new BufferedReader(new FileReader(filepath));
                outfile = new BufferedWriter(new FileWriter(filepath));
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Can't open vault.ini:" + ioe);
            try
                while((line=infile.readLine())!=null)
                    strtk = new StringTokenizer(line);
                    steamid = strtk.nextToken();
                    time = strtk.nextToken();
                    if(Integer.parseInt(time)>=deletenumber)
                        outfile.write(steamid);
                        outfile.write(" ");
                        outfile.write(time);
                        outfile.newLine();
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
            try
                outfile.close();
                infile.close();
            catch(IOException ioe)
               JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
                System.exit(0);
    }The program is supposed to open a vault.ini file and delete entries with a number lower than specified.
    Vault files are set up like this:
    STEAMID:X:XXXX 100000
    Right now if I run the program through command prompt it erases both the vault.ini and new vault.ini. I am also trying to put it in an executable jar file and when I do that I get a "Failed to load main class manifest attribute" error. Any ideas on what is causing this?

    I don't know what is happening. I put your exact code into a small build environment and used a build file for ant that I have and it works just fine. Manifest files are a total pain which is why I use a tool to generate it. I know that the last line has to be blank and that no line can be over a certain length.
    You've now spent several days avoiding ant and I got it running with ant in about 3 minutes. I'm really missing something.
    For reference, the build file is below should you change your mind. Put your prune.java in a new directory named "src" and save this file below as build.xml in the parent directory of "src". Run the program with java -jar lib/prune.jar
    <project name="jartest" default="main" basedir=".">
    <!-- location properties -->
        <property name="src.dir" location="src" />
        <property name="dest.classes.dir" location="classes" />
        <property name="dest.lib.dir" location="lib" />
    <!-- value properties -->
        <property name="dest.lib.name" value="prune.jar" />
        <property name="main.class" value="prune" />
    <!-- compile time value properties -->
        <property name="compile.debug" value="true" />
        <property name="compile.optimize" value="false" />
        <property name="compile.deprecation" value="true" />
        <property name="compile.source" value="1.4"/>
        <property name="compile.target" value="1.4"/>
    <!-- build -->
        <target name="main" depends="compile,jar" />
        <target name="compile">
            <mkdir dir="${dest.classes.dir}"/>
            <mkdir dir="${dest.lib.dir}"/>
            <javac srcdir="${src.dir}"
                         destdir="${dest.classes.dir}"
                         debug="${compile.debug}"
                         deprecation="${compile.deprecation}"
                         optimize="${compile.optimize}"
                         source="${compile.source}"
                         target="${compile.target}" >
            </javac>
        </target>
    <!-- clean -->
        <target name="clean">
            <delete dir="${dest.classes.dir}"/>
            <delete dir="${dest.lib.dir}"/>
        </target>
    <!-- jar -->
        <target name="jar" depends="compile">
            <jar destfile="${dest.lib.dir}/${dest.lib.name}"
                    basedir="${dest.classes.dir}">
                <manifest>
                    <attribute name="Built-By" value="${user.name}"/>
                    <attribute name="Main-Class" value="${main.class}" />
                </manifest>
            </jar>
        </target>
    </project>

  • D2kwutil running with Forms6i under Windows XP

    Hi
    I'm trying to run D2kwutil.pll version 6.0.6.0 with Forms6i 6.0.8.8.0 under Windows XP and it's not working when I try to call WIN_API_FILE package. I tryed to run the demo form (WAPIDEMO) that I downloaded with the PLL but they don't run either - As a matter of fact, this form don't open.
    Does anyone know what can I do to solve, I mean, to run this PLL under Windows XP - if it is possible?
    Thanks
    Joco Novaes
    System Analyst - CREMESP
    [email protected]

    How can anyone help if you don't describe the problem? Saying "it doesn't work" is of no value whatsoever.
    Regards,
    Robin Zimmermann
    Forms Product Management Not to be critical or anything Robin, but publicly berating and humiliating your customers doesn't help anyone either.
    This is especially true when its obvious from the name and the return email address that the person is Brazilian and is at least making the attempt to communicate the issue in English. Would you have understood their problem better if they'd used their native tongue? Obviously something didn't translate well - and it came accross as "its broken".
    And by the way, the customer did describe some of what was wrong... they attempted to open a specific demo form, which came bundled with the PLL file from YOUR company, and it wouldn't even open. They are running XP and Forms 6i, which as far as I last knew was not a certified product combination (which is likely part of the problem).
    A little effort (and a kind word) might go a long way toward finding a solution. And if you're just burnt out or having bad day, try to remember that its not OUR fault.
    With all due sincerity,
    John Julian
    john (dot) julian@verizon (dot) net

  • Non-Deterministic Exception When Connecting With Wrong Client Certificate

    I am working on an internal application and need to determine the correct client-side SSL certificate to use when connecting to a server (the user can supply multiple client-side certificates). I had expected that if I connected to a server using the wrong client certificate the java client would throw a SSLHandshakeException and I could then try the next certificate. This seems to work some of the time, however the java client will sometimes throw a “SocketException: Software caused connection abort: recv failed”, in which case it is not possible to know that the wrong certificate caused the problem.
    Below is the code I have been using to test as well as the intermittent SocketException stack trace. Does anyone have an idea as to how to fix this problem? Thanks in advance.
    Note: the TrustAllX509TrustManager is a trust manager that trusts all servers.
    protected void connectSsl() throws Exception {
          final String host = "x.x.x.x";
          final int portNumber = 443;
          final int socketTimeout = 10*1000;
          // Note: Wrong certificate (expect SSLHandshakeException).
          final String certFilename = "C:\\xxx\\clientSSL.P12";
          final String certPassword = "certPassword";
          final BufferedInputStream bis = new BufferedInputStream(new FileInputStream(new File(certFilename)));
          final char[] certificatePasswordArray = certPassword.toCharArray();
          final KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509");
          final KeyStore keyStore = KeyStore.getInstance("PKCS12");
          keyStore.load(bis, certificatePasswordArray);
          keyManagerFactory.init(keyStore, certificatePasswordArray);
          final KeyManager[] keyManagers = keyManagerFactory.getKeyManagers();
          final SSLContext context = SSLContext.getInstance("SSL");
          context.init(keyManagers, new TrustManager[]{new TrustAllX509TrustManager()}, new SecureRandom());
          final SocketFactory secureFactory = context.getSocketFactory();
          final Socket socket = secureFactory.createSocket();
          final InetAddress ip = InetAddress.getByName(host);
          socket.connect(new InetSocketAddress(ip, portNumber), socketTimeout);
          socket.setSoTimeout(socketTimeout);
          // Write the request.
          final OutputStream out = new BufferedOutputStream(socket.getOutputStream());
          out.write("GET / HTTP/1.1\r\n".getBytes());
          out.write("\r\n".getBytes());
          out.flush();
          InputStream inputStream = socket.getInputStream();
          ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
          byte[] byteArray = new byte[1024];
          int bytesRead = 0;
          while ((bytesRead = inputStream.read(byteArray)) != -1) {
             outputStream.write(byteArray, 0, bytesRead);
          socket.close();
          System.out.println("Response:\r\n" + outputStream.toString("UTF-8"));
       }Unexpected SocketException:
    main: java.net.SocketException: Software caused connection abort: recv failed
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:789)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.waitForClose(SSLSocketImpl.java:1435)
         at com.sun.net.ssl.internal.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:103)
         at com.sun.net.ssl.internal.ssl.Handshaker.sendChangeCipherSpec(Handshaker.java:612)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.sendChangeCipherAndFinish(ClientHandshaker.java:808)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverHelloDone(ClientHandshaker.java:734)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:197)
         at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:516)
         at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:454)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:884)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1096)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:623)
         at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
         at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
         at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)

    Thanks for the quick response. Here are answers to the questions:
    1) No, this issue is not associated with one particular certificate. I have tried several certificates and see the same issue.
    2) I agree it would be simpler to only send the required certificate, but unfortunately the project requires that the user be able to specify multiple certificates and, if a client-side certificate is required, the application try each one in turn until the correct certificate is found.
    3) Yes, I realize the TrustAllX509TrustManager is insecure, but I am using this for testing purposes while trying to diagnose the client certificate problem.
    In terms of testing, I am just wrapping the above code in a try/catch block and executing it in a loop. It is quite odd that the same exact code will sometimes generate a SSLHandshakeException and other times a SocketException.
    One additional piece of information: if I force the client code to use "SSLv3" using the Socket.setEnabledProtocols(...) method, the problem goes away (I consistently get a SSLHandshakeException). However, I don't think this solves my problem as forcing the application to use SSLv3 would mean it could not handle TLS connections.
    The code to specify the SSLv3 protocol is:
    SSLSocket sslSocket = (SSLSocket) socket;
    sslSocket.setEnabledProtocols(new String[] {"SSLv3"});
    One other strange issue: if instead of specifying the SSLv3 protocol using setEnabledProtocols(...) I instead specify the protocol when creating the SSLContext, the SocketException problem comes back. So if I replace:
    final SSLContext context = SSLContext.getInstance("SSL");
    with:
    final SSLContext context = SSLContext.getInstance("SSLv3");
    and remove the "sslSocket.setEnabledProtocols(new String[] {"SSLv3"})" line, I see the intermittent SocketException problem.
    All very weird. Any thoughts?

  • Form become white after running java app. under windows XP

    Hi,
    i developed an application (Form base application) that connect to FTP server and connect to a server via telnet.
    The application is running fine until i'm trying to run it under Windows XP.
    when i'm running the applicaion under windows XP and sending data, the form become WHITE (looks like stuck program).
    the app. is still running but the user think the app. is stuck.
    i try to INVALIDATE the form every time the loop is sending the data and many more ideas but it is still become white.
    the app. is working greate under windows 2000, 98, ME.
    does anyone know this problem and how to fix it?
    Thanks Guy.

    i "just" develope an application that connected to an exsiting servers and upload data to them.
    the problem is that when i run this app. under windows XP, the screen ( the application created in "Form Base") become white, like the program is stuck.
    there is no error, it's seems to be an invalidate problem, but i try to out invalidate everywhere but it is still doen't fix this problem.
    the app. doesnot stuck, it is just looks like that!!!!!
    the weird thing is when i run this app. under all other windows, it's working fine.
    if anything is not clear, write back.
    thanks.

  • Installed anfy java 2. free download. Previewing an aplet -will not run in FireFox but will run with I.E. . i have win 7 home.

    to preview an applet created in Anfy Java 2. will not load in FireFox. error message is that it can not find the file. however previewing in I.E does work.

    You must provide the exact name and version of the software for anyone to attempt to answer your question.  Primarily the functionality of any software is entirely dependent on what platforms the publisher intended the software to run on.
    If you are the programmer you need to go to the Microsoft Developer Network forums for assistance:
    http://msdn.microsoft.com/en-US/#fbid=Xt631zR1D90.
    This is an End Users' Peer-to-Peer forum that does not address programming from any perspective.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Will compiled 1.4.2_12 will run with java 1.4.1_5

    Dears,
    I'm deploying my target application on HP non-stop Tandem server which is using 1.4.1_5 and I can't upgrade for some technical issues and other application using this specific version.
    My development environment, I'm using jdk 1.4.2_12 on Windows.
    My question -as I couldn't find any windows version for Java for 1.4.1_5 as all for 1.4.2-:
    - Will my code run without problems on production, and without need for re-compilation?
    - From where can I downloaded JDK 1.4.1_5 for windows?
    Thanks for your time.

    it should run, but there might be subtle differences in how it's executed so test thoroughly.
    P.S. if you couldn't find a place to download 1.4.1, look again. Every release from 1.1.6 onward is available from the archives would you want them).

  • How will I know when Flash Player will run with out crashing in Protected Mode?

    Firefox 15.0.1 had to disable Flash Player Protection Mode to view flash videos. I want to know how I will know when to enable Protection Mode.

    It is a case of try it after upgrades and see if it works.
    There will probably be celebrations if and when it is fixed ;-)
    I have not noticed any Firefox staff predicting imminent fixes.
    (Which reminds me I need to try something, I remembered reading about a novel solution that I have not yet tried)

  • Forms don't view properly with Reader on Windows

    I recently made a PDF form on my Mac with InDesign CS3 and Acrobat 8. My client opens it up in Preview on Mac, fills out the fields on the form, and sends the filled out form to her clients. It views and prints fine on her end, as well as anyone who receives it on a Mac and opens it in Preview or Reader, but recipients using Windows on a PC get a form with only blank areas where all the filled in fields are.
    Can anyone suggest how I can fix this situation? Thanks!

    This is a known problem when Preview is used to fill and save a PDF form. Preview has limited support for forms and in fact corrupts them when it saves. More information is available here: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    Read the first few paragraphs and the discussion section.

  • Printer cannot be found on iphone after a few minutes of airprint being activated; running with bonjour on windows 7 64 bit

    I recently updated itunes to the latest version, downloaded and installed airprint and bonjour on my windows 7 64 bit pc to print to my non-airprint Epson Artisan 800 from my Iphone 5s with OS 7.0.4. I am using a Linksys E2500 router also. All works well for a few minutes then I lose the printer from my Iphone. Upon restarting Airprint services it immediately pops back up on the Iphone for those few minutes again. I have done several things I found in other forums to supposedly fix this problem to no avail. Any help is appreciated.

    I am having similar issue but on a large scale.  I have only a few printers that drop off while others stay.  I notice this on my iOS devices, but if I check my macbook they all still display, so only on iOS devices it is disappearing.

Maybe you are looking for

  • Running Windows on external hard drive

    Does anyone know if you can run bootcamp and then windows vista from an external hard drive. I have a 320 gig LaCie hard drive and the 17" iMac with the 2ghz Intel Core 2 Duo processor and 1 gig 667 mhz ddr2 sdram for memory.

  • Connecting to airport express two laptops

    hello.. i just bought another laptop... when i start itunes.. it recognizes the airport station... but when it tries to connect it keeps saying trying to connect..... i tried using help section... it mentioned something about adding a mac address but

  • Fastest way to create child class from parent?

    As the subject states, what do you folks find is fastest when creating child classes directly from the parent? (esp. when the parent is in a lvlib) I thought I'd post up and ask because the fastest way I've found to get working takes a few steps. Any

  • AS API(ByteArray.uncompress) doesn't work as expected in flash player 15.0.0.189 .

    This API is work well in flash player 15.0.0.167 and other previous player version. In the flash player 15.0.0.189 debug version, it will alert Error message: RangeError: Error #1506: 指定的范围无效.   at flash.utils::ByteArray/_uncompress()   at flash.util

  • Space Allocated and Space used for Table.

    Hi, Is there any way, we can find Space Allocated and Space used for Table wise. I know USER_TABLESPACES help use to find table space wise. But I would like to know, the space utilized by each table in the specific table space.