Table Action to Form View

Rod
Bronze 3
Bronze 3

Is it possible to use the action: โ€œadd a new row to this table using the values from this rowโ€, then open that new row in a form view? Using an action sequence?

0 3 116
3 REPLIES 3

Yes. The main issue is finding the key value of the new row to use in the second actionโ€™s LINKTOROW expression. You can do that a couple of ways, probably the easiest is with MAXROW(โ€ฆ , โ€œ_rownumberโ€). a Less computationally-intensive way is to add a column to the table youโ€™re coming from that would temporarily hold a UNIQUEID() value, which you would use to populate the key value of the new record, AND easily link to it.

The only reason to do this instead of just LINKTOFORM() is to force the creation of a record, in case the user would just hit cancel from the form. Is this what youโ€™re wanting?

Yes! I was wondering how to find the ID on a new row, are there examples? Thanks Marc!

Actually I found an app example, thanks again!

Top Labels in this Space