Your requirement is to allow only one industry for a given Account. What would you do to start to meet the requirement?
Create a new Industry table.
Create a new foreign key on S_INDUST that points to S_ORG_EXT.
Validate there is a foreign key on S_ORG_EXT that points to the Industry business component's main table.
Validate there is a foreign key to the Industry business component's main table on the S_ORG_INDUST table.
Validate there is a foreign key on the Industry business component's main table that points to the S_ORG_EXT table.
Submit