• Pargavi Selvaraj 7
  • NEWBIE
  • 10 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 7
    Replies
I created a cutsom lightning component to override the standard new action in my custom object.
In that form, I wanted to add a new contact button to invoke a standard contact action. Is this possible to invoke the standard action. Because I have a lookup relation to the contact.
Hi Team,

Iam facing error 
Make sure the 'bearLocation' and 'bearSupervisor' Lightning web components have been added to the Bear record page.
User-added image
on these trailhead module
https://trailhead.salesforce.com/content/learn/projects/lwc-build-flexible-apps/single-record?trailmix_creator_id=strailhead&trailmix_id=lightning-web-components

I have added them in record page 
User-added imagei have made activation as org default in record page.

Thanks,
Bhanu Prakash
During 
Prepare for Your Salesforce Platform Developer II Credential

Module Name 
" Automate Post-Workshop Tasks with Invocable Apex
We are getting error message "


We find error massage 

Couldn't find the "Thanks" badge in the instructor's Chatter feed after marking a campaign complete.

But We are getting This Post in Feed 
I have checked all your solution but not find answer.


User-added image


 
I am getting this error ,while i was fetching data from Account sobject using dynamic query based on option selected by the user.
**********************************************************************Apex class ****************************************************************************
public class Dyanmic1 {
    
    public List<SelectOption>     options     {set;get;}
    public List<String>         selected     {set;get;}
    public List<Account>         accounts     {set;get;}
    public Dyanmic1(){
        options  = new List<SelectOption>();
        selected = new List<String>();
        accounts  = new List<Account>();
        List<String> fields = new List<String>{'Name','Industry','Rating','Phone'};
            for(String s : fields){
                SelectOption sop = new SelectOption(s,s);
                options.add(sop);
            }
        
    }
    public void go(){
        String query= 'Select ID';
        for(String s: selected){
            query = query+','+ s ;
            
        }
        query = query+'FROM Account';
        accounts = Database.query(query);
    }
    
}
*************************************************************VF Page*******************************************************************************
<apex:page controller="Dyanmic1">
    <apex:form>
    <apex:selectList multiSelect="true" value="{!selected}" >
        <apex:selectOptions value="{!options}" />
    </apex:selectList>
    <apex:commandButton value="Go" action ="{!go}"/>
    <apex:pageBlock>
    <apex:dataTable value="{!accounts}" var="a">
        <apex:repeat value="{!selected}" var="f">
            <apex:column value="{!a[f]}"/>
        </apex:repeat>
    </apex:dataTable> 
   </apex:pageBlock>
   </apex:form>
</apex:page>
***********************************************************************************************
Please help.
Thanks in advance,
Venkat.
 
Hi,

On add new user page i am not able to select salesforce option in user license there are only two options
Chatter Free and Chatter External due to which i am not able to select my custum created new profile.

User-added image

Can some body help me how i can select salesforce license?

Thanks,
Shahab
Salesforce1 Mobile basics unit 5/5 - Creating Object-Specific Publisher Actions

I believe I have follwed the requirements explicitly, three times now.  Validated that the publisher action actually does what it's supposed to but the check from Trailhead returns an error.  
"Challenge not yet complete... here's what's wrong: 
There was an unhandled exception. Error: NoMethodError. Message: undefined method `each' for nil:NilClass"
Error message

I have deactivated all Account triggers to insure there's not a conflict.
I have zero data validation rules on the Account object.
I have zero workflow rules on the Account object.
I have checked that all Approvals are deactivated.

Here are all of the components...

Action
Update Account Information action
Publisher Layout
Account Detail publisher layout
Page Layout
Account Layout

Functional Results
Update Results


I'm quite anxious to complete this unit as it's the only one I have left.

Hi All, I have met a problem and have no idea how to handle it. Here is the situation: I need to write a SOQL sentence like "SELECT field1 FROM object1" but in my case I don't know the value of fields1 in the first place. There is a string to hold the value. How can write the SOQL sentence to use this string value. Thanks