• Ramesh Kalloori
  • NEWBIE
  • 333 Points
  • Member since 2014
  • Senior Salesforce Lightning Developer
  • Keste Software


  • Chatter
    Feed
  • 11
    Best Answers
  • 1
    Likes Received
  • 2
    Likes Given
  • 12
    Questions
  • 110
    Replies
Hi,

I have created a custom controler and visual force page in sandbox its working fine in sandbox now i want to deploy it to production.
Bit it fails due to test coverage percentage as shown below.
User-added image
Here is my custom controller class
public class MemberDonor {
   
   Account account;
   Contact contact;

   public MemberDonor() {
       account = new Account();
   }
   
   public Contact getContact() {
      if(contact == null) contact = new Contact();
      return contact;
   }

   public String StrSaveResult { get; set; }
   
   public PageReference save() {
      
      try {
          list<Contact> listCon = [select Id from Contact where Lastname=:contact.LastName and Firstname=:contact.FirstName and Email=:contact.Email];
          if (listCon.size() > 0) {
                StrSaveResult = 'Sorry the information you provided has already registered!';
          }
          else {
                 account.name = contact.FirstName + ' ' + contact.LastName;
                 account.phone = contact.phone;
                  
                 insert account;
                  
                 contact.accountId = account.id;
                 insert contact;
           
                 StrSaveResult = 'Your membership created successfully!';
          }
      } catch (Exception ex) {
           StrSaveResult = ex.getMessage(); 
      }
      contact = null;
      return null;
   }

}

and here is may visual force page code
<apex:page controller="MemberDonor" showheader="false" sidebar="false" standardStylesheets="false" cache="false" >
    <apex:stylesheet value="/volunteers/servlet/servlet.FileDownload?file=015F0000002hVFR" />
    <apex:form styleClass="cssForm" >       
        <table columns="4" >
            <tr>
                <td  colspan="4" ><b>Member Information:</b></td>
            </tr>
            <!-- first we specify the fields we require for Contact matching -->
            <tr>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.FirstName.Label}" for="txtFirstName" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.FirstName}" id="txtFirstName" required="true" styleClass="cssInputFields" /></td>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MI__c.Label}" for="txtMI" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MI__c}" id="txtMI" styleClass="cssInputFields" /></td>
            </tr>
            <tr>    
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.LastName.Label}" for="txtLastName" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.LastName}" id="txtLastName" required="true" styleClass="cssInputFields" /></td>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.Spouse_First_Name__c.Label}" for="txtSpouse_First_Name" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.Spouse_First_Name__c}" id="txtSpouse_First_Name" styleClass="cssInputFields" /></td>
            </tr>
            <tr>    
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.Spouse_MI__c.Label}" for="txtSpouse_MI" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.Spouse_MI__c}" id="txtSpouse_MI" styleClass="cssInputFields" /></td>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.Spouse_Last_Name__c.Label}" for="txtSpouse_Last_Name" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.Spouse_Last_Name__c}" id="txtSpouse_Last_Name" styleClass="cssInputFields" /></td>
            </tr>
            <tr>    
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MailingStreet.Label}" for="txtMailingStreet" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MailingStreet}" id="txtMailingStreet" styleClass="cssInputFields" /></td>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MailingCity.Label}" for="txtMailingCity" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MailingCity}" id="txtMailingCity" styleClass="cssInputFields" /></td>
            </tr>
            <tr>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MailingState.Label}" for="txtMailingState" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MailingState}" id="txtMailingState" styleClass="cssInputFields" /></td>    
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MailingPostalCode.Label}" for="txtMailingPostalCode" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MailingPostalCode}" id="txtMailingPostalCode" styleClass="cssInputFields" /></td>
            </tr>
            <tr>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.MailingCountry.Label}" for="txtMailingCountry" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.MailingCountry}" id="txtMailingCountry" styleClass="cssInputFields" /></td>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.Email.Label}" for="txtEmail" /></td>
                <td class="cssInputFieldsColumn" ><apex:inputField value="{!contact.Email}" id="txtEmail" required="true" styleClass="cssInputFields" /></td>
            </tr>
            <tr>
                <td class="cssLabelsColumn" ><apex:outputLabel value="{!$ObjectType.Contact.Fields.Phone.Label}" for="txtPhone" /></td>
                <td class="cssInputFieldsColumn" colspan="3" ><apex:inputField value="{!contact.Phone}" id="txtPhone" styleClass="cssInputFields" /></td>
            </tr>
            <tr>
                <td colspan="4" ><b>Membership Information:</b></td>
            </tr>
            <tr>
                <td class="cssInputFieldsColumn" colspan="4" >
                    <apex:selectRadio value="{!contact.New_Or_Renew__c}" >
                        <apex:selectOption itemValue="New Membership" itemLabel="New Membership?"/>
                        <apex:selectOption itemValue="Renew Membership" itemLabel="Renew Membership"/>
                    </apex:selectRadio>
                </td>
            </tr>
            <tr>
                <td ><apex:outputLabel value="Select Membership:" /></td>
                <td class="cssInputFieldsColumn" colspan="3" >
                    <apex:selectRadio value="{!contact.Select_Membership__c}" >
                        <apex:selectOption itemValue="Yearly Membership Individual $60 Per Year" itemLabel="Yearly Indiviual $60"/>
                        <apex:selectOption itemValue="Yearly Membership Husband and Wife $100 Per Year" itemLabel="Yearly Husband and Wife $100 per year"/>
                        <apex:selectOption itemValue="Life Time Membership Individual $1000" itemLabel="Life Time Indiviual $1000"/>
                    </apex:selectRadio>
                </td>
            </tr>
            <tr>
                <td colspan="4" ><b>I want to donate tax deductable donation to ADAMS Center.</b></td>
            </tr>
            <tr>
                <td ><apex:outputLabel value="Donation Frequency:" /></td>
                <td class="cssInputFieldsColumn" colspan="3" >
                    <apex:selectRadio >
                        <apex:selectOption itemValue="0" itemLabel="Single Donation"/>
                        <apex:selectOption itemValue="1" itemLabel="Recurring Donation"/>
                    </apex:selectRadio>
                </td>
            </tr>
            <tr>
                <td></td>        
                <td class="cssInputFieldsColumn" colspan="3" ><apex:commandButton value="Save" action="{!save}" /></td>
            </tr>
            <tr>
                <td></td>
                <td class="cssInputFieldsColumn" colspan="3" ><apex:outputLabel value="{!StrSaveResult}" /></td>
            </tr>   
        </table>
    </apex:form>
</apex:page>

Can anybody help me how can i improve it so that it deployes to the production successfuly.
Thanks in advance.
hi,

I have come through many examples where <apex:facet> tag is used to in <apex:column>..But i don't get it why to do so?? although we can display column heading using <apex:column> tag itself

Can anyone paste a code snippet for explaination..?

Thanks
Neha

Hello!
I want to compare if a variable has the same name as one of the values ​​of my custom object.
I would like to delete the same values...

I could add as nameJob__c: JOB, job, Job (three different things).

Is to do a select informing CASE SENSITIVE??

List<obj__c> existing = [SELECT Id From obj__c where nameJob__c =:NameJobSchedulable];
delete existing;
NameJobSchedulable = variable String

Thank you
why does this work:
<apex:page standardController="Account" tabStyle="Account" sidebar="false">
    <apex:form >
        <apex:pageBlock >
            <apex:pageMessages />
            <apex:pageBlockButtons >
                <apex:commandButton value="Save" action="{!save}"/>
                <apex:commandButton value="Cancel" action="{!cancel}"/>
            </apex:pageBlockButtons>
            <apex:pageBlockTable value="{!Account.contacts}" var="c">
                <apex:column value="{!c.firstname}"/>
                <apex:column value="{!c.lastname}"/>
                <apex:column headerValue="Email">
                    <apex:inputField value="{!c.Email}"/>
                </apex:column>
            </apex:pageBlockTable>                       
        </apex:pageBlock>
    </apex:form>
</apex:page>

and this does not:


<apex:page standardController="Financial_Education_workshop__c" tabStyle="Financial_Education_workshop__c" sidebar="false">
    <apex:form >
        <apex:pageBlock >
            <apex:pageMessages />
            <apex:pageBlockButtons >
                <apex:commandButton value="Save" action="{!save}"/>
                <apex:commandButton value="Cancel" action="{!cancel}"/>
            </apex:pageBlockButtons>
              <apex:pageBlockTable value="{!Financial_Education_workshop__c.Workshop_Attendance__c}" var="w">
                <apex:column value="{!w.Attendee}"/>
                 <apex:column headerValue="Attendance">
                      <apex:inputField value="{!w.Attendance__c}"/>
                </apex:column>
             </apex:pageBlockTable>        
        </apex:pageBlock>
    </apex:form>
</apex:page>

Where Financial_Education_Workshop__c is a custom object and Workshop_Attendance__c is the name of a 
child relationship on another custom object. The error I am getting when I try to save the code is that
Workshop_Attendance is an invalid field on Sobject Financial_Education_workshop__c. I am trying figure out 
the correct synatx for referring to the relationship between the objects so that I can display a list of
the child records related to the parent object for editing in a grid. 

thx,
Annie
 
 
Hello ...
How can I do to pass information from my page 1 to my page 2 ?

When I click the button M (modify) I want the page 2 be loaded with page1  information (mail).

Thank you!!!!!

The code:
APEX:

global List<GetJobValue__c> recupererInfosJob{get;set;} 
public String garderJobInfo;
global String mail{get;set;}

public BBBB(ApexPages.StandardController controller) {
            jobRecords = new List<CronTrigger>();
            jobRecords = [SELECT  CronJobDetail.Name, CreatedDate, State, PreviousFireTime, NextFireTime,CronExpression FROM CronTrigger where OwnerId = '00520000003HHTGAA4'];
            enabledMois = true;
            enabledMoisPartie2 = true;
            enabledSemaine=true;
                       
            mail=getMail();         
            
        }

global void setMail(String mail) {
    this.mail= mail;
}

global String getMail() {
    return mail;
}

public PageReference modifier(){
modif();   
PageReference pageRef= new PageReference('/apex/BBBBPage2');
pageRef.setRedirect(true);        
return pageRef;
}

public void modif(){
if(!String.isBlank(strJobName))
{
    recupererInfosJob = new List<GetJobValue__c>();
    recupererInfosJob = [SELECT  Mail__c FROM GetJobValue__c where nomJob__c =: strJobName];

    for(GetJobValue__c a: recupererInfosJob){
       string recordString = a.Mail__c;
       garderJobInfo = recordString;

    }
}
else
{
system.debug('NOT Job Name');
}

setMail(garderJobInfo);

}
VISUALFORCE:

PAGE 01:

<apex:actionfunction name="callModify" action="{!modifier}" rerender="panelRefresh">
            <apex:param value="" name="ParamModify" assignTo="{!strJobName}" />
          </apex:actionFunction>

<apex:pageBlockTable value="{!jobRecords}" var="ac" id="pbBlockTable">
                <apex:column headervalue="Expression" value="{!ac.CronExpression}"/>

                
                 <apex:column >
                    <apex:commandButton value="M" onClick="callModify('{!ac.CronJobDetail.Name}'); return false;"/>
                </apex:column>
                  
              </apex:pageBlockTable>

PAGE 02:

Mail..........:&nbsp;<apex:inputText styleClass="classeBig" value="{!mail}"/><br /><br />


i want to implement a PAGEBLOCK that is hidden initially on page load but i want to show that pageblock on some event.
 Any idea then please tell me.
Hi All,

I am using the Campaign object to track my organizations Conference data.  I've searched through the archives but can't find an answer to my question.  

Goal:  Use the visualforce page I created to display just the name of the Conference (field name= "Name") and the number of attendees (field name= No_of_Attendees_c).  I want that info to be housed in an alert box.  I'm new to using javascript and Custom Controllers.  

Here's the code I have so far:
<apex:page controller="Campaign">
  <apex:form >
    <apex:outputlabel value="Campaign Name"/>
       <apex:inputtext value="{!Campaign.Name}">
           <apex:actionsupport event="onclick" rerender="display" />
       </apex:inputtext>                  
    <apex:outputpanel id="display">
        <apex:outputtext value="Number of Attendees {!Campaign.No_of_Attendees__c}"/>
    </apex:outputpanel>                  
  </apex:form>   
</apex:page>

Controller:
public class Campaign
{

    public String getCampaign() {
        return null;
    }

    public String userinput{get; set;}
}

I know I'm doing something wrong...

Thanks in advance
Hello!!!

Is it possible to pass parameters / args in Visualforce Page?

Thank you!!!
PAGE:

<apex:pageBlockTable value="{!jobRecords}" var="ac">
              <apex:column headervalue="Name Job" value="{!ac.CronJobDetail.Name}"/>
                <apex:column headervalue="Status" value="{!ac.State}"/>
                <apex:column headervalue="Expression" value="{!ac.CronExpression}"/>
                <apex:column> <apex:commandButton value="X" action="{!deleteJob('NAMEEE')}"/></apex:column>
              </apex:pageBlockTable> 

APEX:

public void deleteJob(String nameJob) {
    idJobDel= new List<CronTrigger>();
    idJobDel= [SELECT  Id FROM CronTrigger where CronJobDetail.Name =: nameJob];
    System.abortJob(idJobDel[0].id);
   }

i have writed 2 batch apex
--------------------------
1 st
-------------------
global class AccountBatchApex1 implements Database.Batchable<sObject>{
    global Database.QueryLocator start(Database.BatchableContext bc)
    {
        System.debug('Account Batch Apex1 Staring...........111111111111111')
        String query='SELECT Phone FROM Account limit 1 order by desc';
        return Database.getQueryLocator(query);
    }
    global void execute(Database.BatchableContext bc,List<Account> scope){
        for(Account a:scope){
            a.phone+=1;  
        }
        update scope;
    }
    global void finish(Database.BatchableContext bc){
        System.debug('Ok Account Batch Apex1 fineshed.........11111111111111111');
        AccountBatchApex2 aba2 = new AccountBatchApex2();
        Database.executeBatch(aba2);
    }

}
-----------------------------------
2nd
---------------------------
global class AccountBatchApex2 implements Database.Batchable<sObject>{
    global Database.QueryLocator start(Database.BatchableContext bc)
    {
        System.debug('Account Batch Apex2 Staring...........2222222222222222')
        String query='SELECT name, Phone FROM Account limit 1 order by desc';
        return Database.getQueryLocator(query);
    }
    global void execute(Database.BatchableContext bc,List<Account> scope){
        for(Account a:scope){
            a.phone+=1;              
        }
        
        update scope;
      
    }
    global void finish(Database.BatchableContext bc){
        System.debug('OK Account Batch Apex 2 finished.........2222222222');
        AccountBatchApex1 aba1 = new AccountBatchApex1();
        Database.executeBatch(aba1);
    }

}
--------------------------
phone no = 10
but  no method execution......pls help
hi developers
pls help me how to reslove this error.
Apex
------------
public class wrapperclass1
{

list<Account>  acc= new list<Account>();
list<Contact> con=new list<Contact>();

public List<wrapper> lstw = new List<wrapper>();

    public List<wrapper> getListwrapper()
     {
    acc=[select name,accountnumber from account];
    con=[select email,phone from contact];
    for(integer i=0;i<con.size();i++)
    {
   
    lstw.add(new wrapper(acc[i].name,acc[i].accountnumber,con[i].email,con[i].phone));
   
    }
     return lstw ; 
    }
    public class wrapper
    {

public String name{get;set;}

public String accountnumber{get;set;}

public String email{get;set;}

public String phone{get;set;}

// Wrapper class constructor

public wrapper(String name,String accountnumber,String email,String phone)
{

this.name=name;

this.accountnumber=accountnumber;

this.email=email;

this.phone=phone;
}
}

}
vf page
------------
<apex:page controller="wrapperclass1">
<apex:form >
   <apex:pageBlock >
      <apex:pageblockSection >
          <apex:pageBlockTable value="{!listwrapper}" var="wap">
              <apex:column headerValue="Action">
                 <apex:inputCheckbox />
              </apex:column>
              <apex:column headerValue="Account Name">
                {!wap.name}
             </apex:column>
             <apex:column headerValue="Account Number">
               {!wap.AccountNumber}
            </apex:column>
            <apex:column headerValue="Email">
                {!wap.Email}
            </apex:column>
            <apex:column headerValue="Phone">
                {!wap.phone}
            </apex:column>
        </apex:pageBlockTable>
      </apex:pageblockSection>
    </apex:pageBlock>
  </apex:form>
 
</apex:page>


Hi all,

Iam getting an error in the line highlighted below.Is this the correct way to write it

trigger updateGroupLookup on Case (before insert) {
for (Case c : Trigger.new) {
   
      if(c.groupid__c!= null){
      
                
         
          c.group_Account__c = [select id from account where Group_ID__c =c.groupid__c];
    }
  }
}
Hi All,

Can anyone help me how can i create the Adobe event from Salesforce Apex.
https://forums.adobe.com/message/9797241#9797241

Thanks,
Ramesh
Hi All,

I need one developer who will be able work with me. The candidate must have experience on below modules.

1. APEX
2. Visualforce
3. HTML,CSS,Javascript
4. Salesforce Admin

Note:Price should be very low.

Thanks,
Ramesh
We have a team of salesforce developers. We can provide the project support and development at any time.
Is there any chance to work please contact me: Kallooriramesh@gmail.com

Thanks,
Ramesh
Hi All,

i want pass longitude and latitude values dynamically for the below query.

List<Account> Acc=[select Id, Name, BankNameSpace__Location__Latitude__s, BankNameSpace__Location__Longitude__s from Account where DISTANCE(BankNameSpace__Location__c, GEOLOCATION(17.437, 78.453 ), 'mi') < 10  and BankNameSpace__Latitude__c!=null limit 2];

if i modify the query below iam getting error.

Decimal lat=17.437;
Decimal lng=78.453;
List<Account> Acc=[select Id, Name, BankNameSpace__Location__Latitude__s, BankNameSpace__Location__Longitude__s from Account where DISTANCE(BankNameSpace__Location__c, GEOLOCATION(lat,lng ), 'mi') < 10  and BankNameSpace__Latitude__c!=null limit 2];

thanks,
RAmesh

Hi all,

global class ContactsGeoLocationBatch implements Database.Batchable<Sobject>, Database.AllowsCallouts{

    global Database.QueryLocator start(database.batchablecontext BC){
           String Query =  'Select id, LastName,Latitude__c,Longitude__c from Contact where Primary_City__c!=null and Primary_Country__c!=null and Primary_State__c!=null and LastModifiedDate>=LAST_N_DAYS:8 order by LastmodifiedDate DESC Limit 2';     
       return Database.getQueryLocator(query);
}

global void execute(Database.BatchableContext BC, List<Contact> scope){
    for(Contact c : scope){
        if(c.id!=null)
            ContactsGeoLocationBulk.getGeoLocation(c.Id);
    }   
}  

global void finish(Database.BatchableContext BC){
//unable to get the code coverage for the below
   if(BC.getJobId()!=null)
   {
   AsyncApexJob a = [SELECT Id, Status, NumberOfErrors, JobItemsProcessed,
      TotalJobItems, CreatedBy.Email
      FROM AsyncApexJob WHERE Id =
      :BC.getJobId()];*/
       if(a!=null)
       {
   // Send an email to the Apex job's submitter notifying of job completion.
   Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
   String[] toAddresses = new String[] {'XXXXXXXX@gmail.com'};//a.CreatedBy.Email
   mail.setToAddresses(toAddresses);
   mail.setSubject('Apex process has completed'+ a.Status);
   // # records were updated.
   mail.setHtmlBody('Hi,<br><br>Geocodes have been updated for all contact records modified within the last 7 days on Salesforce.com. ' + a.TotalJobItems +' records were updated.there are '+ a.NumberOfErrors + ' failures.<br><br>Thanks,<br>Ramesh.');
  Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
   }
   }
}
}

@isTest(SeeAllData = true) 
private class ContactsGeoLocationBatch_TC{
    @isTest static void testContactsGeoLocationBatch() {
      
    Test.startTest();
        Test.setMock(HttpCalloutMock.class, new ContactsMockHttpResponseGenerator_TC());          
        Database.QueryLocator QL;
        Database.BatchableContext BC;    
        List<Contact> Conlist=[Select id, LastName,Latitude__c,Longitude__c from Contact where Primary_City__c!=null 
                               and Primary_Country__c!=null and Primary_State__c!=null and LastModifiedDate>=LAST_N_DAYS:8
                               order by LastmodifiedDate DESC Limit 1];
        ContactsGeoLocationBatch c = new ContactsGeoLocationBatch();
        QL = c.start(BC);
        c.execute(BC,Conlist);
        c.finish(BC);
    Test.stopTest();
    }
}

thanks,
Ramesh
Job Role: Senior Salesforce Developer
Location: Bloomington, MN
Client: Sawtooth Solutions, LLC
Duration: 3 months with likely extensions
Job Description:
Sawtooth serves RIAs, Broker Dealers, and Banks by offering a comprehensive and flexible platform for overseeing the entire wealth management process across all account types. We offer both UMA and SMA solutions representing more than 300+ strategies.  We manage investments using Best-of-Breed software integrations powered by the Salesforce.com platform.  Our collaborative approach helps advisors create an institutional level wealth management offering with definable and repeatable investment, sales and operational processes, leading to increased ability to scale and increased enterprise value.
 
Sawtooth is looking for a senior salesforce developer to help with several project initiatives including the build and integration of new tools for quantitative and qualitative research, proposal generation, and surveys and custodial forms that include electronic signatures.
 
Position Requirements:
  • 3+ years of industry experience as a Salesforce.com developer
  • Must have historical and proven knowledge and practical application of Visualforce, APEX programming, Force.com APIs, and Web Services
  • Salesforce Advanced Developer certification is highly preferred
  • Highly analytical while also having a strong and deep technical background in Salesforce.com
  • Ability to work on multiple tasks and deliver results with aggressive timelines
  • Able and willing to work independently and in a fast-paced environment with tight deadlines, with minimal supervision
I thought i could do it but it is alot harder than i thought. PLease let me know what all it would take to help me please. We have a basic setup right now and i have been trying to customize it but i cant figure it out and i am short on time. If someone could please help.!!!
If you are a passionate team player with strong experience building Salesforce Apex applications for the Appexchange and want to join an established, exciting, and growing company based in Brisbane http://ow.ly/10BaBv
International Education Company looking for an experienced SF Developer to drive automation of processes and manage integrations.
Includes technical design/development, configuration, maintenance and integration with other systems.
APEX, Visual Force, HTL, XML, and Web services knowledge required.
 
As a newby, I'm building a database to manage my real estate business. Looking for someone to review my work and provide guidance to prevent limitations down the road. 
Dear friends, I am with a live agent functionality that receives e-mail parameters in preChat screen and sends from the Add Custom Detail to another screen form.
The search and display the record from last e-mail parameter works perfectly in DEV environments and HML but I'm having trouble producing abiente. The same does not work at all, can someone help? thank you
http://resourceondemand.com/career/delivery-consultant-hyderabad-negotiable-permanent-ref-1442/ (http://​http://resourceondemand.com/career/delivery-consultant-hyderabad-negotiable-permanent-ref-1442/)

We currently have a fantastic Delivery Consultant position available in Hyderabad. This is a great opportunity for to develop your career further and work as part of a growing team.
 
Interested in hearing more about this position? Contact Rebecca now on rebecca@resourceondemand.com to know more.
Work REMOTELY for this fast growing Silver Level Partner!!Great Salary and Benefits, Work/Life Balance. If interested please contact me: nancy@tech2resources.com.  Posting:  http://jobs.tech2resources.com/Salesforce-Developer-Jobs-in-DC-Metro-area-DC/2679562
Work for a company that offers Full Benefits, Tuition Reimbursement and more! This place is growing fast and offers much opportunity.  If interested, please contact me at nancy@tech2resources.com. Posting: http://jobs.tech2resources.com/Salesforce-Developer-Jobs-in-Gaithersburg-MD/2678713
Hi Everyone,

I've recently gone through a lot of the online learning (trailheads, force fundamentals and some workbooks). I needed to learn due to a project happening at my current work place which will involve logging requests on Salesforce. At this point I'm unsure as to whether or not that project is going ahead, but regardless of that, I would like to progress with Salesforce.

Now I'm not yet experienced enough to go for the DEV401 certification and certainly not experienced enough to look for jobs. But I was wondering whether there are any evening and/or weekend roles that I could do on a totally voluntary basis free of charge? The only thing I would be hoping to gain is practical experience developing on Salesforce. Alot of the training I have done myself online over the last couple of months so I think I have enough knowledge to get going - at least for smaller projects. Does anyone know if this exists anywhere in London? Or even on a remote working basis as this is all based online.

I know a lot of charities do use Salesforce, and that maybe one of these could do with a helping hand without having to fork out hundreds for a consultant? Has anyone here ever done this or is anyone looking for a volunteer?
Hi There, We are small company of 15 staff looking to hire a SF guru on a 3 month contract based in our Gold Coast, QLD Australia office. The role will be to assist our company customise SF to best fit our needs, implement and document procedures. Please let me know if you are interested. Thanks
I have a requirement for a public facing page to be built that plots addresses on a Google map based on accounts in SFDC (Looking at a certain record type). Please get in touch with me if you have had experience with this and we can discuss the finer details in more detail.

Thanks
Brendan 
<aura:attribute name="native" type="boolean" default="true"/>
    <aura:attribute name="accounts" type="Account[]"/> 
    <div class="pink">
    <table style="width:100%">
        <aura:iteration var="acc" items="{!v.accounts}">
            <aura:if isTrue="{!acc.Id != ' '}">
            <aura:if isTrue="{!v.native}">
            <tr>
                <th>Account Id</th>
                <th>Name</th>
                <th>Country</th>
                <th>City</th>
                <th>Email</th>
            </tr>
                {!v.native}=false;
                 component.set("v.native",'false');
                 {!v.native};

            </aura:if>
            <tr>
                <td>{!acc.Id} </td> 
                   <td>{!acc.Name} </td> 
                   <td>{!acc.Country__c} </td>
                   <td> {!acc.City__c} </td>
                   <td>{!acc.Email__c}</td>            
            </tr>
            </aura:if>
      </aura:iteration>
    </table>  
    </div>

I wanted to set "native" attribute to false  without using the client controller.If anyone having another solution to this problem.
Please share it.
I have a Pardot opportunity with one of my consulting clients!!  This is an urgent need - client wants to get started by the end of this week!!

Part-time position (20 hrs/week) with up to 90 total hours available.  Remote is possible.  

Email me if interested: jtidei@talution.com

 
<apex:page controller="Boss" >
<apex:form >

   <apex:pageBlock title="Get Accnames" >
   <apex:pageBlockSection >
   <apex:pageBlockSectionItem >
   <apex:outputPanel >AccNames:</apex:outputPanel>
   </apex:pageBlockSectionItem>
  
   <apex:selectList multiselect="FAlse" size="1"></apex:selectList>
   <apex:selectOptions value="{!AccNames}"></apex:selectOptions>
   </apex:pageBlockSection>
   </apex:pageBlock>
</apex:form>
 
</apex:page>


Controller:
public with sharing class Boss {

    public String AccNames { get; set; }
   
   
   
   List<SelectOption>Options=new List<SelectOption>();
   
    public List<SelectOption>getAccNames(){
   
    for(Account Acc:[select id,name From Account])
    
    Options.add(new selectOption(Acc.name,Acc.name));
   
   
   return Options;
    }
   
  
}


The Account name values dosent get that pick list plase share me with answer.

Thank for advance!!
I have a list of checkboxes in Visualforce Page.
I want that if no checkbox is checked then automatically submit button will be disabled and if use checks any them it should be enabled to click.
This has to take effect as soon as user deselect or select any checkbox.
Can this be done without using JavaScript? Through the Controller?
In the custom webservice response, the tags are sorted alphabetically by salesforce automatically. Is there any way to control order of the tags in the custom webservice response?

More Details:
This is for Inbound service from another system to Salesforce. For this, we have writted a custom webservice in which the response tags are as below.

HEADER
PAYLOD
MESSAGE

In the response XML generated from salesforce, the above tags are rearranged as below.

HEADER
MESSAGE
PAYLOAD

which is causing the problem in the source system to process the response.

Is there anyway in salesforce to control the order/sequence of the tags in the response XML generated by Salesforce in the custom webservice.

How to store variables in Session and how to access that Session Variable in Apex Page & in Contoller?.
 
Regards,
KK