This may be a little tedious depending on how many prompts you have but one way to achieve this is to assign a Parameter to the "required" prompts. Then you can assign a filter to the map and any other object you don't want to load yet using the "IsSet" function. The filter would something like this: IF ( IsSet('Parameter'p)) RETURN (1=1) ELSE (1=2) which basically checks to see if there is a value for the parameter. If yes, then return values. If no, then return no values. Hopefully that makes sense!
... View more