salesforce-lightning

The requested resource does not exist [error] in Salesforce. What is wrong with Salesforce?

大城市里の小女人 提交于 2021-02-19 00:22:46
问题 I execute a SOQL request to get all available record ids of the SObject 'ObjectPermissions'. Then I use the request to GET /services/data/v48.0/sobjects/ObjectPermissions/{id} to fetch all the necessary info for a specific record. As you can see in the first picture, I received a response with a total of 960 records. The problem is that for 285 entries I can’t get the information. Here is an example of the answer I received for one of 285: I highlighted the identifier of this record. Maybe

how to pass SAML attributes from service provider(Salesforce) to Visualforce page Controller

馋奶兔 提交于 2021-02-10 20:20:39
问题 SAML response from the identity provides(External) contains the Employee Id as a separate attribute which i need to display in Salesforce VisualForce Page. So help me in passing the attributes from saml response to a VF Page once authenticated via SSO . Thanks in advance 回答1: Do you have a custom SAML handler class? You can generate a template one in SSO settings (bottom of the form, in JIT section) or just look around in documentation. https://developer.salesforce.com/docs/atlas.en-us

Why Picklist Not Populating Data for Custom Dependent Picklist Field With lightning:select In Lightning Component

无人久伴 提交于 2020-12-21 02:19:23
问题 I am trying to replicate the below functionality of Custom Dependent Picklist Field With lightning:select In Lightning Component for Custom Object (Ref:- https://sfdcmonkey.com/2018/08/31/dependent-picklist-lightningselect-lightning-salesforce/) , Only difference here is i am using Custom object ERT_Case_Type_Data__c and its 2 picklist Level_1__c and Level_2__c instead of standard object Contact reference in the article Below are ERT_Case_Type_Data__c details Below are ERT_Case_Type_Data__c

Auto reset the Custom Salesforce Lightning Level Fields

陌路散爱 提交于 2020-12-15 08:34:23
问题 I was able to create a full search of case types using this thread How To Implement Full Search in Case Type using Salesforce? ,but now i have a need where I would like to auto reset Custom Salesforce Lightning Level Fields to null after cross button is selected Right now i have to refresh the entire salesforce page to clear the level fields of salesforce lightning component Please let me know how do I clear the level1 and level2 and level3 data after clicking cross Thanks in advance Carolyn

Auto reset the Custom Salesforce Lightning Level Fields

ⅰ亾dé卋堺 提交于 2020-12-15 08:34:02
问题 I was able to create a full search of case types using this thread How To Implement Full Search in Case Type using Salesforce? ,but now i have a need where I would like to auto reset Custom Salesforce Lightning Level Fields to null after cross button is selected Right now i have to refresh the entire salesforce page to clear the level fields of salesforce lightning component Please let me know how do I clear the level1 and level2 and level3 data after clicking cross Thanks in advance Carolyn

Setting Dependent Custom Lightning Picklist Level2 and Level3 then resetting the Level2 at Lightning component but Level2 Cached Data is Getting Saved

廉价感情. 提交于 2020-11-29 21:09:46
问题 Step 1 In a Salesforce Lightning component I have a scenario with three levels of dependent picklists, first I am setting values for picklist Level1, and Level2, then the user selects the dependent picklist value in Level3 Step 2 When I remove the selection at Level2, automatically Level3 selection also gets erased: Step3 Click Save Here is problem, that value selected in Step 1 is getting saved rather than the reset value in step 2. I have added code to reset values at ui:inputSelectOption

Setting Dependent Custom Lightning Picklist Level2 and Level3 then resetting the Level2 at Lightning component but Level2 Cached Data is Getting Saved

ε祈祈猫儿з 提交于 2020-11-29 21:07:32
问题 Step 1 In a Salesforce Lightning component I have a scenario with three levels of dependent picklists, first I am setting values for picklist Level1, and Level2, then the user selects the dependent picklist value in Level3 Step 2 When I remove the selection at Level2, automatically Level3 selection also gets erased: Step3 Click Save Here is problem, that value selected in Step 1 is getting saved rather than the reset value in step 2. I have added code to reset values at ui:inputSelectOption

How To Implement Full Search in Case Type using Salesforce?

左心房为你撑大大i 提交于 2020-11-25 03:51:46
问题 I need to build out a solution to create a search field on the new Case Type Data object in all 3 of the Level fields and populate based on selection. Similar to SF Global Search I would like to type 2-3 characters in the text search field and it would find the matching text in the Level1-3 fields and when selected the Level 1-3 field would populate. This is the apex class public class PickListHandler { @AuraEnabled public static List<String> getLevel1(){ List<String> tempLst1 = new List

How To Implement Full Search in Case Type using Salesforce?

瘦欲@ 提交于 2020-11-25 03:50:20
问题 I need to build out a solution to create a search field on the new Case Type Data object in all 3 of the Level fields and populate based on selection. Similar to SF Global Search I would like to type 2-3 characters in the text search field and it would find the matching text in the Level1-3 fields and when selected the Level 1-3 field would populate. This is the apex class public class PickListHandler { @AuraEnabled public static List<String> getLevel1(){ List<String> tempLst1 = new List