• Jigna Shaparia
  • NEWBIE
  • 5 Points
  • Member since 2016

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

Hello Experts,

I have a developer edition and trying to connect to Data loader using password authentication. I have tried below options

Tried to connect using username, password+token and url: "https:\\local.salesforce.com", but was not able to login. It says "Failed to send request". I was not able to see any entry in login history as well. 
I tried to change th url to "http://www.salesforce.com", "https://www.salesforce.com".

I have created a domain, I tried to use my domain url as well, but could not get through. I have tried changing the password and security token multiple times also installed data loader few times. 

I tried using oAuth as well, but cannot connect using oAuth as well. I am able to login to application without any issue.

I have similar issue with login through SOAP UI (Enterprise WSDL), nothing comes up in the history.


Thank you
Jigna.

My Trigger scenario; Take two custom objects, okati master okati detail, when ever master email field updated all its detail records having email                                       as empty should get updated with masters email. 
Error   :    expecting a right parentheses, found 'RiskRel_mail__c' at line 10 column 7

Risk Object(Master)
Risk--Master Object
RiskRelationship(child)
RiskRelationship----child
trigger UpdateRelationship on Risk__c (After Update) {
set<Id> riskidtoquery = new  set<Id>();
for(Risk__c R: Trigger.new)
{
riskidtoquery .add(R.Id);
}
List<RiskRelationship__c> relationship = [select Id,RiskRel_mail__c from RiskRelationship__c where Risk__c IN:riskidtoquery];
for(RiskRelationship__c rr : relationship)
{
If(rr. RiskRel_mail__c =='' )( ERROR THROWING LINE)
{
  rr.RiskRel_mail__c = riskidtoquery.Risk_mail__c
}
}
Update rr;
}
Thanks and Regards,
sainath

Hello Experts,

I have a developer edition and trying to connect to Data loader using password authentication. I have tried below options

Tried to connect using username, password+token and url: "https:\\local.salesforce.com", but was not able to login. It says "Failed to send request". I was not able to see any entry in login history as well. 
I tried to change th url to "http://www.salesforce.com", "https://www.salesforce.com".

I have created a domain, I tried to use my domain url as well, but could not get through. I have tried changing the password and security token multiple times also installed data loader few times. 

I tried using oAuth as well, but cannot connect using oAuth as well. I am able to login to application without any issue.

I have similar issue with login through SOAP UI (Enterprise WSDL), nothing comes up in the history.


Thank you
Jigna.

Hi All,
I am trying to implement a Formula for auto lead assignment that does the following in a more efficient way:
IF(Round_Robin_ID__c = 1 || Round_Robin_ID__c = 3 || Round_Robin_ID__c = 6 ....)
Basically I have an array of numbers that I want to compare the Round_Robin_ID against. Ideally it would look like:
IF(ISINARRAY(Round_Robin_ID__c,[1,3,4,6,7,9,.....])
Does anyone know a smart solution to this?
Thank you!