Upgraded to 1.1, problem navigating in grid

Hi
Is it possible to change the result grid behaviour to be like in 1.0? I find it quite problematic to not beeing able to use the cursor keys to navigate in the grid. Every cell always gets in edit mode directly even though it's a read only grid, and no extra "edit" key is pressed.
regards
Carl

Its happen when you are in the grid of the table tab and navigate with keys and dont with mouse. This is?
In the results of the any statement (select), this isnt happening. This is?
If it will be this, for me, this isnt problem, because it only confuses if I to use the arrow for the left or right. Using the arrow for low or top the field it is 'editable', but it continues allowing the navigation.
#23.64
10gR2
WinXPSP2

Similar Messages

  • How does one update Flash? I currently cannot watch videos on You Tube, it says I need to upgrade, I have no problem doing this on a PC.

    How does one update Flash? I currently cannot watch videos on You Tube, it says I need to upgrade, I have no problem doing this on a PC.

    If you're not using chrome you can just go to adobe's website (http://get.adobe.com/flashplayer/) and download the newest flash player.  You run the .dmg and then open the application, which updates flash.  With the latest version of flash there should be a preference pane within system preferences to allow you to change settings and check for updates.

  • I run Tiger OSX on one MacBook and SnowLeopard on another. Photos were downloaded from Tiger to SnowLeopard, and now iPhoto won't open on the Tiger Mac. Will upgrading iPhoto fix this problem?

    I run Tiger OSX on one MacBook and SnowLeopard on another. Photos were downloaded from Tiger to SnowLeopard, and now iPhoto won't open on the Tiger Mac. Will upgrading iPhoto fix this problem?

    What matters is the version of iPhoto you have on the different machines. Can you tell us what they are, and what exact error message you get.
    Regards
    TD

  • I have a problem with ALV Grid User Command?

    Hi Experts,
    I have a problem with ALV GRID User Command.
    I am calling TCODE IW33 (Order Display) from the ALV output at first time by selecting an order. But, User command is calling IW33 Initial screen with blank value of order. Even I checked in debugging the value what I selected is passing properly, but once that screen (IW33 Initial) displays, value doesn't appear. Then, Manually, I  created another session and gone to TCODE IW33 and displayed an order. After that I came out from that order. Then again run my ALV program and selected another order, now order is displaying, but not what I selected current order instead of displaying previous order what I just displayed manually. If I selected any other order, system will display the same order what I dislayed manually.
    Here is my code.
    FORM user_command_alv  USING u_ucomm TYPE sy-ucomm
                           us_self_field TYPE slis_selfield.
    CASE u_ucomm.
    WHEN '&IC1'.
    READ TABLE it_final INDEX us_self_field-tabindex INTO wa_final.
            WHEN 'ORDER'.
              IF NOT wa_final-order IS INITIAL.
                SET PARAMETER ID 'COK' FIELD wa_final-order.
                CALL TRANSACTION 'IW33' AND SKIP FIRST SCREEN.
              ENDIF.
    endform.
    PARAMETER ID 'COK'  also the standard one.
    Could you please help me out, Where I did wrong?
    If I select any order, that order only should display.
    Thanks in advance.
    Regards,
    Sarayu.
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 2:33 PM

    hi,
    Please check it once the Paramater ID is 'ANR' for IW33 order number.
    Hope this may help.
    Regards,
    Sravanthi

  • Problem with ALV grid in edit mode

    Hello, gurus!
    I have a problem with ALV-grid. Sometimes when I call F4 help for a cell, data is inserted in a different cell.  And when I call check_changed_data method, my internal table (passed to ALV-control in set_table_for_first_display) does not updates properly. In what can be a problem?
    Thanks,
    Mikhail

    Hi Prabhu,
    MODULE pbo_100 OUTPUT.
      SET PF-STATUS 'MAIN100'.
      title_of_report = text-010.
      SET TITLEBAR '0100' WITH title_of_report.
      DATA: g_event_receiver TYPE REF TO lcl_event_handler.
      IF z_custom_container IS INITIAL .
        CREATE OBJECT z_custom_container
          EXPORTING
            container_name = 'ALV_ZAC'.
        CREATE OBJECT alv_grid
          EXPORTING
            i_parent = z_custom_container.
        g_repid = sy-repid.
        gs_variant-report = g_repid.
        x_save = 'A'.
        PERFORM check_alv_grid_fields.
        ps_layout-cwidth_opt = 'X'.
        ps_layout-edit = 'X'.
        CALL METHOD alv_grid->set_ready_for_input
          EXPORTING
            i_ready_for_input = '1'.
    *    CALL METHOD alv_grid->register_edit_event
    *      EXPORTING
    *        i_event_id = cl_gui_alv_grid=>mc_evt_enter.
        APPEND   s_list_rec   to it_list_rec.
        CALL METHOD alv_grid->set_table_for_first_display
          EXPORTING
            is_layout       = ps_layout
            is_variant      = gs_variant
            i_save          = x_save
          CHANGING
            it_fieldcatalog = pt_fieldcat
            it_outtab       = it_list_rec[].
        CALL METHOD alv_grid->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_enter.
        CALL METHOD alv_grid->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_modified.
    ENDIF.
    FORM check_alv_grid_fields .
      DATA: ls_fcat LIKE LINE OF pt_fieldcat.
    REFRESH pt_fieldcat .
    CLEAR: ps_layout, ls_fcat.
      ls_fcat-fieldname = 'VBELN'.
      ls_fcat-ref_field = 'VBELN'. ls_fcat-ref_table =  'LIPS'. " .
      ls_fcat-outputlen = 9.
    *  ls_fcat-datatype   = 'CHAR'.
    *  ls_fcat-inttype    = 'C'.
      APPEND  ls_fcat TO pt_fieldcat.
      CLEAR: ls_fcat.
      ls_fcat-fieldname = 'ERDAT'.
      ls_fcat-ref_field = 'ERDAT'. ls_fcat-ref_table = 'LIPS'.
      ls_fcat-outputlen = 9.
    *  ls_fcat-f4availabl = 'X' .
    *  ls_fcat-datatype   = 'DATS'.
    *  ls_fcat-inttype    = 'D'.
      APPEND ls_fcat TO pt_fieldcat.
      CLEAR: ls_fcat.
    ENDFORM.                    " check_alv_grid_fields
    FORM save_p .
      CLEAR l_valid.
      CALL METHOD alv_grid->check_changed_data
        IMPORTING
          e_valid = l_valid.
      IF l_valid IS INITIAL.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            titel = text-i01
            txt1  = text-i02
            txt2  = text-i03
            txt3  = text-i04.
      ELSE.
        i_dat_reg = zrumm_prr-cdprr.
        CLEAR is_temp_otc.
        freshit i_prrpus_fax.
        freshit i_list2_ot.
        LOOP AT it_list_rec INTO s_list_rec.
          MOVE-CORRESPONDING s_list_rec TO i_list2_ot.
          i_list2_ot-fgrup = 'RECE'.
          i_list2_ot-prrnu = i_num_prr.
          APPEND i_list2_ot.
          MOVE-CORRESPONDING s_list_rec TO i_prrpus_fax.
          APPEND i_prrpus_fax.
        ENDLOOP.
      ENDIF.
    Edited by: Mikhail Sarychev on Mar 16, 2011 6:41 AM
    Edited by: Mikhail Sarychev on Mar 16, 2011 6:49 AM
    Edited by: Mikhail Sarychev on Mar 16, 2011 6:49 AM

  • 7.01 to 7.3 Upgrade - Logon Screen - "Logon Problems? Get Support" occuring

    Hi
    We have upgrade our ABAP and JAVA stacks from NW 7.01 to NW 7.3.
    After the upgrade is the "Logon Problems? Get Support" occuring on our portals logon screen. In 7.01 this was controlled with the parameter ume.logon.logon_help - however after the upgrade we do not see this parameter anymore.
    Screen dump (requires a couple of clicks)
    http://www.filefactory.com/file/c26d20b/n/Portal_Logon_Page_Issue.jpg
    Any idea about how we remove the "Logon Problems? Get Support" part?
    Thanks and kind regards,
    Torben

    Hi Torben,
    On my fresh 7.3 installation, everything is clean and ... fresh ...
    So, for example, the built in group AnonUsers only has the user Guest as it's solely relation (no parent, no child groups); the guest user has the Guest role, which has (via it's groups) roles Everyone and Guest; onbly the role Everyone as got UME actions.
    All together, this sounds much like an upgrade issue (on my fresh 7.3, there is no group "J2EE_GUEST" at all).
    Two possibilities to go:
    - Open an OSS message (should be done in any case probably, to report this issue to SAP, so that this can be fixed);
    - Check the UME consistenty by yourself (http://help.sap.com/saphelp_nw73/helpdata/en/44/aecb4253217037e10000000a422035/frameset.htm)
    Maybe the second point already will fix some things; would be great for you, anyhow, I still would advise to report this issue officially to SAP.
    Hope it helps
    Detlev

  • After upgraded ios6 i got problem with whatapp. "last seen" function is not working

    HI eveyone
    after upgraded ios6 i got problem with whatapp. "last seen" function is not working .. it's doest show last seen who enter the chat . is anyone have the same problem .. i even restore and reinstall to my ph but it's  not work .. if someone know how to fix it, plz tell me how to do .. thanks

    Also, when I check this post several times a day, I always see warning 'Connection is untrust'. If I close browser and reopen immediately everything is ok.

  • Problems Navigating this Discussion Website

    Using either Safari or Firefox I have big problems navigating this site. I can log in OK but it keeps hanging. With Firefox I sometimes get the message box 'This document contains no data'. With Safari I get 'Safari can't open the page "http:/discussions.apple.com/post!post.jspa". The error was: "lost network connection" (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message'. Also it seems to navigate a bit better if I don't log in and use the site as a guest. Could it be something with my account? I've had great difficulties posting this query, also when changing my settings. It's like the address bar doesn't colour over past the http part when I click. No problems with other sites - I have phoned Apple and they can navigate round it OK. I've tried clearing the cache and cookies which improves it slightly but only for a short time. It has taken me days to submit this and I'm finally doing it from a Windows PC with Internet Explorer. Maybe I need to delete my account and start a new one? Please can anyone help?

    This site is frequently slow, sometimes incredibly so. I can only hope that sometime soon, Apple will finish their tinkering (actually, I don't know what was wrong with the previous iteration, it seemed fine to me), restore levels and mark the page construction "solved"!
    Miriam
    FYI, there is a Discussions page devoted to Discussions Feedback

  • Problems navigating through old posts

    I am having problems navigating through old posts.  The slower the forums get, the longer it takes me to read them, and the further behind I get in reading them.  Eventually, when trying to read posts that are a couple of months old in the SQL and PL/SQL forum, when trying to navigate from one post to the other, I frequently get an error message.  This happens whether I try to use my browser's back arrow to the previous page or click on a page number on the forum page, or change the start number in the url.  However, sometimes I actually get back to the page and can select the next post.  It is not consistent.  Sometimes I can click on the same thing four times in a row and the first three times I get the error, but the fourth time I get a page of posts.  So, the error message is not actually saying what is really going on.  The following is the error message that I keep getting:
    "You have reached the maximum amount of pages in this set of content results. If you are looking for something specific, try applying a content type filter or entering a search term."

    Yes, I am still seeing the problem sporadically.

  • My iphone 5s have problems with the battery to upgrade to IOS8, the problem is that low battery level quickly since I upgraded to IOS8.

    My iphone 5s have problems with the battery to upgrade to IOS8, the problem is that low battery level quickly since I upgraded to IOS8.

    recalibrate your battery.

  • I really am struggling to like the upgrade, but the screensaver problems are awful...I have tried most of the solutions offered here, and the problem still persists...PLEASE fix it, Apple. I wish I had not upgraded my ipad.

    I am really struggling to like this upgrade, but the screensaver problems are so disappointing...I have tried most of the suggested solutions but the outsized photo problem still persists on my ipad. Pretty close to a deal breaker!  Please fix this, Apple.  I really wish I had not upgraded...can it be undone?  I really dislike the camera roll, too : (

    No one from Apple monitors these forums, so it isn't the place to voice complaints or suggestions. Go here:
    http://www.apple.com/feedback/ipad.html
    It's the best place to make complaints, recommendations, or just mention stuff.
    There's a screensaver with iOS? I don't think so.

  • Problem Navigating Apple Support Discussions

    Whenever Safari 2.0.3 loads a web page in the Apple Support Discussions, all of the items beginning with "https://ssl.apple.com" return the error message "bad server certificate" in the Activity window.  Once a page loads, some of the navigation buttons don't work.  They include the "reply" buttons on some posts as well as the buttons to go to the next page.  So far, I haven't had this problem on any other web site.
    Any ideas on what is causing this?

    Klaus & Ramón -
    Thanks to you both for your helpful advice.  My 1st real introduction to OS X was in August when I bought a PowerBook G4.  (On 'retirement' last century, I was happily running System 8.6 on a PowerBook G3.  Forced to upgrade(?) to System 9.2.2 -- to run QuickTax.  Why is it that so many bad things are associated with taxes? [smile]  Bought the G4 after lightning took out the internal modem in my longtime companion.)
    When buying the G4, I had -- naively -- assumed that the applications loaded would be the latest versions for the version of OS X that it was running.  You set me straight on that, Klaus.  So, took your advice and downloaded Safari 4.1.3 that same night -- at 4.1 to 4.5 kb/s.  Yes, I still use a dial-up internet connection.
    As Ramón anticipated -- and kindly shared, Safari 4.1.3 requires OS 10.4.11.  Calculated it would take the 180+ mb combo file about 12 hours to download.  Before figuring out how to do that, the problem was solved.  Bought a 2nd G4 -- in case some unkind fate happens to the 1st G4.  It has Safari 5.0.6 installed (running OS 10.5.8).
    Thanks again to you both for your assistance,
    David

  • Problem navigating in my iPad mini

    I am new to Apple products I have a problem when I'm on a site I don't always see away to go back a page, screen or to my initial search.

    The navigation arrows on the top left allow you to move forward and back on a tab. The Address Bar and Search Bar are combined at the top of the page. You can navigate directly to a page or start a search there. Both will work.

  • Problem while alv grid display exporting to excel sheet

    Hi,
      I have done an ALV report using reuse_alv_grid _display , out put is fine , but when i click on excel view icon i could only see an excel sheet without any data ., but when i use export to local file and choose spread sheet its giving the data in excel, but the user wants to click only the excel view icon.
    Best Regards

    Hi,
    Check this link
    [Problem with Excel button in ALV Grid...URGENT;
    Regards,
    Sathish Reddy.

  • Software upgrade, sync and performance problems.

    When upgrading to the new iPhone software 4.0. on my iPhone 3G all my pictures captured on my iPhone during the last year has disappeared.
    No backup is available in iTunes and the previous upgrades did NOT delete any content in the iPhone. Why did this change and how do I get the pictures back??
    The phone is also gradually getting slow - opening a text message takes 5-8 sec this is also not acceptable.
    I am a big Apple fan and has been very happy the last 6 years but the iPhone is currently not a product I would recommend to anyone. I also don't recommend SW upgrading since performance keeps going down with the introduction of fancy new features.
    Any help/suggestions is appreciated, thanks

    Not sure why the photos in the Camera Roll are not included with your iPhone's backup, which has nothing to do with installing the firmware update. This means something was wrong with the backup for your iPhone. I didn't lose any data on my 3G when installing 4.0, but I always import the photos in the Camera Roll especially before installing a firmware update.
    Although photos in the Camera Roll are included with the iPhone's backup or should be, so is a significant amount of other data. Photos in the Camera Roll should be imported by your computer as with any other digital camera. Not a good idea to depend on your iPhone's backup and your iPhone alone for this data which can be lost or stolen. I've always imported photos from every digital camera I've used and the same with my iPhone's digital camera, which should be treated the same as any other digital camera for a number of reasons.
    Contacts are also included with your iPhone's backup or should be, but contacts are designed to be synced with a supported address book application on your computer and should be available on your computer with or without an iPhone or with or without any cell phone. I've helped countless people here who manually enter all contacts on their cell phone and depend on their cell phone alone for this important data, which can be lost or stolen.
    Problems like this certainly did exist a few years back. Hardware can fail, data transfer can fail or get corrupted, and user error or not taking precaution when important data is involved. There are many more people here that don't maintain a backup for any important data on their computer's hard drive than do.
    Losing important data is painful, but painful lessons are usually learned the best. Things can and do go wrong. For future reference, import the photos in the Camera Roll ASAP, and especially before installing a major firmware update when the transfer of an existing backup is involved.

Maybe you are looking for

  • ITunes 9 Genius Mixes (having issues)

    I turned off Genius, turned it back on to get Genius Mixes and have not been able to actually play a Genius Mix yet! When I go to the Genius Mix icon and then try and select a Mix, I hit the Play button that appears in the middle of the 4 random cd c

  • Question marks in PDF for non-english characters.

    I'm get report from APEX 3.0.1 (Default Report Layout) with BI Publisher 10.1.3.3.1 Base. In Adobe Reader 7.0.8 instead of non-english(cyrillic) characters see question marks. How to tune BI Publisher?

  • How to reuse a Joomla database?

    Client wants to have a BC site, but the info from the current site is in Joomla. How can I build them a site besides the 4 main html pages?  Can the database be reused from the Excel file? Rather use Dreamweaver than Joomla any day.

  • Quick Time compression?

    Anyone know a good way to compress .mov files? I have a 76 mb file that I want to autostart when the page loads but it needs to be smaller.

  • Customise ME53N status bar

    Hi All, what's the impact if i add print preview button in ME53N ? is it advisable to do so ..am curious why PO has that button but PR doesnt have..pls advise