I am trying to create a conceptual data model using PowerDesigner, I found a conflie between two methods:
- Create two entities and relations between them
- Create an association and three entities and two relationships.
knowing that both methods give the same result on the generation of physical data model
both methods are illustrated by the following picture

Associations and Relationships are different conceptual terms in Power-designer.
An
Associationis a relation between two or more entities.An
Associationcan have attributes.A
Relationshipis a relation between two entities.A
Relationshiphas no attributes.Association is more general form of Relationship.
For example:
Consider designing of a many to many relation between
CustomerEntityandCreditGroupEntityDesigning the relation with
Relationshipwill create a third table just contaning CustomerEntity primary-key and CreditGroupEntity primary-key.Designing the relation with
Associationand adding a assign-date attribute to the association will create a third table contaning CustomerEntity primary-key, CreditGroupEntity primary-key and assign-date fields.The sample you have used contains 0-n cardinal with no attributes on association, so the difference can't be seen.
Generally Association is used when the relation itself is an entity having attributes.
A relation, having no attributes is implemented by Relationship.