Advertisement
Guest User

Prog_teste

a guest
Oct 25th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.38 KB | None | 0 0
  1. DATA: l_linha TYPE n LENGTH 99.
  2.  
  3. LOOP AT t_excel INTO wa_excel.
  4.  
  5.   IF l_linha IS INITIAL.
  6.     l_linha = wa_excel-linha.
  7.   ENDIF.
  8.  
  9.   IF l_linha NE wa_excel-linha.
  10.     APPEND wa_saida TO t_saida.
  11.     l_linha = wa_excel-linha.
  12.   ENDIF.
  13.  
  14.   CASE  wa_excel-coluna.
  15.     WHEN 1.
  16.     WHEN 2.
  17.     WHEN 2.
  18.   ENDCASE.
  19.  
  20. ENDLOOP.
  21.  
  22. APPEND wa_saida TO t_saida.
  23. l_linha = wa_excel-linha.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement