Skip to main content
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 ? 
1 件の回答
  1. 2018年11月27日 6:24
    Hi Manish,

    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
0/9000