• Mathew Thomas 40
  • NEWBIE
  • 195 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 71
    Replies
I've completed superbedges on trailhead.
Want to appear for MCQ exam.
If you have any relevant study material / sample questions/ Dumps please let me know.

Thaks in Advance!
I am asking for help, please avoid business / Trading of dumps here.
"Your Apex code contains field level access checks that are redundant now that you've added 'WITH SECURITY_ENFORCED'. Please check your code again."

Code is:-

@RestResource(urlMapping='/secureApexRest')
global with sharing class SecureApexRest {
    @HttpGet
    global static Contact doGet(){
        Id recordId = RestContext.request.params.get('id');
        Contact result;
        if (recordId == null){
            throw new FunctionalException('Id parameter is required');
        }
        if (Schema.SObjectType.Contact.isAccessible()
            && Schema.SObjectType.Contact.fields.Name.isAccessible()
            && Schema.SObjectType.Contact.fields.Secret_Key__c.isAccessible()){
            List<Contact> results = [SELECT id FROM Contact WHERE Id = :recordId WITH SECURITY_ENFORCED];
            if (!results.isEmpty()) {
                result = results[0];
            }
        } else{
            throw new SecurityException('You don\'t have access to all contact fields required to use this API');
        }
        return result;
    }
    public class FunctionalException extends Exception{}
    public class SecurityException extends Exception{}
}

Kindly suggest me what exactly I need to change in the code.
Thanks inadvance.
Did not seem difficult at all, however got 18% and failed on it after a month of learning on trailhead getting up to 75 badges and 1 superbadge before taking the exam.
Things I noticed, before I took exam I watched https://www.youtube.com/watch?v=lIZk8cKOFHk&t=6613s the person teaching is teaching in classic while a lot of trailhead is in lightning. He did help me visualize a  few questions on the test I would've had no clue on.
Things I would recommend studying is going to every profiles, user, permission sets, validation rule, object and flow and look at what you can and cannot do, and the default settings.
In object such and such pick 2 of 4 things you can do. In this thing what is true?

I'm thinking about retaking it in a week, its a good test, just wasnt ready for that. Thought it would be more scenarios rather than 'what are your options, what is default settings, what went wrong, what things could have not been done right'. It will get you if you are a second guesser or overthinker because you have a lot of options, a lot of questions I noticed you have to pick 2 out of 4 choices, meaning 2 times to second guess yourself in 1 question.

Definitely not easy, but felt like I was closer to passing score of 65% or around there, I felt like I had small chance to pass before hitting the submit answers. I had feeling I did have a feeling I wasn't going to pass before I started the exam but I took it anyways because I kept seeing the message "FAILURE IS AN OPTION". So I'm not too upset I failed, but disappointed. 

I'd say my reason for failure was that I was having too much fun in trailhead rather than specifically studying for subjects relating to ADMIN exam. I had over 35 minutes left after answering questions and went back to check answers too for 20 minutes, which I felt good with, but all in all, 18%.

My 2 cents. Good luck to anyone taking it, also look at the flashcards, I didn't look at them but now thinking I would've passed it if I did http://www.sfdc99.com/2014/10/02/guide-to-passing-all-salesforce-certifications/

 
  • May 11, 2018
  • Like
  • 1
Hello,

I have complete both requirements of PD 2 certificate, MCQ and Trailhead Badges. I have also linked my Webassessor account with trailhead account. It has been almost one week and I am still waiting for my certificate. I have raised mutiple cases for this but no response. My questions are :

1) Is it common for certificate to arrive late or is it just my case, please let me if anyone of you faced similar situation.
2) Is there any way to reach certificate team apart from guided help on the website.

Also any guess why does it take so long to award this certificate, once you have completed all the requirements. For example in case of proctored exam the certificate is awarded immediately. 

Best Regards,
Rahul
Just failed my Admin 201 test. I'm so angry and frustrated. I took a ton of practice tests and did well on them. The actual test was nothing like the practice test. The actual test was ridiculously vague.  Anyway, does anyone know where I can find practice tests that are actually up-to-date? Any suggestions on how to study that doesn't cost a billion dollars? I'm just super frustrated and angry right now. Thanks for the help. 
Hi All,

I am having small confusion.Is dev-401 exam known as Platform dev-1 or is it different.

Thanks,
Deepak.
Hi All

I am planning to appear for Salesforce Certified Platform Developer I. Not really getting any sample questions or mock questions online.

Appreciate if anybody has any pointers to that!

Thanks In Advance
Priya
Hello All  ,

I am preparing for Salesforce 201 certification .Please help me in finding appropraite material for the certification .

Thanks
Pooja Upadhyaya
Hello all,

Thanks for looking at my question. I am new to SF and am trying to get certified in ADM 201 and DEV 401.

This question goes out to all certified developers and admins with the above completed, recently would be great.

Was looking at the following link:
http://forcecertified.com/2009/08/14/recorded-sessions-of-dev-401-dev-501-salesforce-training-available-online-for-free/
and am very disapponted. Questions seem to be so specific that nothing my trainer taught me applies.

Want to know the following:
1. Is that exam realistic?
2. What is the best guide to study for the exam ... any suggestion/s are appreciated.
3. Length of time I can expect it will take to complete the same.

I looked at the questions posted previously by other users. Most of links in those replies are not active any more.
Thus I am choosing to post this again.

Thanks for your help,
Murali.