NAVAPAT_T

ABAP_show_dialog

Jul 6th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.31 KB | None | 0 0
  1. REPORT ZPATMAX_show_dialog.
  2. parameters:name(10) type c,
  3. id(10) type n,
  4. age(2) type n.
  5.  
  6. if name is not INITIAL and age is not INITIAL and id is not INITIAL.
  7.   write : / 'that isyour name',name,/ 'that your id : ', id no-zero, / 'that age : ', age.
  8.  
  9. elseif name is INITIAL.
  10.   write : / 'not enter'.
  11. endif.
Advertisement
Add Comment
Please, Sign In to add comment