• Praveen Shankar
  • NEWBIE
  • 8 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
Hi , 

I am salesforce learner and completed trailhead challenges at beginner and intermediate level for admin and devloper and scored 36000 ponits in trailhead.

I am not getting an oopourtunity in my company for SFDC projects thats why i am trying outside company with 10 months of experience including 4 month training in infosys.

Please friends i need your help onthis with some Live SFDC project client requierements implimented or customized by you and feasible to do Proof of concept in SFDC training portal which will boostmy knowledge as well i can be more confident on questinos asked .

Expecting at least 3 requierements implimented in SFDC system .

Please also give sujjestions for my interview to crack .

I will be highly obliged on your help .

Thanks
Praveen Shankar
+91-9941666696
HI , I have done online trainings and completed the salesforce admin and devloper challenges. Looking forward for the salesforce devloper certification . Please guide and help me on this to get certified . Please sahre brief details on the kinds of certifications and which certifications i should do or best suite now . Please also share some documents or dumps or links . 
Please also give some value tips oon this to clear the exam.

Thanks ,
Praveen 9941666696
HI , I have done online trainings and completed the salesforce admin and devloper challenges. Looking forward for the salesforce devloper certification . Please guide and help me on this to get certified . Please sahre brief details on the kinds of certifications and which certifications i should do or best suite now . Please also share some documents or dumps or links . 
Please also give some value tips oon this to clear the exam.

Thanks ,
Praveen 9941666696
HI , I have done online trainings and completed the salesforce admin and devloper challenges. Looking forward for the salesforce devloper certification . Please guide and help me on this to get certified . Please sahre brief details on the kinds of certifications and which certifications i should do or best suite now . Please also share some documents or dumps or links . 
Please also give some value tips oon this to clear the exam.

Thanks ,
Praveen 9941666696
Create an Apex class that returns a list of contacts based on two incoming parameters: one for the number of contacts to generate, and the other for the last name. The list should NOT be inserted into the system, only returned. The first name should be dynamically generated and should be unique for each contact record in the list.The Apex class must be called 'RandomContactFactory' and be in the public scope.
The Apex class should NOT use the @isTest annotation.
The Apex class must have a public static method called 'generateRandomContacts' (without the @testMethod annotation).
The 'generateRandomContacts' method must accept an integer as the first parameter, and a string as the second. The first parameter controls the number of contacts being generated, the second is the last name of the contacts generated.
The 'generateRandomContacts' method should have a return type of List<Contact>.
The 'generateRandomContacts' method must be capable of consistently generating contacts with unique first names.
For example, the 'generateRandomContacts' might return first names based on iterated number (i.e. 'Test 1','Test 2').
The 'generateRandomContacts' method should not insert the contact records into the database.

I create a class as bellow

public class RandomContactFactory{
   public static List<Contact> generateRandomContacts(integer n,string lastnames){

       list<contact> c= [select  FirstName from contact where LastName =: lastnames limit : n ];
       
       return c;
   }
   
}

but i'm getting error as below

Challenge not yet complete... here's what's wrong: 
Executing the 'generateRandomContacts' method failed. Either the method does not exist, is not static, or did not return the correct set of Contact records.

Please let me know where the issue?
Hello Community, 

Need some assistance with and error on a VisualSource Page Trailhead Challenge

Here is the Criteria:
Create a page which displays a subset of Opportunity fields using apex:outputField components. Bind the Name, Amount, Close Date and Account Name fields to the apex:outputField components.The page must be named 'OppView'.
It must reference the Opportunity standard controller.
It must have an apex:outputField component bound to the Opportunity Name.
It must have an apex:outputField component bound to the Opportunity Amount.
It must have an apex:outputField component bound to the Opportunity Close Date.
It must have an apex:outputField component bound to the Account Name of the Opportunity.

Here is the error I'm receiving
Challenge not yet complete... here's what's wrong: 
The page does not include a apex:outputField component bound to the opportunity name

Here is my code for the page:
<apex:page standardController="Opportunity" >
    
    <apex:pageBlock title="Opportunities">
        <apex:pageBlockSection>
        <apex:outputField value="{! Opportunity.Account.Name}"/>
        <apex:outputField value="{! Opportunity.Amount }"/>
        <apex:outputField value="{! Opportunity.CloseDate }"/>
        <apex:outputField value="{! Opportunity.Accountid }"/>
        
         </apex:pageBlockSection>
    </apex:pageBlock>
</apex:page>

Please Advise Community!!
Hi all, 
THis my code 
<apex:page standardController="Contact" >
<apex:pageBlock title="Contact View">

    <apex:pageBlockSection>
    First Name : {! Contact.FirstName } <br/>
    Last Name :  {! Contact.LastName } <br/>
    Email: {! Contact.Email } <br/>

    </apex:pageBlockSection>
       
    </apex:pageBlock>

</apex:page>

But keep getting this Error 
The page does not include a bound owner's email variable for the Contact record

I am not really sure what i am doing wrong