Displaying related records on different forms

Hi,
I need to display a record from the same table on 2 different forms with the useSeparateFoundset option enabled on each form. Is this possible ?? if so I would really appreciate some help please. I have tried the following

//self relation in the company file
controller.loadRecords(company_to_company);
forms.account_data_entry.controller.show()

I need to use different found sets in each form, because I am using a

addFoundSetFilterParam on each form so to only display particular records.

You can do forms.form2.controller.loadRecords(forms.form1.foundset);

That’s all…

Many Thanks for the reply.

I assume you know that you can combine loadRecords(…) and show() into one convenient showRecords(…) method…