You need to sign in to do that
Don't have an account?

Display Campaigns on Customer Portal
I Written Controller for getting campaigns based on login user, am getting the list of values but am unable to view the details in vfpage in customer portal.
Can any one help me please
Can any one help me please
Please post your complete problem, if you looking for a workaround.
these campaigns should display in customer portal user Home page.
We need to grab all the information from Campaign and CampaignMember object in custom object- Campaign Management and make this custom object to available in customer portal as following-
2. create a lookup on Campaign object--say CampaignLookup
3. Create a lookup on Campaigmemember object-- say CampaignMemeberLookup
4. Create two set of fields as following-
CampaignStatus = CampaignLookup__r.Status (formula field)
CampaignType = CampaignLookup__r.Type (formula field)
you can add other field as well to get information from Campaign.
CampaignId = CCampaignMemeberLookup__r.Id (formula field)
MemeberStatus = CampaignMemeberLookup__r.Status (formula field)
** add another fields as well.
Note that if you hit limit of maximum formulas field then make these field of type other than formula and populate them by workflow or trigger.
Please mark this asnswer as best if it helps you.
Thnaks!!
can you elaborate about this