Hi, my problem is getting object symbols without name on them.
This is the result that I got
But I need to get a result like shown below
If someone knows the solution, please share script with me
Thanks
Arda Ay
Hi, my problem is getting object symbols without name on them.
This is the result that I got
But I need to get a result like shown below
If someone knows the solution, please share script with me
Thanks
Arda Ay
Hi All,
I want to extract business process master list from ARIS. It is not there in the reports list. How can create a new report that has all the metadata of the ARIS models?
Appreciate your help.
Hi,
I am new to ARIS, can you please adivse how to make amendments on ARIS in objectives and Scop of SOP, i have one SOP given by user with some changes but i could not find the option even checked in the attributes.
SOP is dowloanded from Report option in ARIS.
Thanks,
JJ
Hi,
Is there a way to execute a report on multiple models at a time on ARIS Connect 10?
Regards,
Poo
I am creating a query and would like to see the process interfaces, along with the controls (in separate columns) that are on a process model. Being that ARIS only allows for one function to be contained by an EPC, plus controls and process interfaces are functions; how will I write my query?
Hallo Leute,
könntet ihr mir bitte helfen? ich möchte ein Report schreiben, die man auf der Suche nach Objekten (role) startet und eine Übersicht in excel erzeugt wird welche Rollen welche prozessschritte in welchen Prozessen durchführen.
Hallo,
can you help me please i am new to Aris
I would like to write a Report that starts in searching of objects and generate an Overview in excel, which roles which process steps in which processes run.
sorry for my English
Regards
Bouba
Hello all!
I create variant of EPC-model. This EPC-model (variant) (A) contain objects, they types are functions (interface).
Then I have to delete this objects (interfaces) and copy on they places objects (functions) from source EPC-model (B).
Also I need to create relationships of this object, as it was in EPC-model (A) before deleting objects (interfaces).
Tell me please how can I copy this objects (interfaces) from source EPC-model (B) to variant EPC-model (A) and create relationships of this objects using script?
Hey Everyone,
I´m having some trouble with a report in my company and cannot get around to it.
There is one specific model attribute that is supposed to be filled with as many values as needed. It is a glossary of technical terms. I need to output the value of this attribute to a table in the report, and this table should be made of as many rows as the number of technical terms and definitions that were filled in the attribute´s value.
To make sure I made it clear, here is an example:
The Attribute value reads: "term1: definition1; term2: definition2; term3: definition 3;(...);termX: definitionX"
The result in the report should be a table that looks something like:
Term1: Definition1
Term2: Definition2
Term3: Definition3
(...)
TermX: Definition X.
I hope I could make myself clear. Any help towards achieving that would be greatly appreciated.
Thanks in advance to everyone in the community.
Hello Everyone,
you will notice that this is the second time I have done this request sorry for that I'm stuck on the question.
I exported an information table report (attribute value to a table) from an excel file in the tool to modify the property values of the objects after finished the midification I can not find an issue to import this report into the tool.
This is how I did the export: Evalute -> Start-Report -> Output Information Table
Is there a possibility to import this report? if so how should I do it?
Any help towards achieving that would be greatly appreciated.
Thanks in advance to everyone in the community.
Hi Community,
there's a little problem that's annoying me right now while developing a report for ARIS 9.8.
I have a dialog window, where I among others want to select a text from a ComboBox and save this into an array. And this several times in a row without leaving the dialog.
Let's assume I have the following list:
aMod[0] = "A"
aMod[1] = "B"
aMod[2] = "C"
aMod[3] = "D"
The first time I call the selection everything is fine. I see on the ComboBox the first entry "A". If I select another (e.g. "C"), the other text will be saved into the resulting array aTxt. If I don't change the selection the first entry will be saved.
The next time I call the selection I expect to see the first entry "A" again. But instead I see the former selected entry "C". I can select another (e.g. "B") and the other will be saved.
The worst case is when I call the selection once again and do not change it. The former selection is displayed "B". But the first entry "A" will be saved into aTxt. It seems as if the selection index set with setSelection() in the ComboBox does not match the displayed selection index.
I also tried to use the getValue() function instead of the getSelection(). But the behavior is the same.
The setValue() function instead of the setSelection does not work. Obviously there is no setValue() function for this type of objects.
The procedure is like this:
I press the button BNew, make my selection in the ComboBox and confirm it with the button BApply. Then the selected text is saved into a new record in aTxt.
Before pressing the BNew-button and after pressing the BApply-button the ComboBox is not enabled and not visible. It's not sure that the items of the selection list aMod are the same every time. Therefore aMod is reloaded every time the selection is activated.
function DIA_configSubDialog()
{
var aTemplate = new Array();
this.getPages = function()
{
var aMod = getMod();
aTemplate[0] = Dialogs.createNewDialogTemplate(1170, 600, "Dialog");
...
aTemplate[0].ComboBox(900, 330, 20, 20*aMod.length, aMod, "CBMod");
...
}
this.BNew_pressed = function()
{
var aPages = new Array();
var aMod = getMod();
aPages[0].getDialogElement("CBMod").setEnabled(true);
aPages[0].getDialogElement("CBMod").setVisible(true);
aPages[0] = this.dialog.getPage(0);
aPages[0].getDialogElement("CBMod").setItems(aMod);
aPages[0].getDialogElement("CBMod").setSelection(0);
...
}
this.BApply_pressed = function()
{
var aPages = new Array();
aPages[0] = this.dialog.getPage(0);
aTxt = createRec(aTxt, aPages);
...
}
function createRec(aTxt, aPages)
{
var aMod;
var sMod;
var nMod;
var nIdx;
aMod = aPages[0].getDialogElement("CBMod").getItems();
nMod = aPages[0].getDialogElement("CBMod").getSelection();
sMod = aMod[nMod];
nIdx = aTxt.length;
aTxt[nIdx] = new Array();
aTxt[nIdx][0] = sMod;
...
aPages[0].getDialogElement("CBMod").setEnabled(false);
aPages[0].getDialogElement("CBMod").setVisible(false);
return aTxt;
}
Can anyone help me tell me what I've done wrong?
What I want is that every time I call the selection the first item is displayed in the ComboBox and that I get the item that's selected. Completely independent of how often the selection was called and whether the selection was changed or not.
Many thanks in advance for your effort.
Greetings Holger
Hi,
I want to find the incoming and outgoing connections of objects of type 'Activity'. Have searched in the ARIS help, I found one function 'getConnections' but when I'm executing the report i'm getting the error as below.Also I observed there is one Macro class named 'ConnectableDef' that we pass as a parameter to the function 'getConnections' , but then too I'm getting the error.Can anyone help me out to resolve this?Thanks in advance.
I am looking for a report which returns an excel overview of all reports/macros/semantic checks including the following information:
I already found a report giving the first 7 pieces of information (see attachment), but the latest item (8), which is for me the most important, is not shown. I have already asked one of our very senior consultants but he also does not know of any report giving this result. He even doubts if this can be made.
You in this forum are my last help line. Can anyone help me?
Dear Community,
We use ARIS Architect 10. I'm trying to create a new report for BPMN models.
The report should include 3 columns:
1. column: object "role", attribute "name"
2. column: object "function", attribute "name"
3. column: object "function", attribute "description/definition"
The table should be sorted by process flow.
As role and function are different object types, I don't know how to combine the attributes into one table.
Could you please support. I'd be happy to get a template.
Thank you.
Hi,
I am trying to generate a report will, export a report of all the functions in an EPC map.
Along with the objects and users performing that actions needs to be listed.
Do we have any standard reports that produces the desired output. If not how to create this.
I dont know Javascript i Used WYSISWYG report generated but in vain.
Can some one help me with this report..
Hello all!
I wanna copy all occurrences of objects from EPC to FAD, which TypeNum of icon is 39 (ST_SCRN) and which have a relationships with functions.
But my script has an error.
Tell me please how can I fix this error. May be I have to other function instead "createCopy"?
This is my code:
function f1(){
for(var i = 0; i < aModels.length; i++){
var oModel = aModels[i];
var aFuncObj = oModel.ObjOccListFilter(Constants.OT_FUNC);
for (var j = 0; j < aFuncObj.length; j++) {
if(aFuncObj[j].SymbolNum() == 335){ // Take only functions which SymbolNum == 335 (ST_FUNC)
var transListFunc = new Array;
var transListFunc = aFuncObj[j].getConnectedObjOccs ( [ Constants.ST_SCRN], Constants.EDGES_INOUT );
if (transListFunc.length!=0){
var gr = GetOrCreateGroup(oModel, "Транзакции"); // Create group "Transactions"
var fadModel = GetOrCreateModel(gr, aFuncObj[j].ObjDef().Name(1049), Constants.MT_FUNC_ALLOC_DGM); // Create FAD-model which names as function name which have transactions
aFuncObj[j].ObjDef().CreateAssignment(fadModel);
for( var t = 0; t < transListFunc.length; t++ ) { // Iterate all transactions, which have relations aFuncObj[j]
//This I wanna use function, that copy objects to FAT
createCopy ( fadModel, transListFunc[t].OccList() ); // Error: "createCopy" is not defined
}
}
}
}
}
}
Hello Community,
I have question regarding the aris report and its guid number.
Is there any function that I can find the report's name and where it's stored with a given GUID number?
Thank you very much in advance!
Best regards!
Hi all,
I want to write a word report with script aris defining the style that we have in a template.
is this possible?
i'm newbie on writing script on ARIS so you can give me any sample of code?
Best regards
Stefano Pulliero
Hi ARIS Community.
I am developing a new Process´s Manual Script and I want to reprint a table header when the table extend to more than one page, that is in every new page the table header must be reprint.
Is there any function or any idea on how can I implement this to the script ??
From already thank you very much.
Franco.
Hello ,
I am trying to execute a report on creation of a object. I created a macro and used Context.getSelectedObjects() to get the recently created object .But the above method returns empty value. Below my code details.
var objOCC=Context.getSelectedObjOccs()[0];// This is returning empty value
var execProp=Report.createExecInfo("xxxx-xxxx-xxx-xx-xxx",[objOCC],getSelectedLanguage());
var result=Report.execute(execProp,false);
If I change the code ,
var objDef = Context.getSelectedObjects()[0];// This is returning the object
var execProp=Report.createExecInfo("xxxx-xxxx-xxx-xx-xxx",[objDef ],getSelectedLanguage());
//Failing to execute below line,
var result=Report.execute(execProp,false);
Please Help
Regards,
Kartik Sarangi