You need to sign in to do that
Don't have an account?
Manish Anand 22
Create a hyperlink/link/button to link to unrelated record
Create a hyperlink/link/button on an object 'Proposal' to link it to a custom object 'Credit'. Both the objects are child to Account. How this can be achieved ?
If you are using triggers in the above requirement, just extend the trigger to populate the Salesforce Id for the active record into a new lookup field, on the Account, to Credit. Call that field Active_Credit__c.
Then, your declarative functionality can reference the field on the Account. You can, for example, create a Custom Link with the value
/{!Account.Active_Credit__c}
You could likewise build a HYPERLINK() formula field using the same type of reference.
Thanks,
Nagendra