Using the Who Launched property in the App Open Widget on opened screen

I have a layer on Supplier Price List Entry where I have added a button to that uses the App Open widget to open a layer on UD07Entry. The UD07 layer is also accessible from the menu.

When opening the layer from the Supplier Price List layer, I need the UD07 layer to go straight to the Details page with the New button clicked. Can this be accomplished by filling out the Who Launched property in the App Open widget? I have the value filled out, but I don’t know how to have the UD07 layer receive it and act on it?

2 Likes

You want to pass a ValueIn in your app-open widget, set some field(s) to some value(s), like { "page": "Details" } then in your receiving layer, you need to add a handling event that occurs in the Form_OnLoad chain of events (probably at the end) to change page to the page coming from ValueIn.

There are some examples of how to do this if you search for valuein, etc.

2 Likes