• sandeep kumar 140
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 3
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 6
    Replies
Hi All,

We are integrating with one of our partner with salesforce. They are using the domain PHP. THey are able to login with their code to Sandbox but not production. Below is the errors they are getting eventually.

1) SoapFault with message 'INVALID_LOGIN: Invalid username, password, security token; or user locked out.'

2) SoapFault with message 'SOAP-ERROR: Parsing WSDL: Missing <message> with name 'tns:He ader''

We have whitelisted their public IP address in salesforce also.
We have cross checked the credentials (Username, Password and security token) twice and we are able to login through Browser and data loader.

Appriciate your help.

thanks..
Hi All,

I would like know about the REST API in Salesforce. I need to integrate the external system with Salesforce. Previously i used to send the enterprose WSDL to Partner(which is SOAP). But now, partner is saying the they are not working on SOAP. They need REST based API.
In this case which wsdl I need to share with them.

Aappriciate your help..
 
 
Hi guys,

I have created one form with html code in the visual force page. In form tag am using method as post and action as some URL. Now i want this form look and feel in salesforce. Please help on this.

Please refer the screen shot of my form.
Please give some sample code for look and feel of salesforce.

User-added image
 
Hi All,

I am using Crypto.sign() to generate the signature with private key. Here am unable to get the correct response from the client. I am getting Invalid Encryption error response. What would be the reason.. 

As per salesforce docs Crypto.sign() automatically digest and encrypt the input and give us the generated digital signature.

Please help on this..
 
Hi All,

I am integrating Java with Salesforce. While inserting a record from java to salesforce am giving the Date of Birth field. But here am unable to get the same value in the salesforce. For example, 24/05/2016 but it is displaying 23/05/2016 in salesforce.
In Salesforce am using the data type as Date.

Please help on this. What would be the reason.

 
Hi All,

I have requirement to upload the text file to FTP server from Salesforce. How to do this. Is there any way to do this..?? I am generating the text file from vf page when custom button click..

Please help on this ASAP
Hi All,

I have created one custom button with Content Source as URL. So whenever i click on that button the client URL will hit. Now i created one trigger(it will execute whenever a contact is updated).

My issue is, i want to fetch that custom button funcationality in trigger. How can i do that.
 
Hi all,

Below is my code.

If(leadList[0].Sector__c=='Salaried'){
            If(mbd.Score__c >=600 && mbd.Score__c<650){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c >=650 && mbd.Score__c<700){
                leadList[0].Interest_Rate__c =11.25;
            }else if(mbd.Score__c>=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c>=750){
                leadList[0].Interest_Rate__c = 8.25;
            }else if(mbd.Score__c==-1){
                leadList[0].Interest_Rate__c = 12.75;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 11.25;
            }else if(mbd.Score__c == 5){
                leadList[0].Interest_Rate__c = 11.25;
            } 
        }else if(leadList[0].Sector__c=='SENP' && leadList[0].Sector__c=='SEP'){
            if(mbd.Score__c >=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c >=750){
                leadList[0].Interest_Rate__c = 9.25;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c==5){
                leadList[0].Interest_Rate__c = 12.00;
            }
        }              
    }
    // Calculating Proposed EMI
 leadList[0].Proposed_EMI__c = (leadList[0].Amount_in_Rs__c+(leadList[0].Amount_in_Rs__c*leadList[0].Interest_Rate__c*leadList[0].Loan_Tenor_in_Month__c)/12)/leadList[0].Loan_Tenor_in_Month__c;
    system.debug('proposed emi--'+leadList[0].Proposed_EMI__c);

At Proposed EMI am getting Zero(0) even i have all the field values. What is the problem please let me know.

Thanks
Hi all, 

I have a requirement that i have a task on opportunity object. When the task is completd(Status) , i need to send an approval email for a particular user. If the User approved then two more task will create on opportunity. I am unable to do this with workflow. Please help on this..

Thanks...
Hi all, 

I have a requirement that i have a task on opportunity object. When the task is completd(Status) , i need to send an approval email for a particular user. How can i acheive this. Please help..

Thanks...
Hi All,

I would like know about the REST API in Salesforce. I need to integrate the external system with Salesforce. Previously i used to send the enterprose WSDL to Partner(which is SOAP). But now, partner is saying the they are not working on SOAP. They need REST based API.
In this case which wsdl I need to share with them.

Aappriciate your help..
 
 
Hi All,

I have created one custom button with Content Source as URL. So whenever i click on that button the client URL will hit. Now i created one trigger(it will execute whenever a contact is updated).

My issue is, i want to fetch that custom button funcationality in trigger. How can i do that.
 
Hi all,

Below is my code.

If(leadList[0].Sector__c=='Salaried'){
            If(mbd.Score__c >=600 && mbd.Score__c<650){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c >=650 && mbd.Score__c<700){
                leadList[0].Interest_Rate__c =11.25;
            }else if(mbd.Score__c>=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c>=750){
                leadList[0].Interest_Rate__c = 8.25;
            }else if(mbd.Score__c==-1){
                leadList[0].Interest_Rate__c = 12.75;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 11.25;
            }else if(mbd.Score__c == 5){
                leadList[0].Interest_Rate__c = 11.25;
            } 
        }else if(leadList[0].Sector__c=='SENP' && leadList[0].Sector__c=='SEP'){
            if(mbd.Score__c >=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c >=750){
                leadList[0].Interest_Rate__c = 9.25;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c==5){
                leadList[0].Interest_Rate__c = 12.00;
            }
        }              
    }
    // Calculating Proposed EMI
 leadList[0].Proposed_EMI__c = (leadList[0].Amount_in_Rs__c+(leadList[0].Amount_in_Rs__c*leadList[0].Interest_Rate__c*leadList[0].Loan_Tenor_in_Month__c)/12)/leadList[0].Loan_Tenor_in_Month__c;
    system.debug('proposed emi--'+leadList[0].Proposed_EMI__c);

At Proposed EMI am getting Zero(0) even i have all the field values. What is the problem please let me know.

Thanks
Hi All,

I have created one custom button with Content Source as URL. So whenever i click on that button the client URL will hit. Now i created one trigger(it will execute whenever a contact is updated).

My issue is, i want to fetch that custom button funcationality in trigger. How can i do that.
 
Hi all,

Below is my code.

If(leadList[0].Sector__c=='Salaried'){
            If(mbd.Score__c >=600 && mbd.Score__c<650){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c >=650 && mbd.Score__c<700){
                leadList[0].Interest_Rate__c =11.25;
            }else if(mbd.Score__c>=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c>=750){
                leadList[0].Interest_Rate__c = 8.25;
            }else if(mbd.Score__c==-1){
                leadList[0].Interest_Rate__c = 12.75;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 11.25;
            }else if(mbd.Score__c == 5){
                leadList[0].Interest_Rate__c = 11.25;
            } 
        }else if(leadList[0].Sector__c=='SENP' && leadList[0].Sector__c=='SEP'){
            if(mbd.Score__c >=700 && mbd.Score__c<750){
                leadList[0].Interest_Rate__c = 10.25;
            }else if(mbd.Score__c >=750){
                leadList[0].Interest_Rate__c = 9.25;
            }else if(mbd.Score__c==4){
                leadList[0].Interest_Rate__c = 12.00;
            }else if(mbd.Score__c==5){
                leadList[0].Interest_Rate__c = 12.00;
            }
        }              
    }
    // Calculating Proposed EMI
 leadList[0].Proposed_EMI__c = (leadList[0].Amount_in_Rs__c+(leadList[0].Amount_in_Rs__c*leadList[0].Interest_Rate__c*leadList[0].Loan_Tenor_in_Month__c)/12)/leadList[0].Loan_Tenor_in_Month__c;
    system.debug('proposed emi--'+leadList[0].Proposed_EMI__c);

At Proposed EMI am getting Zero(0) even i have all the field values. What is the problem please let me know.

Thanks
Hi all, 

I have a requirement that i have a task on opportunity object. When the task is completd(Status) , i need to send an approval email for a particular user. How can i acheive this. Please help..

Thanks...