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'. 

Similar Messages

  • 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

  • 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 .

  • 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

  • What is a good wireless printer that will work with a macbook and windows laptops?

    What is a good wireless printer that will work with a macbook and windows laptops?

    Any printer that visibly supports OS X will work fine. My personal recommendation is Brother, followed rather distantly by Canon.
    Recently I have grown to favor Brother printers over the others. They are inexpensive, their OS X integration is well-implemented, their consumables are reasonably priced, and their technical support is free forever. If you need to call them and explain that you have a Mac, you will immediately receive competent assistance.
    The third and subsequent choices are so far down from those two they're not worth mentioning. I have grown to dislike HP printers, for all the above reasons.
    Read user reviews from vendor websites - Amazon is a good place to start, since Amazon lets people write almost anything they want... right, wrong, or completely idiotic.
    Read the reviews on the respective manufacturers' websites as well, but consider the likelihood of them deleting negative reviews.
    Process all those user reviews employing your own common sense, and draw your own conclusions.
    Consider AirPrint compatibility for future needs. Those features add very little to the price over a USB - only or wireless printer. Understand that not all wireless printers are AirPrint compatible - AirPrint must be specifically indicated. Choose among this list: http://support.apple.com/kb/ht4356
    After OS X compatibility, the next consideration should be the cost of consumables. Laser printers are cheaper than inkjets in that regard.
    Here is a list of AirPrint compatible Brother printers and multifunction devices

  • Put my macbook pro to sleep. When I opened it, the desktop window is small and I can't resize it. All applications now run in the smaller size window.  Can't make it fill the screen. Just switched from windows.  Thank you.

    Put my macbook pro to sleep. When I opened it, the desktop window is small and I can't resize it. All applications now run in the smaller size window.  Can't make it fill the screen. Just switched from windows.  Thank you.

    Check to see if the resolution has been changed in System Preferences.
    Allan

  • Is there a dj software that will work with my itunes on windows 7

    is there a dj software that will work with my itunes on windows 7

    See Empty/corrupt iTunes library after upgrade/crash or
    Recover your iTunes library from your iPod or iOS device.
    tt2

  • 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>

  • ORA-01816 when running with Oracle Instant Client

    good morning
    we are running the same SQL script on 2 computers.
    - native system with DB
    - via Oracle Instant client
    when running via the instant client i get the following error.
    ( select to_char(to_date('1970-01-01') + "DATE" / 86400000, 'YYYY-MM-DD') "CD", logical_name
    ERROR at line 2:
    ORA-01861: literal does not match format string
    thanks for any hint

    It probably works on one and not the other because you have set the NLS_DATE_FORMAT for one system to match the format of the string you are passing in, so Oracle knows how to do the implicit conversion.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • What is the possible impact of running BDLS in wrong client?

    Hello,
    I've been doing a system refresh from PRD to QUA and as a part of post refresh actions I've run BDLS for each client I have in the system. That system has 4 clients (500,600,700,800) so I've run BDLS 4 times (PRDCLNT500 -> QUACLNT500, PRDCLNT600 -> QUACLNT600, PRDCLNT700 -> QUACLNT700, PRDCLNT800 -> QUACLNT800). The problem is that I've run all four reports from the same client (500).
    When BDLS finished and I've been checking the spool reports I found out my mistake - there were over 5.000.000 updates in correct report (PRDCLNT500 -> QUACLNT500) and only 3.000 updates in wrong ones (all other reports).
    After this I've started BDLS for the remaining clients (600,700,800) correctly.
    <b>The question is - could there be any possible impact on data consistency?
    If so - what impact could I expect?
    Would be wise to run the BDLS reports in inverse mode (changing the logical names to the original ones) in client 500?</b>
    Here is some information that can help - tables with amount of modified records:
    BDSX_CON04*                    LOG_SYSTEM                             1                      1
    ROIDOCPRMS*                    SLOGSYS                                1                      1
    ROOSGEN*                       RLOGSYS                                0                      0
                                   SLOGSYS                                1                    201
    ROOSPRMSC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      3
    ROOSPRMSF*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      4
    RSBASIDOC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      1
    SRRELROLES                     LOGSYS                                 1                  2.040
    TBTCO*                         RECLOGSYS                              1                      1
    EDIDC                          RCVPRN                                 0                      0
                                   SNDPRN                                 1                    780
    EDP21                          SNDPRN                                 1                      3
    EDPP1                          PARNUM                                 1                      1
    T076B                          KONTO                                  1                      1
    T076M                          KONTO                                  1                      1
    T076S                          KONTO                                  1                      1
    I expect that all tables marked with star (client independent tables) have no impact (they would be changed anyway).

    Thanks. I got similar response from other SAP experts I've consulted. But I do not understand what are the changed records? If there would be no changed records - I would agree there is no impact. But when I've by accident changed 3x3000 records - it is hard to belive that there is absolutely no impact.
    Can you please explain?

  • WinProducer2 start error, won't run with nVidia Capture drivers

    I'm not having a good experience with the bundled WinProducer2 that came with my MX440VT8x-128.
    If I have either of the versions of the nVidia capture-drivers that came on the card's CD (that's v. 1.16 or 1.18)  installed, or the 1.22 version from nVidia's website (as of 2-20-03),  and then try to start WinProducer, I get the same start-error every time:
    "WinProducer.exe has generated errors and will be closed by Windows....need to restart program...an error log is being generated."
    If I look at the Dr. Watson log, it says WinProducer 2 generated  "Exception Violation c00005."
    If I uninstall the nVidia capture-drivers, WinProducer2 opens right up just fine, but, of course, with no capture capability.
    I downloaded and tried (after uninstalling v.2) WinProducer3 from InterVideo's website yesterday (2/20/03), with the exact same results!   ???
    Anybody else having this problem?
    This is under Win2k, w/SP2,  then added SP3, with no improvement.
    Stenn

    After I made the original post, I tried a lot more things that didn't help:
    I booted in safe mode and tried it but PSP gave an error message that it wouldn't run with the screen resolution that low (800x600); so it did try to run. So I booted normally and set the screen rez to 800x600 manually, then tried to run PSP and got the same error message.
    I did a clean boot with all start-up programs and all services disabled; PSP still wouldn't run.
    I disabled my anti-virus and PSP still wouldn't run.
    Disabled my video card in the device manager and booted with my on-board video; PSP still wouldn't run.
    There's never an error message as long as the screen rez is high enough; when I try to run it, it looks like it's starting to run but nothing ever happens.

  • Satelite Pro 4600: sometimes applications stop running with new RAM

    Hello all,
    I was wondering if someone out there can shed some light on my problem. I've recently upgraded for an extra 256MB on my Satelite Pro 4600. The laptop showed the increase in RAM. Since installing it, for some reason after running the applications for a while(this varies between 10mins to a couple of hours since laptop start up), the applications stop running. I cannot open new applications. When I reboot, I can run the applications in my laptop as normal again.
    I got my RAM from offtek. The Manufacturer's part number is the same as the one specified in my laptop manual.
    Please does anyone have any idea?
    Mocha

    Hi,
    Please check the PA Number from the 256MB Chip, the correctly PA Number is PA3005U-1M12.
    By

  • Install PeopleTools 8.53 with Linux Issue: Client Windows and Server Linux

    Folks,
    Hello. I am installing PeopleTools 8.53 Internet Architecture. Database Server is Oracle Dabase 11gR1. OS is Oracle Linux 5. I have installed JDK7, WebLogic 10.3.6, Tuxedo 11gR1 and PeopleTools 8.53 successfully into Oracle Linux 5.
    Now, I am setting up PeopleTools8.53 Database. Because the Install Wizard has problem, I set up PeopleTools 8.53 Database manually using Oracle starter database instance named PT853. We need to run Data Mover script in a Windows Client machine to populate PeopleSoft Database instance in Linux Sever machine.
    Let's assume:
    VM1: Server machine - Oracle Linux 5
    VM2: Client machine - Windows XP 
    Nicolas has this tutorial:
    http://gasparotto.blogspot.com/2008/01/on-peoplesoft-road-peoplesoft-database_10.html
    From step 15 to step 23, Nicolas does not explain how to connect VM2(client) with VM1(server) and load data from VM2 to VM1.
    My questions are:
    First, do we need to install PeopleTools 8.53 Windows version into the Client machine Windows XP while installing PeopleTools 8.53 Linux version in the Server machine Oracle Linux 5 ?
    Second, how to connect VM2 with VM1 and then load data from VM2 to VM1 ?
    Thanks.

    So if I understand correctly, you have already created the oracle instance in the Linux machine. Then there is no need to install the Tools again in the Linux machine unless you want to run data mover at Linux.
    You can just install the tools and oracle client in windows and load the data by running the data mover from windows. Connection happens through Oracle Client using TNS.
    Steps involved are
    1. Creating the database using createdb10.sql or otherwise (you have already done this)
    2. Run utlspace.sql
    3. Run dbowner.sql
    4. Run ptddl.sql - considering that you are just installing a Tools database and not any application database
    5. Run psadmin.sql
    6. Run psroles.sql
    7. Run connect.sql
    Create the data load dms file by using DBSETUP in data mover
    Run the created script and load the data
    This information is available in any peopletools installation doc
    Hope this helps

Maybe you are looking for

  • How can I get my audiobooks in order on my iPod touch?

    I have an iPod touch (4th gen) and recently downloaded a series of audiobooks from iTunes (Doug Bradley's Spinechillers). There are thirteen books in the series, and I'm not able to make them display in order on my iPod. I've edited their info in iTu

  • Xorg-conf where is it?

    Hello again!! i need to set DPI for my monitor but in this direcotory: /etc/X11/xorg.confg.d/  i don't have any xorg.conf file.... i try to generate it with this commnad: Xorg :1 -configure but i get this error: Number of created screens does not mat

  • Changes in fork step

    Hi friends, There is a Schedule manager w/f in production. We  have a fork step in w/f. we havd to add 4 more branches. what is the procedure to do that. when I open that w/f in change mode in dev server, it doesn't allow to change no of branches dir

  • UCCX SQL access for third party application

    We have a requirement from customer to allow read access to UCCX database. This account would be used to query the UCCX database and it will use as a service account for another system. Please let me know how create DB account on UCCX. UCCX version:7

  • Where is the difference between Positive Liste and BP Release in SPL?

    Hi Folks, Where is the difference between setting a Business Partner on a Positive or Negative List and release or block a business partner in SPL? I thought that should be almost the same. Hope you can clarify it. Thanks Regards Dieter