Book a Demo

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 - Luis J. Lobo

Pages: [1] 2 3 ... 17
1
General Board / Re: EA compatible with Oracle 19 as server-based Repository?
« on: September 23, 2021, 07:55:48 pm »
Hi, Geert!

I know, but this customer has Oracle as a corporate standard... and they're using Oracle 12 as EA repository for years.

They want to upgrade Oracle, and I don't know if that version is supported or not.

Thanks anyway!  :)

Luis

2
General Board / EA compatible with Oracle 19 as server-based Repository?
« on: September 23, 2021, 07:45:12 pm »
Hi all!

Do you know if EA is compatible with Oracle 19 DBMS as server-based repository?

The documentation only includes:

To create a project in a repository on Oracle 9i, 10g, 11g or 12c, you work through these stages: - https://sparxsystems.com/enterprise_architect_user_guide/15.2/model_repositories/upsizingtooracle.html

...but the System Requirements says:

Oracle from 9i (all editions) - https://sparxsystems.com/enterprise_architect_user_guide/15.2/model_repositories/settingupdatabasemodelfile.html

Thanks in advance!

Luis

3
Thank you, querty, Geert!

4
Hi, everybody!

I'm creating an external application (MyApp.exe) in C# which connects to an EA Repository using its API (InteropEA.dll).

When I run 'MyApp.exe' on a PC with EA installed, everything is fine. But when I run 'MyApp.exe' on a PC without EA installed, it fails even though I have deployed it with the 'InteropEA.dll' library.

Does anyone know if it is necessary to install the EA client on the PC where 'MyApp.exe' is going to run? Is not enough with some libraries?

Thanks in advance,

Luis

5
Suggestions and Requests / Re: Accomodating Screen Shots
« on: May 24, 2012, 08:26:58 pm »
Use "Linked Documents (Alt+D)" for screenshots and/or operator instructions

6
Suggestions and Requests / Re: Traceability: show stereotypes
« on: May 25, 2012, 10:47:11 pm »
Vote!

But not only for connectors. The stereotype is needed for the elements too. Only the element icon is not enought. The type/stereotype should appear at least as a tooltip.

7
Look at "Resource Documents" (http://www.sparxsystems.com/enterprise_architect_user_guide/9.3/reporting/resource_documents.html).

That's exactly what you're looking for.

8
You can select the desired diagram objects (Ctrl + Click) and copy-paste in your target tool (Word, Paint...). Only selected items compose the image.

9
Option 1:
Dock the "Notes" window on your EA user interface. Each click in the Project Browser will show the element related notes in the "Notes" window

Option 2:
Right click on a Package in the Project Browser and select "Package Browser" option. This will show a "big Project Browser" in the center of the screen where you can activate the Notes preview. And in the latest releases of EA, this window is dockable where you want.

10
Suggestions and Requests / Re: Hosted online version
« on: May 22, 2012, 09:28:05 pm »
I think that the "EA on the Cloud" reffers to a SQL Azure dababase for Repository hosting, not a browser-based user interface.

12
Suggestions and Requests / Re: Producing Report of Trace between attributes
« on: November 10, 2011, 09:44:47 pm »
Awesome! I didn't know this new reporting feature!

Excellent for detailed traceability...

13
You can nest partitions in both the diagram and in the project browser.

If you drag and drop a Partition over another Partition, the appearance is similar to the "Pool" and "Lane" of BPMN.

14
The following VB Script allows you to select the element to clone in the project browser, run the script, and obtain a cloned element that maintains the same relationships as the original one.

Here is the VB Script code (copy and paste it in the script editor window):



option explicit

!INC Local Scripts.EAConstants-VBScript

'
' Script Name:
' Author:
' Purpose:
' Date:
'
sub main
      Dim OriginalPackage
      Dim TempPackage
      Dim SubPackage
      Dim ElementToClone
      Dim i
      Dim Finished
      
      Set ElementToClone = Repository.GetTreeSelectedObject()
      Set OriginalPackage = Repository.GetPackageByID(ElementToClone.PackageID)
      Set TempPackage = OriginalPackage.Packages.AddNew("Cloned Element", "Nothing")
      TempPackage.Update()
      OriginalPackage.Packages.Refresh()
      OriginalPackage.Update()
      ElementToClone.PackageID = TempPackage.PackageID
      ElementToClone.Update()
      TempPackage.Elements.Refresh()
      TempPackage.Update()
      TempPackage.Clone()
      ElementToClone.PackageID = OriginalPackage.PackageID
      ElementToClone.Update()
      OriginalPackage.Elements.Refresh()
      OriginalPackage.Update()
      Finished = false
      i = 0
      While i < OriginalPackage.Packages.Count And Not Finished
            Set SubPackage = OriginalPackage.Packages.GetAt(i)
            If SubPackage.PackageID = TempPackage.PackageID Then
                  OriginalPackage.Packages.DeleteAt i, false
                  Finished = true
            End If
            i = i + 1
      Wend
      OriginalPackage.Packages.Refresh()
      OriginalPackage.Update()
      Repository.RefreshModelView(OriginalPackage.PackageID)
end sub

main

15
Suggestions and Requests / Re: Structured scenarios in HTML report
« on: June 11, 2010, 07:17:53 pm »
Nobody knows??

Pages: [1] 2 3 ... 17