salesforce Questions

3

Solved

I am having trouble solving the Challenge 7 I have the required imports as well as required functions in the JS file. Still #Trailhead giving error: We can’t find the getLocationFromBrowser() funct...
Vanbuskirk asked 28/6, 2020 at 15:13

1

Solved

Salesforce has two different UIs and in accordance with it, it has the possibility to store attached files differently. Two files were uploaded via the classic UI and they are marked as 'attachment...
Autarchy asked 10/4, 2020 at 15:27

4

I have an app in my salesforce developer account that I want to allow my users to access from a remote app that I am building. I see that I must use OAuth2.0 to first authorize my users before they...
Macruran asked 29/7, 2014 at 17:30

3

Solved

I am working with lightning web component and apex class. This is new for me. I am trying to get the content of a Proxy object generated by an Apex class. But when I console log it I have a resu...

2

Solved

I am using simpleSalesforce library for python to query SalesForce. I am looking at two different object in SalesForce: Account and Opportunity (parent-child). There is an accountId inside the opp...
Mesmerism asked 8/1, 2020 at 12:4

2

Is it possible to Cast SObject dynamically? Example : I know we can do this : (Account) Sobject But I want to do this as the return type of sObject changes based on certain parameters. (Dyna...
January asked 10/9, 2014 at 9:2

2

Working in playground of lightning web components. I have following files and code: basic.html <template> <div style="height: 300px;"> <lightning-datatable key-field="id" data=...
Gifu asked 13/11, 2019 at 14:20

2

Solved

I'm trying to set POST content using Apex. The example below sets the variables using GET PageReference newPage = Page.SOMEPAGE; SOMEPAGE.getParameters().put('id', someID); SOMEPAGE.getParamete...
Tapes asked 27/6, 2013 at 21:54

1

Solved

I need to calculate in a custom field if a Date is more than 2 years ago ... if so then return a YES or if it is not then return a NO I'm trying this formula, making the return type "text" Last_wo...
Oscular asked 8/10, 2019 at 19:4

3

I have inventory application in .NET which is going interoperate with Salesforce. How to generate WSDL file of a web service, I was told that Visual Studio automatically create it and also told th...
Trimolecular asked 24/4, 2013 at 7:37

1

Solved

I can't seem to get this code to work: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; HttpClient client = new HttpClient(); client.BaseAddress = new Uri("https://login.sale...
Rocco asked 3/9, 2019 at 21:12

6

According to a requirement, i have to change the owner of an account if the user does not have read access to a third object. I need a functionality similar to the isAccessible() method of Describ...
Dehumidify asked 9/5, 2012 at 8:32

1

Solved

I am creating a Python script for downloading a report from Salesforce as a CSV. My script is working perfectly fine for Salesforce Classic. However, I need to get it working for Lightning Experi...
Auberge asked 20/8, 2019 at 14:26

3

Solved

I'm trying do develop a visualforce custom component which is an entity chooser. This custom component displays a UI which helps browsing some records. It's possible to select one record, and I'd l...
Muezzin asked 23/5, 2011 at 21:37

3

Solved

Our IdP is a Salesforce.com org. The SP is a third party .Net application. During development, the 3rd party reported that they're unable to validate the SAML response sent. We decided to try vali...
Agitato asked 19/10, 2013 at 9:9

2

Solved

I'm following this guide in order to set up Continuous Integration for my Salesforce development. It says to create a RSA private key and from this create a key file and after that generate a certi...
Nymphet asked 27/5, 2019 at 16:30

5

Solved

Sometimes in Salesforce tests you need to create User objects to run part of the test as a speciifc type of user. However since the Salesforce Summer 08 update, attempts to create both User objec...
Clive asked 5/3, 2010 at 14:39

3

I am trying to do basic authentication to call a rest service. On service doc the procedure mentioned for CURL is like this curl -X POST https://secure.clientservice.com/api/transactions.json -u ...
Remains asked 17/5, 2016 at 10:20

2

I have a csv of a series of contacts from Salesforce with the name, location and a URL that opens an image which I need to download Thus far I have only been able to access my Salesforce instance ...
Statued asked 22/5, 2019 at 23:50

7

Solved

I would like to know the class of a variable/property at runtime. For example: Integer i = 5; //pseudo-code if (i.className == 'Integer') { System.debug('This is an integer.'); } else { System....
Emie asked 3/3, 2012 at 16:11

8

Solved

I am trying to use simple_salesforce to query salesforce data with Python. I am using my username and password, which I am 100% sure is correct. I got the org ID from logging into Salesforce and lo...
Glimp asked 5/8, 2014 at 2:23

2

I'm trying to load Salesforce data into a Python dataframe, so we can do all of our manipulations there. simple_salesforce worked with the caveat that we reached the 2,000 limit: from simple_sales...
Sackville asked 3/10, 2017 at 18:40

3

Solved

I have a custom tool defined within Jenkins via the Custom Tools plugin. If I create a freestyle project the Install custom tools option correctly finds and uses the tool (Salesforce DX) during exe...
Autry asked 27/7, 2017 at 10:55

6

Solved

I was going through the SOQL documentation , but couldn't find query to fetch all the field data of an entity say , Account , like select * from Account [ SQL syntax ] Is there a syntax like th...
Fanchon asked 8/1, 2012 at 19:15

2

Using Apex, I want to split a string and then rejoin it with the 'AND' operator as the separator. I split the string successfully but having an issue in rejoining it. String [] ideaSearchText =...
Mott asked 27/2, 2012 at 12:46

© 2022 - 2024 — McMap. All rights reserved.