Try OpenEdge Now
skip to main content
Migrating to OpenEdge 11.7
Migrating OpenEdge Business Process Management : Migrating from OpenEdge 11.6.x and earlier releases : Decision step migration : For the INT64 dataslot
 
For the INT64 dataslot
*For the INT64 dataslot
Table 3. Editing a condition expression for the INT64 dataslot
Operation
In earlier releases
In 11.7
equals1.
int64_1==int64_2
int64_1.equals(int64_2)
does not equal2
int64_1!=int64_2
!int64_1.equals(int64_2)
less than3
int64_1<int64_2
com.progress.util.OpenEdge
DataTypeComparisonUtil
.isLesserThan(int64_1,
int64_2)
less than or equal to4
int64_1<=int64_2
com.progress.util.OpenEdge
DataTypeComparisonUtil
.isLessOrEq(int64_1,
int64_2)
greater than5
int64_1>int64_2
com.progress.util.OpenEdge
DataTypeComparisonUtil
.isGreaterThan(int64_1,
int64_2)
greater than or equal to6
int64_1>=int64_2
com.progress.util.OpenEdge
DataTypeComparisonUtil
.isGtOrEq(int64_1,int64_2)
is unknown7
myInt64.isNull( )
is not unknown8
!myInt64.isNull( )

1 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

2 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

3 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

4 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

5 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

6 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

7 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)

8 The Integer literal must be wrapped in the INT64 object. For example, com.progress.lang.Int64(longLiteral)