Dec 18, 2023 10:29 AM
I have a series of Interfaces that all start with the same record picker. I'd like to pick the appropriate record in the record picker of the first interface and then pass the value I've selected in the record picker to the remaining interfaces so that I don't have to pick it at the start of every interface. Is there a way to do that?
Solved! Go to Solution.
Dec 18, 2023 03:57 PM - edited Dec 18, 2023 03:59 PM
You can use a button field to do this. Use a formula that opens the url for the record in the other interface page. You can see the structure of the url in when you open the interface page in a web browser. You will need to hardcode the base ID, interface page ID, and record picker ID. You can get the record ID with the RECORD_ID() formula function. You will need a new button field for each interface page. Place the button field on the interface page and enjoy jumping between different pages for the same record.
I use a similar technique to jump between pages for linked records when I want more than what a side-sheet can do (or when I don’t want to maintain both the main page and the side-sheet page.)
Dec 18, 2023 02:48 PM
Hey @Trheiman!
Unfortunately, you are not able to create or define persistent, global settings or variables between Interfaces.
If you find yourself jumping frequently between multiple Interfaces built on top of the same base, I might recommend consolidating your fractured Interfaces into a single Interface.
Doing this will allow you to leverage page layouts to create a more uniform, succinct application and allow you to streamline your experience within Interfaces.
Dec 18, 2023 03:57 PM - edited Dec 18, 2023 03:59 PM
You can use a button field to do this. Use a formula that opens the url for the record in the other interface page. You can see the structure of the url in when you open the interface page in a web browser. You will need to hardcode the base ID, interface page ID, and record picker ID. You can get the record ID with the RECORD_ID() formula function. You will need a new button field for each interface page. Place the button field on the interface page and enjoy jumping between different pages for the same record.
I use a similar technique to jump between pages for linked records when I want more than what a side-sheet can do (or when I don’t want to maintain both the main page and the side-sheet page.)
Dec 19, 2023 08:51 AM
Thank you very much kuovonne! I appreciate it. I will give this a try over the holidays when I have a few minutes. Watching the grandchild today.
Dec 26, 2023 03:02 PM
Hi kuovonne. Thank you for the solution to my question. I just had a chance to try it out and it works great! I appreciate it.
Mar 19, 2024 01:43 PM
Can you clarify what "hardcode" the IDs means?