Reputation: 507
I have created a relation in hybris. How to see if the relation was created? Is there a field created in backoffice or in code? My code
<relation code="CartEntries2B2BUnits" autocreate="true" localized="false" generate="true">
<sourceElement qualifier="cartEntry" type="CartEntry" cardinality="many">
<modifiers read="true" write="true" search="true" optional="true"/>
</sourceElement>
<targetElement qualifier="b2bUnit" type="B2BUnit" cardinality="one">
<modifiers read="true" write="true" search="true" optional="true"/>
</targetElement>
</relation>
Upvotes: 0
Views: 775
Reputation: 5758
After build you can see changes on java code. After initialize/update you can see new relation type and new fields on source and target type in type system at backoffice.
Sidenote
Upvotes: 2