메뉴 건너뛰기

SAP 한국 커뮤니티

ABAP에서 웹브라우져 호출

홍성현 2007.08.09 13:57 조회 수 : 8311 추천:14

 

call function 'CALL_BROWSER'
      exporting
        url                    = "해당 URL"
      exceptions
        frontend_not_supported = 1
        frontend_error         = 2
        prog_not_found         = 3
        no_batch               = 4
        unspecified_error      = 5
        others                 = 6.


 


 


인터넷익스플로어나 파이어폭스등 브라우져로 해당 URL을 호출합니다.