abap append 用法

來源:互聯網
上載者:User

標籤:

【轉自http://blog.chinaunix.net/uid-7982817-id-91999.html】
Append用法總結 2008-11-14 11:42:19

分類:

 

Syntax
APPEND { wa 
       | {INITIAL LINE} 
       | {LINES OF jtab [FROM idx1] [TO idx2]} } 
   TO itab [SORTED BY comp] 
   [ {ASSIGNING <fs> [CASTING]} | {REFERENCE INTO dref} ]. Effect
Appends rows to an internal table itab. Additionswa 
Appends a workarea wa.
INITIAL LINE 
Appends an initial row. 
附加初始化行 LINES OF jtab [FROM idx1] [TO idx2] 
Appends the rows from idx1 to idx2 of the internal table jtab.this statement alike:
附加內表行
要將部分或 全部內表附 加到另一個 內表中,請 使用 APPEND 語句,用法 如下:
文法
APPEND LINES OF <itab1> [FROM <n1>] [TO <n2>] TO <itab2>.
如果沒有 FROM 和 TO 選項,該語 句將整個表 格 ITAB1 附加到 ITAB2 中。如果使 用這些選項 ,則可通過 索引 <n1> 
或 <n2> 指定 ITAB1 中要附加的 第一或最後 一行。notice:
用該方式將 表格行附加 到另一個表 格中的速度 比在迴圈中 逐行進行附 加快3到4倍 。
在 APPEND 語句之後, 系統欄位 SY-TABIX 包含附加的 最後一行的 索引。 SORTED BY comp 
Creates a ranking, which is sorted by the row component comp in descending order. 
建立一個隊列,按降序排列 ASSIGNING <fs> [CASTING] 
Assigns an appended row to a field symbol <fs> and a casting can thus be carried out.
REFERENCE INTO dref 
Sets a data reference dref to an appended row.

abap append 用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.