
Hi Everybody,
Can we use the WYSIWYG functionality of ARIS 7.1 to extract the information of an EPC and design a report that would display the information in bullet points or numbering.
Actually I managed to extract the information in tabular form but the report is not very user friendly for end users to read and understand.
Thanks for your comments / feedback
Wish you all a nice week end:)
Cheers
Shameem
Hi Markus,
Thanks for your reply.
This is the model flow:
The desired report should be :
1. Start Event Person Type A Function 1 Any one of the following actions is to be performed. (XOR Rule). (NB: The above wordings are maintained as an attribute of the Rule object. Here it shows that this is the first Rule.) 2. Event 1 Person Type D Function 2 Document 1 This is a Test (NB: this is maintained in the ‘Description / Definition’ Attribute of ‘Function 2) 3. Event 2 Person Type B, Person Type C Function 3 Document 2 Document 4 This is another Test (NB: this is maintained in the ‘Description / Definition’ Attribute of ‘Function 3) 4. Event 3 Person Type E, Person Type G Function 4 Document 5 Document 6 Document 7 5. Event 4 Person Type F Hidden attribute maintained Document 4 Hidden attribute (NB: this is maintained in the ‘Description / Definition’ Attribute of the Function but not shown in the model) End of XOR Rule(NB: The wordings are maintained as an attribute of the Rule object. Here it shows that this is the end of the Rule.) 6. End Event Process Interface XYZ
I managed to get all of the above information, but unfortunately the report displays all events, followed by allfunctions, etc. Moreover I still can't get the sorting right. My report displays the middle object of the model first then shows the remaining object in a very weird order:)
Thanks for your comments.
Cheers
Shameem
Hi Shameem,
I have created the report you where asking for.
Here you find a screenshot with some comments.
And here you see the created output:
The placed attributs I was not aible to output because of a bug in our report wysiwyg editor.
But we will try to fix for one of the next service releases(2009_03 or 2009_04).
I hope I coukd help you a bit.
If you have further questions, don't hesitate to ask.
Cheers,
Markus
Or you can use same code in Script Editor:
var File = Context.createOutputObject();
File.BeginList(IReportConstants.BULLET_NUM);
File.OutputLn("Test_Bullet1","Arial",10,IReportConstants.C_BLACK,IReportConstants.C_WHITE,IReportConstants.FMT_LEFT,0);
File.OutputLn("Test_Bullet2","Arial",10,IReportConstants.C_BLACK,IReportConstants.C_WHITE,IReportConstants.FMT_LEFT,0);
File.OutputLn("Test_Bullet3","Arial",10,IReportConstants.C_BLACK,IReportConstants.C_WHITE,IReportConstants.FMT_LEFT,0);
File.OutputLn("Test_Bullet4","Arial",10,IReportConstants.C_BLACK,IReportConstants.C_WHITE,IReportConstants.FMT_LEFT,0);
File.EndList();
But there is in v7.1 only, not in v7.0.