• Forcepower
  • SMARTIE
  • 1165 Points
  • Member since 2011

  • Chatter
    Feed
  • 36
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 394
    Replies

Hi All,

This is Yamini Bathula from Brisbane, Australia. I have more than 5 years of experience in customer service in different types of companies. I am more interested in developing as I have done my graduation in Computer Science and Engineering and I have attended Dev 401 certification course 2 weeks back to change my career.I am now preparing for the Dev401 certification test. And also building my resume to apply for the jobs. Can anyone help me in building an entry level resume for me? Just give me some tips to build an impressive resume.

Thanks,
Yamini.

Need customizations starting with a tie-in to our shopping cart system.  Specifically list product items in SalesForce, allow the sales rep to enter selections and variants, then post to our shopping cart system via RESTful JSON.  More projects to follow.

You can be located anywhere and work at your own pace.
We are looking for a Developer who will be able to build our Community Site with the help of Visualforce.

It is an immediate one time project that includes building a customized community site for our company. Entry-Level Developers are welcome!
 
We recently upgraded to Salesforce Enterprise and got the Service Cloud Edition with it. We have deployed it internally and set it up. But we would like to have a nicer Community Site that the one that Salesforce Communities come with.  

More information available per email conversation or phone call. 

Hello,

I'm looking for a developer to create two advanced triggers for a complicated salesforce instance.  I have a certain amount of budgeted hours for creation, testing, & pushing to production.  I have a healthy rate that I'm looking to pay for a qualified individuals.  Will provide all documentation needed.  Will have to go through quick psudo-interview process and sign Subcontractors agreements.  Looking to kick this project off Wednesday Feb 5th.  Need to make a final decision by Monday Feb 3rd.  Need to be available for Skype and or GoToMeeting Requests.  Please reply to this post and I'll be in touch with next Steps.  Very High Priority!

Hi All,

 

I have created a force.com site.Now as the users try to login to this site, there are getting this SSL Certifiacte error.

 

If we click on "Procede Anyway", then the user will be allowed into the site.

 

How should I resolve this for the entire Organisatiion users.

 

Thanks,

Vijay

Hello,

 

I have created a force.com site and I have published it. During my internal testing I found that everything worked flawlessly. I tested the apex forms system with captcha on Chrome, Safari, Firefox and the latest versions of IE7 to IE10. Not a single glitch.

 

However as soon as I published the site, my call volume went from 30 calls a day to about 75 calls a day. The main problem, is that the captcha is not submitted the forms field for version of Internet explorer 8 to 9 that are not running the latest version. Since so many web visitors are not running the latest version, they call and complain. This was not an issue before I started using force.com sites. 

 

I have copied the steps at http://wiki.developerforce.com/page/Adding_CAPTCHA_to_Force.com_Sites.

 

Line 24 and line 29 always return null on IE 9.0.8112.16421. Therefore visitors cannot submit the captcha with success.

 

024             return ApexPages.currentPage().getParameters().get('recaptcha_challenge_field');
 
029             return ApexPages.currentPage().getParameters().get('recaptcha_response_field');


Would anyone know how to fix it?

I'm having trouble with a trigger I'm trying to write. When new accounts are loaded into my org the owner field is sometimes defaulted to a placeholder user 'x x'. There is another field on the account called market assignment which is a forumula that pulls the market assignment on the market assignment custom object. Also on the market assignement custom object is the manager which should also be the account owner. The trigger is trying to update accounts where owner = 'x x' with the manager from the corresponding market assignement. Any help would be much appreciated. Thanks!!

 

Trigger

 

Trigger marketassignmenttrigger on Account (before Insert, before Update) {
    
    Map<String, Market_Assignments__c> junctionMap = new Map<String, Market_Assignments__c>{};
    
    for (Account a : Trigger.new)
    {
        if (a.owner != null && 
        (Trigger.isInsert || (Trigger.isUpdate && Trigger.oldMap.get(a.id).Market_assignment_copy__c == a.Market_assignment_copy__c)))
        {            
            //Ignore casing in the map
            junctionMap.put(a.Market_assignment_copy__c.toLowerCase(), null);            
        }
    }
    
    if (!junctionMap.isEmpty())
    {    
        
        for (Market_Assignments__c item : [ select Id, market_manager__c, name from Market_Assignments__c where market_manager__c IN :junctionMap.keySet()] )
        {
            junctionMap.put(item.name.toLowerCase(), item);
        }
                        
        for (Account a : Trigger.new)
        {
            if (a.ownerid == '00560000001267d')
            {
               Market_Assignments__c m = junctionMap.get(a.market_assignment_copy__c.toLowerCase());
                
                
                {
                    a.ownerid = m.market_manager__c;                
                }
                
            }
        }
    }    
}