One field on update screen refuses to update.

What the subject line means is this: I have one field (but only one) on my update screen that won't accept a change. When I click Apply Changes it shifts back to the interactive report showing the previous value of that field. I can change anything else in the record.
I added it to the table some time after describing and building the table by APEX. All the other fields are still modifiable. I thought I defined it the same way as all the others, but I appear to be wrong.
In common with two other fields, this table accesses a unique list of values.
Steve in Raleigh NC

This thread was a waste of space. Sorry. I just had to change Source Type to Database Column.

Similar Messages

  • In BDCs, after adding one field to the screen, which one is the better proc

    Hi,
    My client requirement In BDCs, after recording the legacy data by using MM01, After some time adding one field to the screen, How can we record the  for the new field.
    If any one knows pls help me total process.
    Warm regards,
    Venkat.

    Identify the screen in which this new field is added and simply add one more line to add the bdc record for this field in that screen.
    If the screen is also entirely new, then you have to identify the previous screen, the okcode to go to this new screen and finally the next screen and the okcode to go to the next screen along with the field BDC record.
    I don't think it is necessary to redo all the recording as long as you can follow the existing code.

  • HT4718 My macbook air is stuck at the "installing software updated" screen while installing update for the osX. What should I do?

    My macbook air is stuck at the "installing software updated" screen while installing update for the osX. What should I do?

    Welcome to Apple Support Communities
    If your Mac has been installing software updates for a long time, Software Update is probably frozen. Hold the Power button until your MacBook Air turns off, and turn it on again. OS X should start up.

  • 10.5.3 Update: Screen refuses to wake up

    This is weird. After I upgraded to 10.5.3, I noticed several times that after the screen goes black from being untouched (not sleeping), I can't get it to wake up no matter what buttons I press. The little white LED on the front is on, indicating that my MacBook is indeed still on but the screen refuses to turn itself back on. The only way to get out of this is by doing a cold reboot, rendering all of the changes I've made in settings over the last session useless.
    Is anyone else experiencing this problem? Anyone know how to fix it?

    I have just experienced exactly this problem on an Intel Core 2 Duo iMac which I updated to 10.5.3 last night. It woke from sleep ok this morning but when I returned to it this evening after a 4-hour break, nothing would wake it. After a forced reboot I noticed a lot of weird stuff in console which had been going on while the computer was allegedly asleep - including several of these:
    Jun 2 19:19:51 SCiMac kernel[0]: USB caused wake event (EHCI)
    even though my only USB device is a keyboard. Plenty of other worrying messages in there from kernel and mDNSResponder ...unfortunately they mean nothing to me.
    Permissions had been repaired on this computer just before I allowed it to sleep and the disc plus two external FW drives all report healthy.
    Simon

  • Update Screen with the updated entries?

    I have create a simple interface where user can see the entries that are in the tab view.
    I have a delete button where once pressed, LOV will pop up and allow the user to choose which entry they wish to delete.
    When the user has selected the entry, it will be deleted from the db.
    Now my question is: how can I update the screen such that the screen will show the updated entries in the db.

    the problem is that the entries are already shown on the screen... in a tab view.
    Hence, the button allows a lov to pop up for user to select which one to delete.
    I have added the commit but it doesn't refresh. I have to manually click on the next and previous entry button to see the newly updated screen.
    So is there a way to refresh the screen without doing the manual refreshing?

  • Add one field on the screen.

    hi ,everybody.
    i want to add one field on the progam SAPMV10A,it is VD05,The screen number is 300.the field name is TVLV-ABRVW.How can i do,thank you.

    Check here:
    SPRO --> Financial Accounting --> Accounts Receivable and Accounts Payab;e --> Customer Accounts -> Master data --> Preparations for creating customer master data --> Adoption of Customer's own master data fields --> Businees Add-in:....

  • Adding one field in selection-screen in rfitemar

    hi experts
    1)  I am converting the rfitemar to z or y program after that i have to add one field   wbs element(projk) in selection screen.
    2) The WBS Element values should be displayed in the output report ie one column which contain wbs element values .
    Plz help me as soon as possible

    Hi,
       In this report,
    1. find out the final table for display.
    2. add ur custom fields in that table using appending structure.
    3. find out correct enchance spot or BADI,...etc...before diaply(befor calling FM REUSE_GRID_DISPLAY or method  SET_TABLE_for_display or..etc).
    4. in that enchance spot or badi u can write ur logic.
    Regards,
    Ramesh.

  • Why doesn't my app update screen open?

    I have updates to be installed and why won't the update screen?

    The update server is down; try this temporary workaround
    App Store>Purchased>Select "All"
    Note: Look out for apps that have the word "Update"
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c256282736869f322d4b3071bbb2 a82_zps51a6f546.jpg

  • Apps Not updating after iOS 5 update

    I recently updated my verizon iPhone 4 to iOS 5. I tried to update 20 apps and they wouldn't update! They would all just say "waiting..." None of them wouldnt load. I discovered that they would load on 3G but they won't load over wifi.  I'm starting to regret updating to iOS 5 so soon because it is still very glitchy. Does anybody know why the apps won't update?

    Not my issue. Many apps do update fine. 5 pesky ones are being difficult and refuse to update. Tried on various wifi networks with same result. Other applications do update. All the latest as far as iOS is concerned although sadly I am still using an iPad 2.
    What is the same is only that a number of my applications in the App Store fail to update on my iPad 2.

  • Need to add one field in MM02

    Hi ,
    I need to add one field in MM02 screen.
    Can u help me in this please.
    I need to do this by using screen exit ,how to do this?
    can u......
    Regards,
    Kalidas

    Hi Kalidas,
    Selection Text: P_TCODE: Transaction Code to Search
    Text Symbols: 001 - Enter the Transaction Code that you want to search through for a User Exit
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
           WHERE pgmid    = 'R3TR'
             AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
             WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
              WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
              WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
              WHERE pgmid    = 'R3TR'
                AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    Find SAP Modifactions
        SELECT * FROM tadir
          INTO TABLE jtab
          WHERE pgmid    = 'R3TR'
            AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
          WHERE sprsl EQ sy-langu
            AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
            WHERE sprsl = sy-langu AND
            name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,
            2 jtab-obj_name HOTSPOT ON,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Kindly Reward Points If You Found The Reply Helpful,
    Cheers,
    Chaitanya.

  • Problem in updating screen field.

    Hi all,
    We have a requirement to fill a blank screen field in table control in the screen by taking the value of one of the other fields in the same screen.I have used DYNP_VALUES_READ to read value from one screen field of the screen and DYNP_VALUES_UPDATE to update the read value in another screen field in table control of the same screen.I am able to read the value but unable to update value.
    Flow logic.
    Value in the ‘Project #’ field should be updated in the ‘Partner field’ column in the table control on selecting ‘Sold-To-Party, option. I have created field exit for ‘Sold-To-Party’ field and in the field exit function module I have written the code.
    Thanks and regards
    Kiran Vangalapati

    It depends on how you have your table control set up.  When you say that you are updating the table control field, are you updating the value of the field wherever the table control data is being pulled from (I.e. the original table)?  Or are you updating the value in the internal table that is part of the table control definition (I.e. the field shown within the table control if you look at the screen layout)?  Make sure that if you are changing the data in the original table that you then also update the actual table control fields as well.  Also, are you making your changes in the PBO module before the screen is ever displayed?  You may need to use a MODIFY SCREEN statement after you make your changes, depending on when your code is called.  I hope this helps.
    - April King

  • How to update screen fields dynamically

    Hi,
    Can any one help me in updating screen field dynamically using so_expr, so_where,so_flds

    Hi,
      Use this type of logic. Though this code is for selection-screen, but you can use this type of logic for screens by using screen table and implement this logic in PAI.
    REPORT z_sdn.
    PARAMETERS:
      p_num RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND abc,
      p_char RADIOBUTTON GROUP rad1.
    PARAMETERS:
      p_num1 TYPE i MODIF ID num,
      p_num2 TYPE i MODIF ID num,
      p_char1 TYPE c MODIF ID chr,
      p_char2 TYPE c MODIF ID chr.
    AT SELECTION-SCREEN OUTPUT.
      IF p_num EQ 'X'.
        LOOP AT SCREEN.
          IF screen-group1 EQ 'CHR'.
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF screen-group1 EQ 'NUM'.
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    Regards
    Abhijeet

  • 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

  • LSMW to update only one field in materials

    Hello experts,
    My requirement is to update only one field 'HRKFT-Origin Group as Subdivision of Cost Element' in material using LSMW. I tried with Standard Batch/Direct Input -> Object - 0020, Method - 0000. But it was not successful as it gave me warning - 'The material cannot be maintained since no maintainable data transferred' at the end.
    Now I want to try this using BAPI method in LSMW. But it is showing me error - No target structures could be determined..
    Please guide me.
    Regards,
    Aparna Gaikwad

    Hi
    i tried the same and am able to do it using LSMW Batch i/p.  Object - 0020, Method - 0000.
    There in source fields define material, plant and origin grp. in structure relations map the below
    BGR00 Batch Input Structure for Session Data                       <<<< MBEW1 Material COsting
          Select Target Structure BGR00 .
        BMM00 Material Master: Transaction Data for Batch Input            <<<< MBEW1 Material COsting
              Select Target Structure BMM00 .
            BMMH1 Material Master: Transfer of Main Data                       <<<< MBEW1 Material COsting
    Next in field mapping map those 3 fields: material, plant and origin grp.
    while testing do one thing. first take the data and try the same using MM02 manually. if tht is working fine ( i mean if the material is having costing view and you are able to chnage the origin group). then test with the same material, plant and a different origin grp. It will work.

  • EJB Update one field

    Hi,
    Up until now, most of my forms in jsf have had all the fields in the ejb. So when I did mergeEntity all the fields where updated with the correct data. Now I have a form that has just the ID of the ejb and one field. Now when I do mergeEntity all the other fields are set to null. Shouldn't mergeEntity just update the field I am setting? What do I need to do to update just one field in the ejb without bringing all the other fields in or is there an easy why to do that?
    Thanks for you help. Any examples would be great!

    You're not supposed to put ## around it. That makes
    Coldfusion look for a variable named "originated" inside a
    structure named "affiliate", which obviously isn't what you want to
    do.
    In my query, I didn't have any hashes around field2.
    Change your query to:
    <CFQUERY datasource="#application.dsn#">
    UPDATE affiliate
    SET last_contacted = originated
    </CFQUERY>

Maybe you are looking for

  • MAC OS X 10.6.3 issues with iTunes/Magic mouse

    This is strange. Somehow I was able to upgrade Snow Leopard 10.6 to 10.6.3. How was that possible? I did this about a week or so ago. 10.6.3 is not available on Apple's download site today 2-7-2010. How did I get access to it? A couple of weeks ago,

  • 11g Database Adapter issue

    Hi there, I have a very simple BPEL process which just use Database Adapter to response result from one table, every thing works ok but a column with 'ROWID' datatype get a wrong data. Which means when the data in table is 'AAAOOMAAPAAAgGVAAl', the B

  • 6 minutes to boot computer

    For the last week to 10 days, by MacBook is running SO SLOW. I have done a disk repair, and a disk permissions repair, and it seems that all is supposedly OK. But SOMETHING is wrong. I timed by boot up and it took 6 minutes from pushing the button to

  • IMessage in Mavericks - the screen goes black

    the screen goes black if I am not using it. Messages works fine, but it's annoying to have to click on the window to get the screen from black to text

  • Importing music from your iPod onto iTunes

    I lost my iTunes library because my laptop crashed. I have all of my songs saved, but my laptop is gone. My friend has a laptop with iTunes, but if I import my music from my iPod onto their laptop will it erase all of thier music?