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
网友评论