• Lisa Kitto 7
  • NEWBIE
  • 15 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
I figured this has to be some field level security or something.  Every other $User attribute shows except for Phone.

{! $User.FirstName} {!$User.LastName}<br/>
{! $User.Title}<br/>
{!$User.Phone} {! $User.Email}<br/>

This did not prevent passing the Implementing Global Actions challenge but I would like to know how to fix it.
I keep getting errors related to this challenge.  It wants you to use the apex:repeat component but that does not produce an <li> HTML tag.  So I used dataList which does, but then it says that is not a apex:reat component.  SO I used both and now it says the <li> tag is not being used but when I inspect element I can see it there.  What's the deal?

<apex:page standardController="Account" recordSetVar="accounts">

        <apex:pageBlock title="Accounts">
            <apex:dataList value="{!accounts}" var="a">        
                <apex:outputLink title="Account links" value="https://na31.salesforce.com/{!a.id}">
                    <apex:outputText value="{!a.Name}"/> <br/>
                    <apex:repeat value="{!a.contacts}" var="c">
                        {!c.FirstName}
                    </apex:repeat>
                </apex:outputLink>

            </apex:dataList>
        </apex:pageBlock>

</apex:page>
I keep getting errors related to this challenge.  It wants you to use the apex:repeat component but that does not produce an <li> HTML tag.  So I used dataList which does, but then it says that is not a apex:reat component.  SO I used both and now it says the <li> tag is not being used but when I inspect element I can see it there.  What's the deal?

<apex:page standardController="Account" recordSetVar="accounts">

        <apex:pageBlock title="Accounts">
            <apex:dataList value="{!accounts}" var="a">        
                <apex:outputLink title="Account links" value="https://na31.salesforce.com/{!a.id}">
                    <apex:outputText value="{!a.Name}"/> <br/>
                    <apex:repeat value="{!a.contacts}" var="c">
                        {!c.FirstName}
                    </apex:repeat>
                </apex:outputLink>

            </apex:dataList>
        </apex:pageBlock>

</apex:page>
In flow design pilot I need to concatenate a Custom City, Custom State Custom Zip and Custom County into a custom field.  It would be formula like:
City__c & ", " & State__c & " " &  Zip_Code__c & " " &   County__c