Questions tagged [powerdesigner]

PowerDesigner is an enterprise modeling tool from SAP.

PowerDesigner is an enterprise modeling tool from Sybase, an SAP company.

It runs on Windows, and allows modeling Data, Business Process, Object-Oriented system (using UML), XML schemas, Enterprise Architecture... It features code generation and reverse engineering and has a module to allow collaboration between several designers.
There is another module providing a Web interface.

It's quite extensible, allowing the definition of user-defined metaclasses, meta-attributes, meta-collections; or through an Automation interface.

In France, there used to be a version named PowerAMC, with support for the MERISE method. Now PowerDesigner has a French optional UI, and the Merise module is obsolete.

198 questions
2
votes
4 answers

PowerDesigner Reference Lines Mess

While using power designer, I have ended up with a mess of lines for references from one table to the other. While these lines are orthogonal, they create a mess, hiding behind tables, etc. Is there a way to make them snap to grid lines so they are…
andreadi
  • 1,953
  • 1
  • 20
  • 35
2
votes
1 answer

How to automatically display relationships in logical diagram?

Consider a Logical Model where Entity A and Entity B are connected via Relationship Z. If I create a Logical Diagram (note: not another logical MODEL), I am able to drag Entity A and Entity B onto the diagram. Since the Logical Model already…
Cliff Chaney
  • 414
  • 5
  • 13
2
votes
1 answer

How to get a table's all references in powerdesigner?

I have a lot of tables in powerdesigner. But I want to know one table's references. Do you know how to get them? tips: powerdesigner version:15.1.0
Brutal_JL
  • 2,839
  • 2
  • 21
  • 27
2
votes
1 answer

sql server script generated by PowerDesigner

I have a PDM on PowerDesigner 15.1. And I generate a script with it for a SQL Server 2008R2 db. So the generated script looks like something like this : if exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid…
Maxime
  • 570
  • 3
  • 18
2
votes
3 answers

How can I create a model in Powerdesigner which can generate create script for different database?

I just want to create the model once, and then use it in any kind of database, without the need to modify the model. What I should do with the data type ? I found there is numeric and other kind of data types. What does that correspond to in mysql…
MemoryLeak
  • 7,322
  • 23
  • 90
  • 133
1
vote
0 answers

Why shortcut to a decision is not supported in powerdesigner 15.x UML activity diagrams?

Powerdesigner comes with a nice feature called shortcut to objects. Unfortunately, the shortcuts are not supported for decision objects in UML activity diagrams. Can someone tell me why this is not supported? How can I then use multiple instances of…
TonySalimi
  • 8,257
  • 4
  • 33
  • 62
1
vote
1 answer

powerdesigner how to show table and field's code in diagram

I want powerdesign show table and field code(not noly their name) in diagram,how to set it? in this pic it only can display their name. code were hiden.
SleeplessKnight
  • 2,125
  • 4
  • 20
  • 28
1
vote
0 answers

Initialize event handler on table Has been called Stereotype

Is it possible to turn off the automatic call to the event handler over the table (Initialize) if the Stereotype changes? Alternatively, if it can't be turned off, is it possible to determine from the call whether it is creating a new object,…
1
vote
1 answer

PowerDesigner: 'Object Required': PdPDM Error while running a vbscript from outside PD

I have written the vbs script for doing reverse engineering (in PowerDesigner) but when I am running the script through Python, I am getting the error "Object Required": PdPDM Error. I have written the vbs script below. ' Define PDM file path …
1
vote
1 answer

PowerDesigner - vbs script to run other scripts

I have a few PowerDesigner 15 vbs scripts that perform various cleansing/transformation tasks on physical data models. I'd like to be able to run all of them at once rather than one at a time (there are 10 scripts now, possibly more in the…
Cristian Lupascu
  • 39,078
  • 16
  • 100
  • 137
1
vote
1 answer

Display conceptual data model weak entity in PlantUML

How would I go about displaying this relationship in PlantUML? I cannot figure out how to show that the entity type Foo is weak using PlantUML.
BiciAP
  • 112
  • 7
1
vote
1 answer

Method script for add technical fields in PowerDesigner

I need to add technical fields to table in PDM, when I check one of Stereotypes in PowerDesigner. I imagine it should be a Method in Extension Properties for Table methaclass, but don't know how to bind event "Check Stereotype" with creating…
1
vote
0 answers

PowerDesigner - DDL generation

Where can I customize the output of DDL scripts generated by PowerDesigner? I want for all columns defined as varchar2 to generate the DDL with char length types. E.g. VARCHAR2(10 CHAR) instead of VARCHAR2(10) Of course i have the option to modify…
1
vote
2 answers

HAPI FHIR - Data Model - Entity Relationship, does anyone have a link to an ERD model that is based on FHIR

I'm looking for an ERD based on the fundamental concepts of HAPI FHIR. I have access to a number of Data Architect tools (Erwin / PowerDesigner) and wanted to know if anyone has a model they can perhaps share or point to. Thanks
1
vote
0 answers

PowerDesigner - how to change column name/code and store the old one via user-defined Form - kind of OnChange event

I need to change a column name/code of a selected column (in GUI) in an invoked user defined Form, event before Apply/OK. Mainly, I need to keep old name/code in an extended attribute to create migration script later. Which event handler to use? …
1
2
3
13 14