short dump

Jeśli programujesz, administrujesz, integrujesz i masz wątpliwość lub obawę, to właśnie najlepsze miejsce dla Ciebie. Pisz śmiało...
ODPOWIEDZ
rumcajs
Posty: 2
Rejestracja: pt cze 15, 2007 9:35 am

short dump

Post autor: rumcajs »

dostaję takiego short dumpa, jakie to są typy u i v?

ShrtText
Conversion of type "u" to type "v" not supported.
Error analysis
You attempted to move one data object to another.
This is not possible here because the conversion of a data object
of type "u" to type "v" is not supported.
rumcajs
Posty: 2
Rejestracja: pt cze 15, 2007 9:35 am

Post autor: rumcajs »

Line SourceCde

Kod: Zaznacz cały

>>>>>  LOOP AT <g_mess_tab_alv> INTO <g_mess_tab_wa>.        
  242         IF <g_mess_tab_wa_%>-%_box = true.                  
  243           READ TABLE <g_mess_tab_out> INTO <g_mess_tab_wa>  
  244                    INDEX sy-tabix.                          
  245           INSERT <g_mess_tab_wa_%_handle>                   
  246                  INTO TABLE c_s_ucomm_data-list_tmsgh.      
  247         ENDIF.                                              
  248       ENDLOOP.     



gdzie:

Kod: Zaznacz cały

field-symbols:
  <g_mess_tab_alv>              type table,
  <g_mess_tab_wa>               type any.
ODPOWIEDZ