• larva
  • NEWBIE
  • 20 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 0
    Replies
Hi I need some help regarding my Custom Meta Data I have a Custom Object Project__c then whenever I have to create a new Record the Owner should be automatically set to its respective Job approvers base on queue.
  • August 09, 2021
  • Like
  • 0
Account related to the updated Contact does not yet have a Primary Contact. I can create a lot of contact as long as there are no existing primary contact.
When an existing Non-Primary Contact is updated to become a Primary Contact
If the Account already has a Primary Contact it will display error. 
  • August 06, 2021
  • Like
  • 0
 
 
 
 
When an existing Non-Primary Contact is updated to become a Primary Contact, the system should check if the Account related to the updated Contact does not yet have a Primary Contact. 
  • August 06, 2021
  • Like
  • 0
 
 
 
When a new Contact is created as a Primary Contact
the system should check if the Account related to the new Contact does not yet have a Primary Contact.

If the Account already has a Primary Contact, a message should be shown.
  • August 06, 2021
  • Like
  • 0
Using Execute Anonymous 
Debug all Accounts with the total number of contacts and one contact firstname

Get All Contacts with Accounts using Query Below 
Select Id, AccountId,FirstNAme from Contact WHERE AccountId !=null
 
  • August 05, 2021
  • Like
  • 0
Apex Trigger code I have to get the sum of "field : total_order_amount" in childs Object which is Status ="Closed". But only who choose from the Parent Object Record type ="Single Order".

1st OBJECT "Child" 
OBJECT NAME: Order
field: Open and Closed
field : total_order_amount.

2nd Object "MASTER DETAIL"
OBJECT NAME:
SureBuyer__c
Record Type: Single Order and Bulk Order.
  • July 25, 2021
  • Like
  • 0
Create lightning aura component with an apex controller to retrieve and display all order items related to the order as well as the discount and total order amounts?
  • July 25, 2021
  • Like
  • 0