• KKBandi1
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hi ,
I have a requirement where in I have to put a link in the email sent to Lead after the web to lead creation. I need to add the Id of freshly created Lead to the link inside the email body sent to that particular lead.
When I try using Lead auto response rule, data in merge fields are not displayed. but, when I check it using " Send test and Verify Merge fields" button I can see the data.

VF TEMPLATE:
<messaging:emailTemplate subject="Invitation" recipientType="Lead" relatedToType="Lead">
 <messaging:htmlEmailBody > Congratulations! This is your new Visualforce Email Template.
{!relatedTo.Id}
 </messaging:htmlEmailBody>
 </messaging:emailTemplate>


Am I missing something? As per my understanding, this should work.

PS: The same template if used in the workflow is working fine. I need to utilize the Assignment rules that's the reason I am not going with Workflow rule.
Any Help is appreciated! thanks

Hi , 

I have a requirement where in I need to bring the reviews from Google Play store and Apple AppStore to Salesforce .

I need to get the reviews and comments from both the AppStore and playstore related to some own  app into the salesforce .  

Is there any way to do that ? Is it even possible? 

Hi , 

I hope this is the correct place to ask the question. when a global action lauches a VF page ( using salesforce navigation)  sforce.one.createRecord("CUSTOM OBJECT")  , a popup appears with create record layout of the specified custom object.
But it shows white blank page sometimes on Ipad ? It works fine in Desktop.
Any suggestions on how to observe these intermittent issues ? 
I know there is a OOB salesforce solution create record using global action. But , my aim is to redirect user to record detail page after creating record. 


Thanks 

Hi , 

I have a requirement where in I need to bring the reviews from Google Play store and Apple AppStore to Salesforce .

I need to get the reviews and comments from both the AppStore and playstore related to some own  app into the salesforce .  

Is there any way to do that ? Is it even possible? 

Hi guys,

I am trying to override the custom Accounts tab with a VF page. (see code below)

But when I go the override properties for the accounts tab, I cannot select my VF page as it does not appear in the list.

I know the standard controller needs to be included, which it is, but it is still not working.

Could anybody provide help on this?

Thanks

<apex:page standardController="Account" showHeader="true"
             tabStyle="account" >
     <apex:tabPanel switchType="client"
                    selectedTab="tabdetails"
                    id="AccountTabPanel">
        <apex:tab label="Details" name="AccDetails"
                  id="tabdetails">
           <apex:detail relatedList="false" title="true"/>
        </apex:tab>
        <apex:tab label="Contacts" name="Contacts"
                  id="tabContact">
           <apex:relatedList subject="{!account}"
                             list="contacts" />
        </apex:tab>
        <apex:tab label="Opportunities" name="Opportunities"
                  id="tabOpp">
           <apex:relatedList subject="{!account}"
                             list="opportunities" />
        </apex:tab>
        <apex:tab label="Open Activities" name="OpenActivities"
                  id="tabOpenAct">
           <apex:relatedList subject="{!account}"
                             list="OpenActivities" />
        </apex:tab>
        <apex:tab label="Notes and Attachments"
                  name="NotesAndAttachments"
                 id="tabNoteAtt">
           <apex:relatedList subject="{!account}"
                             list="NotesAndAttachments" />
        </apex:tab>
     </apex:tabPanel>
  </apex:page>