• sathi
  • NEWBIE
  • 5 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 18
    Questions
  • 23
    Replies

hi, how we can connect to database in salesforce?

  • November 09, 2013
  • Like
  • 0
hi, what is the migration of approvals?
  • November 09, 2013
  • Like
  • 1

what is the difference between export and export all in data loader?

  • November 09, 2013
  • Like
  • 0
hi, how we can send callout in salesforce?
  • November 09, 2013
  • Like
  • 0

hi,

i installed force.com ide ....i create new project ,and i have given my user name-----------

                                                                                          password--------

                                                                                          security token----------

and all components classes ,triggers of my account are imorted in to the force.com ide....

but where i can develop new classes?

  • October 29, 2013
  • Like
  • 0

hi, im unable to download force.com ide?

  • October 27, 2013
  • Like
  • 0

im very new to sfdc ......how can i deploy the code in production?

  • October 24, 2013
  • Like
  • 0

hi ...can we create dashboards for updating values.

  • March 13, 2013
  • Like
  • 0

hi ....can we create dashboard for updating data (using schedule class)?

  • March 12, 2013
  • Like
  • 0

hi.........can anyone give me some sample programs using inheritance.

  • March 12, 2013
  • Like
  • 0

hi.......

i have a doubt pls............will we use in heritance in  salesforce ? 

  • March 11, 2013
  • Like
  • 0

i have two objects inventory and order ....when a record is created in order object for an item then automatically the field quantity avialable in inventory is to be updated with( quantity available  minus  order quantity)

 and i have a hint also (select Inventory record where id=Inventory look up field’s API name)............please help m,e for this trigeer

  • February 28, 2013
  • Like
  • 0

hi, i have an application library management and i have three fields  like bookid,book name ,author name.......my problem is when i entered the book id ,the fields book name and author name should be updated with book name and author name regarding with book id.......

  • February 12, 2013
  • Like
  • 0
how to create force.com sites?
  • February 02, 2013
  • Like
  • 0
here my task is to create a student register form for college website........register form should contain some fields like first name ,last name.....id no,and submit button. when i click on the submit button the record should passes to admin for permission.if the id no matches the activation link ll send to student through email.....; i created the register form but my problem is how to send the record to admin ...
  • February 02, 2013
  • Like
  • 0

hi ...

here my task is to create a student register form for college website........register form should contain some fields like first name ,last name.....id no,and submit button. when i click on the submit button the record should passes to admin for permission.if the id no matches the activation link ll send to student through email.....

        i created the register form but my problem is how to send the record to admin ...?

  • February 01, 2013
  • Like
  • 0



share price value is changing every one hour in share market......im updating that value in my account stock history object......

for example ibm company has 130(morning 9am)

                                                         120(morning 10am)

                                                         125(morning 11 am).......like that

  i need  first price(open price) in my visual force page how i can get it?

  • September 18, 2012
  • Like
  • 0

if one field have more than one value........

for ex  stock price of a company will changing every hour ....and that is updating in stock history object..........

how to get open price(starting price) ?

  • September 18, 2012
  • Like
  • 0
hi, what is the migration of approvals?
  • November 09, 2013
  • Like
  • 1

hi, im unable to download force.com ide?

  • October 27, 2013
  • Like
  • 0

im very new to sfdc ......how can i deploy the code in production?

  • October 24, 2013
  • Like
  • 0

hi ...can we create dashboards for updating values.

  • March 13, 2013
  • Like
  • 0

hi, 

 

i have obj named patient_receipt__c, it has lookup field for patient name, if i select the name and click search it should display the details ..but it is not working and i  don't knw where i did mistake..

 

my controller:

 

public class viewrec
{
public String temp;
Public Boolean show{set;get;}
public Patient_Receipt__c pr{get; set;}
Public  list<Patient_Receipt__c>prlst{set;  get;}

    public viewrec()
    {
    
    pr= new Patient_Receipt__c();
    show= false;
    }


    public pageReference fees()
    {
    if(pr.Name__c!= null)
    
    {
    
    temp=pr.Name__c;


   //prlst= (list<Patient_Receipt__c>)[select Name__c,Registration_Number__c,Age__c,Diagnosis_Fees__c,E_C_G_Fees__c,Indoor_Injection_Fees__c,Lab_Fees__c,X_Ray_Fees__c,Total_Fee__c from Patient_Receipt__c WHERE Name like: temp];
   
   pr= [select Name__c,Registration_Number__c,Age__c,Diagnosis_Fees__c,E_C_G_Fees__c,Indoor_Injection_Fees__c,Lab_Fees__c,X_Ray_Fees__c,Total_Fee__c from Patient_Receipt__c WHERE Name =: temp];
  
   
    show= true;
    }
     System.Debug('pr');
    return null;  
    

    }
    
    
    public pageReference clr()
    {
    show=false;
    return null;
    
    }
    

}

 

my page:

 

 

<apex:page controller="viewrec" >

<apex:form >

<apex:pageBlock >
<apex:pageBlockSection >
<apex:inputField value="{!pr.Name__c}" label="Patient name"/>
</apex:pageBlockSection>

<apex:pageBlockButtons location="bottom">
<apex:commandButton value="view fee details" action="{!fees}"/>
<apex:commandButton value="Clear" action="{!clr}"/>
</apex:pageBlockButtons>

<apex:pageBlockTable rendered="{!show}" value="{!pr}" var="d">
<apex:column value="{!d.Name__c}" />
<apex:column value="{!d.Registration_Number__c}" />
<apex:column value="{!d.Age__c}" />
<apex:column value="{!d.Diagnosis_Fees__c}" />
<apex:column value="{!d.E_C_G_Fees__c}" />
<apex:column value="{!d.Indoor_Injection_Fees__c}" />
<apex:column value="{!d.Lab_Fees__c}" />
<apex:column value="{!d.X_Ray_Fees__c}" />
<apex:column value="{!d.Total_Fee__c }" />
</apex:pageblockTable>

</apex:pageBlock>

</apex:form>

</apex:page>

 

hi.......

i have a doubt pls............will we use in heritance in  salesforce ? 

  • March 11, 2013
  • Like
  • 0

i have two objects inventory and order ....when a record is created in order object for an item then automatically the field quantity avialable in inventory is to be updated with( quantity available  minus  order quantity)

 and i have a hint also (select Inventory record where id=Inventory look up field’s API name)............please help m,e for this trigeer

  • February 28, 2013
  • Like
  • 0

hi, i have an application library management and i have three fields  like bookid,book name ,author name.......my problem is when i entered the book id ,the fields book name and author name should be updated with book name and author name regarding with book id.......

  • February 12, 2013
  • Like
  • 0
how to create force.com sites?
  • February 02, 2013
  • Like
  • 0



share price value is changing every one hour in share market......im updating that value in my account stock history object......

for example ibm company has 130(morning 9am)

                                                         120(morning 10am)

                                                         125(morning 11 am).......like that

  i need  first price(open price) in my visual force page how i can get it?

  • September 18, 2012
  • Like
  • 0