Fendadis John has Published 72 Articles

Java Boolean operators

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:21

10K+ Views

There are following boolean operators supported by Java language.Assume variable A holds 10 and variable B holds 20, then −OperatorDescriptionExample== (equal to)Checks if the values of two operands are equal or not, if yes then condition becomes true.(A == B) is not true.!= (not equal to)Checks if the values of ... Read More

Incrementing an integer inside loop in an ABAP program

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:20

773 Views

You need to use the following:You are missing spaces between ls_id+1. You can also use Add 1 to ls_idIn case you are using internal tables, you can directly use SY-TABIX and SY-Index depending upon whether the loop is nested or not.

Previous 1 ... 4 5 6 7 8
Advertisements