Questions tagged [sfdc]

A Platform-as-a-Service development environment created by Salesforce.com, which underlies the core Salesforce CRM functionality and is available as a platform via database.com, as well as via Heroku, a Ruby-on-Rails environment.

Force.com is a cloud based Platform-as-a-Service available for developers to applications hosted in a multi-tenant, cloud based environment with a combination of declarative development as well as through using the native Apex programming language.

Apex is based on Java and can be used to generate custom pages via the Visualforce markup language and components. The platform supports both SOAP and REST APIs for communications with other systems, and provides a database managed entirely through an web based UI, which leverages a query language called SOQL, which is heavily based on SQL.

There is synonym for this tag - .

Stackoverflow Force.com documentation.

118 questions
13
votes
4 answers

WSO2 ESB: Unexpected Character Error when using Salesforce Connector

When attempting to follow the WSO2 directions to update a salesforce record I am getting the following error. Saleforce adaptor - error injecting sObjects to payload : org.apache.axiom.om.OMException: com.ctc.wstx.exc.WstxUnexpectedCharException:…
Jay Smith
  • 471
  • 3
  • 17
4
votes
3 answers

Need help to click on the element under the shadow Root (closed) type

Null Pointer Exception on click at the element located inside of the shadow Root (closed) Tried to handle it with Java Script: public WebElement getShadowRootElement(WebElement element) { return (WebElement) ((JavascriptExecutor) …
Y_Sh
  • 121
  • 2
  • 4
  • 14
3
votes
1 answer

Read data from Excel file using Apex in Salesforce

I have a requirement where we need to parse the excel file and insert the data in one of the object using apex. This excel file contains multiple sheets. We need to read the data from multiple sheets (as of now one sheet is also fine) and upload the…
bhaskar b
  • 51
  • 2
  • 5
2
votes
0 answers

ALB -OIDC returning 401 Authorization Required page

WE have configured out ALB to authenticate with OIDC server (Salesforce). Intermitently we see after successfull login an HTML page which says 401 authorization required. Now its for sure i am not providing wrong credentails. but I do not understand…
VIJ
  • 1,516
  • 1
  • 18
  • 34
2
votes
1 answer

Salesforce standard objects accessibility based on org wide share settings and roles

Is there any possible way to fetch the SFDC standard objects such as Accounts, Opportunity, Contacts and Leads based on the accessiblty rules configured in the SFDC using REST API of SFDC? If yes, then how exactly we can pass the user specific…
2
votes
1 answer

Integrate Salesforce Einstein chatbot in website built using Dot Net and Angular

I am trying to add chatbot feature to my website (built using .Net and Angular). So, I am thinking of using Salesforce Einstein Chatbot for it. But is it possible to add Einstein chatbot feature to my website as I don't see any results on google on…
2
votes
0 answers

How to access offline SmartStore data with native iOS SDK?

I am using native SalesForce iOS SDK which stores data in offline SmartStores and synchronize with the server. If internet is not available it stores data in offline SmartStores allows to sync with SalesForce server when internet is available. While…
Mujassir Nasir
  • 1,640
  • 4
  • 31
  • 52
2
votes
0 answers

Lightning page not working anymore with new updates in salesforce community

I am re-writing and extending the our Lightning product which was created 4 months back. But I am getting some issue in code which used to work fine in previous version. I haven't changed anything from last working version. In navigation menu I…
2
votes
2 answers

Salesforce Lightning Component will not update records via Apex call, freezes

Issue overview: Currently coding a Lightning Component to update records on a custom object. However, every time I trigger the update (via a ui:button), the page freezes and I don't see any errors in the debugger or console. Cannot for the life of…
2
votes
1 answer

Salesforce setNextApproverIds() not working

I have created an Approval Process and am launching it from an Apex code behind a custom button. This is working fine, but the problem I am facing is that I am not able to set the approver from the Apex code. It always takes the Approver that is set…
ADG
  • 21
  • 3
2
votes
1 answer

Webtolead SOAP Apex service Error PHP

I want to submit the the data to lead form in SFDC here is my code : require_once ('soapclient/SforcePartnerClient.php'); require_once ('soapclient/SforceHeaderOptions.php'); // Salesforce.com credentials $sfdcUsername =…
Rakesh Shetty
  • 4,548
  • 7
  • 40
  • 79
1
vote
0 answers

HttpResponse[Status=Found, StatusCode=302]" while integrating Salesforce to AzureDevops

Integrating Salesforce to Azuredevops, Creating Issue/Task/Bug to Azuredevops from the Salesforce custom page by using POST method RestApi. Doing the same from postman service by using same url ,accesstoken etc and i am able to create task in the…
1
vote
0 answers

Getting TrustedHTML assignment error in Visualforce page

I am getting This document requires 'TrustedHTML' assignment error in jquery 3.6.0 in visualforce page after adding CSP in response header Error Screenshot Response Header Screensshot Any guide will be helpful. Thank you
1
vote
0 answers

Add files to Salesforce CMS channel folder via Connect API?

I'm developing an integration that will programmatically create product entries in Salesforce, and part of that process needs to be the addition of product images. I'm using the Connect API and am able to make a GET call to the right folder like…
1
vote
1 answer

I am getting the error template not found on some other email template although the template is present in sfdc

I am using a visualforce template using cross objects via apex class as of now. My code was working and sending emails when I was using a custom template with classic letterhead. Send Test and Verify button is still working.
1
2 3 4 5 6 7 8