Invalid update statement generated when edits are undone (Data tab)

Raptor generates the following SQL statement when edits are undone:
UPDATE "schema_name"."table_name" SET WHERE ROWID = 'AAAM8tAAYAAAAP9AAR'
Steps to follow to reproduce the problem:
1) Select a table
2) Click on the "Data" tab
3) Update value of column for row #1 from 'A' to 'B'
4) Update value of column for row #1 from 'B' back to 'A'
5) Commit
By the way, a "duplicate row" button would be handy.
Thanks

Thanks for reporting the bug in the grid edit; we will fix before we ship production. We have added the duplicate row to our enhancement database.
Thanks,
Mike

Similar Messages

  • I cannot open a new tab. When I press the tab bar, sometimes it opens, but most of the times it won't. It is especially so when there are already 5 tabs opened

    I have a problem opening a new tab with FireFox 24.0.
    When I press the tab bar, sometimes it opens, but most of the times it won't. It is especially so when there are already 5 tabs opened.
    I use "checkCompatibility 1.3" and "Google Toolbar for FireFox 7.1.20110512W" as addons. There have been no problems until the previous version of FireFox.

    Thank you for the reply.
    It works fine with the safe mode. So it must be something to do with <i>checkCompatibility 1.3</i> or <i>Google Toolbar for FireFox 7.1.20110512W</i>.
    Both are necessary to run Google Toolbar on Firefox, and the fact is Google Toolbar is too convenient to be removed. So I have bookmarked a couple of blank pages and I right-click them to open new tabs. But it is so tiresome.
    I hope this problem will be fixed in the next version. FireFox without Google Toolbar is just a useless browser.

  • Help! How do i make a button state maintain when there are other buttons on the page?

    I need to have the down state of pressed buttons stay in that state when there are multiple buttons being pressed on the same html page...

    Hello and welcome to the forum,
    Not sure if I understand well, but think you are bumping into the Quiz scope... I have been trying to explain this in a blog post, with other functionalities of Question and Score slide:
    Question Question Slides
    Lilybiri

  • HR_INFOTYPE_OPERATION not working when editing HR master data

    Hi all,
    I search for similar problem but couldn't find any.
    I am using HR_INFOTYPE_OPERATION to insert record to an infotype. I proceed with standard way (ENQUEUE employee, call above fm, DEQUEUE employee). It works fine when running as executable program.
    Now I want this functionality when editing EE's master data (i.e. modifiying one infotype record). For this I put the same code to some user exit. Now when executed I can proceed with creating new entry, it saves I can see how data are updated in pa30 for this EE. But when I reenter his master data are without this new record anymore.
    Does anyone faced similar issue? I guess it is not allowed to use that fm when editing master data, but can't find a answer if this is the issue.
    I did also a test creating this new entry for some different EE, but it neither worked.
    Any info appreciated.
    Thank you
    Marcin

    Hi Marcin,
    Please check whether the following links are useful,
    HR_INFOTYPE_OPERATION mod not working
    HR_INFOTYPE_OPERATION is not working in user exit ZXPADU02
    Best Regards.

  • Updated Firefox, now when I open a new tab, there is two seperate google search bars; how do I get rid of the unnecessary search bar?

    I updated Firefox, and after I restarted it, when I opened a new tab, I found that I now had two Google search bars: one next to where you type web addresses, and one right above my pinned sites (or my frequently visited sites). I'm just trying to:
    1. Figure out why it is necessary to have two of the pretty much identically useful search bars when I really only need one (or can physically type Google in)
    and
    2. How do I get rid of the unnecessary second Google search bar above my frequently visited and therefore pinned sites.
    If you have any ideas of how to remove this annoying addition, I would appreciate it.

    I am guessing that you installed an extension, related to "new tab", which added the first search bar. Firefox 31 in includes a search bar for the "new tab" page; so now you have two.
    Take a look at that extension (Options or Preferences) to see how to disable ones of those 2 search bars. Or see if an update has been released for that extension, specifically for Firefox 31, with an option to disable the search bar.

  • 00933 error when clicking on the data tab for the selected table

    Hi,
    I'm getting the following error when selecting a table from the tree view then clicking on the data tab:
    An error was encountered performing the requested operation:
    ORA-00933: SQL command not properly ended
    00933.00000 - "SQL command not properly ended"
    *Cause:
    *Action:
    Vendor code 933
    The exact same tables created from sqlplus for a different user in the same database work fine. Note, I'm not typing any SQL in myself. It would appear this happens on all tables created as this user. I cannot see any difference between permissions for this user and others which work but the failing user does have a "-" in the username and password which I'm suspicious of.
    This is SQL Developer v 1.2.0 (build 29.98) (the most recent I believe, Oracle Database 10g Express Edition Release 10.2.0.1.0 and Linux ubuntu.
    Thanks
    Martin

    "-" is not allowed in identifiers and is almost certainly the cause of your problem. This can be got round by quoting i.e. using "STUPID-NAME" instead of STUPID-NAME.
    I'm slightly surprised that SQLDeveloper doesn't quote the statement. Perhaps it quotes table names but not user names.

  • Invalid meta tag generated when using XHTML method

    Hi,
    I'm trying to generate an XHTML file using XSL and the XHTML output method. However, transformation results in adding the following XHTML-invalid meta tag (uppercase and non-closing) in the head tag:
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
    Is it a bug in the XDK or am I missing something? Transform is performed using the JXTransformer provided in 11g.
    Thanks in advance,
    Stephane
    input file:
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xml:lang='en' lang='en' xmlns='http://www.w3.org/1999/xhtml'>
    <head>
         <title>Some title</title>
    </head>
    <body></body>
    </html>
    xsl file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xhtml="http://www.w3.org/1999/xhtml">
         <xsl:output method="xhtml"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
    <xsl:template match="*">
         <xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
              <xsl:apply-templates />
         </xsl:element>
    </xsl:template>
    </xsl:stylesheet>
    output:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    *<META http-equiv="Content-Type" content="text/html; charset=UTF-8">*
    <title>Some title</title></head><body></body></html>

    For some reason when I use MapForce tool to generate my xslt mapping source, it is generating the following statement in the xsl file.
         <xsl:namespace-alias stylesheet-prefix="n" result-prefix="#default"/>
    So at the root element of XML file, it is replacing the character n with '#default' for some reason, I don;t know the purpose of this.
    As you suggested, I changed the name space, still I experienced same problem.
    It is now resolved after removing the above xsl statement from the xsl file before creating/uploading the relevant zip file into archives folder.
    It works fine now. Thanks for the clue.

  • Native SQL Update statement error when more than one field used

    Hi, I would make it simple. I update directly to a SQL server.
    1-
    When I update only one field works.
    LOOP AT IT_MAT.
    EXEC SQL.
    UPDATE Articulos SET PrecioSinImp = :IT_MAT-PRECIOSINIMP        WHERE Modelo = :IT_MAT-MODELO
    ENDEXEC.
    ENDLOOP.
    This give me sy-subrc = 0
    When I Try to update several fields doesnt works, any would can help me ?.
    LOOP AT IT_MAT.
    EXEC SQL.
      UPDATE Articulos SET PrecioSinImp = :IT_MAT-PRECIOSINIMP
                           Descripcion = :IT_MAT-DESCRIPCION
      WHERE Modelo = :IT_MAT-MODELO
    ENDEXEC.
    ENDLOOP.
    This give me dump SQL error 170.
    2- BTW, I have to leave this report program in a job so the data would be updated once a day in a job, so I have to update the existing data and add new one.
    I Was thinking doing something like this.
    LOOP AT it_table.
    UPDATE DQL TABLE
    IF sy-subrc <> 0.
    INSERT DQL TABLE
    ENDIF.
    ENDLOOP.
    This may works ??? because if this not work, I have to select single each one of the data in the SQL table, if it was founded UPDATE otherwise INSERT. And I dont like this aproach.
    Thx

    Hi Rodrigo,
    I feel that your requirement is as below:
    Depending on the criteria in the where clause, check whether the record exists or not.. If it does, then update the record with new values, else, create a new record..
    You can do the same as below:
    LOOP AT it_mat INTO e_mat. (e_mat of same structure as it_mat)
    MOVE : xxx TO e_mat-yyy... and so on (Only change the non-key values)
    MODIFY dbtable FROM e_mat.
    ENDLOOP.
    This code will create a new record if a record with the given key values in e_mat is not found, else, it will update the existing record with the new non-key values in the structure e_mat.
    Thanks and Best Regards,
    Vikas Bittera.
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

  • Rollover states disappear when links are applied (Adobe Muse).

    Hi Guys,
    I have successfully created rollover states within elements and they work fine. Then when I add hyperlinks to these elements, the rollover no longer displays.
    Having a little play around with it I have found I can get it to work if I manually type in the URL (so index.html for example), if however I just select the 'Home Page' from the links drop-down, the rollovers do not work when previewed in Safari.
    Any ideas?
    Thanks.

    You can setup hyperlink hover function from edit styles.
    Thanks,
    Sanjit

  • Calendar not updating on Iphone when items are removed from Outlook calendar.

    Recently a couple of my board members purchased IPhones and IPads. And I have set them up the best I can. If they create a calendar entry on the IPhone or IPad it will show up in Outlook right away. However if they or one of their admins log onto their Outlook calendars and remove a schedule meeting the entry will not delete off the IPhone or IPads. I know there is a 15 minute sync on the devices but I have tested them after hours and days and the entries are still on the calendars on the mobile devices. This creates serious issues when people show up to meetings and destinations that have been cancled days in advanced. If anyone knows anything about how to fix this please let me know.

    Do they log directly into the account or come in with proxy/delegate access? 

  • Automatically update a 'Last Updated By' field when changes are made a database record.

    Basically I'm building a database app using mySQL and PHP.
    I'm from a design background, rather than a techie one, so I'm far
    more comfortable using the DW and phpMyAdmin parts, but less so
    with any code.
    We want to have a 'Last Updated By' field that automatically
    populates with whoever created or last edited a record.
    What's the best way of achieving this?
    I've looked at some mySQL stuff, but all looks a bit over my
    head to be honest. Have a table of Users in phpMyAdmin - not one as
    part of the database, but under privileges - so where 'root' is,
    plus another couple I've added.
    In the web directory, I just have a standard connection file
    that looks like :
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_connDevelopments = "localhost";
    $database_connDevelopments = "developments";
    $username_connDevelopments = "root";
    $password_connDevelopments = "password";
    $connDevelopments =
    mysql_pconnect($hostname_connDevelopments,
    $username_connDevelopments, $password_connDevelopments) or
    trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    But how do I do it so that people log in to the database?
    Alternatively, can I just use DW's log in (ie log in to
    particular pages, rather than users log in to the database, using
    database privileges?
    And from there have a hidden field in my insert and update
    pages that's set to the current user, and that value can then be
    inserted in the table?
    Any help or pointers with this greatly appreciated.
    Cheers.

    Thanks David. That sounds about right - the last app I did
    was an online photo library, and used the Log In stuff for that.
    With this one, we want to track changes, as we'll follow the
    progress of the developments from early info right through to
    completion - hence last updated, and last updated by fields.
    So I figured it should be do-able as an extension of the log
    in stuff, ie pass the stored current user somewhere.
    Regarding security - this is just a local app running on an
    internal server, rather than out there in the wild.
    To test it out, I've added a 'LastUpdatedBy' field to my
    other app, and added in a hidden field in my update page :
    <input name="LastUpdatedBy" type="hidden"
    id="LastUpdatedBy" value="$_SESSION['MM_Username']">
    I have the code that does the inserting :
    if ((isset($_POST["MM_update"])) &&
    ($_POST["MM_update"] == "form1")) {
    $updateSQL = sprintf("UPDATE Photos SET Link_ID=%s,
    Title=%s, Rights=%s, Rights_Details=%s, Credit=%s, Width=%s,
    Height=%s, Year=%s, Supplier=%s, Photo_File=%s, Orientation=%s,
    Admin=%s, Region=%s, Country=%s, Easting=%s, Northing=%s,
    LastUpdatedBy=%s WHERE Photo_ID=%s",
    GetSQLValueString($_POST['Link_ID'], "text"),
    GetSQLValueString($_POST['Title'], "text"),
    GetSQLValueString($_POST['Rights'], "text"),
    GetSQLValueString($_POST['Rights_Details'], "text"),
    GetSQLValueString($_POST['Credit'], "text"),
    GetSQLValueString($_POST['Width'], "text"),
    GetSQLValueString($_POST['Height'], "text"),
    GetSQLValueString($_POST['Year'], "text"),
    GetSQLValueString($_POST['Supplier'], "text"),
    GetSQLValueString($_POST['Photo_File'], "text"),
    GetSQLValueString($_POST['Orientation'], "text"),
    GetSQLValueString($_POST['Admin'], "text"),
    GetSQLValueString($_POST['Region'], "text"),
    GetSQLValueString($_POST['Country'], "text"),
    GetSQLValueString($_POST['Easting'], "text"),
    GetSQLValueString($_POST['Northing'], "text"),
    GetSQLValueString($_POST['textfield'], "int"),
    GetSQLValueString($_POST['LastUpdatedBy'], "text"));
    The bits in bold I've added for the LastUpdatedBy - but no
    joy - that's entering $_SESSION['MM_username'] into the table.
    What should the syntax be?

  • Trying to update an ADT when editing a jtextPane

    this is gonna be a little bit tricky to explain i think but ill try my best
    basically ive written a css stylesheet ADT which stores all styles in a TreeMap structure, then i write this out in to various text boxes and drop downs so i can change the styles in a gui form
    i also export the whole thing to a jtextpane so you can see the code for the stylesheet that is being created on the fly by changing the styles.
    what i want to be able to do is also when you type in the jTextPane it updates the ADT
    ive done the actual update methods i just need the appropriate event to update on.
    it works the way i want to if i add a button then when the button is clicked the update happens but i want it to actually update in real time when typing (like the way dreamweaver works)
    ive tried on keyPressed but it seems quite slow and also say if i type ff00ff it only recognises ff00f as on the last f then it wont register until i press another key
    any ideas?

    Place a listener on the text component's document, and respond to updates to the model, not view events.
    Pete

  • HT1338 i upgraded from leopard to snow leopard ( i know i am really behind) but now iTunes won't recognize my iPhone. and the updates keep crashing when they are trying to install...help!

    I upgraded from leopard to snow leopard. now iTunes won't recognize my iphone, and the upgrading the software keeps crashing.. help!!

    Mountain Lion is OS X 10.8
    10.6 was called Snow Leopard.
    To use iTunes 10.7 the following is required:
    Macintosh System Requirements
    Mac computer with an Intel Core processor and 512MB of RAM
    OS X version 10.6.8 or later
    Safari 4.0.3 or later
    400MB of available disk space
    Broadband Internet connection to use the iTunes Store
    Do you use iTunes Match?
    That way all of your songs would be matched with the master song on the iTunes servers independently of iTunes on your Mac or PC...
    Look here for further information: http://www.apple.com/itunes/itunes-match/

  • Control/Indicator descriptions are not imported or checked from LabVIEW to NI RG when they are placed on Tab controls

    Hi Allen,
    I am currently testing Requirements Gateway. As it seems it does not find any controls placed on a tab control to see if it is covered or not.
    Is there any reason not searching for controls placed on tab controls?
    We have VIs iterating over complex Front Panel structures to find all controls. Maybe we can add this functionality to NI RG LabVIEW interface.
    Is there anyone can help in this?
    Andras

    I tried this and got the same problem. This is new to me and I too would like to see it added to the RG capability. I have many controls and indicators on tabs that could use covering statements.
    FYI: You can't do this with cluster elements either. The covering statement can only go on the cluster itself.
    Bill
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

  • What do you do when there are massive data per row?

    I am just looking for ideas. I have about 90 characters too long for the CR report line. The ones going over are 3 address columns. Looking for ideas how to design the report.

    hi Paul,
    what do you want it to look like?
    if you it to stop before 90, then right click on the field and go to Format Field > Common tab > Display String and use a formula like
    currentfieldvalue[1 to N]
    where N is the length that you want the field to stop at.
    you can also use the Tooltip dialogue with
    currentfieldvalue
    should you wish to have the end user be able to see the entire field with a mouse over.
    -jamie

Maybe you are looking for

  • Photoshop CS4 in-application help

    I am using the trial Photoshop CS4 and cannot get the in-application Help to work. the CS3 Help works just fine. When I launch Help from the Menu bar I am directed to the Adobe Site. When I launch the Adobe Help application from the Applications fold

  • Photoalbum indexpage with square photos like the old mobileme gallery?

    I would like to get a photo gallery made in iWeb with an indexpage just like the old "MobileMe Gallery" with the square picture container´s - I made a lot of special frontpictures - one for each album only to fit the square form. And I liked it! At f

  • How to use copy of standard program for direct input in LSMW

    currently we're using object 0085 Purchase Orders and and method 0001 for standard direct input, which is processed with program RM06EEI0 now I want to set an additional flag and avoid creating it by means of BUS PurchaseOrder.CreateFromData1 method

  • My genius don't work: "please try again later"

    recently, setting win7, I noticed that my Genius does not work. wrote: "please try again later", though I do everything correctly. What to do?

  • Per User Crontab lost on reboot

    Hi Guys and Gals; I noticed starting sometime in the last few months my user crontabs are being lost on reboot. I have checked that they are not on a tmpfs or other volatile drive. I've searched around but can't find anything that would be causing th