Extending Seed Table and Editing the Input Form | Community
Skip to main content
Level 2
August 2, 2019
Solved

Extending Seed Table and Editing the Input Form

  • August 2, 2019
  • 1 reply
  • 1889 views

Hello,

I have 3 tables total.

1. Out of the box Seed Member Table

2. A table that extended Seed Member and contains a Link to my 3rd Table

3. (3rd Table) that contains all the new columns needed for my out of the box seed table modification

All the keys are in place for these tables and I am now trying to figure out how to modify the out of the box seed input form.

I have created a separate column/container for the new form, but I cannot figure out how to write to both tables simultaneously.

Is there some documentation on how to edit the xml and navigating foreign keys to write to both tables simultaneously?

Thanks for the help!

- Connor

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jonathon_wodnicki

Hi,

Set referential integrity in the schema, on the seed table's join element to your table:

<element type="link" .. integrity="own"/>

Or from your table to the seed table:

<element type="link" .. revIntegrity="own"/>

Thanks,

-Jon

1 reply

Jonathon_wodnicki
Community Advisor
Jonathon_wodnickiCommunity AdvisorAccepted solution
Community Advisor
August 5, 2019

Hi,

Set referential integrity in the schema, on the seed table's join element to your table:

<element type="link" .. integrity="own"/>

Or from your table to the seed table:

<element type="link" .. revIntegrity="own"/>

Thanks,

-Jon