The report generation feature is still there, it's just not
on the menu any more. Not on the menu because it is
no longer offically supported. But you can still use it:
You will find the source code for the report generator,
reportgen.ebs, in Rose's home directory (location of rose.exe).
To run this you have two choices.
-------------------------------------------------------------------
1 - Tools:Open Script
or
2 - add menu item and run from menu.
-------------------------------------------------------------------
1 - Tools:Open Script
When you run the script within the script editor, it acts
just like the report generator that you are used to.
To run the script:
1. From the top menu bar, click on "tools" and then "open script".
2. Locate and click on reportgen.ebs in your Rose directory where
you installed Rose 2001.
3. From the top menu bar, click on "debugger" and then "go".
-------------------------------------------------------------------
2 - add menu item and run from menu.
Find and open in an editor the menu file, rose.mnu, located in
Rose's home directory. Add a menu item to call this script.
Below is an example of a modified rose.mnu file which runs
reportgen.ebs (or you can compile to .ebx) from the
menu item "Run Word Report" added under the report menu as the
last item. You'll need to add something similar to call this
script.
Menu Report
{
option "Documentation Report..."
{
RoseScript $SCRIPT_PATH\ReportGen.ebx
}
option "Run Word Report"
{
RoseScript $SCRIPT_PATH\reportgen.ebs
}
}
NOTE: $SCRIPT_PATH by default is assigned to Rose's home
(location of exe) directory. Either make sure ebs\ebx file is
in this location, use the complete path instead of using $SCRIPT_PATH
path map variable, or create a new path map variable and use
that (see Edit:Path Map).
-------------------------------------------------------------------
Patrick Kennedy
Rational Support
On Apr 25, 11:11, Petr Bulanek wrote:
> Subject: (ROSE) Reports on objects in Rose?
>
> Hi Everybody,
>
> Would anybody know how to run 'reports' on the objects inside of Rose Model?
> Something like, 'show me all Use Cases with priority High' (or at least show
> me all the Use Cases/Classes etc)
>
> The older versions used to have Generate report menu item, but my current
> 2001 does not seem to have it :-((((
>
> Thank you
>
> Petr
> ************************************************************************
> * Rose Forum is a public venue for ideas and discussions.
> * For technical support, visit http://www.rational.com/support
> *
> * Admin.Subscription Requests: [EMAIL PROTECTED]
> * Archive of messages:
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
> * Other Requests: [EMAIL PROTECTED]
> *
> * To unsubscribe from the list, please send email
> *
> * To: [EMAIL PROTECTED]
> * Subject:<BLANK>
> * Body: unsubscribe rose_forum
> *
> *************************************************************************
>-- End of excerpt from Petr Bulanek
************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Admin.Subscription Requests: [EMAIL PROTECTED]
* Archive of messages:
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*
* To: [EMAIL PROTECTED]
* Subject:<BLANK>
* Body: unsubscribe rose_forum
*
*************************************************************************