• sfdck
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 4
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 4
    Replies
Hi,

    Can any one let me know that total how many standard objects are available in salesforce ?


    Response is highly Appriciated.
  • January 07, 2014
  • Like
  • 0

     Hi,

 

     I have a confusion in these lines about the ApexPages 

 

      ApexPages.currentPage().getParameters().get('id') --->  wt is ApexPages in this line ?

 

     Apexpages.standardcontroller ---> wt is Apexpages here ?

 

 

   Help is greatly Appreciated.

 

 

 

 

  • June 23, 2013
  • Like
  • 0

Hi ,

 

     I am confused between synchronous and asynchronous can any one explain me from the scratch what are they actually , and when we use the @future annotation . Please Help me  !!!

 

 

Help is highly appreciated.

 

Thanks in Advance. 

  • June 22, 2013
  • Like
  • 2

Hi 

 

we have a validation rule on Lead object ,we need to make  this validation rule as inactive like do not fire in the trigger which is on task object .the trigger is copying some field values from task  to the lead object.

 

Thanka in advance

  • April 10, 2013
  • Like
  • 2

Hi Everyone,

 

     I am trying to integrate box.com with salesforce, in this how should i start initally what would be the process , my first step is to create a vf page in salesforce with login details as soon as i enter the details it should login directly into the box.com account . How can i achieve this.

 

I am a new bie.

 

Thanks in Advance.

Response is highly appreciated.

  • April 04, 2013
  • Like
  • 0

Hi , 

 

     I saw in salesforce documentation i.e we have create and read permission for standard oject in sites , I am trying to update contact object from the site . Is there anyway to proxy the contact update thru a System Administrator profile for sites user.

 

 

Thanks in Advance.

Solution's are highly Appreciated. 

  • April 01, 2013
  • Like
  • 0

Hi Everyone,

 

     I am Sfdc newbee can anyone tell me the difference between general database trigger and salesforce triggers ???

 

 

 Thanks in Advance ,

 Response is highly appreciated.

  • March 30, 2013
  • Like
  • 0

Populate the Web_State__c and Web_Country__c fields based on the information entered in  State_Code__c field. 

 

When a case is created with the State code as "br-ac" , then the Web State should be populated as "Acre" and Web Country as "Brazil" .

 

i am trying to write a trigger for the above funcionality , here is my code .

 

trigger UpdateStateCountry on Case (before insert) {
List<Case> caseList = new List<Case>();


for(Case cs : Trigger.New){
if(cs.State_Code__c == 'br-ac' && cs.Alpha_3_Code__c == 'bra'){
cs.Web_State__c = 'Acre';
cs.Web_Country__c = 'Brazil';
caseList.add(cs);
}
if(cs.State_Code__c == 'br-al' && cs.Alpha_3_Code__c == 'bra'){
cs.Web_State__c = 'Alagoas';
cs.Web_Country__c = 'Brazil';
caseList.add(cs);
}

else {

cs.Web_State__c = 'None Provided';
cs.Web_Country__c = 'None Provided';
}

update caseList;

}
}

 

  • March 28, 2013
  • Like
  • 0

if  @ is not mentioned before an annotation , what is the significance of @ 

 

 

Respose will be highly apreciated .

  • January 24, 2013
  • Like
  • 0

how to bulkify a trigger  , is there any seperate process to bulkify a trigger. 

  • January 24, 2013
  • Like
  • 0

Is the Extension controller in apex is similar to Inheritance in java ? 

  • November 12, 2012
  • Like
  • 0

Hi folks,

 

     I am trying to divide the records in an object  on monthly base , is it possible .

 

 please help.

  • November 02, 2012
  • Like
  • 0

<apex:page >
 <apex:includeScript value="{!URLFOR($Resource.Jquery, 'js/jquery-1.9.0.custom.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.Jquery, 'js/jquery-ui-1.9.0.custom.min.js')}"/>
<apex:stylesheet value="{!URLFOR($Resource.Jquery, 'css/ui-lightness/jquery-ui-1.9.0.custom.css')}"/> 
 
<script type="text/javascript">
var j$ = jQuery.noConflict();

j$(document).ready(function(){
j$("#jqexample").click(function() {
alert("Jquery example!!!!!");
});
});
</script>

 <a id="jqexample" href="">jqexample!</a> 

</apex:page>

 

 

 

jquery is not working with with the above code . were is the problem ?  Guys help needed

  • October 17, 2012
  • Like
  • 0

<apex:page standardController="account" recordSetVar="acc">
<apex:form >
<apex:pageBlock >
<apex:pageBlockTable value="{!acc}" var="a">
<apex:column value="{!a.name}"/>
<apex:column value="{!a.billingcity}"/>
<apex:column value="{!a.phone}"/>
<apex:column value="{!a.industry}"/>
</apex:pageBlockTable>
<apex:commandLink value="first" action="{!first}" />
<apex:outputtext value=" || "></apex:outputtext>
<apex:commandLink value="last" action="{!last}"/>
<apex:outputtext value=" || "></apex:outputtext>
<apex:commandLink value="next" action="{!next}"/>
<apex:outputtext value=" || "></apex:outputtext>
<apex:commandLink value="previous" action="{!previous}"/>
</apex:pageBlock>
</apex:form>
</apex:page>

 

 

with the above code i am able to get the recent entered records but not the old records .

 

pls help.

  • September 06, 2012
  • Like
  • 0

Hi ,

 

     I am confused between synchronous and asynchronous can any one explain me from the scratch what are they actually , and when we use the @future annotation . Please Help me  !!!

 

 

Help is highly appreciated.

 

Thanks in Advance. 

  • June 22, 2013
  • Like
  • 2

Hi 

 

we have a validation rule on Lead object ,we need to make  this validation rule as inactive like do not fire in the trigger which is on task object .the trigger is copying some field values from task  to the lead object.

 

Thanka in advance

  • April 10, 2013
  • Like
  • 2
Hi,

    Can any one let me know that total how many standard objects are available in salesforce ?


    Response is highly Appriciated.
  • January 07, 2014
  • Like
  • 0

Hi 

 

we have a validation rule on Lead object ,we need to make  this validation rule as inactive like do not fire in the trigger which is on task object .the trigger is copying some field values from task  to the lead object.

 

Thanka in advance

  • April 10, 2013
  • Like
  • 2

<apex:page >
 <apex:includeScript value="{!URLFOR($Resource.Jquery, 'js/jquery-1.9.0.custom.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.Jquery, 'js/jquery-ui-1.9.0.custom.min.js')}"/>
<apex:stylesheet value="{!URLFOR($Resource.Jquery, 'css/ui-lightness/jquery-ui-1.9.0.custom.css')}"/> 
 
<script type="text/javascript">
var j$ = jQuery.noConflict();

j$(document).ready(function(){
j$("#jqexample").click(function() {
alert("Jquery example!!!!!");
});
});
</script>

 <a id="jqexample" href="">jqexample!</a> 

</apex:page>

 

 

 

jquery is not working with with the above code . were is the problem ?  Guys help needed

  • October 17, 2012
  • Like
  • 0