記錄學習ABAP過程 1

2021-09-16 13:02:25 字數 900 閱讀 3352

拼接語法

concatenate 變數1

變數2into 文字1

in character mode "預設拼接引數

separated by 『-』 "拼接分隔符

resyecting blanks. "保留字串以外的其他空格

拆分語法

split 文字1

at 『-』

into 變數1

變數2文字1

in character mode.

字串查詢

find 『8』 in 文字1. "查詢文字1中是否有8

if sy-subrc = 0. "用sy-subrc 來判斷

write : 『有』.

else

write :『沒有』.

endif.

字串切割

shift 文字1 by 2 prices. "切除字串從左到右兩位

shift 文字1 by 2 prices left circular. "將切除的左邊字元放到右邊

shift 文字1 by 2 prices right circular. "將切除的右邊字元放到左邊

shift 文字1 left delecting leading '0 '. "將左邊的0字元全部切除

定義結構

types: begin ty_結構名,

變數1 type c length 10, "定義乙個名為變數1 資料型別為c長度10的變數

變數2 type i, "定義乙個名為變數2資料型別為i 的變數

end of ty_變數名.

將結構轉化為工作區和內錶

data gw_結構名 type ty_結構名.

data gt_結構名 type standard table of ty_結構名.

vue學習過程記錄 1

下面指令測試電腦有木有 node,npm vue c users node v v8.11.2 c users npm v 5.6.0 c users npm v usage npm where is one of access,adduser,bin,bugs,c,cache,completion...

ABAP 報表開發學習 (1)

一 分頁 1 無條件分頁 要在頁處理期間觸發分頁 觸發end of page 請使用 new page 語句的基本格式 語法 new page.2 條件分頁定義行塊 要在少於某一頁剩餘行數的條件下執行分頁 觸發end of page 請使用reserve 語句 語法 reserve lines.n為...

一 ABAP學習記錄之Message學習總結

message使用總結 1 建立message 的tcode se91 2 message 型別 s status,訊息出現後可以繼續執行,訊息顯示在狀態列 e error,錯誤資訊,根據程式內容,出現對話方塊,或者程式終止 i information 訊息出現在對話方塊中,一旦使用者確認資訊之後,...