Cannot overwrite query

Hi All,
Did anyone face the same problem, when user want to save a query and overwrite the existing query, the SAP system automatically shut down.
I did try to restart the SAP, but the same thing happen. Try on another user PC also have the same problem.
Thanks in advance for any help.
Regards,
Mat

Dear All,
Thank you so much for your fast reply and i'm really appreciate it.
I will try to upgrade to latest version of SAP 2007A PL12, and will revert the result ASAP.
Thanks again.
Regards,
Mat

Similar Messages

  • I have 2 different accounts at the same websites. Whenever I go to that website, one of my usernames prefills the UN field and I can't access the other account. I cannot overwrite my pre-filled username. Ideas?

    I have 2 different accounts at the same websites. Whenever I go to that website, one of my two user names (always the same one) pre-fills the user-name field and I can't access the other account. The website rightfully rejects my password. I cannot overwrite my pre-filled user-name because the second I hit enter to logon, the original user-name rewrites itself into it's field. Neither of the user names is being saved by firefox anywhere in the "tools"; Options, security, advanced or privacy menu fields.
    I did notice that that website has installed a cookie onto my computer called "_rememberme" which contains the user-name that is plaguing me.
    This is a website that I access for very sensitive and important information and I must have both accounts accessible at different times.
    Thanks, Joshua
    XP, sp3; FF3.6.3
    == This happened ==
    A few times a week
    == I added the second account on this website.

    You need to clear that remember me cookie and make sure that you remove a check mark to remember you on that website.
    Tools > Options > Privacy > Cookies: "Show Cookies"
    You can disable the automatic fill of a name and password.
    See:
    http://kb.mozillazine.org/Password_only_filled_after_entering_user_name
    http://kb.mozillazine.org/signon.autofillForms
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • MDM Exception: Key mapping value must be unique. You cannot overwrite key

    "ServerException: Key mapping value must be unique. You cannot overwrite key mapping values."
    I received such exception when code tried to manipulate Key Mappings of the record.
    error was not happen on mdm 5.5 but on 7.1 it sometimes appears.
    What is probable reason of this?
    How to resolve this ?
    Code is approximate so:
                                         String[] keys = keyMapping.getKeys();
                        if (recordKeyMapping.containsKeyMapping(remoteSystem)) {
                    recordKeyMapping.replace(remoteSystem, keys);
              else {
                   recordKeyMapping.addKeyMapping(keyMapping);
              //Persist
              targetRecord.update();
    //where methods are:
         public void replace(RemoteSystem remoteSystem, String[] keys) {
              KeyMapping keyMapping = getKeyMapping(remoteSystem);
              if (keyMapping == null) throw new IllegalArgumentException("Can't update keys: key mapping for the system '" + remoteSystem + "' is not found");
              else {
                   keyMapping.setKeys(keys);
         public void addKeyMapping(KeyMapping keyMapping) {
              RemoteSystem remoteSystem = keyMapping.getRemoteSystem();
              for(int i = 0; i < keyMapping.size(); i++) {
                   addKey(remoteSystem, (String) keyMapping.get(i));
    Edited by: Vladimir Grigoryev on Oct 5, 2010 11:26 AM

    Hello -
    I am not sure on that coding part. but is it like are you trying to retrive Key Mapping from Memory accelerator. Here this information always needs to be read from Database.
    I am sure you also maintained  the required attribute for key mapping as in Property in Console should be set as "Yes" and other relevant things properly .
    Here also go through the below link for more insight from tools perspective.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30843106-5539-2b10-75a9-da483911b0d9
    http://help.sap.com/javadocs/mdm/sp06/com/sap/mdm/data/KeyMapping.html
    It may help
    Rgds
    Deep

  • *cannot overwrite or remove $ORACLE_HOME/rdbms/admin/externaljob.ora while

    Hi,
    I have trying to apply 10.2.0.4 patch on oracle home i.e. i am trying to upgrade my oracle software from 10.2.0.3 to 10.2.0.4
    But whil applying patch i am getting following message:
    cannot overwrite or remove $ORACLE_HOME/rdbms/admin/externaljob.ora while upgrading
    kindly help.

    This file is used for scheduling external jobs. It should be owned by root:dba and have 644 permissions. Temporarily change the owner to be oracle:dba, perform the upgrade, then change back to root:dba.
    Clarification on Externaljob.ora and Permissions (Doc ID 979186.1)
    Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files
    HTH
    Srini

  • After upgrade from SQL Server to SQL server 2012 I cannot show Query Designer ?? Please help

    Hi
    I have installed the required .Net software, but never the less I've got this message. Could you please help me out ?
    Thanx in advance
    Pia 
    TITLE: Microsoft SQL Server Management Studio
    Cannot show Query Designer.
    ADDITIONAL INFORMATION:
    Exception has been thrown by the target of an invocation. (mscorlib)
    Unable to find the requested .Net Framework Data Provider.  It may not be installed. (System.Data)
    BUTTONS:
    OK

    also check
    http://connect.microsoft.com/VisualStudio/feedback/details/652192/visual-studio-2010-add-connection-fails
    mostly machine.config is referring to .net 3.0 assemblies
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • KeystoreException : Cannot overwrite own certificate

    Hi,
    I am trying to import reply for request certification, but i have the following exception:
    "Cannot overwrite own certificate"
    The code to create the keystore is as follow :
    keyStore = KeyStore.getInstance(keyStoreType, provider);
    keyStore.load(null, null);
    gen = KeyPairGenerator.getInstance("DSA", provider);
    algo = "SHA1withDSA";
    gen.initialize(512, new SecureRandom());               
    pair = gen.generateKeyPair();
    privKey = (PrivateKey)pair.getPrivate();
    pubKey = (PublicKey)pair.getPublic();
    X509V3CertificateGenerator certGen = new X509V3CertificateGenerator();
    certGen.setSerialNumber(BigInteger.valueOf(System.currentTimeMillis()));
    certGen.setIssuerDN(new X509Principal(attrs));     
    certGen.setNotBefore(new Date(System.currentTimeMillis() - 50000));
    certGen.setNotAfter(date);
    certGen.setSubjectDN(new X509Principal(attrs));
    certGen.setPublicKey(pubKey);
    certGen.setSignatureAlgorithm( algo);
    Certificate[] chain = new Certificate[1];
    try
    X509Certificate cert = certGen.generateX509Certificate(privKey);
    cert.checkValidity(new Date());
    cert.verify(pubKey);
    chain[0] = cert;
    catch (Exception e)
    {return false;
    keyStore.setKeyEntry(alias, privKey, passwd.toCharArray(), chain);
    FileOutputStream out = new FileOutputStream(keyStorePath);
    keyStore.store(out, passwd.toCharArray());
    out.close();
    The code to import the reply to the certification request is as follow :
    InputStream fis = new FileInputStream(keyStorePath);
    keyStore.load(fis, passwd.toCharArray());
    fis.close();
    fisP = new FileInputStream(pathcsr);
    CertificateFactory factory = CertificateFactory.getInstance("X.509");
    java.security.cert.Certificate cert = factory.generateCertificate(fisP);
    this.keyStore.setCertificateEntry(alias, cert);
    fisP.close();
    //Save the new keystore content
    FileOutputStream out = new FileOutputStream(keyStorePath);
    keyStore.store(out, passwd.toCharArray());
    out.close();
    At the flooowing line :
    this.keyStore.setCertificateEntry(alias, cert);
    I have a KeyStoreException at the line in bold with the message "Cannot overwrite own certificate"
    Please, can anyone help me?
    Many thanks.

    The exception is correct. You can't overwrite a key alias with a certificate alias. What
    you need to do is call KeyStore.setKeyEntry again, and overwrite the previous entry.
    Use the same key as before, but now specify the new certificate chain received in the certificate reply.

  • Cannot load query "ZBM_M020_Q001" (data provider "DP_1": {2})

    I'm getting this error message when I try to run any of my bookmarks in this new bi system
    My url looks like:
    http://<myserver>:<myport>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=REP_20090803204848&BOOKMARK=4EPI80Q37TF1VDU8EBTPT8RSY
    I get this message: Cannot load query "ZBM_M020_Q001" (data provider "DP_1": )
    When I click on "Information" I see the message: "Document class parameters are incomplete "
    If I leave out the bookmark like:
    http://<myserver>:<myport>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=REP_20090803204848
    executes successfully.
    If i create a new bookmark using this query and then execute it it executes fine.
    This new BI Sys was created from Production, and somehow these bookmarks are not activated.
    I looked in RSWR_DATA and I can see that all of them are type 'B', bookmarks.
    Anyone know how this issue can be resolved so these bookmarks are usable?
    Mike
    Edited by: Michael Hill on Mar 30, 2010 5:41 PM

    No it does not work. The bookmark is corrupted with DP_1.
    I agree that the URL you have proposed should work without the query though. In fact you can put anything you want and it will work becuase the relevant information is stored in the bookmark, e.g the following works too!
    ?query=xyz&BOOKMARK=4EPI80Q37TF1VDU8EBTPT8RSY
    I include the query in the url so I can remember what query the bookmark belongs to.
    This pm we should have the fix transported to that system and I can adjust the bookmark.
    Thanks for your reply!
    Mike

  • Cannot open query in Excel (BEX analyzer)

    Hello Experts,
    Issue: Cannot open the BEX report in Excel but can open the same report on IE.
    1) I am trying to open a BEX report "ReportA" in Excel (BeX Analyzer).
    2) As soon as the report opens it shows me a message "Do you want to open the 3.X workbook for upgrade"
    3) I click on "OK"
    4) then i get a message window listing a lot of warnings liike " Access to project denied"  "creation of items failed"
    5) i click on "OK"
    6) Now, variable entry screen appears
    7) i enter values and click on "OK" the report does not show any data.
    Now, the same report "reportA" when i open it in Internet Explorer, it displays data. What can be reason for this problem in BEX analyzer ?
    Please comment.
    Regards,
    Suraj S Nair
    Edited by: Suraj S Nairon Dec 28, 2009 10:50 AM

    Hi Suraj,
    If you want to execue your query, you can use the bex analyzer.
    If you are opening the query from query designer 3.x query in 7.0 fronend, it will get upgraded and then cannot be reveted.
    In your case this automatic migration might be havng some issues, owing to complexities.
    Please recheck.
    -Vikram

  • Odac 12.1 Oracle.VsDevTools Cannot edit query results

    I am running Windows 7 64-bit and Visual Studio 2010
    I installed ODTwithODAC121010 successfully.
    In Visual Studios Help>About it shows: Oracle Developer Tools for Visual Studio 12.1.0.1.0
    Issue:
    After updating to odac 12.1 I can no longer edit/insert data into the query builder results pane.
    I have relied on this capability in previous versions of odac.
    Has this feature been removed?
    I've connected to multiple Oracle 11g dbs with same results below:
    I get the following response when I attempt to edit a field in the query results pane:
    No row was updated.
    The data in row 10 was not committed.
    Error Source: .
    Error Message: Unable to parse expression.
    Correct the errors and retry or press ESC to cancel the change(s).
    I get the following response when I paste a new row in the query results pane:
    No row was updated.
    The data in row 11 was not committed.
    Error Source: Oracle.VsDevTools.10.0.
    Error Message: Object reference not set to an instance of an object.
    Correct the errors and retry or press ESC to cancel the change(s).
    Is there something I need to do to enable this?
    What are some good alternatives if this capability is no longer supported?

    Hi George Pertea,
    Thanks for the reply.
    I am in the edit query mode and also the query tool bar is enabled.
    But my "view sql" button is disabled,I cannot click on it.
    I am logged in as "Admin" , so what is the problem.
    I was able to do that in XI R2 before.
    Please help me!
    Thanks

  • Cannot run query described in introductory tutorial

    Hi
    I'm new to Berkeley DB XML, so thought I would follow the tutorial here:
    http://www.oracle.com/technology/documentation/berkeley-db/xml/intro_xml/BerkeleyDBXML-Intro.pdf
    I created my "phone" container with 2 records following the tutorial to the letter.
    I've been able to run a getDocuments command and print the retrieved document, so I know the documents are in the database.
    However, every attempt to run a query, as per the tutorial, meets with this error message:
    query failed, Error: Cannot resolve container: Container not open and auto-open not enabled. Container may not exist.
    I have run the command openContainer against the container, but that didn't help.
    An introductory tutorial should be aboslutely watertight, I've only just started and I've had to stop. I've run into the same error on 2 computers both running MS WinXP. The db was installed using the installer.
    Where am I going so wrong?

    Jason,
    I assume you are using 2.3.8. There is a bug in the dbxml shell that is accidentally setting the base URI when opening a container. If you add this line after opening or creating a container, you'll be fine:
    dbxml> setBaseUri dbxml:/
    That will reset the base URI to what it should be.
    Regards,
    George

  • Cannot open Query through BEX

    Hi all,
    I am on BW 3.5.
    I have a wierd problem when I try to open a query through BEx;
    as the variable entry screen comes up after I have selected a query, I can see the last opened workbook behind it.
    Then after I continue with the query putting in whatever options, the workbook opens.
    If I refresh, it tries to refresh the workbook, and there is no sign of the query.
    If I log on using a collegues user, BEx works as normal so, it must be down to the user settings or authorisations!!!
    Has anyone experienced this before.
    Thanks,
    Shane.

    Hi Suraj,
    If you want to execue your query, you can use the bex analyzer.
    If you are opening the query from query designer 3.x query in 7.0 fronend, it will get upgraded and then cannot be reveted.
    In your case this automatic migration might be havng some issues, owing to complexities.
    Please recheck.
    -Vikram

  • Query owner cannot change query

    We are trying to setup security that will permit the following:
    Display and Execute all queries
    Create queries prefixed with 'REP'
    Change and Delete their own queries
    The setup below is permitting all of this except that the owner cannot change their own queries. The owner is permitted to create and save a query named 'REP12345'. However, when trying to edit the query using query designer, the user gets the message: You are not authorized to REP12345 Query '3'. 
    S_RS_COMP
    Activity                       Display, Execute
    InfoArea                       *
    InfoCube                       *
    Name (ID) of a reporting compo *
    Type of a reporting component  Calculated key figure, Query View, Query, Restricted key figure       <...>
    S_RS_COMP
    Activity                       Create or generate
    InfoArea                       *
    InfoCube                       *
    Name (ID) of a reporting compo REP*
    Type of a reporting component  Query
    S_RS_COMP1
    Activity                       Change, Display, Delete, Execute
    Name (ID) of a reporting compo *
    Type of a reporting component  All values
    Owner (Person Responsible) for *

    I have gotten it to work with the following setup:
    S_RS_COMP
    Activity                       Create or generate, Change, Display, Delete, Execute                  <...>
    InfoArea                       *
    InfoCube                       *
    Name (ID) of a reporting compo *
    Type of a reporting component  Calculated key figure, Query View, Query, Restricted key figure       <...>
    S_RS_COMP
    Activity                       Create or generate
    InfoArea                       *
    InfoCube                       *
    Name (ID) of a reporting compo REP*
    Type of a reporting component  Query
    S_RS_COMP1
    Activity                       Display, Execute
    Name (ID) of a reporting compo *
    Type of a reporting component  All values
    Owner (Person Responsible) for *
    S_RS_COMP1
    Activity                       Change, Display, Delete, Execute, Enter, Include, Assign
    Name (ID) of a reporting compo *
    Type of a reporting component  All values
    Owner (Person Responsible) for $USER

  • Cannot overwrite PDF when exporting to Acrobat from InDesign CS6

    When exporting to Acrobat Pro X from InDesign CS6, there are times when I want to overwrite an exising file but I get an error msg that the file is in use (it is not--this even happens when I have closed the file and quit Acrobat) or i don't have permission. In the Info panel at the Finder, i see that "myusername (ME)" does have permission to read and write this file. As a test, I also changed the permissions for Admin and Everyone to Read & Write, but that did not help. I've checked Preferences in both InDesign and Acrobat Pro anc can't find a relevant setting.
    To save the file with the same filename as the pre-exisitng PDF, I have to close the pre-exisitng PDF and move it to the trash.
    I have no problem overwriting a PDF document from Acrobat. This only happens when I am exporting from ID.
    I am on a Mac running the latest version of OSX.
    Any ideas?
    Thanks!
    Carol Gunn

    Make sure that the PDF you are trying to overwrite is not selected in your finder. I've found that if it's selected in the finder then the preview tricks Indesign into thinking the file is busy

  • Cannot load Query (StructureI) via BICS

    Hi All,
    I've problem with loading a BEx Query via BICS into Xcelsius. I don't realy know, how to solve this problem.
    What I can do in Xcelsius:
    1. I can connect to SAP BW
    2. I can chose Querys
    After chosing a query I get no errors, what I see is just a Loading Clock.
    Thx.
    André

    Dear Luca,
    thank you very much for your reply. We have solved this problem by restarting our systems (ABAP and JAVA-Stack).
    Than we installed thy latest patches and now I can work with my Queries.
    But I have noticed your advices for the future
    André

  • Oracle 10g Express Edition: cannot save query

    Hi everyone,
    anyone knows if there's a limit of characters to save queries? I'm trying to save a query 2520 characters long, but I can't. I don't get any error message either.
    Thanks in advance.

    Hello,
    Which tool do you use to edit and "save" your query ? sqlplus ? sqldeveloper ?
    Did you try to create a view so as to simplify your query ? or to store your query in an external script "<script>.sql" ?
    Best regards,
    Jean-Valentin

Maybe you are looking for