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
0
votes
1 answer

Tidying / Formating Salesforce Formulas

I am looking for a way to Tidy/Format Salesforce formulas. I know that there is a chrome extension that let's you do that, but it only works in the Edit mode. However when you are in the read-only mode, it displays the Formula as a long text without…
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
0
votes
2 answers

How to create Salesforce incremental package.xml automatically?

Does anyone experiment in creating salesforce Package.xml automatically for continuous integration? If there any script or some idea please share. You know incremental package.xml helps to deploy only the modified files rather than using complete…
0
votes
2 answers

Incremental/Partial Deployment using SalesforceDX

Is there any way to make Incremental/Partial Deployment using SalesforceDX. So that only the components that are changed are deployed, instead of a full build?
0
votes
2 answers

How can I GET updated activities from Oracle Field Service Cloud (OFSC) and UPDATE Salesforce (SFDC) using Oracle Integration Cloud (OIC)?

I need some suggestions on: GET updated activities from Oracle Field Service Cloud (OFSC) using Oracle Integration Cloud (OIC) UPDATE Salesforce (SFDC) using Oracle Integration Cloud (OIC) If I update certain fields such as customer phone number…
0
votes
0 answers

The request signature we calculated does not match the signature you provided. Check your key and signing method from salesforce to amazon s3

I am creating signature for getting file from amazon S3 from salesforce. I am getting below error The request signature we calculated does not match the signature you provided. Check your key and signing method. I am using below code Blob…
0
votes
1 answer

Turn custom link to formula field

I have created a custom link for a custom object and it works. But it's not controlled by FLS so I have to move to Formula field. What should I do to turn it to a formula field? Here's my custom link codes: https://sanofi-pharmachina--dev1.cs5.my…
Jiayi Guo
  • 105
  • 3
  • 14
0
votes
1 answer

How to chain server calls synchronously in lightning web components

I have requirement where user have to process multiple records each at a time due to governor limitations. For the incoming multiple records each record is taken and calls apex. After the successful response have to place the same request again.…
naveen
  • 159
  • 2
  • 8
0
votes
1 answer

Copying Attachments from parent object to child object when field changes

Trying copying Attachments from parent object to child object when attachment gets inserted on Opportunity(Parent Obj) I have tried writing some code. trigger CopyAttachmentsToRU on Attachment (after insert) { Set OppIds = new Set(); …
0
votes
2 answers

Uploading files to Sharepoint from Salesforce

I came to know that, through file connect one can only view Sharepoint files in Salesforce. I am trying to Upload files to sharepoint from Salesforce and access them from salesforce. User uploads files in SalesForce. But it should actually save to…
Balagi149
  • 1
  • 1
  • 4
0
votes
1 answer

Visualforce Page displaying case count as per case category, On clicking each category I want to get a detailed view of the cases. How?

I have a visualforce page that displays the cases as per categorization(ex - Complaint, feedback etc) and beside each categorization the count of open cases of the category for the particular account. (Ex - Complaint 10, Feedback 5) Now I want to…
0
votes
2 answers

Need to compare value with custom field of pick list datatype in SFDC

I am new to SFDC, I have a program where I'm passing the values and I need to compare these values with a custom object field where it is present or not. Here is my code, public class CheckUtility { public static ID determineFeature(ID…
0
votes
0 answers

Accessing S3 objects in Salesforce.com

I am trying to access S3 bucket/object details from Salesforce. I have gone through AWS document and try to generate V4 Signature. It seems like I am missing some parameter and hence getting below error: The request signature we calculated does not…
0
votes
1 answer

SFDC Data Loader on Account - Same Id, Different Field Values

This is a relitively simple question regarding data loader. I'm currently running a query into our app that is pulling the 'last login' by a user for each account. As our app is not integrated with our SFDC I have to query the data, then manually…
Nivi
  • 89
  • 1
  • 9
0
votes
0 answers

Date field storing previous entries in sfdc chrome using selenium(Python)

when automating SFDC in chrome using selenium(python), I'm having problems entering Dates in a calender box. Instead of using a DatePick from calender, I'm sending the Dates as Send_Keys. Works for the first time, but when trying to enter in the 2nd…
Akash Soni
  • 15
  • 3
0
votes
1 answer

SFDC - Formula Field Error: Compiled formula is too big to execute (5,228 characters)

I'm trying to build a formula field that will return text. I was wondering if any of you guys have suggestions for slimming down the following formula, or perhaps a workaround. When it compiles I am over the 5K limit by 228 characters! Any help…
Nivi
  • 89
  • 1
  • 9