• Anshuta Awasthi 7
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi all,
What is the best and fastest way to know all the places where a field is being used:
-Workflows
-Apex classes/Methods
-Validation Rules
Here is my code for a challenge .
<apex:page standardController="Account" recordsetVar="accounts">
    <apex:pageBlock title="Account List">
          
            <apex:repeat value="{!accounts}" var="a">
<li> 
    <apex:outputLink value="https://ap2.salesforce.com/{!a.ID}"> {!a.ID} </apex:outputLink>
    
                </li>         
                
            </apex:repeat>
   </apex:pageBlock>
</apex:page>
I am getting perfect output but when i click on check challenge button. I get the below error in trailhead:

Challenge Not yet complete... here's what's wrong: 
The page does not bind to the record ID value (in order to link to the record detail page)
Here is my code for a challenge .
<apex:page standardController="Account" recordsetVar="accounts">
    <apex:pageBlock title="Account List">
          
            <apex:repeat value="{!accounts}" var="a">
<li> 
    <apex:outputLink value="https://ap2.salesforce.com/{!a.ID}"> {!a.ID} </apex:outputLink>
    
                </li>         
                
            </apex:repeat>
   </apex:pageBlock>
</apex:page>
I am getting perfect output but when i click on check challenge button. I get the below error in trailhead:

Challenge Not yet complete... here's what's wrong: 
The page does not bind to the record ID value (in order to link to the record detail page)
Hi Folks

I cleared  platform-1 developer certification.


Thanks 
Raj