Focal Point
Using Execute

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8991058331

May 13, 2005, 07:31 PM
KarateExplosion
Using Execute
How can I execute a procedure then reun a report in one fex. After the execute Developer Studio won't allow me to start building a report.

Thanks
May 25, 2005, 04:44 AM
TexasStingray
KarateExplosion,

I'm not sure if this is want you are wanting. If you have a procedure that you want to execute a different procedure and then create another report after the first procedure is completed you can use the -INCLUDE command.

PROCEDUREA
TABLE FILE ...
...
END

PROCEDURE B
-INCLUDE PROCEDUREA
TABLE FILE ...
...
END

Hope this helps