Dump after going back from a view

i call view VIEW_SPRL from view VIEW_ALTA, and when i go back to VIEW_ALTA
using navigation plugs, this view is showed for about a second and inmediately
after i get the dump error "Access via 'NULL' object reference not possible"
Any idea ?
Should i display my code for VIEW_SPRL in the Handle_IN event ? Or is it ok
to have it as I do in the WDDOMODIFYVIEW() with the sentence:
CHECK first_time = abap_true
thanks

I don't think I can paste all this info here so that it can be nice displayed, but I will try anyway.
Call stack:
Nº    Cl.          Programa                            Include                             Lín.
      Nom.
    6 METHOD       CL_WDR_CLIENT_SSR=============CP    CL_WDR_CLIENT_SSR=============CM00T   142
      CL_WDR_CLIENT_SSR=>IF_WDR_CLIENT~GET_CLIENT_UPDATES
    5 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    78
      CL_WDR_MAIN_TASK=>EXECUTE
    4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    69
      CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
    3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM01B   366
      CL_HTTP_SERVER=>EXECUTE_REQUEST_FROM_MEMORY
    2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                      946
      HTTP_DISPATCH_REQUEST
    1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
      %_HTTP_START
Source code extract:
  112         i_update_data      = m_data_update_tmp
  113         i_event_queue      = event_queue.
  114   enddo.
  115
  116
  117   param_str = wdr_task=>request->get_form_field( mc_request_field_name ).
  118   check param_str is not initial.
  119
  120   split param_str at ';' into table param_entries.
  121
  122   loop at param_entries into param_entry.
  123     " skip client removed events
  124     check param_entry is not initial.
  125
  126     clear event_param_1.
  127     clear event_param_2.
  128     clear event_param_3.
  129     clear event_param_4.
  130     clear event_param_5.
  131     split param_entry at ','
  132           into handler_id event_name event_param_1 event_param_2 event_param_3 event_param_4
  133     replace all occurrences of '_' in handler_id with ''.
  134     replace all occurrences of '_' in event_name with ''.
  135     replace all occurrences of '_' in event_param_1 with ''.
  136     replace all occurrences of '_' in event_param_2 with ''.
  137     replace all occurrences of '_' in event_param_3 with ''.
  138     replace all occurrences of '_' in event_param_4 with ''.
  139     replace all occurrences of '_' in event_param_5 with ''.
  140
  141     event_handler = get_event_handler( handler_id ).
>>>>>     call method event_handler->handle_event
  143       EXPORTING
  144         i_event_handler_id = handler_id
  145         i_event_name       = event_name
  146         i_event_param_1    = event_param_1
  147         i_event_param_2    = event_param_2
  148         i_event_param_3    = event_param_3
  149         i_event_param_4    = event_param_4
  150         i_event_param_5    = event_param_5
  151         i_update_data      = m_data_update_tmp
  152         i_event_queue      = event_queue.
  153   endloop.
  154
  155   m_data_update_tmp->send_to( client_application ).
  156   m_data_update_tmp->clear( ).
Edited by: Joan Ayala on May 14, 2009 10:31 AM

Similar Messages

  • Double click select all does not work in web site's search area after going back.

    After updating from Firefox ESR v24.8.1 to v31.20 double click select all does not work in a search area after going back or searching again with the same input. It happens before clicking search icon and searching for something else double click select all does not work except it works for one word that's all.
    This issue is with all new Firefox ESR and None ESR I have tried. Also the issue is on all web sites like www.softpedia.com for example.

    Bugzilla has a different login system, unfortunately.

  • Top of page data is repeated while going back from alv report

    Hi,
       In my alv report , I call ed TOP_OF_PAGE.   Data regatding top_of_page is stored in internal table.
       After executing the report,while going back from report,  a screen containing top_of_page data is appeaing.
       Even though I cleared that table,still that data appeared.
      Please resolve this.

    Hi all,
       I cleared that table previously .
       Still that screen appears.
    This is my following code.
    PERFORM top_of_page.            " Subroutine for Top-of-page
    *Display Report
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
            I_INTERFACE_CHECK                 = ' '
            I_BYPASSING_BUFFER                = ' '
            I_BUFFER_ACTIVE                   = ' '
              i_callback_program                = lv_repid
            I_CALLBACK_PF_STATUS_SET          = ' '
            I_CALLBACK_USER_COMMAND           = ' '
              i_callback_top_of_page            = 'TOP_OF_PAGE'
            I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
            I_CALLBACK_HTML_END_OF_LIST       = ' '
            I_STRUCTURE_NAME                  =
            I_BACKGROUND_ID                   = ' '
            I_GRID_TITLE                      =
            I_GRID_SETTINGS                   =
            IS_LAYOUT                         =
              it_fieldcat                       = lt_fieldcat[]
            IT_EXCLUDING                      =
            IT_SPECIAL_GROUPS                 =
            IT_SORT                           =
            IT_FILTER                         =
            IS_SEL_HIDE                       =
            I_DEFAULT                         = 'X'
            I_SAVE                            = ' '
            IS_VARIANT                        =
            IT_EVENTS                         = it_events
            IT_EVENT_EXIT                     =
            IS_PRINT                          =
            IS_REPREP_ID                      =
            I_SCREEN_START_COLUMN             = 0
            I_SCREEN_START_LINE               = 0
            I_SCREEN_END_COLUMN               = 0
            I_SCREEN_END_LINE                 = 0
            I_HTML_HEIGHT_TOP                 = 0
            I_HTML_HEIGHT_END                 = 0
            IT_ALV_GRAPHICS                   =
            IT_HYPERLINK                      =
            IT_ADD_FIELDCAT                   =
            IT_EXCEPT_QINFO                   =
            IR_SALV_FULLSCREEN_ADAPTER        =
          IMPORTING
            E_EXIT_CAUSED_BY_CALLER           =
            ES_EXIT_CAUSED_BY_USER            =
       TABLES
              t_outtab                          = lt_meter
       EXCEPTIONS
              program_error                     = 1
              OTHERS                            = 2
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    perform clear_data.
    endif.
    FORM top_of_page .
    Declaration of local variables, structures and internal tables
      Data : lv_count      TYPE i,
             lv_count_c(9) TYPE c,
             lt_header     TYPE slis_t_listheader,
             wa_header     TYPE slis_listheader,
             lt_line       LIKE wa_header-info.
    Title
      clear lt_header[].
      wa_header-typ  = 'H'.
      wa_header-info = 'Meter Readings Report'.
      APPEND wa_header TO lt_header.
      CLEAR wa_header.
    Total No. of Records Selected
      DESCRIBE TABLE lt_meter LINES lv_count.
      lv_count_c      = lv_count.
      CONCATENATE 'Total Number of meters readed for given cycle: ' lv_count_c
         INTO lt_line SEPARATED BY space.
      wa_header-typ    =    'A'.
      wa_header-info   =    lt_line.
      APPEND wa_header TO lt_header.
      CLEAR: wa_header, lt_line.
    *Display Top-of-page
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = lt_header.
    ENDFORM.                    " TOP_OF_PAGE
    *&      Form  CLEAR_DATA
          text
    -->  p1        text
    <--  p2        text
    form CLEAR_DATA .
    data : lt_header     TYPE slis_t_listheader.
    clear lt_header[].
    endform.

  • Going back from scene 2 to particular moment in scene 1

    Hello all,
    I have encountered a problem, and I need help from more experienced flash users.
    I am creating a webpage in flash, and for now, it consists of 3 scenes. First one is a loading bar, scene 2 is a main page with all menus, and on 3rd scene there is a gallery. I plan to make many galleries, each in different scene. Everything is ok to the moment, when I want to go back from scene 3 to scene 2. Scene 2 consists of many layers and movieclips, however, the main timeline consists only of one frame. When, in scene 2, I will get to the moment from which I am going to scene 3, so to some gallery, then after I am comming back to scene 2 (via gotoAndPlay('Scene 2', 1)), I am getting to scene in a state, as I see it just after loading bar disappears. But I want to be in a place, from which I went to scene 3. How do I achieve this? I think, there should be a way of remembering status of the scene 2 in such a way, that after comming back from scene 3 I would be in the same place from which I left to the mentioned scene 3. Be advised, that scene 2 is in one frame, and all movement in the scene 2 is done by actionscript and movieclips. I am using AS2.0.
    I hope I explained it in understandable way, let me know if there is a need for clarification.
    please help me before I will go crazy
    thanks!

    When you use scenes, which I am recommending you don't mainly because they can be unpredictably problematic when it comes to mixing in navigation, when you compile the file, everything gets clumped into one long timeline anyways, so your reason for using them isn't holding.
    If you plan to have galleries, then going with a design that loads them dynamically rather than storing the content in the file is the best way to go.   If you take a movieclip approach you can create your whole design in just one frame of the main timeline, loading your galleries when called for, and controlling other content via changing visibility or other properties.
    But even if you spread things along the one scene's timeline, you can have variables that you assign status info to that can be retained for the length of the timeline so that if you return to a section you can use those variables to set things back up to whatever status they should have.

  • My macbook pro is slow / freezing even after going back to factory settings

    my mac book pro is slow even after going back to factory settings.....
    What do i do next its driving me insane!
    its 2010 macbook pro running mountain lion
    - cpu is peaking with just a single web page open
    - laptop is pretty hot
    - cant watch any films or online videos
    - cursor is lagging on screen
    - disc usage is 5% / 95% free!
    - system memory = half free, so 2gb out of full 4gb i have
    If anyone has any ideas of whats possibly wrong please let me know ur thoughts
    Am beginging to think its possibly damage to my harddrive now

    Start with a SMC reset:
    http://support.apple.com/kb/ht3964
    Run an Apple hardware test.
    http://support.apple.com/kb/ht1509
    You may have to use OPTION D to start it. 
    Take a look at Activity Monitor, set to 'All Processes' for possible clues.
    Look at these two user tips:
    https://discussions.apple.com/docs/DOC-3521
    https://discussions.apple.com/docs/DOC-3353
    Ciao.

  • HT1461 Win 7 set up and running OK,but after go back from OSX the wireless net work stuck at identification cause the window working without Internet.Can we fix it or I must use Windows off line all the time? I already contact Microsoft 2 times for activa

    Win 7 set up and running OK,but after go back from OSX the wireless net work stuck at identification cause the window working without Internet.Can we fix it or I must use Windows off line all the time?
    I already contact Microsoft 2 times for activations.Hope I can fix from Apple instead.

    Ok....Got "Problem 2 and 4" solved....still trying to figure out this pop up everytime I click something...it's crazy how fast the pop up blinks...maybe once or 3 blinks then nothing till you close the window, then pop up then disappears...then click something
    else and pop up then gone....never seen this before...ive seen it when you tried to get online which turned out to be a virus on a customers cpu I worked on some years ago, I think it has something to do with the deleted files that I spoke of on last
    post...I notice it does it on start up as well.....think something is trying to install but not sure. Need to figure out where the appdata or start up folder and see whats in there....maybe it's in there.......so I might wait to see how it acts in the next
    couple days for "Problem 1"...but other than that it's running like a champ...so right now I just want to get the pop up windows to stop........thx again for everyone's help on this.
    John

  • X200s sometimes hangs/freezes when goes back from sleep

    There is a confirmed bug in ubuntu jaunty/karmic running on lenovo x200 series notebooks. Shortly, it sometimes hangs/freezes when goes back from sleep mode.
    https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842
    Does anyone know anything  about it? How do i contact lenovo engeneer about it?
    Here is filled bug report in ubuntu bugtracker: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842

    There is a confirmed bug in ubuntu jaunty/karmic running on lenovo x200 series notebooks. Shortly, it sometimes hangs/freezes when goes back from sleep mode.
    https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842
    Does anyone know anything  about it? How do i contact lenovo engeneer about it?
    Here is filled bug report in ubuntu bugtracker: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842

  • Satellite P850-30W - Fan does not run after coming back from sleep mode

    I got a Toshiba Satellite P850-30W with bios 1.90.
    Sometimes the fan does not run at all after coming back from sleep mode on windows 7.
    This has happened twice (maybe more times without me knowing), and Ive had the computers for a month.
    Normally the fan starts running when the CPU gets over 50 celsius, and stops under 50 celisus...
    I tried running Prime95 when this fan-issue occured and the computer temps got dangerously high (close to 100 degree)! the fan did not start at all
    ...this error could potentinally damage the laptop...
    to get the fan running again I have to restart windows
    anyone else experienced this?
    I guess the fix would be to never use sleep-mode...or toshiba needs to fix it with a bios update.

    What kind of answer do you expect here in user community?
    Exact info about the fault? I dont think that somebody would be able to provide exact answer but just speculations
    In other Forum you can read about Satellite notebook; but is it exacts the same model?
    No, it seems to be an L650 series. Its completely different series .
    From my opinion its not software related problem.
    BIOS issue?
    Well, in case it would be a BIOS issue, the problem would appear always and not sometimes after being shut down 200 times.
    It could be a hardware related issue. Memory? Maybe
    In my personal opinion to get more details hardware diagnostic software should be used in order check the hardware for possible malfunction. Thats my personal opinion

  • MBP 17 2009 LCD does not turn on after coming back from sleep

    Hi,
    I feel like crying.
    I bought my 1st Mac 3-4 days ago and I have not regretted anything more than this.
    1st some mov files that Quicktime windows can play but Mac does not (feel like pulling my hair why as the videos with same settings taken with same camera before I got the mac work perfectly from flash drive.
    2nd the nVidia 9600m stopped being detected no matter what I did, next morning it magically re-appears (alongwith many things that vanished magically for e.g. options on right clicking images never came)
    3rd the MOST BUGGING AND CONSISTENT
    I close the lid, it goes to sleep. It has never come back from sleep. The screen will never turn on. Then I force shut down keeping power button pressed. And even after 2-3 restarts the screen doesn't come up. I wait for 2 min and then start. It starts working.
    ANY IDEA WHY?
    I use a usb mobile braodband modem (Huwaeii telecom's) and have a silly feeling maybe that might case something. But even that doesn't.
    My next guess is temperature. I am working in 30-40 degree celcius room temprature range. Maybe that is it.
    I think Mac is overrated and it breaks my heart saying that as I spent $2300 over it which is a HUGE amount in my part of the world. I needed it for Final Cut Pro.

    I am sorry I do not understand the response. You're saying this is a known issue? Or are you suggesting/asking "IF" it is an OEM issue?
    Because the whole problem I have is the "IF". I am not able to comprehend what is the problem.
    And Yes the machine is 6 days old. Calling technical support doesn't help.
    Apple doesn't look obsessed about customer satisfaction in India (My Luck i bought it from the only iStore in my area, hope they correct it).
    The nVidia 9600M is sometimes there sometimes not. Lately even simply starting the machine does not make the screen turn on.''
    Is there a debugging to-do list? Oh I am so "OS X"-impaired.
    Thanks,
    Rachin

  • App crashing when going back to previous view

    I've got my app. which has several views. in my 3rd view, i have a list of questions with yes/no answers the answers to which I'm saving to a plist. it was working all good. but then i added a first view with a table which has 4 options, clicking on either of these rows go to the same view but each of them change the value of the variable in my singleton class, which then decides which questions are added to the 3rd view. so this helps me to jus have one view but the variable controls the different questions. Now my problem is that if i change something in my 3rd view, for eg, i choose yes/no , then when i am going back to the main viw , my app crashes. I am not sure why this happens.How does it work anyway-the inherent back button on the navigation bar? im guessing it calls the viewdidload function for the first/second view when going back to them from the first view, i dont undrstand why it crashes, coz the viewdidloads of these views seem okay to me.
    thanks

    write the piece of code causing the crash or paste the output on the console to get to know what actually cause your application to be crashed.

  • Table record is not updated correctly after navigate back from detail page

    I have 2 jspx pages one (page A) has a table displaying the employee record, another one (page B) is used to update the selected employee record. On page A, when selecting a record and clicking the 'Details' button I can be navigaed to pag B on which I can modify the record information in a form component. I have one table column 'teamName' which is binding to a LOV at VO layer and on pageB I am using <af:inputComboboxListOfValues> to show a editable LOV list for this attribute, when I input a new value here and save it, I can go back to page A but the team name for this record shows empty, by querying the database I do find the record updated successfully with the changed value. And when I reloaded the page the record can show the new team name value. Why it is not updated in the employee table when immediately navigating back from page B? I have set the table iterator refresh attribut to "always" but still failed. Can anyone help on this issue? Thanks!!
    BTW, for other columns (not LOV) they are ok, the table can show the changed value correctly.
    Edited by: user774592 on Jul 14, 2011 7:56 PM
    Edited by: user774592 on Jul 14, 2011 9:59 PM

    Thanks for reply!
    I did exactly the same as what you said. I d&d the data control Commit operation on page B to generate a 'Save' commandToolbarButton with the action attribute set to 'save' which is the from outcome for navigating back to page A. Is there any business logic I need to write here? Currently I have no.
    Note: In this case I used an editable LOV, I have a requirment that besides selecting a existing value from the lov, user can also input a new value in the LOV. When going back to page A, I do find the LOV list is updated to contain the new vaule. Just the record in the table shows an empty value instead of the new value. Still do not know why.

  • Creative zen V+ still not working after coming back from assistance for the second ti

    hallo, what thje hell is happening with creative Zen V+ I got it back from assistance for the second time and it's still not working!!!!!!!!!!! I want my money back now, I'm gonna spam the whole of the internet with this unfunny joke, what the hell I'm suppoised to do I really fed up, since I bought the unit it worked for less than one month and for another one it's been back to the assistance for two times!!!! And still it's not working!!!! Now let me tell you this creative zen V + is a worthless, costly, cheap piece of crap, and I mean crap, what the hell am I supposed to do now Send it back for the third time 249 euros for this crappy piece of cheapo plastic Please is it allowed me to send it back and having in change some olther player I don't mean it to be trendy or flashy or all of the usual marketing **bleep** coming with these, I just want a player that actually play my music, a player I can load all my music without the application to freeze, the player to freeze and me having to format and reboot again and again. Is it creative capable to accomplish such task, do they still know how to build an mp3 player that actually work without me having to buy and install windows vista Or they don't Do creative have some old player still in stock zen touch wasn't stilish but worked well until the HD dyied, zen V plus isn't working as it is supposed to do, plain and simple. What do I have to do now in case you are wondering the malfunction is still the same.

    For the Zen V, as it states on the box, you need Windows XP Service Pack or 2, or Windows Vista. You also need Windows Media Player 0 or . As long as you have that, you should be fine there.
    You may also have a corrupted file that is causing the problem. Try not transferring them all at once, transfer it in blocks instead. If one block fails to transfer, try and narrow it down and see if it's a specific file in that block causing the problem.
    When you try it on another PC, do be sure that PC meets the system requirements, especially the Service Pack if it's Windows XP. You'd be shocked how many times people try it on a 2nd computer, get angry when it doesn't work, call tech support, and find out the 2nd PC doesn't even have SP on it.
    All else failing of course contact Support. They can't help you if you don't let them know what's going on, and if you don't yell at them they'll do their absolute best, trust me.
    Good luck,
    Dale

  • TP Yoga 15 - Windows: Keyboard response too slow after coming back from hibernation

    I've got the same issue as outlined in this thread for a Y50 - there seems to be a BIOS update to solve it, but what about TP Yoga 15? Quote:Simply put, In keyboard properties , the Repeat delay is default at maximum (eg, holding down a keyboard button and how fast it generates the key strokes). When the system is put in hiberanation, then turned on again to come back, the Repeat delay some how gets decreased to about 2/3 of what it originally is. https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Re-Y50-Windows-8-Keyboard-response-too-slow-after-coming-back/td-p/1676309/page/1 

    hi guys,
    Can you please provide also these additional information:
    (this is to check if the issue is isolated to a certain model number)
    Model Number (eg. 59-xxxxxx): 
    Place of Purchase (eg. Amazon, Bestbuy, etc.): 
    In addition, the solution from this thread seems to be a good workaround (the app is for Win7 but may also work for Win8.1)
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Calling JSP from Forms and going back from JSP to Forms

    Hi,
    We are calling JSP from Forms 6i using show_document
    I'd like to go back to tha calling Form from the JSP.
    How can I construct the URL that would lead me back to the same Form and Forms session where the JSP was called from?
    Thanks,
    Arpad

    Thanks Shay,
    works for me too...
    Now:
    when I use the "Back" button of my IE to go back from JSP to the Forms session, it works for Jinitiator 1.1.8.19, but if I use Jinitiator 1.3 I got hung...
    Any ideas how could I make it work from Jinit 1.3?
    Thanks again/
    Regards,
    Arpad

  • Media offline after sending back from color

    Ok. I have searched around and not finding anything offhand, but I have not changed any default settings but I am getting media offline when I import back to FCP. I can find the location of the files and all but its giving me a hard time bringing media online.

    I dragged and drop the file that came back from color.
    Dragged and dropped? There is nothing to drag and drop. You SEND TO FCP from Color, then in FCP a new sequence shows up. Double click on that.
    But I might be getting into semantics...you might be doing that but not explaining it well.
    Trash your FCP prefs...
    #44: FCP acting weird - Trash Prefs
    Shane's Stock Answer #44: FCP acting weird or unusual. Just not like is normally should
    If the program was working fine, and now isn't, or just isn't working the way it should, the first things to do are:
    1) Trash your FCP preferences. Download the Preference Manager from Digital Rebellion: http://www.digitalrebellion.com/pref_man.htm
    http://www.kenstone.net/fcphomepage/trashing_fcpprefs.html
    2) Open the Disk Utility and Repair Permissions.
    3) Shut down for 10 min. Go for a quick walk around the block and get SOME exercise today. Come back, turn on the computer and see how things are.
    4) (optional) Do the Hokey Pokey and turn your self about. Results may vary.
    Shane

Maybe you are looking for

  • What is the best practice to migrate code from dev  to prod

    I have few questions related OWB version control/migration. 1. What is the best way to Version the design repository We want to keep a separate copy of production and test version all the time. Do we have to create design repository in each environme

  • PRD-account key

    Hi If i am having a material with moving average price V still it is hitting PRD Cost diffrence account key and stock account during Miro becoz of which i am not able to book GR. what should be done so it will not hit PRD account key Regards, SAGAR

  • To find 2nd highest salary in employee table

    Hi, I want to know how to calculate the 2nd highest salaried employee details. rownum "=" sign cannot be used i suppose and with and without using orderby clause. both the methods needed. cheers,

  • Opmnctl fails to start with error:  "Main: Nls Initialization Failed!!"

    Hi. Just thought I would add this here since someone else will probably hit this error when attempting to start opmnctl: "Main: Nls Initialization Failed!!" when using 10g App Server on Windows. There is a known workaround, which is to avoid libociei

  • DAQ-Karten mit Linux-Treiber fur LabVIEW

    DAQ-Karten mit LINUX-Treiber fur LabVIEW verfugbar unter http://www.daq-mall.de