I have two models in my application builder, one for Customers and one for Products, i want to know if i can make both communicate or make links between two entities which are in 2 different models ?
Best Answer
C
Cédric BLANC
said
about 2 years ago
It is not possible to make references from an entity in one model to another entity in a different model.
If your business requirement is for a Customer to buy a Product or a Product to be owned by a Customer then you should have these entities in the same model, and potentially have different Applications for Customer and Product.
If you have to keep Customer and Product in different models, you can add a Product entity to your Customer model (or the opposite) and implement a data synchronization flow between both data locations so that Products authored in your Product instance automatically flow to your Customer data location.
1 Comment
Cédric BLANC
said
about 2 years ago
Answer
It is not possible to make references from an entity in one model to another entity in a different model.
If your business requirement is for a Customer to buy a Product or a Product to be owned by a Customer then you should have these entities in the same model, and potentially have different Applications for Customer and Product.
If you have to keep Customer and Product in different models, you can add a Product entity to your Customer model (or the opposite) and implement a data synchronization flow between both data locations so that Products authored in your Product instance automatically flow to your Customer data location.
Cédric BLANC
I have two models in my application builder, one for Customers and one for Products, i want to know if i can make both communicate or make links between two entities which are in 2 different models ?
It is not possible to make references from an entity in one model to another entity in a different model.
If your business requirement is for a Customer to buy a Product or a Product to be owned by a Customer then you should have these entities in the same model, and potentially have different Applications for Customer and Product.
If you have to keep Customer and Product in different models, you can add a Product entity to your Customer model (or the opposite) and implement a data synchronization flow between both data locations so that Products authored in your Product instance automatically flow to your Customer data location.
Cédric BLANC
It is not possible to make references from an entity in one model to another entity in a different model.
If your business requirement is for a Customer to buy a Product or a Product to be owned by a Customer then you should have these entities in the same model, and potentially have different Applications for Customer and Product.
If you have to keep Customer and Product in different models, you can add a Product entity to your Customer model (or the opposite) and implement a data synchronization flow between both data locations so that Products authored in your Product instance automatically flow to your Customer data location.
-
Extend a model with new entities or attributes
-
Data types in xDM
-
Effective date on entities
-
Search using wild cards
-
Export a model from production and import on a development environment
-
"Allow Delete" vs "Allow Removal" privileges
-
LOV label in Named Query
-
Select location on a map and save coordinates
-
Is there a way to set up a master-detail relationship on browse mode?
-
Choose Either a Stepper or A Workflow Based on The User Privileges
See all 274 topics