• Abhijit Shrikhande
  • NEWBIE
  • 10 Points
  • Member since 2014

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

Is it possible to get the lead owner's manger's email to be displayed in a formula field?

We are trying to send an alert to the owner's manager if a lead has not been worked on in 24 hours after it has arrived. 

How can we go about doing this?

Hello:

I am getting the following error:
Challenge Not yet complete... here's what's wrong:
The 'Name' and 'Feedback' fields either do not appear on the new action page layout or they are not the only fields present.

I do have this on the page layout. So, I am not sure what I am missing. Please help!

Screenshot
Hi,

Im trying to do this challende on Admin Begnner and keep getting this error

Challenge Not yet complete... here's what's wrong: 
The 'Name' and 'Feedback' fields either do not appear on the new action page layout or they are not the only fields present.

Any Ideas?

I am trying to complete the challenge in my developer org. I am getting the following error.

The import file I downloaded does not have any account name in it. I have noticed these colums in the csv file.
FNAME,LNAME,CELL,EMAIL,SALUTATION,TITLE

This challenge is located at

https://developer.salesforce.com/trailhead/en/data_management/data_import

Error in challenge

I created a community user in my Developer Org. Now I am trying to login using python. I am getting an error. If I try the same code with a Partner Portal User, then I am able to login. I have the api enabled on the Customer Community permission set.

Here is my code:
 
from simple_salesforce import Salesforce
sf = Salesforce(username='rose.gonzalez@edge.com.space', password='*****', security_token='', sandbox=False)

What other permissions do I need?

Thanks,
Abhijit
Help please - I am trying to complete the Lightning Challenge here:

https://developer.salesforce.com/trailhead/lightning_components/lightning_components_creating

But when I submit I am told it is wrong:

The component does not include an H1 tag with a 'headline' CSS class

My component reads:

<!-- MyLightningComponent.cmp -->
<aura:component implements="force:appHostable"> 
    <div class="headline">
        <H1>Hello Lightning Component!</H1>
    </div>    
</aura:component>

and I have a Style:

.THIS {
    background-color: yellow;
    padding-top: 10px;
}

H1.THIS {
    font-size:24px;
}

.THIS H1{
    font-weight: bold;
    padding: 10px;
}

.THIS.headline {
    padding-top: 20px;
    font-size:24px;
}

.THIS .red {
    background-color: red;
    padding: 10px;
}

.THIS .blue {
    background-color: blue;
    padding: 10px;
}

.THIS .green {
    background-color: green;
    padding: 10px;
}

Can anyone describe what I have done wrong?
How can I create a single row object in salesforce?

In oracle, I could do something like this for a single row table:

create table singlerowtable(lastrundate DATE);

create unique index singlerowtable_uk ON singlerowtable('1');

I am trying to call a public facing webservice. I am able to call this webservice using SoapUI and it returns me the output I seek.
I downloaded the wsdl and generated a wsdl class. After generating the wsdl class, I tried to invoke this in an Execute Anonymous block of code.
The webservice is hosted at: http://peopleask.ooz.ie/soap
The block of code I used to call the service is:

peopleaskOozIeSoap.PeopleAskServiceSoap mypass = new peopleaskOozIeSoap.PeopleAskServiceSoap();
peopleaskOozIeSoap.ArrayOfstring hoos = new peopleaskOozIeSoap.ArrayOfstring();
hoos =  mypass.GetQuestionsAbout('lauren bacall');

The error I am facing is:
FATAL_ERROR|System.CalloutException: Web service callout failed: Unexpected element. Parser was expecting element 'http://peopleask.ooz.ie/soap:GetQuestionsAboutResponse' but found ':Questions'


What am I doing wrong? How can I call this webservice?