Running report in background getting runtime error.

Hi,
I am getting run time error , when I execute the report in background .
When I debug it I am getting error - when it is executing
CALL METHOD cl_ppegihdr_cntl=>exppe_read .
In ST22 I get error on "
SET HANDLER event_rec_tool_at1->on_function_selected FOR
  mr_toolbar_at1."
ABAP Runtime error is
SET_HANDLER_FOR_NULL
Thanks and regards ,
Rohit.

Hi,
Are you getting this error in foreground? What is the subrc?
Please can you post a screenshot, or more detail on the runtime error.
In the meanwhile here is the help docu for this which may help you, http://help.sap.com/abapdocu_70/en/ABAPSET_HANDLER.htm

Similar Messages

  • Recent update download upset my entire itunes program. Can't use to sync iphone, ipad, etc nor run any other updates.  Get runtime error message, etc...and contact app support team.  Says itunes not installed correctly, pls reinstall. tried to no avail.

    A recent update download upset my entire itunes program. Unable to use to sync iphone, ipad, etc nor run any other updates.  Get runtime error message, Error 7 (windows error 1114)  etc...and contact app support team.  Says itunes not installed correctly, pls reinstall. tried to no avail.

    First try updating to iTunes 11.1.5.5, using an installer downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    If you still get the errors after that, try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • While running a report i am getting following error?

    HI
    While opening a report i am getting following error. Here i attached screen shot .Please tell me solution for  that

    I am also receiving the same error, but from within Answers. It occurs occasionally, depending on what fields I select. I am trying to narrow it down to a field and field type. I am using OBIEE 10.1.3.4.0 and Oracle 11g.
    Any help would be appreciated.
    Thanks,
    Anne

  • When i executed this class file  i am getting runtime errors

    when i executed this class file i am getting runtime errors
    code is :
    import java.awt.event.*;
    import java.awt.*;
    public class Test extends Frame
    java.awt.Window w;
         TextField t;
         Test()
         t=new TextField(20);
         add(t);
         addWindowListener(new WindowAdapter()
                             public void windowDeactivated(WindowEvent ev)                               {                    
                                  w.toFront();          
                                  System.out.println("hai");
         setSize(300,300);
         setVisible(true);
    public static void main(String args[])
    Test t =new Test();
    after executing that class i am getting this errors
    Exception occurred during event dispatching:
    java.lang.NullPointerException:
    at WindowEventDemo.windowActivated(WindowEventDemo.java:76)
    at java.awt.Window.processWindowEvent(Window.java:612)
    at java.awt.Window.processEvent(Window.java:576)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Container.dispatchEventImpl(Compiled Code)
    at java.awt.Window.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventQueue.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:68)
    if anybody know how to pls help me

    You are using w that you have not done anything with.
    Add following code to the begining of your cinstructor:
    w = this;
    Then it should work.
    //Anders ;-D

  • When i am posting the Outbound delivery,here getting Runtime error

    Hello
             When i am posting the Outbound delivery,here getting Runtime error
    This is error analysis report
    Error analysis
        Short text of error message:
        No RFC destination is defined for SAP Global Trade Services
        Long text of error message:
        Technical information about the message:
        Message class....... "/SAPSLL/PLUGINR3"
        Number.............. 002
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    Please give me solution for this

    HI,
    Probable some missing customising for SAP Global Trade Services - Plug-In.
    Check with your functional consultant if the configuration is correct.
    Check in SPRO.
    Sales and Distribution>Foreign Trade/Customs>SAP Global Trade Services - Plug-In
    Regards,
    Ankur Parab

  • Getting runtime error

    hi all
    i am getting runtime error in this report can any one help me out.
    Include prg is attached down.
    REPORT  ZVBLOCKED.
    INCLUDE ZVBLOCKEDTOP.
    REPID = SY-REPID.
    PERFORM GET_DATA.
    PERFORM APPEND_FIELD.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        I_CALLBACK_PROGRAM             =  REPID.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        =  LAYOUT
        IT_FIELDCAT                      =  F_VBAK
        I_TABNAME                        =  'IT_VBAK'
        IT_EVENTS                        =  F_EVENTS
      TABLES
        T_OUTTAB                         =  IT_VBAK.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        =  LAYOUT
        IT_FIELDCAT                      =  F_EKKO
        I_TABNAME                        =  'IT_EKKO'
        IT_EVENTS                        =  F_EVENTS
    TABLES
        T_OUTTAB                         =  IT_EKKO.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    FORM GET_DATA.
    SELECT VBELN NETWR FROM VBAK INTO TABLE IT_VBAK  WHERE KUNNR IN S_KUNNR.
    SELECT EBELN AEDAT FROM EKKO INTO TABLE IT_EKKO  WHERE LIFNR IN S_LIFNR.
    ENDFORM.
    FORM APPEND_FIELD.
    FCAT-FIELDNAME = 'VBELN'.
    FCAT-TABNAME = 'VBAK'.
    FCAT-REF_FIELDNAME = 'VBELN'.
    FCAT-REF_TABNAME = 'VBAK'.
    APPEND FCAT TO F_VBAK.
    FCAT-FIELDNAME = 'NETWR'.
    FCAT-TABNAME = 'VBAK'.
    FCAT-REF_FIELDNAME = 'NETWR'.
    FCAT-REF_TABNAME = 'VBAK'.
    APPEND FCAT TO F_VBAK.
    FCAT-FIELDNAME = 'EBELN'.
    FCAT-TABNAME = 'EKKO'.
    FCAT-REF_FIELDNAME = 'EBELN'.
    FCAT-REF_TABNAME = 'EKKO'.
    APPEND FCAT TO F_EKKO.
    FCAT-FIELDNAME = 'AEDAT'.
    FCAT-TABNAME = 'EKKO'.
    FCAT-REF_FIELDNAME = 'AEDAT'.
    FCAT-REF_TABNAME = 'EKKO'.
    APPEND FCAT TO F_EKKO.
    ENDFORM.
    This is include prg.
    TABLES: LFA1,EKKO,KNA1,VBAK.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
    SELECT-OPTIONS: S_LIFNR FOR LFA1-LIFNR,
    S_KUNNR FOR KNA1-KUNNR.
    SELECTION-SCREEN END OF BLOCK B1.
    TYPES: BEGIN OF TY_VBAK,
    VBELN TYPE VBAK-VBELN,
    NETWR TYPE VBAK-NETWR,
    END OF TY_VBAK.
    DATA: WA_VBAK TYPE TY_VBAK,
    IT_VBAK TYPE TABLE OF TY_VBAK.
    TYPES: BEGIN OF TY_EKKO,
    EBELN TYPE EKKO-EBELN,
    AEDAT TYPE EKKO-AEDAT,
    END OF TY_EKKO.
    DATA: WA_EKKO TYPE TY_EKKO,
    IT_EKKO TYPE TABLE OF TY_EKKO.
    TYPE-POOLS: SLIS.
    DATA: REPID LIKE SY-REPID,
    FCAT TYPE SLIS_FIELDCAT_ALV,
    F_LFA1 TYPE SLIS_T_FIELDCAT_ALV,
    F_VBAK TYPE SLIS_T_FIELDCAT_ALV,
    F_EKKO TYPE SLIS_T_FIELDCAT_ALV,
    LAYOUT TYPE SLIS_LAYOUT_ALV,
    F_EVENTS TYPE SLIS_T_FIELDCAT_ALV.

    Check the below code, its working fine.
    *& Report  YSAT_TEST3
    REPORT  YSAT_TEST3.
    type-pools: slis.
    TABLES: LFA1,EKKO,KNA1,VBAK.
    data: lv_event  type slis_alv_event, " add this
          lt_event type slis_t_event.       " add this
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
    SELECT-OPTIONS: S_LIFNR FOR LFA1-LIFNR,
    S_KUNNR FOR KNA1-KUNNR.
    SELECTION-SCREEN END OF BLOCK B1.
    TYPES: BEGIN OF TY_VBAK,
    VBELN TYPE VBAK-VBELN,
    NETWR TYPE VBAK-NETWR,
    END OF TY_VBAK.
    DATA: WA_VBAK TYPE TY_VBAK,
    IT_VBAK TYPE TABLE OF TY_VBAK.
    TYPES: BEGIN OF TY_EKKO,
    EBELN TYPE EKKO-EBELN,
    AEDAT TYPE EKKO-AEDAT,
    END OF TY_EKKO.
    DATA: WA_EKKO TYPE TY_EKKO,
    IT_EKKO TYPE TABLE OF TY_EKKO.
    TYPE-POOLS: SLIS.
    DATA: REPID LIKE SY-REPID,
    FCAT TYPE SLIS_FIELDCAT_ALV,
    F_LFA1 TYPE SLIS_T_FIELDCAT_ALV,
    F_VBAK TYPE SLIS_T_FIELDCAT_ALV,
    F_EKKO TYPE SLIS_T_FIELDCAT_ALV,
    LAYOUT TYPE SLIS_LAYOUT_ALV,
    F_EVENTS TYPE SLIS_T_FIELDCAT_ALV.
    REPID = SY-REPID.
    perform it_events.   " add this
    PERFORM GET_DATA.
    PERFORM APPEND_FIELD.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    I_CALLBACK_PROGRAM = REPID.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = F_VBAK
    I_TABNAME = 'IT_VBAK'
    IT_EVENTS = lt_event        " add this
    TABLES
    T_OUTTAB = IT_VBAK.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = F_EKKO
    I_TABNAME = 'IT_EKKO'
    IT_EVENTS = lt_event      " add this
    TABLES
    T_OUTTAB = IT_EKKO.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    FORM GET_DATA.
    SELECT VBELN NETWR FROM VBAK INTO TABLE IT_VBAK WHERE KUNNR IN S_KUNNR.
    SELECT EBELN AEDAT FROM EKKO INTO TABLE IT_EKKO WHERE LIFNR IN S_LIFNR.
    ENDFORM.
    FORM APPEND_FIELD.
    FCAT-FIELDNAME = 'VBELN'.
    FCAT-TABNAME = 'VBAK'.
    FCAT-REF_FIELDNAME = 'VBELN'.
    FCAT-REF_TABNAME = 'VBAK'.
    APPEND FCAT TO F_VBAK.
    FCAT-FIELDNAME = 'NETWR'.
    FCAT-TABNAME = 'VBAK'.
    FCAT-REF_FIELDNAME = 'NETWR'.
    FCAT-REF_TABNAME = 'VBAK'.
    APPEND FCAT TO F_VBAK.
    FCAT-FIELDNAME = 'EBELN'.
    FCAT-TABNAME = 'EKKO'.
    FCAT-REF_FIELDNAME = 'EBELN'.
    FCAT-REF_TABNAME = 'EKKO'.
    APPEND FCAT TO F_EKKO.
    FCAT-FIELDNAME = 'AEDAT'.
    FCAT-TABNAME = 'EKKO'.
    FCAT-REF_FIELDNAME = 'AEDAT'.
    FCAT-REF_TABNAME = 'EKKO'.
    APPEND FCAT TO F_EKKO.
    ENDFORM.
    *&      Form  IT_EVENTS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM IT_EVENTS .                         " add this
      refresh lt_event.
      clear lv_event.
      lv_event-name = slis_ev_top_of_list.
      lv_event-form = 'LIST_HEADER'.
      append lv_event to lt_event.
      clear lv_event.
      lv_event-name = slis_ev_top_of_page.
      lv_event-form = 'VERIFIC_HEADER'.
      append lv_event to lt_event.
    ENDFORM.                    " IT_EVENTS
    Thanks
    Satyasuresh Donepudi
    Edited by: Satya suresh Donepudi on Apr 29, 2009 9:04 AM

  • TS2570 I am getting runtime error R6034 when opening iTunes i have followed all instructions on reinstalling and it still occars

    I am getting runtime error R6034 when trying to open iTunes I have followed all instructions for reinstalling iTunes but it still occurs can any help please?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99537)

  • Whilst updating itunes software to latest version I get runtime error R6034 and cannot get into itunes. Is there a fix for this problem?

    Whilst updating itunes software to latest version I get runtime error R6034 and cannot get into itunes. Is there a fix for this problem?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99376)

  • How to download itunes when you get runtime error R6034?

    HOW TO DOWNLOAD ITUNES WHEN YOU GET RUNTIME ERROR R6034?

    I obtained this information from    http://www.elabcommunications.com
    If you tried installing the latest iTunes on your Windows machine and it failed with this error message Runtime Error Message R6034, try this:
    Go to Control Panel > Add or Remove Programs (Windows XP) or Programs and Features (Newer Windows)
    Uninstall all of these items in the exact following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot your computer system, download iTunes, then reinstall using an administrative account or right-click the downloaded installer file and select Run as Administrator.

  • I'm having problems with 8.1 and Continuity / Handoff. It will work fine for web pages, etc. but in email when I try to do it between by iPhone 5s running 8.1 and my Macbook Pro running Yosemite I consistently get an error.

    I'm having problems with 8.1 and Continuity / Handoff. It will work fine for web pages, etc. but in email when I try to do it between by iPhone 5s running 8.1 and my Macbook Pro running Yosemite I consistently get an error. "Failed to Continue Activity" Cocoa Error 4609.  Handoff is working for phone calls and text messages. By email just crashes each time. It was also doing it under 8.0.2.  My iPhone and iPad handle this fine. It's only the MacBook to the iPhone that fails, and only on email.

    Handoff Continuity Troubleshooting

  • Getting Runtime Error while Activating Characteristics in BW sandbox system

    Hi, i m getting  runtime error while activating Characteristics. Error as All InfoObjects Already Saved(locked)
    Short Text
    SQL error 1691 occurred when accessing program "GP4H8Z73D1WOGH7XBIZ54N5GXEG "
       Runtime Errors         DBIF_REPO_SQL_ERROR
    even if creating a new Characteristics same error is comming.
    Key Figures are getting created successfully but problems is comming only with Characteristics. Please Help...
    Edited by: kush kumar on Mar 23, 2010 11:56 AM

    Hi,
    Follow bellow steps:
    a) Once check the Lock entries by useing SM13.
    Goto SM13--> Select your object lock entries --> Select delete.
    b). Acitvate the Infoobject.
    Regards.

  • Getting Runtime error while adding Second page in Smartform.

    I added 2 pages in smartform. When I worked with single page. smartform working properly. Now I added one more page(i.e Second page) I am getting runtime error.  ("The current ABAP/4 program encountered an unexpected
    situation".   A RAISE statement in the program "SAPLSTXBC" raised the exception
    condition "ERROR".)   When I debug this standard program Something width problem getting on line number 110. Both width not matched so program raising exception. Can you please tell me to solve this problem what changes will I do in my smartform?

    Please let me know the details of each page.
    Error can occur in these cases.
    1) You copied the first page to second. and later you change the width of second page
    2) You created the second page and there is template in second page. each column width is not matching with the total width of the template.
    3) windows width is greater than the page width
    Please have a look.
    Regards,
    Nikhil
    Edited by: Nikhil V Kumar on Jul 27, 2010 12:16 PM

  • When i try to execute web report i am getting a error your not authorized t

    Hi all,
    when i try to execute web report i am getting a error your not authorized to view the page can somebody help me regarding this.
    Thanks
    Kiran Kumar

    Hi
    Once you get the error, without leaving that screen, execute transaction /nsu53 or ask your basis guy to check it for you.
    You will get details of missing authorization.
    Regards
    Rahul

  • In VL02N, getting runtime error "dynpro_msg_in_help" when deleting outbound delivery in production

    Hello SD members,
    I have an issue in which while executing VL02N and trying to delete the outbound delivery getting runtime error "dynpro_msg_in_help" in production system.
    Kindly suggest how to solve this...
    Regards
    Venkat

    Hi Venkata Pradeep,
    Can you please proivde more details about an error to understand the issue.
    Regards,
    Pravin

  • I own an iMac 2011. I am unable to reinstall and launch premiere pro cc. We I attempt to run the program I get a error message saying that the adobe application manager is missing or need to be updated. I reinstalled the manager but I am still unable to l

    I own an iMac 2011. I am unable to reinstall and launch premiere pro cc. We I attempt to run the program I get a error message saying that the adobe application manager is missing or need to be updated. I reinstalled the manager but I am still unable to launch any of my programs from adobe. I tried to do a trail with a program and I am still getting the same message.

    Davinci thank you for the update.
    Please utilize any available uninstallers that are located in the Applications/Utilities/Adobe Installers folder.  Once all of the available uninstallers have been run you will then want to rerun the CC Cleaner Tool.  You can find directions on the use of the CC Cleaner Tool and a download link at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.  After the CC Cleaner Tool is run then please reinstall the Creative Cloud Desktop application from Creative Cloud Help | Creative Cloud for desktop.
    The CC Cleaner Tool is designed to be used after running the uninstallers.  Without running the uninstallers first then a complete removal may not be possible.

Maybe you are looking for