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
Unable to parse file: [file path and name] ERROR: Parse error at line 48 column 111:
Is displayed when the parser runs into a SOQL statement which uses the format '[.... :somevariable]' (with colon before the variable name)
e.g.: List<Relationship_Lookup__c> rlList = new List<Relationship_Lookup__c>(); StaticResource sr = [select body from StaticResource where Name = :RECIPROCAL_DEFAULT_RESOURCE_NAME];
Fixing this will require the SOQL part of the grammar to be enhanced to support this format.
The text was updated successfully, but these errors were encountered:
The following error message:
Unable to parse file: [file path and name] ERROR: Parse error at line 48 column 111:
Is displayed when the parser runs into a SOQL statement which uses the format '[.... :somevariable]' (with colon before the variable name)
e.g.:
List<Relationship_Lookup__c> rlList = new List<Relationship_Lookup__c>(); StaticResource sr = [select body from StaticResource where Name = :RECIPROCAL_DEFAULT_RESOURCE_NAME];
Fixing this will require the SOQL part of the grammar to be enhanced to support this format.
The text was updated successfully, but these errors were encountered: