ABAP GUI互動處理函式

2021-09-30 09:13:36 字數 942 閱讀 2200

一、獲取檔案資訊函式

call

function

'gui_get_file_info'

exporting

fname                = t_file

importing

*   file_version         =

*   file_dbgrel          =

*   file_lang            =

file_size            = t_size

* exceptions

*   fileinfo_error       = 1

*   others               = 2

.if sy-subrc <> 0.

message

id sy-msgid type sy-msgty number sy-msgno

with sy-ms**1 sy-ms**2 sy-ms**3 sy-ms**4.

endif.

說明:輸入檔案路徑及名稱,輸出檔案的大小資訊。

二、刪除客戶端檔案函式

call

function

'gui_delete_file'

exporting

file_name       = t_file

* exceptions

*   failed          = 1

*   others          = 2

.if sy-subrc <> 0.

* message id sy-msgid type sy-msgty number sy-msgno

*         with sy-ms**1 sy-ms**2 sy-ms**3 sy-ms**4.

endif.

說明:輸入檔名稱,刪除客戶機

resource處理動態資料互動

vue在進行動態資料互動時需要借助vue resource模組中的 http。所以需要引用vue resource.js和vue.js 語法 get 請求 語法 this.http.get url then function res function res post 請求 語法 this.http...

資料互動之資料處理

資料互動必須通過協議來實現,所以互動雙方必須遵循一定的讀寫規則 我的方法很簡單但可以用,如果大家有好的方法,不妨交流一下 實現方法 資料流類datastream有兩個char 型指標,分別用來儲存讀寫的資料,還有w pos,r pos兩個資料用來記錄讀寫的位置,而且要用到互斥鎖,確保指標的安全性 v...

資料互動之資料處理

資料互動必須通過協議來實現,所以互動雙方必須遵循一定的讀寫規則 我的方法很簡單但可以用,如果大家有好的方法,不妨交流一下 實現方法 資料流類datastream有兩個char 型指標,分別用來儲存讀寫的資料,還有w pos,r pos兩個資料用來記錄讀寫的位置,而且要用到互斥鎖,確保指標的安全性 v...