We need a way to PUSH data into a table | right now you can only PULL

As it stands right now, the action system can be used to update data in a table, but that update is accomplished by the table being updated PULLING the data from triggering table.

A common scenario is for data saved in one table to trigger an update in another (i.e. “complete the order when the last part is entered & [here’s the data pull part] record the name of the person that entered that last part , marking them as the person that completed the order”).

The current way to set this up is to create a data change action in the orders table with a formula that looks for the last record in the Part’s table for the corresponding order (the one that was just saved and triggered the whole update sequence).

But if you’ve got large data sets, these lookups can be taxing on devices (especially if these devices are P.O.S computers in a hospital/library/school). Imagine if you’re submitting a record to a table with 28,476 records! That’s a lot of things to sift through to find the newest.

What we need is a way to take the data that is BEING saved and PUSH that into the table we want; that way the device doesn’t have to trigger the parent table to do a lookup through the child table, the device only has to lookup the parent record and update it with the data the app is “currently holding.”


The easiest way I can see to implement something like this is to use the REF ACTION system that already exists. With these:

  1. you build the action on the triggering table,
  2. select the table to update,
  3. select the action to run, and
  4. you pass it the record to update. (Saving the system from having to do a lookup.)

2X_4_47ec33cd33eb66716478434f0d799f57597f0b75.png

I propose a way that instead of selecting an action to run, you instead complete the data change specifications right there:

  • select a column to update
  • then enter the value you wish to replace the current value with. This space could look/function just like the current data change fields:

2X_c_cf121fa33bfb40a0a6cececaf4e64615195f41ed.png

But now the value wouldn’t need to be a lookup formula, now it could be a formula from the context of the triggering table - even just a selected column (to take the value from that column and transpose it to the one being updated).

This would save a ton on processing power from the devices standpoint.

As always, thanks for considering! (^_^)

Status Open
1 3 607
3 Comments
Grant_Stead
Silver 5
Silver 5

This functionality is similar to the webhook of data packet push. Also similar to the “external API” I think that once they implement the ability to add a record in it’s entirety intra-app, then this would be possible…

MultiTech
Gold 4
Gold 4

For instance, I find myself building things like this:
2X_3_38fb1594790a75eda7a9b1231a672a0d7fd18cea.png

In the example above I’m finding the last thing edited by the user and grabbing a value from that record.

It’s a terrible way of grabbing data because it’s basically a SELECT(SELECT()) situation; but when things are a one-off situation (and hence not worth adjusting the column structure to hold a temporary variable) I’m left with little to do when the client is demanding certain functionality.

If I had a way to take the data from the record I just modified and PUSH that data into another table, I could save all these lookup cycles. (^_^)

Status changed to: Open
Pratyusha
Community Manager
Community Manager