Skip to Content
0
Former Member
Jun 27, 2008 at 11:13 AM

Exception MOVE_TO_LIT_NOTALLOWED_NODATA

1061 Views

Hi All,

I have received the exception MOVE_TO_LIT_NOTALLOWED_NODATA while trying to move data from one internal table to another.

The code is:

FORM form_1 TABLES itab_z TYPE zptrv_flat_rates_t_total
                   itab_i TYPE ptrv_web_travel_flat_rates_t_t.

  DATA: wtab_i LIKE itab_i,
        wtab_z LIKE itab_z.

  LOOP AT itab_i into wtab_i.
    MOVE-CORRESPONDING wtab_i to wtab_z.
    APPEND wtab_z to itab_z.
  ENDLOOP.

ENDFORM.

zptrv_flat_rates_t_total has some fields more than ptrv_web_travel_flat_rates_t_t.

I'm using this code for Adobe Interactive Forms. s per the dump that I received, the internal table itab_z is protected against changes.

My question is where do we find this protection and how do we remove it?