2024 Apr 01 8:44 AM
Dear guys ,
I want to write code that outputs the ip address of the computer in abap, how do I do it?
2024 Apr 02 8:07 AM
Hello,
is your intention to learn ABAP or do you want to know how to get the own IP address?
program z_test.
data(ownIp) = cl_gui_frontend_services=>get_ip_address( ).
write:/ ownIp.
Kind regards
Jan