Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - carolin.boeckler

Pages: [1] 2 3
1
Automation Interface, Add-Ins and Tools / Re: ReferenceData in MDG?
« on: June 17, 2020, 11:48:43 pm »
What a pity!
But thanks for your answer.
lg, caro

2
Automation Interface, Add-Ins and Tools / ReferenceData in MDG?
« on: June 17, 2020, 07:30:10 pm »
Hi

I have a Question to the MDG Technology: Is it possible to Import the Reference Data to a MDG Technology.
Many years before, I had an AddIn. Through this it was possible to insert reference data to a Special EA model. But it is really complicated. So I hope it is also possible to insert the reference data to the MDG Technology.

LG, Caro

3
Automation Interface, Add-Ins and Tools / TechnologySets / PerspectiveSets
« on: February 04, 2020, 09:40:40 pm »
Hello,

does anybody have experience with the TechnologySets.xml and the PerspectiveSets.xml?
I have my own MGD Technology, in this I have also my own models (modelPatterns).
I have the Problem that my Technology isn't in the model wizard and I can also not add new diagrams.
I already managed that I can change the user interface but there is no Connection between the perspective and my Technology itself.
Is there a description for EA15.1 for the own Technology with own toolboxes, own Elements, own diagrams, own models?

Thanks, Caro

4
Hello,

I tried the whole time to create "MyView", but it doesn't work. Is it possible to get an example - e.g. an eap file?

Or can you post some images how to create exact the example of https://www.sparxsystems.com/enterprise_architect_user_guide/15.0/images/new-myviewdiag.png

It would be really helpful

 ;)Caro




5
Hi there,

I got a question to my MDG Technology. I try to create a new diagram type with the same properties like a internal block diagram. If you have a original SysML::InternalBlock diagram you can click right mouse button on the diagram and in the Navigation menu, there Exits two Point extra: Sysnchronize Structural Element and Hide Diagram Frame. How can I create a own diagram type wth my own linked Toolbox with These same properties?
I already tried to derive from Diagram_InternalBlock (Diagram_CompositeStructure) and clicked many of theattributes in the Profile helper, but nothing helped.
Does anybody have an idea how to solve my problem.

 ;) Caro

6
General Board / Auto-generation xml from mst
« on: July 03, 2019, 06:58:06 pm »
Hello,

is it possible to generate automatically the MDG-Technology.xml from a *.mst file (without clicking the wizard)?
I mean, if I change only the content of a pattern.xml, I do not want to click always the whole wizard.

Caro

7
General Board / Shape script: tagged value of parent element
« on: February 20, 2019, 06:51:43 pm »
Hello,

I habe my own MDG Profile. One of my self created Elements "MyBlock" with own _instanceType "MyPart" has a tagged value "KindOfElement" (mechatronic, electronic,...). In the shape script I change the color of "MyBlock" to show the selected "KindOfElement".
Now I want that the child elements ("MyPart") has the same color. I see in the tagged value still the tagged value of the parent value, but I have no idea how to read this parameter?
I need something like    if(hastag("parent:KindOfElement","mechatronic"))
I have only seen a solution with an AddIn. But I cannot imagine that it has to be so complicated. There must be someting like #TAG:parent:KindOfElement"

Can somebody help me?

Thanks, Caro

8
General Board / Roadmap legend filter
« on: September 19, 2017, 07:49:52 pm »
Hello,

I try to get the filter working in Roadmap diagram for the legend.
I can select tagged value in "filter" as well as "applies to", but there is no different in the end. The legend is still on all elements and the tagged value is also ignored.
What is the trick?

Caro

9
General Board / Export diagram filters
« on: April 27, 2016, 08:55:31 pm »
Hello,

I need a possibility to export diagram filters and import them to other projects or to insert my diagram filters in my own MDG technology.
I couldn’t find anything on EA website and also not in the forum.
I already wrote an EA Java Script, but it work also not perfectly cause of the sign ‘ (ASCII-Code 0039 bzw 0x27).
 
How is it possible to copy diagram filters from one project to another?

Caro

Example:

!INC Local Scripts.EAConstants-JScript

/*
 * Script Name:
 * Author:
 * Purpose:
 * Date:
 */
 
function main()
{
      Session.Output("SQL");
   
      insert="INSERT INTO t_xrefsystem (XrefID,Name,Type,Client) VALUES ('{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}','filtertest','DFilter','boeckcro')";
      Repository.Execute(insert);
      Session.Output("insert finished");
      update1="UPDATE t_xrefsystem SET [Description]='<RootSearch><Search Name=\"filtertest\" GUID=\"{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}\" PkgGUID=\"-1\" Type=\"0\" LnksToObj=\"0\" CustomSearch=\"0\" AddinAndMethodName=\"\">' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update1);
      update2="UPDATE t_xrefsystem SET [Description]=[Description]+'<SrchOn><RootTable Type=\"0\"><TableName Display=\"Element\" Name=\"t_object\"/><TableHierarchy Display=\"\" Hierarchy=\"t_object\"/>' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update2);
      a="xx11xx"; // here is the problem ' instead of xx11xx does not work
      update3="UPDATE t_xrefsystem SET [Description]=[Description]+'<Field Filter=\"t_object.Alias Like ' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update3);
      
   
      update3a="UPDATE t_xrefsystem SET [Description]=[Description]+'"+a+"' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update3a);
      
   
      update3b="UPDATE t_xrefsystem SET [Description]=[Description]+'*fs*' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update3b);
      
      update3c="UPDATE t_xrefsystem SET [Description]=[Description]+'"+a+"' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update3c);
      
      update3d="UPDATE t_xrefsystem SET [Description]=[Description]+'\" Text=\"fs\" IsDateField=\"0\" Type=\"1\" Required=\"1\" Active=\"1\">' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update3d);
       update4="UPDATE t_xrefsystem SET [Description]=[Description]+'<TableName Display=\"Element\" Name=\"t_object\"/><TableHierarchy Display=\"Element\" Hierarchy=\"t_object\"/><Condition Display=\"Contains\" Type=\"Like\"/>' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update4);

       update5="UPDATE t_xrefsystem SET [Description]=[Description]+'<FieldName Display=\"Alias\" Name=\"t_object.Alias\"/></Field></RootTable></SrchOn><LnksTo/></Search></RootSearch>' WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(update5);
   
   
   
   
   /*
       delete1="DELETE FROM t_xrefsystem WHERE [XrefID]='{4DCF4B69-CD40-496e-9D89-F9E3C6511F0D}'";
      Repository.Execute(delete1);   
   */
   Session.Output("update1 finished");
}

main();

10
Hello,

I have my "OwnTechnology MDG". And I have some "ModelTemplates" for my OwnTechnology MDG. I know I can insert in my .mst file a like to my modeltemplates, e.g. newproject.xml.
Link: http://sparxsystems.com/enterprise_architect_user_guide/12.1/building_models/model_templates2.html

It is not enough to insert the OwnTechnology.xml via "Project/MDG Technology Import". The Problem is that I have to copy "newproject.xml" to "C:\Program Files (x86)\Sparx Systems\EA\ModelPatterns" manual.
Is it possible to Import "newproject.xml" to my "OwnTechnology.xml", so that it is enough for the user to import OwnTechnology.xml via "Project/MDG Technology Import"?

Caro

11
General Board / Re: MDG-Technology - TaggedValue - New Stereotype
« on: February 19, 2014, 08:47:14 pm »
Thank you

It works.
Can I find this also in some manual?

12
General Board / Re: MDG-Technology - TaggedValue - New Stereotype
« on: February 19, 2014, 07:29:12 pm »
I do not have an association.
I created a stereotype called "Groesse". It should have a tagged value with the name "Einheit". But it should be possible to have a select button like a have if I have the "ValueType" Element of the SysML 1.3 with its TaggedValue "Unit" and "Quanitity Kind".
See images:
[Own Element "Groesse" and "Einheit"][http://imageshack.com/a/img46/9038/bui1.png]
[SysML1.3::ValueType with TaggedValue "quantityKind" , select ... on right side][http://imageshack.com/a/img819/6475/r8gf.png]
[Selection window with Types "Object" and Stereotype SysML::quantityKind][http://imageshack.com/a/img811/4866/9hte.png]
I hope it works with the images.

Caro

13
General Board / MDG-Technology - TaggedValue - New Stereotype
« on: February 15, 2014, 12:59:53 am »
Hi,

I create my own MDG technology.
I created a new stereotype in my profile, e.g. "Einheit" based on metatype "object". I created a second stereotype "Groesse" based on "DataType". Now I want to have in "Groesse" a tagged value with the name "Einheit". Up to now it was no problem, but now I have the problem, that I have no selection icon in the tagged values with the symbol "..." where I can select my new type Einheit and also not the window where I habe the button "add new" with type and stereotype.
Does anybody has an idea?


I don't know how to insert an image here. I hope somebody knows the window Tagged Values... , where on left bottom side is the button "Add New".

Caro

14
General Board / Re: Relative path in profile/ MDG ?
« on: December 03, 2013, 11:04:10 pm »
I know this possiblity, but I want to have something like a relative path.

15
General Board / Relative path in profile/ MDG ?
« on: December 03, 2013, 06:47:14 pm »
Hello

I use my own profile (MDG Technology).
I use also own icons. Now, more than one people in our company would like to create profile, so we use some svn. Everybody of us would like to check out the code but on different path.
It is possible to use relative path in "Icon" for a new stereotype.
I tried already but it didn't work - is there some trick.
I tried also to use the internal images (from "Settings-Images"), but it also didn't work.
Has anybody an idea?

Caro

Pages: [1] 2 3