• Pervaz Allaudin
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 7
    Replies
I had finihed Beginer Admin and then Developer a couple days back.
Now they are showinng incomplete with 3 and 5 hours of projects.

When did the criterea change,
Can they do this?

Is there anybody I can apeal this to?

Pervaz Allaudin
I am doing thhe Trailhead excerize of process automation annd I get the 
System.ListException: List index out of bounds: 0
It does not say how annd where.

I redid the the one picklist - Type. and the Field update functions and all the places where the pcklist values are referenced.
But I am still getting the error.

I have not learned the debug mode and not in the visual force language yet.

Could someone please direct me to solve the issue.

Thanks in advance.
Pevaz 
I had finihed Beginer Admin and then Developer a couple days back.
Now they are showinng incomplete with 3 and 5 hours of projects.

When did the criterea change,
Can they do this?

Is there anybody I can apeal this to?

Pervaz Allaudin
How do I deactivate a domain name?  While following a Trailhead, I created a devolper account and then followed the instructions for "my domain" and that changed the domain in my Salesforce instance.  
I had finihed Beginer Admin and then Developer a couple days back.
Now they are showinng incomplete with 3 and 5 hours of projects.

When did the criterea change,
Can they do this?

Is there anybody I can apeal this to?

Pervaz Allaudin
hi all,I  need some help with  the trailhead challenges. I have started Salesforce on the 1st of Feb and I am struggling with the badges. is there someone who can support me with this or are there video's with guidelines where you can go through the challenges?
I'm working on the Challenge for Writing SOQL Queries.
I'm working on I'm very confused about field names in objects such Contact.  I typed the LastName and MailingPostalCode field names in like a monkey, then thought... wait...

When I look at Contacts, I don't see those field names.  When I opened up Customize/Contacts/Fields, I don't see them.  I did a google search for "salesforce MailingPostalCode" and found a document that mentions "Last Name" and "Mailing Zip/Postal Code", but nothing like MailingPostalCode.

Where did I miss this?

Thanks,  Bob
Trying to complete this challenge.  Recieve the following error message.  Need help resolving:

"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's my code for 'AccountList.vfp':

<apex:page standardController="Account" recordSetVar="accounts">
    <table border="1" >
  
        <apex:repeat var="a" value="{!Account}">
            <li>
                <apex:outputLink value="/<record id>">
                    Record
                </apex:outputLink>
            </li>
        </apex:repeat>
            
    </table>
</apex:page>