• Esther
  • NEWBIE
  • 5 Points
  • Member since 2022
  • Marketing Professional
  • arrify.com


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 74
    Replies
Hey guys.

Is this possible?

I understand the significance of converting the Lead record and how crucial the Account record is in the whole purpose for converting Lead records to begin with, but a structure that I am implementing has this requirement.

My solution would be to have a master Account record that would take the place of the created Account record (for the Opportunity and Contact's purposes) and delete the new Account record.

Checking with you guys to see if this is really necessary.

Also, as an aside, if I'm going to be overriding the standard lead conversion button, is there a more declarative approach than the creation of a Visualforce page, or Lightning Component to override?

Thanks in advance!
Hi,

There is web form created on Force.com. Any data that gets captured on the web form needs to move directly to SF appicaiton in an automated manner.
How to start with this ?

Reards,
Desai
  • April 26, 2019
  • Like
  • 0
No offshore work is permitted.  Candidates must have at least 5 years' Salesforce development experience, with at least 3 years' experience on Lightning. Candidates must be authorized to work for any US-based employer.  If you'd like to discuss this opportunity further, pls email or send resume: jdrescher@thecrevallegroup.com
Here is the code and a link to the page for my org.  https://bodydesignos.my.salesforce.com/01q50000000Gue5


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
trigger EventTrigger on Event (after insert, after update, after delete, before delete) 

    if((trigger.isUpdate||trigger.isInsert)&&trigger.isAfter) EventActions.SetAccountUsedSessions(trigger.new); 
    if((trigger.isDelete)&&trigger.isAfter) EventActions.SetAccountUsedSessions(trigger.old);
    
    Profile sysAdminProfile = [SELECT Id FROM Profile WHERE Name='Corporate' LIMIT 1]; 
    if(UserInfo.getProfileId()!=sysAdminProfile.Id)
    {
        if(trigger.isBefore && trigger.isDelete)
        {
            for(Event event : trigger.old)
            { 
                Datetime endDate = event.EndDateTime;
                if(event.RecurrenceEndDateOnly!=null) endDate = event.RecurrenceEndDateOnly;
                if(endDate != null && endDate.addHours(-5) < system.today().toStartOfWeek())
                {
                    event.addError('Events completed before this week cannot be deleted or edited.');
                }
            }
        }
        if(trigger.isAfter && trigger.isUpdate)
        {
            for(Event event : trigger.new)
            {
                Datetime endDate = trigger.oldMap.get(event.Id).EndDateTime;
                if(event.RecurrenceEndDateOnly!=null) endDate = event.RecurrenceEndDateOnly;
                if(endDate!=null && endDate.addHours(-5) < system.today().toStartOfWeek())
                {
                    event.addError('Events completed before this week cannot be deleted or edited.');
                }
            }
        }
    }
}
The code has stopped totallingall the used sessions (events lableled PT Session) in the field "Used Sessions" on account.



Please let me know if you can figure out why. It's working for some accounts but not all. I also need the "system admin" profile to be added on this line"

#6     Profile sysAdminProfile = [SELECT Id FROM Profile WHERE Name='Corporate' LIMIT 1]; 


Thanks for your help!
 

Bioquell Inc. is looking a Global CRM Specialist who will be responsible for the review, audit, and ongoing management of our Salesforce.com CRM in order to improve data management and provide decision support for the growth initiatives of the global commercial team. The ideal candidate is organized, flexible, and results-driven, and is eager to work among a motivated and growing team!

To learn more about this position and apply, visit the LinkedIn posting:
Horsham, PA
Chicago, IL

Hi,

I have written a HTML code for web-to-case form with 'RECAPTCHA' code but it is working when I'm trying to deploy it in website. Below is the code:

<apex:page>
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
<script src="https://www.google.com/recaptcha/api.js"></script>
<script>
 function timestamp() { var response = document.getElementById("g-recaptcha-response"); if (response == null || response.value.trim() == "") {var elems = JSON.parse(document.getElementsByName("captcha_settings")[0].value);elems["ts"] = JSON.stringify(new Date().getTime());document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } } setInterval(timestamp, 500); 
</script>
<script type="text/javascript">
function recaptcha_callback(){
$('.button').prop("disabled", false);
}
</script>


<form action="https://webto.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" method="POST">

<input type="hidden" name='captcha_settings' value='{"keyname":"captchacode","fallback":"true","orgId":"00D80000000PSJg","ts":""}'>
<input type="hidden" name="orgid" value="00D80000000PSJg">
<input type=hidden name="recordType" id="recordType" value="01234000000URAx">
<input type="hidden" name="retURL" value="http://www.roushcleantech.com/training_request_form_landing_page/">

<!--  ----------------------------------------------------------------------  -->
<!--  NOTE: These fields are optional debugging elements. Please uncomment    -->
<!--  these lines if you wish to test in debug mode.                          -->
<!--  <input type="hidden" name="debug" value=1>                              -->
<!--  <input type="hidden" name="debugEmail"                                  -->
<!--  value="pavani.akella@roush.com">                                        -->
<!--  ----------------------------------------------------------------------  -->

Your Name:<input  id="00N34000005gy3N" maxlength="30" name="00N34000005gy3N" size="20" type="text" required=true /><br>

Your Email:<input  id="00N34000005gy3S" maxlength="80" name="00N34000005gy3S" size="20" type="text" required=true /><br>

Your Phone:<input  id="00N34000005gy3X" maxlength="40" name="00N34000005gy3X" onkeydown="formatPhoneOnEnter(this, event);" size="20" type="text"required=true  /><br>

Service Center Requesting Training:<textarea  id="00N34000005gy3c" name="00N34000005gy3c" type="text" wrap="soft" required=true ></textarea><br>

Requested Training Location Address:<textarea  id="00N34000005gy3h" name="00N34000005gy3h" type="text" wrap="soft" required=true ></textarea><br>

City:<input  id="00N34000005gy3m" maxlength="20" name="00N34000005gy3m" size="20" type="text" required=true /><br>

State:<input  id="00N34000005gy3r" maxlength="20" name="00N34000005gy3r" size="20" type="text" required=true /><br>

Location Contact(if different):<input  id="00N34000005gy3w" maxlength="30" name="00N34000005gy3w" size="20" type="text" /><br>

Location Phone #:<input  id="00N34000005gy41" maxlength="40" name="00N34000005gy41" onkeydown="formatPhoneOnEnter(this, event);" size="20" type="text" /><br>

Approx No. of attendees:<input  id="00N34000005gy46" maxlength="20" name="00N34000005gy46" size="20" type="text" required=true /><br>

Product Focus for training:<select  id="00N34000005gy4B" name="00N34000005gy4B" title="Product Focus for training"><option value="" required=true >--None--</option><option value="Blue Bird Propane">Blue Bird Propane</option>
<option value="Blue Bird CNG">Blue Bird CNG</option>
<option value="Ford E-450">Ford E-450</option>
<option value="Ford F450/F-550">Ford F450/F-550</option>
<option value="Ford F-650/F-750">Ford F-650/F-750</option>
<option value="Ford F-53/F-59">Ford F-53/F-59</option>
</select><br>

Time Frame:<input  id="00N34000005gy4G" maxlength="30" name="00N34000005gy4G" size="20" type="text" required=true  /><br>

Comments:<textarea  id="00N34000005gy4L" name="00N34000005gy4L" type="text" wrap="soft"></textarea><br>

<input type="hidden"  id="external" name="external" value="1"/><br>

<div class="g-recaptcha" data-sitekey="6LfLGjUUAAAAAAPyqw7rghuHXYD3DggnQ2Mwz7z_" data-callback="recaptcha_callback"></div>

<input type="submit" name="submit"id="submitBtn" disabled="true" class="button">


</form>
</apex:page>
Thanks in advance for the help
Organization in downtown Chicago in need of basic setup of Salesforce for small sales function (3 users). Blocking and tackling simple archetciture, standard reports, and connector to Pardot. Would need to sign an NDA, but don't hesitate to ask any questions.
Ready to take the next step from Admin to Developer?  We are looking for a Jr. Salesforce Developer in Chicago IL.

https://www.ehs.com/2016/09/salesforce-com-developer-3/
Hello Ever one i want generate QR Code through apex And VF So can You plz give some code.


Thanks in Advance
I'm looking to hire 2 top performing AEs for our Chicago office. You would be the Sr. AE and in addition to selling SaaS services, you could build a sales methodology and develop internal processes! McNabb Technologies built an e-commerce marketing platform called TouchCR (http://touchcrsolutions.com/) to combine real-time analytics, email communication, journey builder, data management, graphs, reporting, and shopping cart capabilities. Salesforce took notice of the platform and it's capabilities and invited us to become an ISV partner. This job allows an employee to have the entire Salesforce community and an uncapped commission structures at your fingertips. Our TouchCR application brings Sales Cloud, Marketing Cloud, Service Cloud, and Wave Analytics into a single place (which no other product is capable of doing).

TouchCR is a native Salesforce enterprise B2B e-commerce marketing platform that was developed to acquire, monetize and retain customers. Our Partners at Salesforce encouraged us to offer TouchCR to the greater marketplace as a Salesforce ISV Partner, and are now supporting the marketplace launch of TouchCR.

Email me at sschaffer@touchcrsolutions.com to learn more!
MSDSonline is looking for a talented and eager person to become the newest member of our team.  You will join a Salesforce.com team that will mentor and train you while you work closely with the Manager of Salesforce.com Operations to help design, develop, and maintain complex applications that expand MSDSonline’s use of Salesforce.com.   

The MSDSonline work environment is dynamic, innovative and entrepreneurial.  We have a results-oriented culture that demands intelligence, teamwork and follow-through.  If you have these qualities then this is the job for you - check out the details below and apply now.

https://www.msdsonline.com/blog/careers/2016/01/20/salesforce.com-developer
Hi all,
I want to know what is web to lead? and how can i integrate this with my website.
please tell me what content should be prepair for this requirment.

Thanks in advance...
Calling all Developers!  I have a Salesforce Developer position with my consulting client in Downtown Chicago.  They were voted as one of the 20 Best Places to Work in 2014 by Crain's Chicago Business and have a fast growing Salesforce practice with a nice new location and office.  

I can only work with U.S. Citizens or Green Card Holders. 

Email me if you are interested: jtidei@talution.com.  This is an awesome opportunity to work for a great company on some really cool projects! 
Hi All ,
            I have a Requirement to Download the Visualforce Page as PDF When click on CommandButton


Here I have 2 - Visualforce Pages i have placed a Command Button in One of the Visualforce page when i click on this button the other visualforce page will Download as a PDF without pageredirection


Plese give me a Solution and Thanks in advance...
  • September 09, 2014
  • Like
  • 0

I'm hope to create a web from where clients can enter information...this info is then sent back to our org and populated w/in custom objects. Needs to be secured....Would Site.com or Force.com Sites do that? Very simaler to Web to Lead (BUT SECURED). I would Just Like to start off on the right foot! 

 

  • September 11, 2013
  • Like
  • 0

We are looking for a Salesforce Developer with experience in Ruby, Salesforce and PHP.

 

Responsibilities:

 

Align with business analyst to get an understanding of the process, requirements and data flows.

Design, code and implement solutions based on the user’s needs

Unit testing and quality assurance on deliverables

 

Requirements:

 

7+ years of experience with web based development with emphasis on integrations

3+ years of experience with enterprise level Salesforce integrations

Experience with Apex (Language, Trigger, Class and Web Service)

Experience with Visual Force and S-control

Ability to work and succeed in a fast paced environment

Experience working in cross functional teams development and sales operations

Experience with Agile and Scrum methodologies

 

Preferences:

 

Salesforce Developer Certification

Bachelor’s Degree in CS or equivalent experience

 

This is a full time position in Austin, TX. Luna Data Solutions is an equal opportunity employer.

 

To apply, please send resumes to jeff@lunadatasolutions.com

ClearRisk is currently seeking a Force.com Software Development Engineers to join our team. In this role you will be focusing on Force.com application development and product life-cycle management.

You will be responsible to plan, design, develop and test Force.com software systems and applications to provide enhancements to existing products and effectively use business requirements to develop new products.  You will work on problems of diverse scope where analysis of data requires evaluation of identifiable factors. You have demonstrated good judgment in selecting methods and techniques for obtaining solutions.

Job Requirements

Knowledge Skills and Abilities:

  • Excellent knowledge of VisualForce, Apex, page layouts, workflow rules, validation rules, triggers, Chatter, etc.
  • Experience with standards compliant XHTML/HTML5/CSS/JavaScript/jQuery front-end web development
  • Experience building rich Ajax user interfaces on Force.com using VisualForce.
  • Experience with API Integrations to other systems
  • Previous experience with .Net or Java development a plus
  • Good knowledge of Eclipse
  • Have worked on Saleforce.com instances with 100+ users
  • SQL/SOQL query language and related database experience is a plus.
  • Experience understanding and developing design documents from business requirements
  • Excellent analytical, mathematical, and creative problem-solving skills
  • Logical and efficient, with a keen attention to detail.
  • Ability to communicate ideas in both technical and user-friendly language.
  • Highly self-motivated and directed.
  • Ability to effectively prioritize and execute tasks in a high-pressure environment.
  • Strong customer service orientation.
  • Experience working in a team-oriented, collaborative environment


Experience: Requires a minimum of 3 years of experience working with Salesforce.com Force.com (VisualForce and Apex).

Education:  4 year degree within Computer Science, Computer Engineering, Management Information Systems or business administration or equivalent work experience.

Licenses or Certifications: Salesforce Certified Architect or Advanced Developer Preferred.

ClearRisk is a rapidly growing Canadian company that provides innovative software solutions to the Insurance Industry.  We use the latest technologies and business/pricing model to provide cloud-based, easy to use products with very high value and ROI.  We specialize in helping insurers, brokers and adjusters that have a mid market and program focus to automate their processes and increase their margins.

Please respond in confidence to careers@clearrisk.com by March 23rd, 2012

I have 15 years of experience in the design, planning, and implementation of state-of-the-art technologies in diverse industries. This includes enterprise level responsibility for data migration/integration, on-line transaction processing, project management, client/server development, network design, and infrastructure design and operation. My duties have included management of enterprise level multimedia design, code, CRM work flow automation, ESP administration, marketing initiatives and multiple systems integration.

 

I have 8 years of direct Salesforce.com professional experience borh remotely & on site.  You may contact me & view my complete resume here.

 

Cordially,

Jennifer

Title: Salesforce.com Admin

Location: East Grinstead, UK

Duration: 3 months Contract - Permanent

This is not a Developer position.

Description:

SalesForce.com Administrator.

- Must have 1-3 years SF.com experience in a support role.

- This is not a SF.com Developer need.

- This is not a real SF.com Technical position, more Support focused.

- Must be able to support Production issues.

- Must have excellent Communications skills and be very professional.

- Must be very customer focused.

For immediate consideration, please send your MS Word formatted cv to bw@askbas.co.uk

or call Brad Wingrave on 0845 1800 700
  • November 06, 2008
  • Like
  • 0