function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
tkline1tkline1 

Custom link problem

 

Hey everyone,

 

In my organization our marketing team utilizes the Campaign object a lot.  I’m trying to create a custom link that will take them to a campaign member report- but that will automatically pull in information based upon the campaign that they were in. 

 

https://na4.salesforce. com /00O60000002RXXb?pr0= {!Campaign.Name}

 

 

 

The link takes them to the report, but unfortunately it doesn’t dynamically pull the Campaign, and they have to use a lookup to select the appropriate one.   Does anybody have any idea what I’m doing wrong?

 

Thanks!!

-Tom

Best Answer chosen by Admin (Salesforce Developers) 
Steve :-/Steve :-/

Here's one I use that work with no problems

 

/00O?returl=%2F00O&rt=5&c=CAN&c=MEMBER_TYPE&c=MEMBER_STATUS&c=FIRST_NAME&c=LAST_NAME&c=TITLE&c=COMPANY&c=PHONE&c=EMAIL&details=yes&break0=CAN&scopeid_lkid={!Campaign_ID}&scope=one&scopeid={!Campaign_Name}

 

 

All Answers

Steve :-/Steve :-/

Here's one I use that work with no problems

 

/00O?returl=%2F00O&rt=5&c=CAN&c=MEMBER_TYPE&c=MEMBER_STATUS&c=FIRST_NAME&c=LAST_NAME&c=TITLE&c=COMPANY&c=PHONE&c=EMAIL&details=yes&break0=CAN&scopeid_lkid={!Campaign_ID}&scope=one&scopeid={!Campaign_Name}

 

 

This was selected as the best answer
Steve :-/Steve :-/

You might want to try this one too

 

https://na4.salesforce. com /00O60000002RXXb?scope=1&scopeid={!Campaign_Name}  

 

 

tkline1tkline1

Thank you so much, the first link you showed worked.  I greatly appreciate it!