Reply
Newbie
seo.cc
Posts: 1

SalesForce cid codes for URLs

Hi,

Where in SalesForce can we locate campaign CIDs, similar to:
?cid=701600000009eU2
To identify marketing campaigns.

Thanks,

Zach
Super Contributor
Stevemo
Posts: 3,210

Re: SalesForce cid codes for URLs

[ Edited ]
Record ID's are not visible through the UI, you can only see them in Reports.  If you need to display a Record ID through the UI you need to create a custom formula field.


Code:
DataType(Text)

Formula =  Id  

 



Message Edited by Stevemo on 01-16-2009 03:27 PM
"If you're in a band and you think that you're good, you probably suck. If you're in a band and you think that you suck, you probably do." - Bob Pollard
Super Contributor
werewolf
Posts: 3,520

Re: SalesForce cid codes for URLs

That's not entirely true.  The record ID of a given record is always visible in the URL.  Say you're looking at a campaign and its URL is:

https://na1.salesforce.com/701300000008u2P

Then you know that its ID (and therefore its cid param) is going to be 701300000008u2P.

But yes, if you want to actually view it on the page as if it were a record field, then you'll need a formula field as Stevemo suggests.