SAP系統自帶的function module

2022-04-20 19:37:07 字數 1265 閱讀 5157

sap有很多系統自帶的fm,直接在pattern中就可以調出。---test

1.     kd_get_filename_on_f4 ---------------------用以在windows gui 視窗獲取使用者點選到的檔案的檔名和檔案型別。

用下段**可以設定乙個輸入框,用以使用者輸入檔名p_file。

selection-screen: begin of block b1 with frame title text-001.

parameters: p_file type rlgrap-filename.

selection-screen: end of block b1.

我們可以用下段**給輸入框加乙個search help。用以方便使用者在乙個windows的gui視窗自行查詢和選取檔案,自動獲取檔名和檔案型別。需要注意的是,檔名和檔案型別要用系統自帶的檔案型別,要在程式中定義。

at selection-screen on value-request for p_file.

perform get_file_path.

在perform中呼叫fm :  kd_get_filename_on_f4 。

示例:call function 'kd_get_filename_on_f4'

exporting

program_name        = syst-repid

dynpro_number       = syst-dynnr

field_name          = 'p_file'

*   static              = ' '

*   mask                = ' '

*   fileoperation       = 'r'

*   path                =

changing

file_name           = p_file

*   location_flag       = 'p'

exceptions

mask_too_long       = 1

others              = 2.

if sy-subrc <> 0.

* implement suitable error handling here

endif.

2.   format_message

3.bdc_open_group

bdc_insert

bdc_close_group

JCo3 呼叫簡單SAP函式(Function)

本文闡述如何使用jco呼叫簡單sap函式。1.建立一sap使用者 test01 關於如何建立使用者,請參考我上一部落格 jco3 建立連線到sap 1 直接連線 2.編寫 3.編譯 4.執行 執行結果 本例呼叫sap function stfc connection 然後使用得到importpara...

UITableViewCell系統自帶的四種樣式

系統自己的uitableviewcell樣式有四種 default樣式 左邊乙個顯示的imageview,乙個標題textlabel,沒有detailtextlabel。subtitle樣式 左邊乙個顯示的imageview,上邊乙個主標題textlabel,乙個副標題detailtextlabel...

系統自帶的語義

系統值語義 語義是dx與hlsl溝通的橋梁,而這座橋不僅有我們自己定義的語義,而且還有系統自帶的語義,這些系統值語義都是為系統的值定義的語義 所有的系統值語義都以sv 為字首 系統值語義 描述型別 sv clipdistance n 剪輯的距離資料。每個sv clipdistance值被假設為是乙個...