You need to sign in to do that
Don't have an account?

I want to create a lightning component in which I want to show the the details for a master detail object child-parent relation.
I have an Object which is n master-detail with another object
When A record in object A is created 3 records are created in Object b automatically.(I did this through process builder)
I want to put the component on object A to show all the associate record of object B and billing details of it.
Thanks in Advance!
It looks like our team of experts can help you resolve this ticket.
We have Salesforce global help-desk support and you can log a case and our Customer Success Agents will help you solve this issue. You can also speak to them on live chat. Click on the below link to contact our help-desk. Trust me it is a support service that we are offering for free!
https://jbshelpdesk.secure.force.com
Thanks,
Jarvis SFDC team
You can use the related list feature.
If you really need specific control over the list displayed, you can create a custom LWC or Aura component and query the related records using the relationship queries (https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_query_using.htm#sforce_api_calls_soql_relationships_query_using) for example.
Best regards,
Barthélemy
I am trying to create a component that accepts 'n' number of case numbers as comma saperated values and a picklist field named Status. Once the user clicks on Update case status button, the status of all the selected case numbers must be updated as per the value selected in the picklist
The code is saved but i am getting error on click on the update status button.
Component: Controller JS: Helper:
Apex class:
Please help