Skip to main content
Martin Krchnak (Blinker) 님이 #Data Management에 질문했습니다
I have a requirement to have Back

 button, which should navigate to the related record. Basically, it works like lookup field but has custom text. The problem is that it always open in new tab, even when I set the Behavior to Display in existing window. I used this formula on the link:

one.app#/sObject/{!Object_A__c.Related_Object_ID__c}/view

Any suggestions how can I open this in the same tab, ideally without refreshing whole page?

 

 
답변 3개
  1. 2017년 10월 17일 오후 12:47
    You can use the HYPERLINK() function in a formula text field to build a 'clickable' field on the UI.

     

    HYPERLINK('/' + theRelated__r.Id, theRelated__r.ZipCode__c  ' ' + theRelated__r.Hobby__c , 'clickhere')
0/9000