• Jainendra Jeet 6
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 3
    Replies
Hi,  On Salesforce certification web site i found below content what it exactly means ?Does the the certification pattern changed ?

The Salesforce Certified Force.com Developer exam is for individuals who want to demonstrate their knowledge, skills, and abilities building custom applications and analytics using the declarative capabilities of the Force.com platform. Here are examples of the concepts you should understand to pass the exam:

Build custom applications using the point-and-click capabilities of the platform
Design the data model, user interface, business logic, and security for custom applications
Design reports, dashboards, and portals

Please note: Effective September 14, 2015, we will no longer be offering this credential to new applicants. Existing Salesforce Certified Force.com Developers will continue to be recognized in the Salesforce Certification program and can maintain their credentials. We recommend for individuals interested in this credential to consider pursuing the Salesforce Certified App Builder and/or Salesforce Certified Platform Developer I credentials.
Hi Cany one pls confirm that is there any type of  Salesforce jobs for a MBA Marketing student  ?
I was trying to input record in my custom object's custom field
Custom Object Merchandise (API Merchandise__c)
Custom Field(API i guess will be Price__c)
VF page :
<apex:page controller="InsertMerchandise">
  <apex:form >
 <apex:inputtext value="{!Name}"/> 
 <apex:inputtext value="{!mer.Price__c}"/>  
  <apex:commandButton id="Save" value="Save" action="{!Save}"/>
  </apex:form>
</apex:page><apex:page controller="InsertMerchandise">
  <apex:form >
 <apex:inputtext value="{!Name}"/> 
 <apex:inputtext value="{!mer.Price__c}"/> 
  <apex:commandButton id="Save" value="Save" action="{!Save}"/>
   </apex:form></apex:page>

Controller :
public class InsertMerchandise {
public Merchandise__c mer { get; set; }
    public Merchandise__c Price__c {get;set;}
//private Apexpages.StandardController controller; 
    public String Name { get; set; }
    public void Save() {
    mer = new Merchandise__c();
     mer.Name = Name;// 'test_p';
    mer.Price__c = Price__c;
 insert mer;}}
But its giving error . Can you please suggest I was trying to input record in my custom object's custom field
Custom Object Merchandise (API Merchandise__c)
Custom Field(API i guess will be Price__c)
VF page :
<apex:page controller="InsertMerchandise">
  <apex:form >
 <apex:inputtext value="{!Name}"/> 
 <apex:inputtext value="{!mer.Price__c}"/>  
  <apex:commandButton id="Save" value="Save" action="{!Save}"/>
  </apex:form>
</apex:page><apex:page controller="InsertMerchandise">
  <apex:form >
 <apex:inputtext value="{!Name}"/> 
 <apex:inputtext value="{!mer.Price__c}"/> 
  <apex:commandButton id="Save" value="Save" action="{!Save}"/>
   </apex:form></apex:page>

Controller :
public class InsertMerchandise {
public Merchandise__c mer { get; set; }
    public Merchandise__c Price__c {get;set;}
//private Apexpages.StandardController controller; 
    public String Name { get; set; }
    public void Save() {
    mer = new Merchandise__c();
     mer.Name = Name;// 'test_p';
    mer.Price__c = Price__c;
 insert mer;}}
But its giving error . Can you please suggest 
Hi All,

I am a newbie to Salesforce .

I am trying to get input from user on Visualforce page for entering Custom object's records.

Custom Object : Merchandise_c
Apex :
<apex:page controller="Merchandise_Input" >
  <apex:form >
  <apex:inputText value="{!Name}" />
  <apex:commandButton value="save" action="{!save}"/>
  
  </apex:form>
</apex:page>
Controller
public with sharing class Merchandise_Input {
public String Name { get; set; }

    public void save() {
   //Merchandise_c Mer = new Merchandise_c();
    Merchandise_c.Name = 'Laptop';
       }}

Tried to get input on save button cant succeded so tried to hard code it .
Getting error :
Error: Merchandise_Input Compile Error: Variable does not exist: Merchandise_c.Name at line 6 column 5
Hi All,

I am a newbie to Salesforce .

I am trying to get input from user on Visualforce page for entering Custom object's records.

Custom Object : Merchandise_c
Apex :
<apex:page controller="Merchandise_Input" >
  <apex:form >
  <apex:inputText value="{!Name}" />
  <apex:commandButton value="save" action="{!save}"/>
  
  </apex:form>
</apex:page>
Controller
public with sharing class Merchandise_Input {
public String Name { get; set; }

    public void save() {
   //Merchandise_c Mer = new Merchandise_c();
    Merchandise_c.Name = 'Laptop';
       }}

Tried to get input on save button cant succeded so tried to hard code it .
Getting error :
Error: Merchandise_Input Compile Error: Variable does not exist: Merchandise_c.Name at line 6 column 5