You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Condition with corresponding #( ) triggers a check 59 error.
Test case:
report ztest.
types: begin of type1,
business_field type cLENGTH1,
technical_field type cLENGTH1,
end of type1.
types: begin of type2,
business_field type cLENGTH1,
end of type2.
data(foo) =value type1( business_field =1
technical_field =1 ).
data(bar) =value type1( business_field =1
technical_field =2 ).
ifcorresponding type2( foo ) =corresponding type2( bar ).
write: 'Equal'.
else.
write: 'Unequal'.
endif.
The text was updated successfully, but these errors were encountered:
Condition with corresponding #( ) triggers a check 59 error.
Test case:
The text was updated successfully, but these errors were encountered: