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 - xabi

Pages: [1] 2
1
Great thanks for your support  :)

2
Hello Geert, thanks for your response :) Im using SQL Fragements. I will try to find out how to mark them as formatted text.

Have a nice day

3
Hello,

I'm having a difficulty with a Word export. I am exporting some class diagrams to Word. I have also described attributes for the classes.

Both elements have a description that I want to print. It works in general, but if the attribute description contains e.g. "&", it is replaced by &. For the class description it works fine, "&" is not replaced.

Do you have any tip for me how I can print the attribute description as it is.

Many thanks in advance

4
General Board / Re: List Override ignored?
« on: December 16, 2023, 04:27:57 am »
Hi Geert thanks for your feedback. I removed it from the Initial post. There was no reason I copy pasted it from a google search.

5
General Board / List Override ignored?
« on: December 16, 2023, 01:43:10 am »
Hi I have a question regarding list overrides. I already checked the docu but my result is different.

I have the following RTF Template:

package >
1 {Pkg.Name}
{Pkg.Notes}

package element >
linked document >
< linked document
< package element
diagram >
                {Diagram.DiagramImg}
< diagram
child packages >
< child packages
element >

1.1 {Element.Name}
{Element.Notes}

linked document >
< linked document
diagram >

I edit the list level like that:

Level 1 ~1~.
Level 2 ~1~.~2~
Level 3 ~1~.~2~.~3~
Level 4 ~1~.~2~.~3~
Leevl 5 ~1~.~2~.~3~

Elements from Level 3 can have child elements. In the output document Level 4 will be displayed e.g. 4.2.1.1 :(

What is the reason for this. Thanks in advanced

6
Hi Geert, sorry for the late answer. I was able to fix my problem with your help. Thanks again and have a nice day

7
Hi Geert, you are as always amaizing ;) thanks for your support and ideas. Im getting closer

But still the spaces after ; are removed. Is there any escape character or something like that.

Code: [Select]
select a.Name, a.Notes, COALESCE(tvc.Property+"; ",'') as test, COALESCE(tvh.Property+"; ",'') as test2, COALESCE(tvs.Property,'') as test3
The output looks now like that:

tvc.Property;tvh.Property;tvs.Property

Want I want is:


tvc.Property; tvh.Property; tvs.Property

8
Short Update:

I tried the following and it works if all properties are found. If one is property is missing the hole line is not displayed.

Code: [Select]
select a.Name, a.Notes,' ' + CHAR(10) + tvc.Property + CHAR(10) + '' + tvh.Property + CHAR(10) + ' '+ tvs.Property + CHAR(10) + ' '+ CHAR(10) +' ' as test
Then I tried the following approach. All elements are displayed also if one is missing but the line breaks are ignored.

Code: [Select]
select a.Name, a.Notes,' ' + CHAR(10) + tvc.Property + CHAR(10) + '' as test, '' + CHAR(10) + tvh.Property + CHAR(10) + '' as test2
Any hint is welcome

9
Hi Geert thanks again for your help. I tested it and the approach does not work for me. Thanks for your hint regarding the SQL I think with concat I can solve my problem :)

Do you have a hint for me how I can add CHAR(13) CHAR(10) or a empty space between the Strings.

Here my snippet:

Select a.Name, a.Notes, #Concat tvc.Property, '; ' # as 'CopyField', #Concat tvs.Property, '; '# as 'Significant', #Concat tvh.Property, ';' # as 'HiddenField'

The spaces are removed :(

Thanks in advanced

10
Thanks Geert for your support I think I understand it now better.

I think Im also now understanding your comment regarding the restriction. If I write everything in one line the complete line disappear.
Bookmarks for tags separated by newlines are not working. Is that correct?

Do you have any idea how I can display it in a nice format?

Thanks in advanced

11
Hi Geert,

thanks for your reply and help. Unfortunately it is still not working. Im sure Im doing something wrong.

Do you mean like the following:

FieldName       Behaviour
{Name}           <SignificantEdit>.Start{CopyField}{SignificantEdit}{HiddenField}<SignificantEdit>.End

Does it mean that it will not be dipslayed if the fieldName does not have the SignifcantEdit

Thanks in advanced


12
Perhaps you can help me with the following challenge.

I created a Fragement Template which execute an custom SQL the Result should display a table. This works great but Im not happy with the printed file.

Example Template:

FieldName       Behaviour
{Name}          {CopyField}
                      {SignificantEdit}
                      {HiddenField}

Some Fields have for example only the Behaviour HiddenField. But unfortunately the created document contains empty spaces for the CopyField and SignificantEdit.

Is there any possibility to remove this empty spaces?

I already tried the following but the result was also not the best approach :(
FieldName       Behaviour
{Name}          {CopyField}{SignificantEdit}{HiddenField}

Thanks in advanced



13
Automation Interface, Add-Ins and Tools / Script to create a xmi file
« on: August 27, 2023, 04:32:23 am »
Hi, I would like to create a kind of CI/CD pipeline. When changes to the EA file (.qea) are committed, I want to create an xml file that will be used later for automated tests.

Is there an example script on how I can create an xml file. I know that this can be done manually in EA.

Thanks in advanced

14
General Board / XMI Export how to change ordering of UML:SimpleState
« on: August 27, 2023, 04:28:08 am »
Hello is there any possibility how I can change the the sorting of the UML:SimpleState exporting to XMI ?

I already disable "Start > View > Preferences > Objects" (Ctrl+F9 > Objects) named "Sort Features Alphabetically" but without any success

Thanks in advanced

15
Thanks I will try it out :)

Have a nice day

Pages: [1] 2