Behaviour actions linktoview function

Hi,

I have a problem which I want my apps to view another table with certain condition(unique id same as another table id column)

Here is what I used

LINKTOVIEW(“Work Order_Detail”,“UniqueID”=[Ref WO ID])

I am able to save it however when I try clicking on the button it does not work.

Do you guys know what is wrong?

You should instead use LINKTOROW(), not LINKTOVIEW()

Here is the screenshot

it does not show anything.
LINKTOROW(“Work Order_Detail”,“UniqueID”=[Ref WO ID])

The Work Order_Detail is supposed to be the landed page but when I press the button it goes to N page which is non existent.

Please read the function’s documentation. It should be:

LINKTOROW([Ref WO ID], “Work Order_Detail”)

2 Likes

This works wonders for me. Thanks!