How to define a frame in proc editorv9.1d?

dayv2005

Member
I was wondering how i could define a frame and display data in it from the proc editor. IM using this to orginize my data while I'm debugging sme of the logic?

simply i just want an organized way to display all my numbers into a box in the displaying of information from the proc editor.

thanks
 
I was wondering how i could define a frame and display data in it from the proc editor. IM using this to orginize my data while I'm debugging sme of the logic?

simply i just want an organized way to display all my numbers into a box in the displaying of information from the proc editor.

thanks

The most simple way is to use the DEFINE FRAME statement.

DEFINE FRAME FR-Show
<yourfield> AT <column> LABEL <label>
<yoursecondfield> etc...

DISPLAY <yourfields> WITH FRAME FR-Show.
 
Back
Top