Runtime Errors MOVE_TO_LIT_NOTALLOWED_NODATA

I am getting this error when i perform sum in ALV on particular field.
Runtime Errors        MOVE_TO_LIT_NOTALLOWED_NODATA                                               
Date and Time          08.05.2014 04:40:38                                                         
Short text                                                                                       
    Error at assignment: Overwritten protected field.                                           
What happened?                                                                                   
    Error in the ABAP Application Program                                                       
    The current ABAP program "SAPLKKBL" had to be terminated because it has                     
    come across a statement that unfortunately cannot be executed.                               
What can you do?                                                                                 
    Note down which actions and inputs caused the error.                                         
    To process the problem further, contact you SAP system                                       
    administrator.                                                                               
    Using Transaction ST22 for ABAP Dump Analysis, you can look                                 
    at and manage termination messages, and you can also                                         
    keep them for a long time.                                                                   
Error analysis                                                                                   
    A new value is to be assigned to the field "<L_UNIT>", although this field is               
    entirely or partly protected against changes.                                               
    The following are protected against changes:                                                 
    - Character literals or numeric literals                                                     
    - Constants (CONSTANTS)                                                                     
    - Parameters of the category IMPORTING REFERENCE for functions and                           
    methods                                                                                     
    - Untyped field symbols not yet assigned a field using ASSIGN                               
    - TABLES parameters if the actual parameter is protected against changes                     
    - USING reference parameters and CHANGING parameters for FORMs, if the                       
    actual parameter is protected against changes and                                           
    - Accesses using field symbols if the field assigned using ASSIGN is                         
    protected (or partially protected, e.g. key components of an internal                       
    table with the type SORTED or HASHED TABLE) against changes                                 
    - Accesses using references, if the field bound to the reference is                         
    protected (or partially protected) against changes                                           
    - External write accesses to READ-ONLY attributes,                                           
    - Content of a shared object area instance accessed using a shared lock                     
    (ATTACH_FOR_READ).     
Source Code Extract                                                                             
Line
SourceCde                                                                                 
2975
*        IF LS_FIELDCAT-NO_OUT NE 'X'.                                                     
2976
*          LFLG_SHOW = 'X'.                                                               
2977
*          EXIT.                                                                           
2978
*        ENDIF.                                                                           
2979
*      ENDIF.                                                                             
2980
*    ENDLOOP.                                                                             
2981
2982
*  Wenn die Einheit gleichzeitig das aktuelle                                             
2983
*  Zwischensummenkriterium ist                                                           
2984
    if ls_dep_field-s_dep_fieldcat-fieldname =          "INS K_SUBTOTEH                   
2985
                      rs_sort-fieldname. "INS K_SUBTOTEH                                   
2986
*    in einer Split-Zeile nie die Einheit ausgeben,                                       
2987
*    da diese in der aktuellen Zwischensumme immer                                       
2988
*    homogen sein muß und deshalb schon in der ersten                                     
2989
*    Zeile ausgegeben wurde                                                               
2990
      if vflg_splitline = 'X'.        "INS K_SUBTOTEH                                     
2991
        clear lflg_show.              "INS K_SUBTOTEH                                     
2992
*    in der ersten Zeile immer die Einheit ausgeben,                                     
2993
*    da diese Zwischensummenkrit. ist und deshalb                                         
2994
*    auch erscheinen muß, falls keine Kennzahl diese                                     
2995
*    referenziert                                                                         
2996
      else.                            "INS K_SUBTOTEH                                     
2997
        lflg_show = 'X'.              "INS K_SUBTOTEH                                     
2998
      endif.                          "INS K_SUBTOTEH                                     
2999
    endif.                            "INS K_SUBTOTEH                                     
3000
3001
    if lflg_show is initial.                                                               
3002
*    assign component <ls_dep_field>-s_dep_fieldcat-fieldname                             
3003
      assign component ls_dep_field-s_dep_fieldcat-fieldname                               
3004
            of structure t_outtab to <l_unit>.                                           
>>>>>
      clear <l_unit>.                                                                     
3006
    endif.                                                                                 
3007
  endloop.                                                                                 
3008
3009
endform.                              " SPLIT_LINE_CHECK                                 
3010
3011
*&      Form  SUM_EXPA_SINGLE_NEW                                                         
3012
3013
*      text                                                                               
3014
3015
*      -->P_LFLG_KOMP  text                                                               
3016
*      -->P_L_SUBRC  text                                                                 
3017
3018
form sum_expa_single_new using rflg_komp type c                                           
3019
                              r_subrc like sy-subrc.                                     
3020
3021
  data: ls_levels type kkblo_sort_extend.                                                 
3022
  data: ls_groups type kkblo_grouplevels.                                                 
3023
  data: ls_groups_static type kkblo_grouplevels.                                           
3024
  data: l_subrc like sy-subrc.

Hello Zia,
line 3002 is the key to the issue you have experienced:
*    assign component <ls_dep_field>-s_dep_fieldcat-fieldname                             
The component of a structure field-symbols get assigned to a 2nd field-symbol. The structure field-symbols is most likely assigned to a line of an internal table. This internal table is possibly an importing parameter (not changable) or the table is of kind sorted/hased and the structure component part of the table key.
Hope this helps
  Klaus

Similar Messages

  • Runtime error  MOVE_TO_LIT_NOTALLOWED_NODATA.....urgent

    Hi All,
    I am stuck up at one point which is giving
    Runtime error  MOVE_TO_LIT_NOTALLOWED_NODATA.....
    I am giving the details of the dump:
    Error analysis                                                                                |    A new value is to be assigned to the field "<A>", although this field is                  
    |    entirely or partly protected against changes.                                             
    |    The following are protected against changes:                                          
    - Character literals or numeric literals                                                     CONSTANTS)
    |    - Parameters of the category IMPORTING REFERENCE for functions and                        
    |    methods                                                                               
    |    - Untyped field symbols not yet assigned a field using ASSIGN                          
    |    - TABLES parameters if the actual parameter is protected against changes                   
    |    - USING reference parameters and CHANGING parameters for FORMs, if the                     
    |    actual parameter is protected against changes and                                        
    |    - Accesses using field symbols if the field assigned using ASSIGN is                       
    |    protected (or partially protected, e.g. key components of an internal                       
    |    table with the type SORTED or HASHED TABLE) against changes                               
    |    - Accesses using references, if the field bound to the reference is                        
    |    protected (or partially protected) against changes                                         
    |    - External write accesses to READ-ONLY attributes,                                         
    |    - Content of a shared object area instance accessed using a shared lock                     
    (ATTACH_FOR_READ).       
    How to correct the error                                                                         
    |    The field to be overwritten is a parameter or a                                              
    field symbol:
    |    Declare the parameter as VALUE parameter or transfer a help field, to                        
    |    which you assigned the constant before, and assign the help field                            
    |    instead of the constant to the field symbol.                                                 
    Sorce code where error occured:      
       FORM get_constants  
    FIELD-SYMBOLS: <a>.    
    DATA: t_bc_const TYPE zbc_const OCCURS 100 WITH HEADER LINE.
    SELECT  progname fieldname num type sign opti low high     FROM  zbc_const    INTO  CORRESPONDING FIELDS OF TABLE t_bc_const   WHERE progname EQ sy-repid.                                            
      LOOP AT t_bc_const.
        IF sy-subrc = 0.
          CASE t_bc_const-type.
            WHEN 'C'.     "PARAMETER OR CONSTANT
              ASSIGN (t_bc_const-fieldname) TO <a>.
              <a> = t_bc_const-low.
            WHEN OTHERS.
          ENDCASE.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " GET_CONSTANTS
    SY-subrc eq 4
    at the statement.
    ASSIGN (t_bc_const-fieldname) TO <a>.
    PLease provide me with proper solution,or reason for the error

    Hi,
    Dynamic ASSIGN
    FIELD-SYMBOLS <fs> TYPE ANY.
      ASSIGN (name) TO <fs>.
    But in your code  '='  is there.
    Your code :
    ASSIGN (t_bc_const-fieldname) TO .
    = t_bc_const-low.
    COREECT CODE :
    ASSIGN (t_bc_const-fieldname) TO  <FS>.
    't_bc_const' should be   Field symbol.

  • ABAP runtime errors - MOVE_TO_LIT_NOTALLOWED_NODATA

    Dear all,
    In customize program, im using OOP Method CL_GUI_ALV_GRID->SET_TABLE_FOR_FIRST_DISPLAY to output the result in ALV list.
    Result display in ALV list successfully, then i click on on "Print Preview" button.
    System will lead me to another screen, and shortdump MOVE_TO_LIT_NOTALLOWED_NODATA will hits after i click on "Total"/"Summation" button on a numeric field.
    Detail shortdump for MOVE_TO_LIT_NOTALLOWED_NODATA:
    Assignment error: Overwriting a protected field.
    What happened?
    The current ABAP/4 program "SAPLKKBL " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    How to correct the error
    The field you want to overwrite is a parameter or a field symbol:
    Declare the parameter as a VALUE parameter or pass an auxiliary field
    to which you assigned the value from the constant before the call.
    Alternatively, you can assign the auxiliary field to the field symbol
    instead of the constant.
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "MOVE_TO_LIT_NOTALLOWED_NODATA"
    "SAPLKKBL " or "LKKBLF98 "
    "SUM_UNIT_OUT_CHECK"
    Im seaching upside down to get the related OSS note for my SAP version 4.6C but im not able to get anything. And furthermore the short dump only hits at Production server but there is no problem at Dev. and QAS system.
    Your comment is highly appreciated.
    Thanks in advance.

    hi Friend,
    please have a look at OSS note 914863.
    <a href="http://service.sap.com/notes">OSS Link</a>
    Symptom
    The following problems can occur in the order information system:
    The column for a unit is missing in the output list or in the column set.
    The ALV consistency check (Note 504384) displays error message 0K 510.
    The MOVE_TO_LIT_NOTALLOWED_NODATA runtime error occurs in the SAP List Viewer (ALV).
    Other terms
    Production order information system, process order information system, 0K510, <L_UNIT>, SAPLKKBL, LKKBLF98, SUM_UNIT_OUT_CHECK
    Reason and Prerequisites
    In Customizing (report RCOTX000), the column for the unit is hidden. At least one other column that refers to this unit is displayed.
    Solution
    After you have implemented the source code corrections, it is no longer the setting in the RCOTX000 report that determines whether the columns for a unit are displayed. The system displays them only if at least one respective value column is displayed.
    Hope this helps,
    Sajan Joseph.

  • While loading data Runtime error MOVE_TO_LIT_NOTALLOWED_NODATA

    Dear Masters
      While loading data from r/3 to PSA only, I am getting below error
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    There is no long text, when I clicked Error message, I got below message only
        <b> Job terminated in source system   > Request set to red</b>
    In r/3 side in st22, I got below runtime errors
    Runtime Errors         <b>MOVE_TO_LIT_NOTALLOWED_NODATA</b>
    Short text
        Error at assignment: Overwritten protected field.
    any other sap notes to fix this issue
    Please help me to resolve below issue
    Thanks in advance
    Raja S

    Hi Raja,
    Your error message suggests that there is some overlapping of the filed while you have  done the mapping and at the time of extraction this particular field is being tried to be overwritten by some other mapping which is not possible.
    Check in your mappings again and load it.
    Cheers!
    Amit

  • Runtime Error : MOVE_TO_LIT_NOTALLOWED_NODATA after ALV execution

    Hi experts
    I'm facing this runtime error after execute an interface and show an ALV grid for data processed.
    ShrtText
        Assignment error: Overwriting a protected field.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLKKBL" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    Error analysis
    The program tried to assign a new value to the field "<L_UNIT>" even though
        it is protected against changes.
        The following objects are protected:
        - Character or numeric literals
        - Constants (CONSTANTS)
        - Parameters of the category IMPORTING REFERENCE for functions
          and methods
        - Untyped field symbols to which a field has not yet been assigned
          using ASSIGN
        - TABLES parameters if the corresponding actual parameter is protected
          against changes
        - USING reference parameters and CHANGING parameters for FORMs if
          the actual parameter for this is protected against changes
        - Field symbols if the field assigned using ASSIGN or ASSIGNING
          is protected against changes
        - External write accesses to READ-ONLY attributes
        - Key components of lines in internal tables of the type HASHED or
          SORTED TABLE
          SORTED TABLE.
    What I must check on ABAP code for fix it. When I debug I found that the totals(in Yellow) are of two lines. The first line displays with the total values of the respective columns, but the second line is blank. So During the debug it clears the value "lflg_show" which causes the short dump.
    Pleaase help me with this.
    Thanks in advance.

    Hi experts
    I'm facing this runtime error after execute an interface and show an ALV grid for data processed.
    ShrtText
        Assignment error: Overwriting a protected field.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLKKBL" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    Error analysis
    The program tried to assign a new value to the field "<L_UNIT>" even though
        it is protected against changes.
        The following objects are protected:
        - Character or numeric literals
        - Constants (CONSTANTS)
        - Parameters of the category IMPORTING REFERENCE for functions
          and methods
        - Untyped field symbols to which a field has not yet been assigned
          using ASSIGN
        - TABLES parameters if the corresponding actual parameter is protected
          against changes
        - USING reference parameters and CHANGING parameters for FORMs if
          the actual parameter for this is protected against changes
        - Field symbols if the field assigned using ASSIGN or ASSIGNING
          is protected against changes
        - External write accesses to READ-ONLY attributes
        - Key components of lines in internal tables of the type HASHED or
          SORTED TABLE
          SORTED TABLE.
    What I must check on ABAP code for fix it. When I debug I found that the totals(in Yellow) are of two lines. The first line displays with the total values of the respective columns, but the second line is blank. So During the debug it clears the value "lflg_show" which causes the short dump.
    Pleaase help me with this.
    Thanks in advance.

  • Getting error in 0001- Abap Runtime error

    Hi
    While doing the hiring action, when I save the details in Organizational Assignment (0001), I am getting an ABAP runtime error. I am working on IDES system ECC 6.0.
    (Runtime Errors  -- MOVE_TO_LIT_NOTALLOWED_NODATA)
    Regards,
    Chinmay

    Hi,
    First try to check the input data is correct.
    If this the first hiring - New employee or Org. Transfer. If org. transfer, need to check thoroughly the dates before the org. transfer. If it is a new hiring, then whether any of the employees hired preivously with the same hiring action, if so, then some data with the current one is improper. Please check and get back on the same.
    Regards
    Team Member.

  • Runtime error in starting Lightroom

    I receive the following message when I try to start Lightroom:
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program:...Files\Adobe\Adobe Photoshop Lightroom 1.2\lightroom.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.
    Lightroom ran well for several days and then failed to open with the above message.
    I have tried everything I know to do (uninstalled and reinstalled the application, restored the computer to a restore point before Lightroom was originally installed, etc.) and do not know were to go from here. Suggestions would be appreciated.
    I am using Windows XP sp2 and have 4 GB of ram and 250 GB of hard disk space.
    Thanks,
    Cliff Culp

    Aha! A fix! Please look at this...
    http://www.adobeforums.com/cgi-bin
    bob frost, "Help! Runtime error after Lightroom 1.1 install!" #10, 27 Jun 2007 6:54 am

  • Runtime error while executing rule

    Hello All,
      While executing the DTP for a cube, im facing the error as Runtime error while executing rule -> see long text .
      For this source is another Cube, where im loading the data from Cube to Cube.
    Error Description are as follows:-
    Error Location: Object Type    TRFN
    Error Location: Object Name    0T9SCR6Q4VWS1SOPNRRBOY1YD51XJ7PX
    Error Location: Operation Type ROUTINE
    Error Location: Operation Name
    Error Location: Operation ID   00034 0000
    Error Severity                 100
    Original Record: Segment       0001
    Original Record: Number        557
    and Also descripton is :-
    Diagnosis
        An error occurred while executing a transformation rule:
        The exact error message is:
        Division by zero
        The error was triggered at the following point in the program
        GP4H0CW3MLPOTR3E8Y93QZT2YHA 4476
    System Response
        Processing the data record has been terminated.
    Procedure
    The following additional information is included in the higher-level
    node of the monitor:
       Transformation ID
       Data record number of the source record
       Number and name of the rule which produced the error
    Let me know ur valuable suggestions on these error...
    thanks.

    Hello,
    I have checked all the transformation and End Routines.All are working fine.Yesterday i have loaded some data into it, but today its gettting errored out.
    Checked completely in the forum for threads related to this, but couldnt find proper thread which had solutions....
    thanks,
    srinivas.

  • Could someone help me with a Runtime Error while saving a PDF file?

    While saving a 28 page PDF file in Illustrator today, I got a window saying, "This application has requested the "Runtime" to terminate it in a unusual way." It said to contact the applications support team for more information. I keep getting the same thing each time I try it. Does anyone know how to fix this issue or how I contact the applications support team ?
    Thank you for any insight.
    Pam

    It is a 13.5x11 inch calendar. There are 14 pages with images on them and
    some text. The other pages have text, a grid and a colored background with a
    gaussian blur. I saved each page as an "outline".
    The printer I am using requested I save all pages in a pdf file. I was
    successful in saving all but about six pages, now I can't even open the
    file.
    What happens is... I open Illustrator
                                   I open the pdf file
                                   A window appears that says... Runtime Error,
    This application has requested the Runtime to terminate it in an unusual
    way. Please contact the application's support team for more information.
                                   I select ok
                                   then a window appears that says... Adobe
    Illustrator CS5 has stopped working. A problem caused the program to stop
    working correctly. Windows will close the program and notify you if a
    solution is available.
                                   Then the program closes.
    So far I have not been notified of anything.
    Please let me know if you need more details.
    Thank you so much for helping me with this.
    Pam

  • RunTime Error while saving a Sales Order

    Hi All,
    When i am saving a Sales Order, the system is throwing a Runtime Error.
    The ABAP Code in the Runtime Error screen as follows.
              select * from (t681-kotab) appending table <cond_tab>
                     up to 1 rows
                     where kappl  = se_kappl
                     and   kschl  = se_kschl
                     and   datbi >= se_date
                     and   datab <= se_date
                     and   (coding_tab).
    Till these days, there was no such error while saving a Sales Order.
    How to resolve this issue?
    Regards
    Pavan

    Hi,
    The below piece of code is trying to get the contents of the table mentioned in T681-KOTAB.
    select * from (t681-kotab) appending table <cond_tab>
    up to 1 rows
    where kappl = se_kappl
    and kschl = se_kschl
    and datbi >= se_date
    and datab <= se_date
    and (coding_tab).
    The reason could be is someone has screwed up the entries in T681 table. Check that out.
    Try to put a break point on this SELECT query and see what the value of T681-KOTAB holds before the SELECT query. Check whether such a table entry exists in DB.
    Let me know if you are still stuck up.
    If you can send me the ST22 dump of the run time error, i might be able to help you more  on this.
    Hope this helps.
    Thanks,
    Balaji

  • WHILE DELETING A SALE ORDER GETTING A RUNTIME ERROR

    hi to all experts,
    whenever i try to delete a particular sale order im getting a runtime error
    stating that
    Short text
        Screen: Illegal message
    What happened?
        The current screen processing action was terminated since a situat
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the cur
        screen.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT
    SourceCde
                  message e001(zm) WITH text-335 ltab-kunnr text-334.
                else.
                  if ktab-jkunnr <> ltab-kunnr.
                    ktab-jkunnr = ltab-kunnr.
                    jobsitecode = ltab-kunnr.
                    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                    EXPORTING
                      input  = jobsitecode
                      IMPORTING
                      output = jobsitecode.
                    SELECT SINGLE * FROM kna1 WHERE kunnr = jobsitecode.
                    IF sy-subrc = 0.
                      ktab-jname1 = kna1-name1.
                      ktab-jstras = kna1-stras.
                    ENDIF.
                    chg_flg = 'X'.
                  endif.
                endif.
              else.
                message e001(zm) WITH text-336.
    * Validation for relationship between Sold-to Party and Ship-to Party
    *          if ktab-ckunnr+0(4) NE ktab-jkunnr+0(4).
    *            message e001(zm) WITH text-335 ktab-jkunnr text-337 ktab-ckunnr.
    *          endif.
              custcode1 = ktab-ckunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = custcode1
                IMPORTING
                  output = custcode1.
              jobsitecode1 = ktab-jkunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = jobsitecode1
                IMPORTING
                  output = jobsitecode1.
              SELECT SINGLE * FROM knvp
              WHERE kunnr = custcode1
                AND vkorg = vbak-vkorg
                AND vtweg = vbak-vtweg
                AND spart = vbak-spart
                AND parvw = 'WE'
    Error analysis
        The program attempted to issue a " " message during "Exit Command"
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT

    Hi,
    Seems there is some problem with the user exit USEREXIT_SAVE_DOCUMENT..
    Put a breakpoint and see.
    Regards,
    Nagaraj

  • WHILE DELETING A SALE ORDER GETTING A RUNTIME ERROR " Screen: Illegal message"

    Hi Experts,
    While deleting a sales order giving run time error.  PFB runtime error details.
    If you know any OSS message, please let m know. I tried, but there is no luck.
    Short text
        Screen: Illegal message
    What happened?
        The current screen processing action was terminated since a situation
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the current
        screen.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator.
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    How to correct the error
        The program must be modified to correct the error.
        The modification must be made in "Exit Command" processing.
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
    Source Code Extract
    Line  SourceCde
        1 *---------------------------------------------------------------------*
        2 *       FORM YVBEP_LESEN                                              *
        3 *---------------------------------------------------------------------*
        4 *       Lesen der Tabelle YVBEP (nicht sortiert)                      *
        5 *---------------------------------------------------------------------*
        6 FORM YVBEP_LESEN USING US_POSNR
        7                        US_ETENR
        8               CHANGING CH_TABIX.
        9
       10   YVBEP = SPACE.
       11   YVBEP-MANDT = VBAK-MANDT.
       12   YVBEP-VBELN = VBAK-VBELN.
       13   YVBEP-POSNR = US_POSNR.
       14   YVBEP-ETENR = US_ETENR.
       15   READ TABLE YVBEP.
       16   IF SY-SUBRC > 0.
       17     MESSAGE E506 WITH US_POSNR US_ETENR.
       18   ENDIF.
    >>>>>   CH_TABIX = SY-TABIX.
       20
       21 ENDFORM.
    Could you please help on this issue.
    Thanks
    Srinu

    Hi Srinu,
    it looks like you got the error message Schedule line &1 &2 is missing in table YVBEP while deleting the sales order.
    It seems, that there are no SAP notes regarding this issue. Do you have this issue with all orders or with a single order?
    If only a single order causes this issue, maybe something was wrong during an update.
    If you get this error for many orders, then custom code (modification, enhancement, user exit in MV45AFZZ, ...) may be the reason for it.
    If you have no custom code in module pool SAPMV45A, then contact SAP for this issue.
    Regards,
    Klaus

  • Portal runtime error while selecting page layout in WPC editor

    Hello,
    in web page composer, editing page, when i click on "select page layout" I have a portal runtime error popup.
    The logfile shows the following :
    #1.5 #005056834112005E0000000C00000FA800048E28A94966CC#1282205196819#com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt.runtime#1016#149##n/a##7ff9c93eab6811dfa9c70000003307de#SAPEngine_Application_Thread[impl:3]_15##0#0#Error##Java###10:06_19/08/10_0010_3344350
    [EXCEPTION]
    #1#com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error occurs during the rendering of jsp component
    Caused by: com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error in java compiling
    Caused by: com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: E:
    usr
    sap
    EPD
    JC00
    j2ee
    cluster
    server0
    apps
    sap.com
    irj
    servlet_jsp
    irj
    root
    WEB-INF
    portal
    portalapps
    com.sap.netweaver.bc.util
    lib
    bc.util.public_api.jar(com/sapportals/wcm/WcmException.java):24: class WcmException is public, should be declared in a file named WcmException.java
    (source unavailable)
    1 error
    I have the same by clicking on "check assignments"
    Any help ?
    Thanks

    Hello Jego.
    We faced the same issue after upgrade to EHP1 SP07 last week and managed to solve it by modification of layout.jsp and com.sap.nw.wpc.layoutmanager.LayoutBean within com.sap.nw.wpc.designtime.par. SAP's code requires an additional catch handler, so it is better to rise an OSS message.
    As a workaround you may change a default layout for wpc main page (good for new pages) or manually edit output.xml for existing pages.
    Best regards,
    Aliaksandr Zhukau

  • Runtime Error when installing Adobe Creative Suite 5.5 Production Premium

    I am trying to install Adobe Creative Suite 5.5 Production Premium, but I keep getting a 'Runtime Error!':  This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information.
    What should I do?  Any help greatly appreciated!  I am running Win 7, Service Pack 1, 64 bit.

    We cannot know. Your information is hugely insufficient. Check Your Windows Event Viewer and tell us the "fault module" plus provide detailed specs for your computer. Runtime errors usualyl mean that A DLL is missing, a security tool is blocking critical functions or that the processor is not compatible in teh first place. Just as well this could be a driver issue with your SATA bus or whatever.
    Mylenium

  • Runtime error in enhancement spot-' mereq_topline does  not exists.'

    Hi all,
    I have implemented an implicit enhancement spot in ME53n.
    When i applied break point in enhancement spot and control goes to ebhancement spot in debugging mode, i got purchse requisition number in mereq_topline.
    When i tried to use this structure value in code i get runtime error-
    ' mereq_topline does  not exists.'
    Can you please guide how to resolve  this runtime error.
    thanks.
    Edited by: Sanjay_lnt on Sep 20, 2010 8:52 AM

    Sanjay,
    try to delete the enhancement and recreate it
    Thanks
    Bala Duvvuri

Maybe you are looking for

  • Bug in SQL Developer Version 1.5.1

    I have a problem with the Database Export : The generated Insert-Command look's like: INSERT INTO atable (Field1, Field2) VALUES (10.'test'); The Value-Separator is a point and not a comma. Is it a bug or have I chance to change the separator-paramet

  • Best way to apply same effect to multiple clips?

    I have a bunch of short clips in the timeline. I want them all to end with a "fade to black" and I want the audio to fade to 0 db. I know how to do this by applying the "fade to black" and then applying 1/2 a crossfade 0db. Is there a way to apply th

  • My iCal doesn't communicate with iCloud

    I have a new MacBook Air with Lion (purchased last week). iCal does not synch with my iCloud calendar. Does anybody know how to fix this? Thanks, M.

  • Data replication and synchronization in Oracle 10g XE.

    We are trying to do data replication and synchronization sort of thing for all our servers. We are using Oracle 10g. XE. I guess there are some features in oracle already for replication but I am not very sure about them. To explain it more clearly -

  • Fail to re-deploy an application on Oracle EPM 11.1.1.1.0

    Hi, I am just trying to verify that whether Alias Table takes effect. So I add change some aliases for testing, and then re-deploy the application to activate it. But the re-deploy job is aborted by the system with an exception as below. Have anyone