Download page Add View Redlines Button to Standard or Custom Objects.
Add View Redlines Button to Standard or Custom Objects
Contracts for Salesforce functionality can be used on objects other than Contracts. To do so, you need to add Contracts for Salesforce buttons to those objects.
Click the appropriate object, for example, Opportunities.
ClickButtons, Links, and Actions.
ClickNew Button or Link.
Add the following information:
Label = View Redlines
Name = default from Label
Display Type = Detail Page button
Behavior = Display in existing window without sidebar or header
Content Source = URL
Formula ={!URLFOR( $Action.Contract.APXT_Redlining__View_Redlines, null, [altId=THISOBJECT.Id], false)} thisObject.Id - is Id of the object to which you want to add the button (such as Account.ID - see example below) The standardView Redlinesbutton on an Account would look like this: {!URLFOR($Action.Contract.APXT_Redlining__View_Redlines, null, [altId=Account.Id], false)} The customizableView Redlinesbutton on an Account would look like this, where the Save PDF button is disabled in the View Redlines interface: {!URLFOR($Action.Contract.APXT_Redlining__View_Redlines, null, [altId=Account.Id, disableOpenInWord=false, disableNegotiate=false, disableTrueUp=false, disableSavePDF=true], false)}