Level: Intermediate

Transfer a Found Set to a UI File

If you work with the separation model, or any other multi-file configuration where a layout in file A is based on a table in file B, you may have encountered the following situation: while FileMaker makes it easy to transfer a found set from file A to file B…

2016-08-31_195116

…there is no obvious mechanism to go the other direction. Stated in other words, you can easily transfer a found set from an interface (a.k.a. UI) file to a data file, but not vice-versa. Nor for that matter, is there an obvious way to transfer a found set from one UI file to another UI file.

An example of when you might want to do this would be if you have a client who is somewhat FM-savvy and wants to design their own layouts for PDF, printing and/or reporting purposes. Rather than giving them layout access in the main system, you could instead give them their very own “Reporting” interface file, with TOs based on external tables. This way they can design layouts, write scripts, be creative on the (Reporting file’s) relationships graph, etc., without endangering schema in the main system.

But be aware that if you do this, the day will come when the client says, “Okay, I’ve painstakingly assembled a found set in the main system — now how do I transfer it to my reporting file?”

Well today we have three sets of demo files…

…each consisting of a data file (“Data”) and two interface files (“Interface” and “Reporting”). The first demo shows a bare bones method for transferring a found set from one interface file to another; demos 2 and 3 not only transfer the found set, but replicate the sort order as well.

Demo 1

2016-08-31_202736

Note that in this demo, as well as in demo 2, tables live in the data file only…

2016-08-31_204552

…the other two files are pure interface, and contain no tables.

2016-08-31_204809

However, the two interface files can access tables in Data by first adding it as an external data source…

2016-08-31_210255

…and then placing a TO (table occurrence) from that external source on the Relationships Graph. Reminder #1: external TO names are italicized on the graph.

2016-09-01_143020

Reminder #2: if you hover your mouse pointer over the little arrow to the left of the TO name, an informative drop-down will appear.

2016-08-31_211520

I asserted at the outset that you can easily transfer a found set from an interface file to a corresponding data file — let’s take a quick look at how this can be done.

2016-08-31_212734

Since the “contacts” TO in the interface file is based on an external table that actually lives in the data file, we can GTRR (“go to related records”) like so:

2016-08-31_213458

But what happens if we naively attempt to try this trick from the other direction, i.e., from the data file to the interface file? Let’s give it a try. First we’ll add an external data source from the data file to the interface files…

2016-08-31_215308

…but what are we going to place on the graph?

2016-08-31_214935

Nothing, that’s what. And of course if we don’t have any external TOs on the graph, then “Use external table’s layouts” is going to be greyed out.

2016-09-02_122937

So, how can we transfer a found set to a UI file? Let’s go back to the Interface file and take a look at one possible approach. In this case we want to transfer the found set from the Interface file to the Reporting file…

2016-08-31_221958

…and this will be facilitated by these two highlighted fields…

2016-08-31_222828

…as well as a relationship in the Reporting file from contacts to a second occurrence of the same table via zz_g_mlk.

2016-09-01_142726

The script in the interface file, pushes the contents of zz_s_list_id into the global field (the “mlk” stands for “multiline key”)…

2016-08-31_223451

…and then calls this subscript in the reporting file…

2016-08-31_223836

So, does it work? Indeed it does.

2016-08-31_224512

But notice that the record order has not carried over to the Reporting file. Yet.

Demo 2

2016-08-31_225021

Here, in addition to transferring the found set, the record order is mirrored as well, thanks to a technique adapted from Tom Fitch (Portal Sorting That Doesn’t Suck).

As we saw in Demo 1, we use a summary list field to populate a global multiline key. Well it turns out that the key values appear in the order of the original sort, so if we define this calculation in the contacts table in the data file…

2016-09-10_184622

…we can then sort on this field to replicate the original sort order. Note: You can read about ValuePosition here (ValuePosition: The Function FileMaker Forgot).

Demo 3

As often happens in the FileMaker world, there is more than one way to skin the proverbial cat. This method is more convoluted than its predecessor, but I decided to include it as an example of a very different approach.

2016-08-31_232647

Here the found set is transferred by importing into a shadow table, and the sorting… well, we’ll get to the sorting in a minute. The shadow table is a utility table defined in the Reporting file…

2016-08-31_232127

…and here’s the reporting file relationships graph:

2016-08-31_234046

When the user clicks the button in the interface file, this script is invoked in the Reporting file:

2016-08-31_232937

The UUID ends up in the tempKey field, serving as a “session key” to ensure that the technique is multiuser safe. The contact ID is imported into the Shadow table, and serialSorter is populated via auto-enter calc.

2016-08-31_233627

The found set is transferred from shadow to contacts via GTRR, and finally, we sort on a multiuser-safe related version of serialSorter.

2016-08-31_234649

Conclusion

The methods we’ve looked at today seem a bit convoluted, don’t they? If you have a better approach, I’d like to hear it.

 

 

4 thoughts on “Transfer a Found Set to a UI File”

  1. Very cool. Another method, although still pretty convoluted, would be to hack a snapshot link to direct it to the other file. The record ids will be the same, so you’d just need to know the layout id of the target file, and sub out the file name. So, you could export the snapshot link, use Insert From URL to get the contents into a field where you could edit it, and then export and open. Exporting the field as a 1 record tab file with the .fmpsl extension should work. I’ll try this out when I get a chance.

    1. Hi Jason,

      Thanks for taking the time to comment.

      Chris Cain and I were hacking on this idea last week, and your approach is pretty much the route we were (actually, he was — I was mostly just along for the ride) exploring also. The only problem is that you end up with a new window, and if you decide to close the user’s original window, and sneakily replace it with the new window, you will blow out any “background” found sets the user may have set up in the original window.

      If you don’t write it up, I will eventually… but if you are so inclined, by all means please beat me to it.

      Kevin

      1. Yeah, I put in “Import Snapshot” and “Execute Snapshot” as feature requests years ago, but alas.
        How about adding a field for the record id and then scraping the found set ids from the snapshot to generate the multi-line key? You’d have to fill the gaps on the range expressions, but I just read a very cool post about customList that might be helpful.

        1. Cool, I’m a big fan of CustomList — maybe I should read it.

          With regards to the scraping, don’t forget you still need to restore the sort order.

          Too bad we don’t have programmatic sort order detection and a way to later execute whatever was detected.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.