• Ofra
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
I installed Enhanced Lightning Grid (https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EVK8iUAH) from the AppExchange.
As you can see from their User Guide (https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P3A00000aW6whUAC), this adds an App to the org that is named "Sortable Data Grids" where one may configure data grids of objects by using a filter, and by adding fields and actions to each grid.
I am trying to figure out which actions can I use, and what is the correct way to use them
There is a help page that states the following: 
ATTRIBUTE: Event
PURPOSE: Fully qualified event name. Component is only able to throw global events and evtObjectManager events. If you want to use another event, then raise an evtObjectManager event and catch the payload.
EXAMPLES: e.force.editRecord,  e.c:evtObjectManager
  • What are global events? 
  • What are evtObjectManager events?

Help LinkHelp Contents

 
  • June 28, 2023
  • Like
  • 0
Hi, 
I'm writing some Apex code and I need to query a custom object's ID as in the URL below:
https://telfed--pras.lightning.force.com/lightning/setup/ObjectManager/01I3q0000026FS5/Details/view
What I have is the ID of a record of that type, and I know how to get the type's name, for example by doing: 
recordId.getSobjectType().getDescribe().getName()
However, I can't seem to find a function that will get me the ID of type. 

I want the ID because I want to query the correct Custom Metadata Record that corresponds to this type via an Entity Definition Relationship field. I can see in the Query Editor Results that the value stored in the record is not the type's name, but the type's ID. So I would like to get the ID so that I can construct the correct where clause. 
SELECT FIELDS(ALL) FROM Incoming_Contact_Data__mdt LIMIT 200
User-added imageAny help would be appreciated!
 
  • May 18, 2022
  • Like
  • 0
I installed Enhanced Lightning Grid (https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EVK8iUAH) from the AppExchange.
As you can see from their User Guide (https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P3A00000aW6whUAC), this adds an App to the org that is named "Sortable Data Grids" where one may configure data grids of objects by using a filter, and by adding fields and actions to each grid.
I am trying to figure out which actions can I use, and what is the correct way to use them
There is a help page that states the following: 
ATTRIBUTE: Event
PURPOSE: Fully qualified event name. Component is only able to throw global events and evtObjectManager events. If you want to use another event, then raise an evtObjectManager event and catch the payload.
EXAMPLES: e.force.editRecord,  e.c:evtObjectManager
  • What are global events? 
  • What are evtObjectManager events?

Help LinkHelp Contents

 
  • June 28, 2023
  • Like
  • 0
Hi, 
I'm writing some Apex code and I need to query a custom object's ID as in the URL below:
https://telfed--pras.lightning.force.com/lightning/setup/ObjectManager/01I3q0000026FS5/Details/view
What I have is the ID of a record of that type, and I know how to get the type's name, for example by doing: 
recordId.getSobjectType().getDescribe().getName()
However, I can't seem to find a function that will get me the ID of type. 

I want the ID because I want to query the correct Custom Metadata Record that corresponds to this type via an Entity Definition Relationship field. I can see in the Query Editor Results that the value stored in the record is not the type's name, but the type's ID. So I would like to get the ID so that I can construct the correct where clause. 
SELECT FIELDS(ALL) FROM Incoming_Contact_Data__mdt LIMIT 200
User-added imageAny help would be appreciated!
 
  • May 18, 2022
  • Like
  • 0