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
this.Calcfields(New_Field) run in a table extension does not find New_Field if it is declared in a table extension.
It seems that the this-keyword on a table extension refers to the base table, and does not consider extension fields (at least not in the same object). Thus we get conflicting requirements from the analyzer, where on the one hand we must use this, but on the other hand the field is not found if we use this.
AL[AA0248] tells me I must use the THIS keyword for the calcfields. However, if I add it:
AL0847 won't event let me compile.
We can use "Rec." though, but that's not what AA0248 says we should do, so maybe it's an issue with the analyzer..?
The text was updated successfully, but these errors were encountered:
this.Calcfields(New_Field) run in a table extension does not find New_Field if it is declared in a table extension.
It seems that the this-keyword on a table extension refers to the base table, and does not consider extension fields (at least not in the same object). Thus we get conflicting requirements from the analyzer, where on the one hand we must use this, but on the other hand the field is not found if we use this.
AL[AA0248] tells me I must use the THIS keyword for the calcfields. However, if I add it:
AL0847 won't event let me compile.
We can use "Rec." though, but that's not what AA0248 says we should do, so maybe it's an issue with the analyzer..?
The text was updated successfully, but these errors were encountered: