定義相關變數、結構、表
data : w_bseg type bseg, 「 修改資料的內容結構
w_message type t100-text. 「 返回的訊息接收
data : it_errtab type tpit_t_errdoc with header line,
it_fldtab type tpit_t_fname with header line,
it_buztab type tpit_t_buztab with header line.
2、維護要更新的憑證文字欄位名
call function 'fi_items_mass_change'
exporting
s_bseg = w_bseg
importing
errtab = it_errtab " 返回訊息
tables
it_buztab = it_buztab
it_fldtab = it_fldtab
exceptions
bdc_errors = 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.
perform generate_message. 「 訊息資訊處理
message w_message type 's' display like 'e'.
endif.
3、返回訊息資訊處理
form generate_message.
clear w_message. 「 清空一下訊息文字
read table it_errtab index 1.
if sy-subrc = 0.
call function 'format_message'
exporting
id = it_errtab-err-msgid
lang = sy-langu
no = it_errtab-err-msgnr
v1 = it_errtab-err-ms**1
v2 = it_errtab-err-ms**2
v3 = it_errtab-err-ms**3
v4 = it_errtab-err-ms**4
importing
msg = w_message 「 訊息文字整理返回
exceptions
not_found = 1
others = 2.
endif.
endform.
常見問題 系列02 更改主機名
先su切換進超級賬戶 hostname 檢視機器名 hostname i 檢視本機器名對應的ip位址 1 vi etc sysconfig network networking yes hostname yourname 在這修改hostname,把yourname換成想用的名字 2.修改 etc ...
Linux系列課程 02 必須會的常用操作命令 1
常用命令 ls 顯示當前目錄的內容 ls 2 顯示2結尾的檔案 匹配所有的 ls 2?顯示兩位 2開頭的 檔案 必須有一位,只能匹配一位 ls 124 w 匹配1,2,4 開頭的檔案 touch text.text 建立檔案 clear 清屏 cat text.text 檢視檔案內容,不管有多大,都...
02 敏捷回顧 為團隊量身定做回顧檢視會筆記
02.敏捷回顧 為團隊量身定做回顧檢視會筆記 00.如果你是一名教練或迭代開發團隊負責人,你可能在每個迭代開發結束後組織你們自己的回顧檢視會,或許你們在團隊成員之間輪流做回顧檢視會的主持人。無論哪種情況,如果你正在策劃和組織乙個回顧檢視會,將會一系列的決定要你來做,如會議目標 後勤保障及會議的順序等...