• Shubh2910
  • NEWBIE
  • 20 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 3
    Replies
Challenge Not yet complete... here's what's wrong: 
There was an unexpected error while verifying this challenge. Usually this is due to some pre-existing configuration or code in the challenge Org. We recommend using a new Developer Edition (DE) to check this challenge. If you're using a new DE and seeing this error, please post to the developer forums and reference error id: GGBYEMVB
Let suppose I created one dashboard  from Dashboard tab and now I want to use that dashboard in my vf Page. Can we do this?
Hi All,

I am trying to show the user Profile Picture of Salesforce in Visualforce email template by using <apex:image url="{!relatedTo.LastModifiedBy.smallphotourl} /> . But when I send email then in place of Image I see  'X' in vf Template.

Then I took help of below link :
https://help.salesforce.com/HTViewSolution?id=000003730&language=en_US

So according to this link it is not possible. But is it possible to show that images with a programatically approach ?
 
I created a test class for Visualforce page controller. In controller there is a method "send()". In send() I am calling a method of managed package class which contains the logic for web service callout.
But when I am creating a mock in my test class then I am getting the below error :

Error: Compile Error: Type is not visible: signaturepackageservicemock at line 110 column 52

signaturepackageservicemock is class name in Managed Package.
Let suppose I am getting a record in SObject type List. Now I want to create a Map dynamically. If Record are Opportunity Type then Map get created of Type Map<Id, Opportunity> , if Record are type of Account then map get created of type  Map<Id, Account>.
Similary if record are of any type then Map get created for that type of Object.
Hi All,

I am trying to show the user Profile Picture of Salesforce in Visualforce email template by using <apex:image url="{!relatedTo.LastModifiedBy.smallphotourl} /> . But when I send email then in place of Image I see  'X' in vf Template.

Then I took help of below link :
https://help.salesforce.com/HTViewSolution?id=000003730&language=en_US

So according to this link it is not possible. But is it possible to show that images with a programatically approach ?
 
I created a test class for Visualforce page controller. In controller there is a method "send()". In send() I am calling a method of managed package class which contains the logic for web service callout.
But when I am creating a mock in my test class then I am getting the below error :

Error: Compile Error: Type is not visible: signaturepackageservicemock at line 110 column 52

signaturepackageservicemock is class name in Managed Package.
Let suppose I am getting a record in SObject type List. Now I want to create a Map dynamically. If Record are Opportunity Type then Map get created of Type Map<Id, Opportunity> , if Record are type of Account then map get created of type  Map<Id, Account>.
Similary if record are of any type then Map get created for that type of Object.