Advertisement
depth1

Selection-screen LSMW

Feb 13th, 2019
1,130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 1.42 KB | None | 0 0
  1. * TYPES / DATA / SEL
  2. types : tr_contflag   type range of contflag.
  3. types : tt_protocole  type standard table of string.
  4. types : tt_dd03l    type standard table of dd03l.
  5. types : tt_tentries   type standard table of string. "TODO changer avec
  6.  
  7. types : tt_table      like standard table of ztable,
  8.         tt_domnamekey like standard table of zkey,
  9.         tt_fieldname  like standard table of zfld.
  10.  
  11. data : gt_table      type tt_table,
  12.        gt_domnamekey type tt_domnamekey,
  13.        gt_fieldname  type tt_fieldname.
  14.  
  15.  
  16. selection-screen begin of block b1 with frame title b1t_titl.
  17.  
  18.   selection-SCREEN : BEGIN OF LINE.
  19.     selection-SCREEN :
  20.     COMMENT 1(18) p1t_tabl
  21.     FOR FIELD p1_tabl.
  22.     PARAMETERS p1_tabl
  23.     TYPE wdy_boolean
  24.     DEFAULT abap_true.
  25.   selection-SCREEN : END OF LINE.
  26.  
  27.   selection-SCREEN : BEGIN OF LINE.
  28.     selection-SCREEN :
  29.     COMMENT 1(18) p1t_test
  30.     FOR FIELD p1_test.
  31.     PARAMETERS p1_test
  32.     TYPE wdy_boolean
  33.     DEFAULT abap_true.
  34.   selection-SCREEN : END OF LINE.
  35.  
  36.   selection-SCREEN : BEGIN OF LINE.
  37.     selection-SCREEN :
  38.     COMMENT 1(18) p1t_dbug
  39.     FOR FIELD p1_dbug.
  40.     PARAMETERS p1_dbug
  41.     TYPE wdy_boolean
  42.     DEFAULT abap_false.
  43.   selection-SCREEN : END OF LINE.
  44.  
  45. selection-screen end of block b1.
  46.  
  47. INITIALIZATION.
  48.   b1t_titl = 'Paramètres supplémentaires'.
  49.   p1t_tabl = 'Calculer tables ?'.
  50.   p1t_test = 'Mode test ?'.
  51.   p1t_dbug = 'Mode debug ?'.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement