‎2008 May 09 10:13 AM
‎2008 May 09 10:16 AM
Brackets division multiplication addition subtraction ..
(BODMAS rule )
( / * + -
‎2008 May 09 10:16 AM
Brackets division multiplication addition subtraction ..
(BODMAS rule )
( / * + -
‎2008 May 09 10:33 AM
Hi subhash,
its always BODMAS rule in almost all programming language and no exception for SAP ABAP as well.
thanks & regards
Kishore Kumar Maram
‎2008 May 09 10:36 AM
For arithmatic operations:
BODMAS rule - Brackets division multiplication addition subtraction ..
For logical operations:
AND,OR and NOT
‎2008 May 09 10:44 AM
Hi,
OR:
can be used to check whether any of the conditions are true.
ie.,
... log_exp1 OR log_exp2 OR log_exp3 ...
Effect
If you link multiple logical expressions log_exp with OR, then a new logical expression is created which is true if at least one of the logical expressions log_exp is true. Only if all logical expressions are false, then the link is false as well.
AND:
can be used to check whether all the conditons are satisfied.
... log_exp1 AND log_exp2 AND log_exp3 ...
Effect
The linking of several logical expressions log_exp with AND forms a new logical expression that is true when all logical expressions log_exp are true. If one of the logical expressions is false, then the link is also false.
Regards
Kiran Sure