Advertisement
Guest User

Untitled

a guest
Dec 18th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.52 KB | None | 0 0
  1. report zrep_local.
  2. types
  3.       : begin of ty_tab
  4.         , count type sy-tabix
  5.         , field type char1
  6.       , end   of ty_tab
  7.       , tt_tab type standard table of ty_tab with non-unique default key
  8.       .
  9.  
  10. data(lt_tab) = value tt_tab( for i = 1 then i + 1 while i <= 10
  11.                            ( field = abap_on ) ).
  12.  
  13. data(lv_all_count) = lines( lt_tab ).
  14.  
  15. lt_tab = value tt_tab( base lt_tab for lv_count = 1 until lv_count > lv_all_count
  16.                                    (  count = lv_count )
  17. ).
  18. BREAK-POINT.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement