Abap Error CALL_FUNCTION_WAIT_ERROR in program SAPMSSY1

I am getting abap error " CALL_FUNCTION_WAIT_ERROR  ".
The termination occurred in the ABAP/4 program "SAPMSSY1 " in
"REMOTE_FUNCTION_CALL".
The main program was "SAPMSSY1 ".
The termination occurred in line 69
of the source code of program "SAPMSSY1 " (when calling the editor 690).
Regards,
Arundhati

Hello,
If CALL_FUNCTION_WAIT_ERROR occurs only at the server side for
Remote Function Call (RFC) communication when the server gets
the message that the client side is not reachable any more.
This can happen if there exists an communication interruption (CPIC /
TCP/IP network problems) or a client is not any more active.
Therefore please check the gateway, workprocess and rfc traces
(dev_rd,  dev_w* and dev_rfc*) and SM21 for possible problems. Could
you find the origin of the rfc connection? Is it an external RFC
program? Then you may need to install the most recent rfc library
on external side according to SAP notes:
413708  RFC library current at present
  27517  Installation RFCSDK
Regards,
David

Similar Messages

  • ABAP runtime errors    CALL_FUNCTION_WAIT_ERROR

    Dear All,
      we got a lot of dump error in CALL_FUNCTION_WAIT_ERROR
    Error analysis
    An error occurred when executing a Remote Function Call.
    "connection closed"
    Status of connection.... "CODE=CM_DEALLOCATED_NORMAL CM_SEND_RECEIVED
    CM_COMPLETE_DATA_RECEIVED SAPCODE=0 CONV=02919576"
    Internal error code.... "RFC_IO5"
    There is an error in the communication system. To clarify
    and resolve the error, contact your system administrator.
    The termination occurred in the ABAP/4 program "SAPMSSY1 " in
    "REMOTE_FUNCTION_CALL".
    The main program was "SAPMSSY1 ".
    The termination occurred in line 69
    of the source code of program "SAPMSSY1 " (when calling the editor 690).

    What happened?
    "connection closed"
    An error occurred when executing a Remote Function Call.
    Information on where termination occurred?
    The termination occurred in the ABAP/4 program "SAPMSSY1 " in
    "REMOTE_FUNCTION_CALL".
    The main program was "SAPMSSY1 ".
    The termination occurred in line 69
    of the source code of program "SAPMSSY1 " (when calling the editor 690).

  • ABAP Error:Illegal interruption of the event LOAD-OF-PROGRAM (in MIGO-Goods issue to Production)

    Hi Experts,
    while i am doing MIGO(Goods Issue to Production Order, I am getting the below ABAP Error:
    Please give solution, It is urgent requirement.
    THE ERROR IS:
    Short text
         Illegal interruption of the event LOAD-OF-PROGRAM.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "/MRSS/SAPLRAP_INT_OB" had to be terminated because it
          has come across a statement that unfortunately cannot be executed.
    Error analysis
         During the flow of the event LOAD-OF-PROGRAM (event for the
         initialization of an ABAP program), a condition occurred under which
         the event was to be left early. This is not permitted as it would
         result in an inconsistent status in the ABAP program.
    Trigger Location of Runtime Error
        Program /MRSS/SAPLRAP_INT_OB
        Include /MRSS/LRAP_INT_OBF00
        Row                                     34
        Module type                             (FORM)
        Module Name                             GLOBAL_INIT
    Source Code Extract
    Line  SourceCde
        4
        5 *&---------------------------------------------------------------------*
        6 *&      Form global_init
        7 *&---------------------------------------------------------------------*
        8 *       text
        9 *----------------------------------------------------------------------*
       10 FORM global_init.
       11
       12 * local data
       13   DATA lv_badi_impl_exists TYPE flag.
       14
       15
       16 * get ref to BAdIs
       17   CALL METHOD cl_exithandler=>get_instance "#EC CI_BADI_GETINST
       18     CHANGING
       19       instance = gv_ref_badi_inter_company.
       20 *  CALL METHOD cl_exithandler=>get_instance
       21 * CHANGING
       22 *      instance = gv_ref_badi_rap_back.
       23 *  CALL METHOD cl_exithandler=>get_instance
       24 *    CHANGING
       25 *      instance = gv_ref_badi_ps_int.
         26   CALL METHOD cl_exithandler=>get_instance "#EC CI_BADI_GETINST

    Hi Rob thanks for your response.  I thought about doing an OSS note however; I would think I would need to get the problem in config corrected first as it contradicts each other.  The problem I am talking about is how they are to return material to vendor....I have never even seen this as a process in my 10 years....
    Process.....when the PO is a return to vendor PO they go to migo and choose the goods receipt and mvmt type 101 and the system will default the 161 in the item level....the two are inconsistent.  If I try to change the top level to a 161 mvmt (as this is what I am used to seeing) it gives the error that the PO is not a stock transport order... Would you agree that I should correct that problem first before creating an OSS note?

  • How to use LDB PNP with ABAP objects in a program

    Hello,
    I am wondering if anybody has used the HR logical database(LDB) PNP with user defined ABAP objects in a program? I am using the FM- <b>LDB_PROCESS</b> but its not working. Also assigning PNP in the attributes section of the program -- so that I can use predefined fields from the LDB and then invoking the FM doesn't work -- throwing 'Logical database already active' error.
    I suppose even with the ABAP objects and the new FM -- I should still be able to utilize the pre-defined fields of the PNP database -- and also the built in authorizations. I cannot use GET PERNR and REJECT as they give errors. I understand that the use of HR-macros (RP-PROVIDE-FROM-LAST and et al.) are not allowed as they use the table work area -- which is not allowed in ABAP-OOPS.
    I would really appreciate if anyone could show me some insight regarding this. Thank you.
    Kshitij R. Devre

    Hi Kshitij
    It would be really good if we could use both together. But as I know, it is not possible. "GET pernr." is an event-like loop statement and so cannot be used in OO context. And I guess, the same restriction holds for the "LDB_PROCESS" since it uses LDB-specific processing.
    What I suggest you is to use standard and BAPI functions.
    Sorry for giving bad news...
    *--Serdar

  • RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ''

    Hi,
    While executing the below code i am getting the error
    " RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ' ' am new to ABAP , can anyone kindly help me where i have went wrong ? .
    IF ( V_DO_CDS_NAME_MAIN <> '' ).
        ABAP.
            DATA: ref_it_tab TYPE REF TO data,
                  ref_wa TYPE REF TO data.
            FIELD-SYMBOLS: <fs_itab> TYPE ANY TABLE.
            FIELD-SYMBOLS: <fs_wa> TYPE ANY.
            FIELD-SYMBOLS: <fs_field> TYPE ANY.
            CREATE DATA ref_it_tab TYPE STANDARD TABLE OF (V_DO_CDS_NAME_MAIN) WITH NON-UNIQUE DEFAULT KEY.
            ASSIGN ref_it_tab->* TO <fs_itab>.
            SELECT * FROM (V_DO_CDS_NAME_MAIN) INTO TABLE <fs_itab> where C1 = V_WORK_ITEM_ID_MAIN.
            CREATE DATA ref_wa LIKE LINE OF <fs_itab>.
            ASSIGN ref_wa->* TO <fs_wa>.
            loop at <fs_itab> assigning <fs_wa>.
                assign component 'CLIENT' of structure <fs_wa> to <fs_field>.
                V_CLIENT = <fs_field>.
                assign component 'C0' of structure <fs_wa> to <fs_field>.
                V_C0 = <fs_field>.
                assign component 'C1' of structure <fs_wa> to <fs_field>.
                V_C1 = <fs_field>.
                assign component 'C2' of structure <fs_wa> to <fs_field>.
                V_C2 = <fs_field>.
                assign component 'C3' of structure <fs_wa> to <fs_field>.
                V_C3 = <fs_field>.
                assign component 'C4' of structure <fs_wa> to <fs_field>.
                V_C4 = <fs_field>.
                assign component 'C5' of structure <fs_wa> to <fs_field>.
                V_C5 = <fs_field>.
                assign component 'C6' of structure <fs_wa> to <fs_field>.
                V_C6 = <fs_field>.
                assign component 'C7' of structure <fs_wa> to <fs_field>.
                V_C7 = <fs_field>.
                assign component 'C8' of structure <fs_wa> to <fs_field>.
                V_C8 = <fs_field>.
                assign component 'MESSAGE_ID' of structure <fs_wa> to <fs_field>.
                V_MESSAGE_ID = <fs_field>.
                assign component 'TIMESTAMP' of structure <fs_wa> to <fs_field>.
                V_TIMESTAMP = <fs_field>.
                assign component 'EXTRACTKEY' of structure <fs_wa> to <fs_field>.
                V_EXTRACTKEY = <fs_field>.
                assign component 'STATEID' of structure <fs_wa> to <fs_field>.
                V_STATEID = <fs_field>.
                assign component 'DEVICE_ID' of structure <fs_wa> to <fs_field>.
                V_DEVICE_ID = <fs_field>.
            ENDLOOP.
        ENDABAP.
    ENDIF.

    Hi Mubeen,
    While Copying the cotes have come closer otherwise its working fine , i was able to find the error .
    There are ten predefined ABAP data types. There are 100 possible type combinations between these elementary data types. ABAP supports automatic type conversion and length adjustment for all of them except type D (date) and type T (time) fields which cannot be converted into each other.
    I commented the TimeStamp part where i had given the ABAP Type as D and it started working .
    But now i want to display the content of  "TimeStamp"  field but i am not able to do so .
    This is the format in which it has to be displayed 2009.011.915.3353.
    Which ABAPTYPE i need to use ?.
    i am able to display in this format 20090119153353
    regards
    Harsha

  • Runtime Error in MMBE- s yntax error occurred in program "SAPLMBBS " in inc

    Hi Gurus,
    Runtime Error in "MMBE" Transaction -
    The following syntax error occurred in program "SAPLMBBS " in include "LMBBSU07
    " in
    line 76:
    "The column name "MATNR" has two meanings . ."
    Any Input is Highly appreciated.
    Thanks and Regards,
    Selva

    Hi,
    This looks like an ABAP runtime error and the program concerned is a standard program. Please check the include and try debugging, suggest a breakpoint in line 76.
    Thanks

  • Syntax Error occured in Program  in include " CNTN01

    Hi,
    We are working on SAP 4.6C to ECC 6.0 Migration. While testing One Transaction, I am getting following error:
    The current ABAP program "CL_GOS_TOOLBOX_MODEL==========CP" had to be
    terminated because it has come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program
    "Z3I_CL_BASCULER_SCS_GOS=======CP " in include "<CNTN01> " in
    line 13:
    "Within classes and interfaces, you can only use "TYPE" to refer to ABA"
    "P Dictionary types, not "LIKE" or "STRUCTURE"."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    This Error is coming while executing transaction in ECC 6.0 however in R/3 4.6C it is working fine.
    Pls Advice what should be done to resolve this issue. This issue is coing in alot of transactions.
    I will appreciate if anyone of you can guide me regarding same.
    regards
    Sandeep

    Hi,
    I was trying hand on one of my Z class which contain  include <CNTN01>. in its Local Types.
    I commented the existing include statement and added new statement as
    INCLUDE CNTN01_OO.
    After saving now when i try to activate the Z Class, it is giving me following error:
    INCLUDE CNTN01_OO
    You can only define classes and interfaces at the highest level of CLASS-POOL.
    CLASS Z5C_CL_MESSAGE, Internal classes in a class include "CNTN01_OO" does not start with the prefix (Z5C_CL_MESSAGE=======)of the current class pool.
    pls advice what i should do correct this issue.
    Sandeep

  • Abap error in Q system.

    Dear All,
    To modify MB51 we have created a Z report (ZMB51) by copying RM07DOCS to another program ZSD_RM07DOCS and modifying it.
    Everthing is working perfect in Dev system but when we have transported to Quality system , it is giving abap error..
    Help is very much appreciated.
    Best regards
    Error is:
    Error in the ABAP Application Program
    The current ABAP program "SAPLALDB" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "ZSD_RM07DOCS " in include
    "ZSD_RM07DOCS " in
    line 1025:
    "FORM "MODIFY_LIST" does not exist"
    The include has been created and last changed by:
    Error analysis
        The following syntax error was found in the program ZSD_RM07DOCS :
        "FORM "MODIFY_LIST" does not exist"
    Trigger Location of Runtime Error
        Program                                 SAPLALDB
        Include                                 LALDBU03
        Row                                     49
        Module type                             (FUNCTION)
        Module Name                             SUBMIT_REPORT

    Dear All,
    Thanks for the answer, but I have already cheked the source code if it is there Form modify_list is just standing there )
    Best regards

  • Error in extended program check

    Hi,
    I m getting following error in Extended Program Check..
    <b>The current ABAP command is obsolete
    Tables with headers are no longer supported in the OO context.</b>
    for the below declaration..
    <b>data: I_fieldcatalog type  slis_t_fieldcat_alv WITH HEADER LINE .</b>
    could anyone help me.
    Thanks in advance.

    Hi,
    Use as follows
    <b>DATA: I_fieldcatalog type slis_t_fieldcat_alv,
            wa_fieldcaalog like line of I_fieldcatalog.</b>
    When you use HEADERLINE you will get one WOrkarea and an intenral table with one declaration.
    In your case I_fieldcatalog is a workarea and I_fieldcatalog[ ] is the table.
    This usage is obsolete as it leads to confustion with CLEAR.
    When you use CLEAR I_fieldcatalog you may assume that table is cleared but here only workarea is cleared.
    So you need to use the above given declaration and change all your
    APPEND I_fieldcatalog.  to
    APPEND wa_fieldcatalog toI_fieldcatalog.
    simlarly for INSERT and MODIFY.
    Regards,
    Sesh.

  • Abap error when user fi asset using tcode KO88

    hai gurus,
    when the user fi_asset team want to use the transaction the system give and error.
    For gurus information, we are facing the number ranges issue. when document type AA that using number ranges from 100006000 - 100006999 have been hit to maximum value in year 2007
    so the at the time is we create a another number ranges in documnet type AA using number ranges form 8000000000 - 8999999999 that for year 2007 untill the future
    but now when the user want to use this transaction the system have issue the problem.
    when the user run the test run mode is no detect any problem but when user make actual run the system give abap error like this below.
    ABAP runtime errors    MESSAGE_TYPE_X                                                     
           Occurred on     22.02.2008 at 09:58:49                                                                               
    >> Short dump has not been completely stored. It is too big.                                                                               
    The current application triggered a termination with a short dump.                                                                               
    What happened?                                                                               
    The current application program detected a situation which really                         
    should not occur. Therefore, a termination with a short dump was                          
    triggered on purpose by the key word MESSAGE (type X).                                                                               
    What can you do?                                                                               
    Note the actions and input that caused the error.                                                                               
    Inform your SAP system administrator.                                                                               
    You can print out this message by choosing "Print". Transaction ST22                      
    allows you to display and manage termination messages, including keeping                  
    them beyond their normal deletion date.                                                                               
    Error analysis                                                                               
    Short text of error message:                                                              
    Document number 1000 100060000 2007 was already assigned                                                                               
    Long text of error message:                                                               
    Diagnosis                                                                               
    Document number 100060000 in company code 1000 and fiscal year 2007                  
         has already been assigned.                                                           
    System Response                                                                               
    Termination of processing.                                                           
    Procedure                                                                               
    Check document number range 01 in company code 1000 and fiscal year                  
         2007 and correct the number range status if necessary.                                                                               
    Technical information about the message:                                                  
    Message classe...... "F5 "                                                                
    Number.............. 152                                                                  
    Variable 1.......... "1000 "                                                              
    Variable 2.......... "100060000 "                                                         
    Variable 3.......... "2007 "                                                              
    Variable 4.......... "01 "

    Hello,
    If you are facing the error during KO88, there could be a problem with settlement document number range also.
    During settlement, a settlement document is created and also related FI, CO, PA documments as applicable.
    Please go to t code SNUM, check the number range for CO settlement object:CO_ABRECHN.
    Let me know if it solves your problem.
    Sourabh

  • DUMP in program SAPMSSY1 -

    Hi Friends ,
    I am getting following dump .
    CALL_FUNCTION_NOT_FOUND
    "Check the last transports to the SAP System.
    Is the program "SAPMSSY1" currently being changed?
    If an enqueue/dequeue module is involved, is the activation
    of the lock object missing in the ABAP/4 Dictionary?"
    call 'RfcImport' id 'Type' field type.
    if sy-xprog = 'JAVA'.
       system-call plugin
                   id 'JAVA' value 'FORW_JAVA'
                   id 'RC'   value rc.
    i m working on this.But didnot get any clue.
    please let me know if you can help on this.
    regards,
    kani

    I would try to set a break-point to find more information
    form remote_function_call using value(type).
      data rc type i value 0.
      do.
        call 'RfcImport' id 'Type' field type.
        if sy-xprog = 'JAVA'.
          system-call plugin
                      id 'JAVA' value 'FORW_JAVA'
                      id 'RC'   value rc.
    *   if there is no rollout on the JAVA side which
    *   rolls both, JAVA and ABAP, we return to the
    *   C-Stack and reach this point
    *   in case there was an rollout, the ABAP-C stack is lost
    *   and we jump direkt to this point
    *   here we trigger the rollout on this Abap side with
    *   the following statement
          system-call plugin
                      id 'JAVA' value 'ROLL_OUT'
                      id 'RC'   value rc.
        else.
          perform (sy-xform) in program (sy-xprog).
          rsyn >scont sysc 00011111 0.
        endif.
      enddo.
    endform.

  • ABAP error on posting MR11 entries

    Hi,
    Tried posting entires in MR11. On pressing icon post clearing gets error message program termination & ABAP error. ABAP error analysis " DIAG1 = MR11 1000 01 02"
    Could any one advise what could be reason foir error & how to resolve it

    if an ABAP terminates then it creates a huge log that can be analyzed via ST22.
    even it is huge, the most important info is at the first 5 pages.
    It is usually not a user error when a program terminates. Ask an ABAPer to analyze the dump.

  • ZNOTIF_CREATE - ABAP error: ABAP_BOOL

    Hello,
    We are working in our own definition of tickets based on standard SFLN.  In that ticket ZLFN we are adjusting our definitions.  We also wanted to use our own version of the NOTIF_CREATE so that we can call this new transaction.  We have copy the report we have copied the original program into Z_RDSWP_NOTIF_CREATE, and also copy the standard function into Z_DSWP_NOTIF_READ_PROCESS_TYPE, only changing the document:
      pf_process_type = 'ZLFN'. 
    However, when we try to activate this function module we are getting an abap error:
    The type "ABAP_BOOL" is unknown.
    We have compare to the original function module DSWP_NOTIF_READ_PROCESS_TYPE and we found that they are the same except for the small modification.
    Is there any ABAP expert who can help me with this error??
    Many thanks
    Esteban

    Hi Esteban,
    you likely forgot to check the TOP-Include of the function group in which the original function module is stored.
    There you will find the statement Andreas mentioned. If you include it as the first statement in your function module it should work!
    Regards,
    Christoph

  • Abap error: /CPD/CL_PWS_WS_CP_REPEAT_COL==CP

    Hello,
    Pls a hint for this abap error:
    ERROR: Syntax error in program /CPD/CL_PWS_WS_CP_REPEAT_COL==CP . (termination: RABAX_STATE)
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_ABAP_TYPEDESCR=============CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
        In include "/CPD/CL_PWS_WS_FBI_GUIBB_FORM=CU        ", in line 8 of program
         "/CPD/CL_PWS_WS_CP_REPEAT_COL==CP        ", the following syntax errors
        have occurred:
        You can only use the "INTERFACES IF_FPM_QUICKVIEW_SOURCE" statement on
        ce in a class and its subclasses. allowed.
        Author and last person to change the include are:
        Author         SAP
        Last changed by "SAP         "
    Error analysis
        The following syntax error has occurred in program
         /CPD/CL_PWS_WS_CP_REPEAT_COL==CP        :
        You can only use the "INTERFACES IF_FPM_QUICKVIEW_SOURCE" statement on
        ce in a class and its subclasses. allowed.
    Thank you
    Chris

    Hi Chris,
    Could you please check and implement below SAP notes .
    1977804 - Dump due to Multiple presence of IF_FPM_QUICKVIEW_SOURCE Interface
    2002634 - Dump due to Multiple presence of IF_FPM_QUICKVIEW_SOURCE Interface
    Choose the SAP note based on the scenario where you get this dump.
    Hope this helps.
    Regards,
    Deepak Kori

  • SM:EXEC SERVICES / ABAP ERROR

    after upgrade SM3.2->SM4.0 EWA reports don't generate.. I 've got following:
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has  
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program "RDSVASAEW_ROOT_____________073 
      " in include "RDSVASAEW_ROOT_____________073 " in                             
    line 197:                                                                      
    "The field "FB_DLDINSTPAR_TAB001155" is unknown, but there is a field w"       
    "ith the similar name "FB_DLDINSTPAR_TAB000807". "FB_DLDINSTPAR_TAB0008"       
    "07"."                                                                         
    What should I do??

    Hello Damian,
    you have to generate the includes again as described in note
    611536 - Generation error in reports (name pattern RDSVAS____00*)
    Best Regards,
    Thomas

Maybe you are looking for

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?"  In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the

  • Is this a bug? loading component swf with MovieClipLoader

    Guys, one wierdarse 'bug?' for you. I have a swf created in Flash 8 Pro, published to Flash 7 with AS2.0 which contains just a selection of components dragged from the standard library (date chooser, date field, combo bog, radio button ,number list e

  • Schemas validation

    I'm using schema validation to validate XML instances. In case of error (constraint violation), I need to provide information back to the user about the problem such as : - value provided by the user, - constraint violated, - list of the facets of th

  • 1300 Series w/ Internal Antenna

    We have installed several external antenna 1300's but this is the first with an internal antenna. Which direction is the wireless radiating? The mount that we have places the front (grey side) against a wall with the rear facing outward. Thanks.

  • Spry menu in Frameset

    I have inserted a spry menu widget into a frame. I am unable to view the spry menu properties in the property inspector. I am able to use the Propery Inspector for spry menu widgets in a standard page. What is wrong? I know how to go to the code and