• DevTeam Dream
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi all, I try to do the tutorials and in the challenge of "Using simple variables and formulas"have this error:

Challenge not yet complete... here's what's wrong:
The Visualforce page did not fit the criteria. The first name of the logged in user was not output using dynamic global variables.

but my code is:
 

<apex:page sidebar="false">
    
    <apex:pageBlock title="User Status">
        <apex:pageBlockSection columns="1">
        	
            {! $User.FirstName }
            
        </apex:pageBlockSection>
    </apex:pageBlock>
    
</apex:page>
If you can see I'm using the global variable $User and I don't see where is my error. Thanks