其他分享
首页 > 其他分享> > ABAP 开启制定路径下的文件或网址URL

ABAP 开启制定路径下的文件或网址URL

作者:互联网

REPORT ZTEST001.

CALL FUNCTION 'CALL_INTERNET_ADRESS'
 EXPORTING
   PI_ADRESS           =
*   PI_TECHKEY          =
 EXCEPTIONS
   NO_INPUT_DATA       = 1
   OTHERS              = 2
          .
IF SY-SUBRC <> 0.
* Implement suitable error handling here
ENDIF.

 

标签:SUBRC,URL,ZTEST001,网址,ABAP,CALL,PI,ADRESS
来源: https://www.cnblogs.com/datie/p/11495780.html