• Anurag Pareek
  • NEWBIE
  • 0 Points
  • Member since 2014
  • Salesforce Administrator
  • Social Annex


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 8
    Replies
Hi Folks,

I am using Professional Edition and in my lead object Status feild there are 4 values:-SQl,Meeting Happend,SQL Later and SQL-to-Oppty. Now what i want is that  whenever a lead status is changed amoung these four values  then the Active lead should be check marked on Account Object.

Please help me out  Guys.

Thanks
Hi Guys,
Can anyone help me out with process builder, I have a Lead status field in Lead object and there is a custom field named as Active opportunity (Checkbox) in Account object. Now what i want is that whenever an lead status which is a pick-list turns to SQL to Oppty then automatically the Active opportunity turns to true.
Note:- I am using Professional Edition so i can use only Process Builder
Hi Guys,

I am trying import contacts(or leads or campaigns) into Sales Loft then i encounter an error message that looks like this:

There is a problem with your Salesforce connection:

REQUEST_LIMIT_EXCEEDED: TotalRequests Limit exceeded.
This message means that, we as a company, have reached the daily limit of connection requests between salesforce and sales loft.
Note:-We are using Professional Edition.

My question is that i don't want this limitation while i am importing.Any solution will be helpful.

Thanks
HI Folks, 

What purpose we  can use seeAllData=true,in realtime.. Like what is the basic approach of using this ? I want to  know the realtime  functionality behind this.

Thanks 
Hi All,
          i have made an object Commercial with a record type-Buy,Sell Rent In and Rent out .If the user select buy then then  details regarding buying a property will be shown on VF page in which  there are two dependent  picklist  named as property type and property sub Type . on the VF page Field dependency is not showing.Help me out guys for shwing record type and field dependencies. 
Hi Folks,

I am using Professional Edition and in my lead object Status feild there are 4 values:-SQl,Meeting Happend,SQL Later and SQL-to-Oppty. Now what i want is that  whenever a lead status is changed amoung these four values  then the Active lead should be check marked on Account Object.

Please help me out  Guys.

Thanks
Hi Guys,
Can anyone help me out with process builder, I have a Lead status field in Lead object and there is a custom field named as Active opportunity (Checkbox) in Account object. Now what i want is that whenever an lead status which is a pick-list turns to SQL to Oppty then automatically the Active opportunity turns to true.
Note:- I am using Professional Edition so i can use only Process Builder
Hi All,

Can anyone please help me with bellow challenge.


Create an Apex trigger for Account that matches Shipping Address Postal Code with Billing Address Postal Code based on a custom field.
For this challenge, you need to create a trigger that, before insert or update, checks for a checkbox, and if the checkbox field is true, sets the Shipping Postal Code (whose API name is ShippingPostalCode) to be the same as the Billing Postal Code (BillingPostalCode).The Apex trigger must be called 'AccountAddressTrigger'.
The Account object will need a new custom checkbox that should have the Field Label 'Match Billing Address' and Field Name of 'Match_Billing_Address'. The resulting API Name should be 'Match_Billing_Address__c'.
With 'AccountAddressTrigger' active, if an Account has a Billing Postal Code and 'Match_Billing_Address__c' is true, the record should have the Shipping Postal Code set to match on insert or update.

For above challenge i tried with following code but looks like it doesnt mach the requirement.

trigger AccountAddressTrigger on Account (before insert, before update) {
    for(Account a : Trigger.new){
        If (a.Match_Billing_Address__c = true) {
            /*ShippingPostalCode = BillingPostalCode;*/
        }   
    } 

}

Please help me