Error's in Coding
Unterminated String Literal :
Missed quotes
Variable is not declared:
The variable is not declared in the CODE
Undefined
If a variable is declared but not defined.
Ex: var students; var students = abc
gs.info(students);
EX: 'ga' is not defined, using noncommon variable names
EX: ga.info(" Hello " );
Why are two 'while' loops that can't be executed within one GlideRecord query?
probably because when the 1st while loop ends the Gliderecord object refers to the last record for that query and thereafter it won't iterate over again as no records exist for this query
Comments
Post a Comment