We are working on an SAP Implmentation and are concluding our Blueprint Phase. As a result, we are being asked for reporting information on Roles and Transactions Codes in ARIS. Our Roles are modleled on an EPC model assocaited with SAP Function Types. The SAP Function Types are on a FAD, and the screens have the respective transaction codes. I am attempting to write a report that will "pull" Role (Person Type) to Transaction Types. In other words, I need to "show" the Roles from the EPC model combined with the Transaction Codes on the object (Screen) on the FAD model. I need help, guidance and direction on how I can do this. I have been working all day trying to "pull" this information. Incidentially, I am new to ARIS Report Writing.
Thanks....
Hello Mark,
I have tried this and basically my approach was the same as mentioned in the comment above. Can you please show what you have tried so far by providing an example of the ARIS report code? Then maybe I can give you some tips on how to continue.
Regards / Harry R
Hi Harry & Abhijit Das,
I have tried a report for this solution, But I Would like the output should be in a different way. Means for example for an activity we have three roles, Please see the below image:
Now I am getting output like the one above, I would like to see the output like the one in Red mark..Is that possible?? Merging all the roles in one TableCell separated by "comma":. If so please help me out.
Thanks in advance,
BR/Srinivas.
Hi,
That's great. Was it the one suggested by Mateusz K in this post:
http://www.ariscommunity.com/users/nivas4310/2012-08-22-how-merge-data-one-column
Regards / Harry
Hi Harry,
No, I tried my own logic using Array. Its working. I am unable to get the logic which "Mateusz K" posted.
var list = new Array(); for(j = 0; j <= (roleOccs.length-1); j++) { list.push(roleOccs[j].ObjDef().Name(g_nloc)); } for( var k=0; k <= (list.length-1); k++) { roles = list[k] + RolesTotal; RolesTotal = "," + roles; }
Hello Harry, The scripts which you created before helps me a lot. But still I have many questions to clarify.
BR/Srinivas.