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

Application Practice from App Exchange
Hi,
I am implementing SurveyForce App from Exchange.When i tried to create ViewShareSurveyComponent i am getting the following Error :-
Error: Compile Error: Invalid external string name: email_link_w_contact_merge at line 66 column 64
Part of the Code in which i am getting Error :-
public viewShareSurveyComponentController()
{
urlType = new List<SelectOption>();
urlType.add(new SelectOption('Email Link w/ Contact Merge',System.Label.LABS_SF_Email_Link_w_Contact_Merge));
urlType.add(new SelectOption('Email Link w/ Contact & Case Merge',System.Label.LABS_SF_Email_Link_w_Contact_Case_Merge));
urlType.add(new SelectOption('Email Link, Anonymous',System.Label.LABS_SF_Email_Link_Anonymous));
urlType.add(new SelectOption('Chatter',System.Label.LABS_SF_Chatter));
selectedURLType = 'Chatter';
setupPOD();
setupSitesPicklist();
siteInfo = Site.getDomain();
init();
}
All Answers
Hi,
Thanks So much,created Custom Labels and now the Issue is solved...:)