美文网首页
2019-02-15——ABAP7决策

2019-02-15——ABAP7决策

作者: 林之禾 | 来源:发表于2019-02-15 13:46 被阅读0次

if

if<condition_1>.
<statements...>
endif.

if...else

if<condition_1>.
  <statement block 1>.
else.
  <statement block 2>.
endif.

嵌套if

if<condition_1>.
<statement block>.
if<condition_2>.
<statement block>.
else.
<statement block>.
endif.
else <statement block>.
endif.

case

case <field>.
when <abc>.
  <statement block>.
when <def>.
  <statement block>.
when <pqr>,
  <statement block>.
...
...
when <xyz>.
    <statement block>.
when others.
  <statement block>.
endcase.

相关文章

网友评论

      本文标题:2019-02-15——ABAP7决策

      本文链接:https://www.haomeiwen.com/subject/qdbpeqtx.html