Advertisement
sinke

ZSD20740

Sep 5th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 1.74 KB | None | 0 0
  1. ************************************************************************
  2. *  AUTOR: Siniša Kolundžić
  3. *  DATUM: 2014-10-22
  4. *
  5. *  SVRHA: Masovno otvaranje cjenovnih uvjeta
  6. ************************************************************************
  7. *  IZMJENE:
  8. *  DATUM      AUTOR    OPIS
  9. *  2015-10-20 SKOLUNDZ Dodavanje polja KZNEP za PR00
  10. ************************************************************************
  11.  
  12. report  zsd20740.
  13.  
  14. selection-screen:
  15.   begin of block b_holder with frame,
  16.     begin of block b_params with frame title text-004.
  17.  
  18. parameters: p_vkorg type komg-vkorg obligatory,
  19.             p_vtweg type komg-vtweg obligatory,
  20.             p_spart type komg-spart obligatory.
  21. selection-screen:
  22.     end of block b_params,
  23.     begin of block b_kschl with frame title text-001.
  24.  
  25. parameters: p_k_pr00 radiobutton group ksch,
  26.             p_k_zreg radiobutton group ksch,
  27.             p_k_k007 radiobutton group ksch,
  28.             p_k_Z007 radiobutton group ksch,
  29.             p_k_Z008 radiobutton group ksch,
  30.             p_k_ZPRP radiobutton group ksch.
  31. selection-screen:
  32.     end of block b_kschl,
  33.     begin of block b_comb with frame title text-002.
  34. parameters: p_kunnr radiobutton group comb,
  35.             p_kunnrg radiobutton group comb,
  36.             p_kunwe radiobutton group comb,
  37.             p_cjenik radiobutton group comb.
  38. selection-screen:
  39.     end of block b_comb,
  40.     begin of block b_file with frame title text-003.
  41.  
  42. parameters: p_file type rlgrap-filename obligatory.
  43.  
  44. selection-screen:
  45.     end of block b_file,
  46.   end of block b_holder.
  47.  
  48. include zsd20740_classes.
  49.  
  50. at selection-screen on value-request for p_file.
  51.   p_file = lcl_application=>handle_file_f4( ).
  52.  
  53.  
  54. start-of-selection.
  55.   lcl_application=>make_it_so( ).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement