SAP/ABAP 개발

Get IP Address - call method cl_gui_frontend_services=>get_ip_address

KindKay 2010. 6. 29. 13:39



*&----------------------------------------------------------------*
*& Report  YRTEST0007
*&
*&----------------------------------------------------------------*
*&
*&
*&----------------------------------------------------------------*

report  YRTEST0007.


*-----------------------------------------------------------------*
end-of-selection.
*-----------------------------------------------------------------*
  data: ip type char15.

  call method cl_gui_frontend_services=>get_ip_address
    receiving
      ip_address           = ip
    exceptions
      cntl_error           = 1
      error_no_gui         = 2
      not_supported_by_gui = 3
      others               4.

  write: ip.