You cannot use LOAD-LOOKUP in the SETUP section.
-
True
-
False
Reveal answer
Fill a bubble to check yourself
B
Correct answer
Explanation
LOAD-LOOKUP can and should be used in the SETUP section of an SQR program. This section is specifically designed for initialization tasks like loading lookup arrays before the main processing begins.
AI explanation
LOAD-LOOKUP can in fact be used within the SETUP section of an SQR program — this is actually the recommended place to put it, since SETUP runs once at the start of the program, letting the lookup table be loaded a single time for efficient reuse throughout the report. So the statement that you 'cannot' use it there is false.