• Debbie Schultz
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
For details, go to www.bridgepointconsulting.com/jobs/careers-bridgepoint/

DESCRIPTION:  Bridgepoint Consulting is currently seeking a SalesForce (SF) Developer to participate in growing and developing our SalesForce Consulting practice. The SF Developer will be responsible for leading complex SalesForce implementations, optimizations and integrations, including managing project teams and milestones and ensuring client satisfaction. The successful candidate must have a passion for helping small and mid-sized businesses find creative ways to use SalesForce to more effectively run their businesses.

RESPONSIBILITIES (excerpt):
  • Project management, business analysis, and technical architecture
  • Implementation of Salesforce and/or reconfiguration to meet new needs of clients
  • Documentation for ongoing client reference
  • Training
REQUIREMENTS (excerpt):
  • Development experience in Apex, Visualforce, Force.com, SOQL, and Javascript, including object-oriented programming; some experience with Lightning
  • SalesForce Platform Developer or Force.com Developer certification
  • Experience designing and implementing SalesForce-enabled business solutions in client-facing and team leadership roles (e.g. technical lead, functional lead, workstream lead, project manager) for at least 4 projects
  • Experience in change management and business process analysis
  • Bachelor's Degree in Engineering, Information Systems, Business or other related disciplines
Please contact Debbie Schultz at dschultz@bridgepointconsulting.com, or apply online at the link above.
In this challenge you will build a custom schema to track campsite data. In order to do this, you need to create the ability for many users to reserve many campsites. This will require a many-to-many relationship between the campsite, the users and the reservations.Create an object with 'Campsite' as the Label and Object Name. The object must have the resulting API name of 'Campsite__c'.
The Name field for Campsite must be a Text type (not Auto Number).
Add a custom field to Campsite with the type 'Text Area (Long)' with the field name and label of 'Description'. The resulting API name should be 'Description__c'. The field should have the default character length of 32,768.
Create an object with the Label 'Campsite Reservation' and Object Name of 'Campsite_Reservation'. The resulting API name should be 'Campsite_Reservation__c'.
The Name field for Campsite Reservation must be a 'Auto Number' type (not Text). Use 'CR-{0000}' as the display format for the Name field and a starting number of 1.
Add a custom field to Campsite Reservation with the type 'Lookup' related to the 'User' object with the field name and label of 'User' and Child Relationship Name of 'Campsite_Reservations'. The resulting API name should be 'User__c'.
Add a custom field to Campsite Reservation with the type 'Date' with the field label 'Start Date' and name of 'Start_Date'. The resulting API name should be 'Start_Date__c'.
Add a custom field to Campsite Reservation with the type 'Date' with the field label 'End Date' and name of 'End_Date'. The resulting API name should be 'End_Date__c'.
Add a custom field to Campsite Reservation with the type 'Master-Detail' related to the 'Campsite' object with the field name and label of 'Campsite' and Child Relationship Name of 'Campsite_Reservations'. The resulting API name should be 'Campsite__c'.


i have created required field for Campsite__c object, is there something wrong?campsite object