• SwaranPoladi
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 6
    Replies

Hi,

 

Can we rename Submit button on Case edit screen? I know it is possible by VF, but is there any standard way to rename it?

 

And after creating a Case in Portal, there appears a message saying that "Case is submitted succesfully". Can we some how remove this message?

 

Thanks!

 

Regards,

Lucky.

Hi,

 

I am getting an error when trying to login into Site based portal.

 

I am getting this error only sometimes.

 

Error: Error occurred while loading a Visualforce page. 

 

All the pages are given access to Site and Profile.

 

We have a query on User object, Is this casuing the issue? 

 

Please help.

 

Thanks! 

 

Regards,

Lucky

Hi,

 

I have a scenario.

 

We have batch load that inserts number of records on to custom object. For all these records created in a batch we have to create one parent record e.g:- if a CSV file has 10000 records then 1 record to inserted and tag all 10000 records with it.

 

I have tried using static variable but its not working 

 

below is the code

 

trigger Change on Site__c(before insert, before update){ 
Set<Id> setSiteId = new Set<Id>(); 
List<Site__c> ltSiteUpd=new List<Site__c>(); 
if(setStaticVars_CLS.firstrun==1){ 
setStaticVars_CLS.setinsertTariffChange();
setStaticVars_CLS.firstrun++; 

for(Site__c objSR:Trigger.New){
if(Trigger.isInsert){
objSR1.Tariff_Change__c=setStaticVars_CLS.getinsertTariffChange();
ltSiteUpd.add(objSR1);
}

}

Static class

global class setstaticVars_Cls{

global static Integer firstrun=1;
global static Id idTC;
global static void setinsertTariffChange(){
Tariff_Change__c objTC=new Tariff_Change__c();
insert objTC;
idTC=objTC.id;
}
global static Id getinsertTariffChange(){
return idTC;
}
}

Hi,

 

I have a scenario.

 

We have batch load that inserts number of records on to custom object. For all these records created in a batch we have to create one parent record e.g:- if a CSV file has 10000 records then 1 record to inserted and tag all 10000 records with it.

 

I have tried using static variable but its not working 

 

below is the code

 

trigger Change on Site__c(before insert, before update){
Set<Id> setSiteId = new Set<Id>();
List<Site__c> ltSiteUpd=new List<Site__c>();
if(setStaticVars_CLS.firstrun==1){
setStaticVars_CLS.setinsertTariffChange();
setStaticVars_CLS.firstrun++;
}
for(Site__c objSR:Trigger.New){
if(Trigger.isInsert){
objSR1.Tariff_Change__c=setStaticVars_CLS.getinsertTariffChange();
ltSiteUpd.add(objSR1);
}
}
}

Static class

global class setstaticVars_Cls{

global static Integer firstrun=1;
global static Id idTC;
global static void setinsertTariffChange(){
Tariff_Change__c objTC=new Tariff_Change__c();
insert objTC;
idTC=objTC.id;
}
global static Id getinsertTariffChange(){
return idTC;
}
}

Hi,

I am getting below error while login into Salesforce.com from Java. Its working fine in other network, but when I try from different network i am getting below error. Can you please tell what can be the issue is?

 

16-Feb-2011 15:35:37 NIE login

INFO: LOGGING IN NOW....

16-Feb-2011 15:35:38 NIE login

INFO: An unexpected error has occurred: ; nested exception is:

 

AxisFault

faultCode: {

javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?http://schemas.xmlsoap.org/soap/envelope/}Server.userException

faultSubcode:

faultString:

faultActor:

faultNode:

faultDetail:

{

at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at org.apache.axis.components.net.JSSESocketFactory.create(

at org.apache.axis.transport.http.HTTPSender.getSocket(

at org.apache.axis.transport.http.HTTPSender.writeToSocket(

at org.apache.axis.transport.http.HTTPSender.invoke(

at org.apache.axis.strategies.InvocationStrategy.visit(

at org.apache.axis.SimpleChain.doVisiting(

at org.apache.axis.SimpleChain.invoke(

at org.apache.axis.client.AxisClient.invoke(

at org.apache.axis.client.Call.invokeEngine(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at com.sforce.soap.enterprise.SoapBindingStub.login(

at NIE.login(

at NIE.getData(

at NIE.main(

javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?http://xml.apache.org/axis/}stackTrace:javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?JSSESocketFactory.java:186)HTTPSender.java:191)HTTPSender.java:404)HTTPSender.java:138)InvocationStrategy.java:32)SimpleChain.java:118)SimpleChain.java:83)AxisClient.java:165)Call.java:2784)Call.java:2767)Call.java:2443)Call.java:2366)Call.java:1812)SoapBindingStub.java:3386)NIE.java:113)NIE.java:243)NIE.java:75)

 

{http://xml.apache.org/axis/}hostname:EA-A32140

 

javax.net.ssl.SSLException

at org.apache.axis.AxisFault.makeFault(

at org.apache.axis.transport.http.HTTPSender.invoke(

at org.apache.axis.strategies.InvocationStrategy.visit(

at org.apache.axis.SimpleChain.doVisiting(

at org.apache.axis.SimpleChain.invoke(

at org.apache.axis.client.AxisClient.invoke(

at org.apache.axis.client.Call.invokeEngine(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at com.sforce.soap.enterprise.SoapBindingStub.login(

at NIE.login(

at NIE.getData(

at NIE.main(

Caused by:

at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at org.apache.axis.components.net.JSSESocketFactory.create(

at org.apache.axis.transport.http.HTTPSender.getSocket(

at org.apache.axis.transport.http.HTTPSender.writeToSocket(

at org.apache.axis.transport.http.HTTPSender.invoke(

... 13 more

: Unrecognized SSL message, plaintext connection?AxisFault.java:101)HTTPSender.java:154)InvocationStrategy.java:32)SimpleChain.java:118)SimpleChain.java:83)AxisClient.java:165)Call.java:2784)Call.java:2767)Call.java:2443)Call.java:2366)Call.java:1812)SoapBindingStub.java:3386)NIE.java:113)NIE.java:243)NIE.java:75)javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?JSSESocketFactory.java:186)HTTPSender.java:191)HTTPSender.java:404)HTTPSender.java:138)

 

Hi,

 

We have a requirement for encrypting & decrypting some confidential information.

 

Digital certificate will be installed on Client machine browser; we need to use this certificate for encrypting and decrypting the data.

Should not store digital certificate in salesforce.com. 

 

Please suggest solution, if it is possible with Salesforce.com.

 

 

Regards,  

Lucky 

 

Hi,

 

Am using an extract from a custom object using data loader through XMl(Process-config.xml).

 

My query is

Select Squd_Id__c,Application_Form_No__c,Tenure__c,Date_of_Birth_dd_mm_yyyy__c,Case__r.PAN_card_number_customer__c,Case__r.Address_line1__c,Case__r.Address_Line2__c,Case__r.Area_Locality__c,Case__r.PIN_Code__c,Case__r.Telephone_No__c,Case__r.Mobile__c,Product__c,Date_of_Receipt_dd_mm_yyyy__c,Entry_Date_dd_mm_yyyy__c,Process_Type__c,Credit_Program__c,Scheme_Code_Finnone__c,Individual_Corporate__c,Gender__c,First_Name__c,Middle_Name__c,Last_Name__c,Marital_Status__c,Address_Type__c,City__c,State__c,Mailing_Address__c,Office_MailingAddress__c,SF_De_dupe_Status__c,SF_CIBIL_Status__c,SF_CIBIL_Score__c,SF_Negative_Area_Check__c,SF_Final_Loan_Status__c,DSA__c,DME__c,Approved_Rejected_Date__c,Finnone_Report_Time__c,Case__r.Chanel_Source__c,case__r.Referral_Code__c,Case__r.Branch_Finnone_Code__c,Loan_Amount__c,case__r.Campaign__c,Supplier__c,case__r.Bank_Rel_Finnone__c,case__r.Constitution_of_the_Company__c,case__r.Educational_Qualification__c,Professional_Qualification__c,Property_Status__c,case__r.STD_Code__c, case__r.Personal_email_Id__c,Office_Address_1__c,Office_Address_2__c,Office_Address_3__c,Office_State__c,Office_City__c,case__r.Pin_Code_Off__c,case__r.STD_Code_Off__c,case__r.Tele_No_O__c,First_Verification_Type__c,First_FI_Completion_Date__c,First_FI_Agency_Name__c,Second_Verification_Type__c,Second_FI_Agency_Name__c,Second_FI_Completion_Date__c,Second_Verification_Status__c,Oracle_Flag__c,TestId__c FROM Finnone_Report__c

 

But, when I ran the .bat file it is getting strucked  and not pulling any data. I have tried excluding the where condition also.

 

Please help me.

 

Thank you.

 

Regards,

Lucky

Hi,

I have to form a request with around 1000 records and then I have to send it to other Server using Http.
While I am sending the request I got an error like " Exceeded max size limit of 100000 with request size 143451".
So I limited it to 100 records and then I have send it to server.
Then I got the below errors:
  Connection reset,
  Error while writing to server and
Please give your inputs on this.

Regards,
lucky

Hi,

 

I have installed Inofrmatcia ondemand data loader in my developer edition. But, its not working properly. When I click on Integrationt tab, is giving message has Salesfroce.com session expired.

 

Can I get any help\notes\pdf on this how to use this.

 

Another question, Can I extract data from Salesforce.com using informatica into xls file?

 

Thanks in Advance!

 

Regards,

Lucky

Hi,

 

I have installed Inofrmatcia ondemand data loader in my developer edition. But, its not working properly. When I click on Integrationt tab, is giving message has Salesfroce.com session expired.

 

Can I get any help\notes\pdf on this how to use this.

 

Another question, Can I extract data from Salesforce.com using informatica into xls file?

 

Thanks in Advance!

 

Regards,

Lucky

Hi,

I am getting below error while login into Salesforce.com from Java. Its working fine in other network, but when I try from different network i am getting below error. Can you please tell what can be the issue is?

 

16-Feb-2011 15:35:37 NIE login

INFO: LOGGING IN NOW....

16-Feb-2011 15:35:38 NIE login

INFO: An unexpected error has occurred: ; nested exception is:

 

AxisFault

faultCode: {

javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?http://schemas.xmlsoap.org/soap/envelope/}Server.userException

faultSubcode:

faultString:

faultActor:

faultNode:

faultDetail:

{

at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at org.apache.axis.components.net.JSSESocketFactory.create(

at org.apache.axis.transport.http.HTTPSender.getSocket(

at org.apache.axis.transport.http.HTTPSender.writeToSocket(

at org.apache.axis.transport.http.HTTPSender.invoke(

at org.apache.axis.strategies.InvocationStrategy.visit(

at org.apache.axis.SimpleChain.doVisiting(

at org.apache.axis.SimpleChain.invoke(

at org.apache.axis.client.AxisClient.invoke(

at org.apache.axis.client.Call.invokeEngine(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at com.sforce.soap.enterprise.SoapBindingStub.login(

at NIE.login(

at NIE.getData(

at NIE.main(

javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?http://xml.apache.org/axis/}stackTrace:javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?JSSESocketFactory.java:186)HTTPSender.java:191)HTTPSender.java:404)HTTPSender.java:138)InvocationStrategy.java:32)SimpleChain.java:118)SimpleChain.java:83)AxisClient.java:165)Call.java:2784)Call.java:2767)Call.java:2443)Call.java:2366)Call.java:1812)SoapBindingStub.java:3386)NIE.java:113)NIE.java:243)NIE.java:75)

 

{http://xml.apache.org/axis/}hostname:EA-A32140

 

javax.net.ssl.SSLException

at org.apache.axis.AxisFault.makeFault(

at org.apache.axis.transport.http.HTTPSender.invoke(

at org.apache.axis.strategies.InvocationStrategy.visit(

at org.apache.axis.SimpleChain.doVisiting(

at org.apache.axis.SimpleChain.invoke(

at org.apache.axis.client.AxisClient.invoke(

at org.apache.axis.client.Call.invokeEngine(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at org.apache.axis.client.Call.invoke(

at com.sforce.soap.enterprise.SoapBindingStub.login(

at NIE.login(

at NIE.getData(

at NIE.main(

Caused by:

at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)

at org.apache.axis.components.net.JSSESocketFactory.create(

at org.apache.axis.transport.http.HTTPSender.getSocket(

at org.apache.axis.transport.http.HTTPSender.writeToSocket(

at org.apache.axis.transport.http.HTTPSender.invoke(

... 13 more

: Unrecognized SSL message, plaintext connection?AxisFault.java:101)HTTPSender.java:154)InvocationStrategy.java:32)SimpleChain.java:118)SimpleChain.java:83)AxisClient.java:165)Call.java:2784)Call.java:2767)Call.java:2443)Call.java:2366)Call.java:1812)SoapBindingStub.java:3386)NIE.java:113)NIE.java:243)NIE.java:75)javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?JSSESocketFactory.java:186)HTTPSender.java:191)HTTPSender.java:404)HTTPSender.java:138)

 

Hi,

 

We have a requirement for encrypting & decrypting some confidential information.

 

Digital certificate will be installed on Client machine browser; we need to use this certificate for encrypting and decrypting the data.

Should not store digital certificate in salesforce.com. 

 

Please suggest solution, if it is possible with Salesforce.com.

 

 

Regards,  

Lucky 

 

Hi,

I have to form a request with around 1000 records and then I have to send it to other Server using Http.
While I am sending the request I got an error like " Exceeded max size limit of 100000 with request size 143451".
So I limited it to 100 records and then I have send it to server.
Then I got the below errors:
  Connection reset,
  Error while writing to server and
Please give your inputs on this.

Regards,
lucky

Hi,

 

I have installed Inofrmatcia ondemand data loader in my developer edition. But, its not working properly. When I click on Integrationt tab, is giving message has Salesfroce.com session expired.

 

Can I get any help\notes\pdf on this how to use this.

 

Another question, Can I extract data from Salesforce.com using informatica into xls file?

 

Thanks in Advance!

 

Regards,

Lucky