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
1
vote
1 answer

Object History Related List in Lightning Experience

I found that Object History related list isn't supported in Lightning Experience : https://success.salesforce.com/ideaView?id=08730000000LgQWAA0 . I need to show it in Lightning; is there any way to show the Related History on Contact (in lightning)…
0
votes
1 answer

Close date and Status in SFDC

If I had a list of 200 opportunity IDs, is there a way to pull their close date and status? I know I could build a report and filter by ID, but would that filter accept that number of inputs?
Radhika
  • 23
  • 1
  • 1
  • 4
0
votes
0 answers

XL-Connector With Salesforce

Using XL-Connector with Salesforce is there any way to allow the users only to export the data and restrict Insert/Update/Upsert/Delete operations using XL-Connector. even users having read write permissions on salesforce objects. Restrict…
0
votes
0 answers

Transfer chat to queue from Einstein Bot

I am trying to route chat from einstein bot to a queue. I am calling an omni channel flow to achieve the same thing but the flow fails with the following error - This Route Work invocable action did not create a valid Pending Service Routing. This…
SFDC Cat
  • 11
  • 1
0
votes
1 answer

Concatenating addres fields in Snowflake

I have sample data with following address fields, billing_address billing_city billing_state country 12345 216 Street, Suite. A Lynwood Washington USA The goal is to get the address in following format; Expected Output 12345 216 Street,…
jay
  • 1,319
  • 6
  • 23
  • 42
0
votes
0 answers

Salesforce community login flow while using OKTA authentication is not complete in Mobile Publisher Playground resulting into links not working

I have created a custom login page for a salesforce community and I am using OKTA authentication for that. I am using mobile publisher playground. So once I put all the credentials, It logs me into the community successfully but this shows at the…
0
votes
0 answers

Permission set for Streaming API in Salesforce

Hello fellow developers, I am currently working on implementing the Streaming API in Salesforce, and I'm wondering about the required permissions to ensure a smooth integration (which includes both channel creation and the channel subscription as…
NitSher01
  • 117
  • 1
  • 8
0
votes
0 answers

To check if any incoming emails for a specific Email-to-Case in Salesforce

The requirement is to check if any incoming emails for a specific Email-to-Case. If the incoming email is for a new case restrict them to create a new case and auto-reply email should be sent. If the email is associated with an existing case, the…
Satya
  • 1,421
  • 4
  • 19
  • 32
0
votes
0 answers

How to have conditional design attributes for different interfaces in aura components?

I want my aura to be exposed on both flowscreen and lightning record page. I have implemented the interfaces. But I want different design attributes to be visible when I configure it for record page vs flows.
Sakshi K
  • 27
  • 1
  • 2
  • 4
0
votes
0 answers

What could be causing the 'unavailable' error when trying to add a filter to my Salesforce dashboard on Opportunity Owner field?

I want to put the filter on the dashboard level of Salesforce on field of 'opportunity owner role'. The report on the dashboard are made up of different report types but most of the reports are made up of opportunity report type. When I put filter…
Faisal S
  • 3
  • 1
0
votes
0 answers

How can i have Validation rule thrown where i cannot edit from stage 6 to stage 1,2,3,4 , but i can edit from stage 6 to stage 1,2,3,4

how to create a validation rule , where users cannot edit the stage from stage 6 to stage 1,2,3,4 in sfdc, but they can edit the stage from stage 1, 2, 3, 4, to stage -6 in sfdc AND( OR( AND( ISPICKVAL(PRIORVALUE(StageName),…
0
votes
1 answer

Set hidden pardot field using javascript

I'm trying to set a hidden Pardot field (inside an iframe). When I manually enter the query selector in my chrome console I'm able to get the element, but when I run this code snippet (included in ) I get null. I read that starting with…
Justin Young
  • 2,393
  • 3
  • 36
  • 62
0
votes
0 answers

How to pass the variables from LWC component to chatbot variables in salesforce

I have created one LWC component where the fields are First Name, Last Name, Email, and Country. This LWC component I have added in the chatbot as a question. When we submit the form the data is getting stored in one variable using postmessage. I…
0
votes
0 answers

Load and render website in custom LWC tab

I want to load a website in Lightning itself, instead of opening the link in a new browser tab. I have created a quick action that calls a LWC(myNavigation) on click of it. The LWC is then embedded in lightning tab named 'External_Website'. Here is…
0
votes
0 answers

Defaulting the record type in few cases

I have created 2 record types for Account object in Salesforce. I have assigned different page layouts for both of them. Name of the record types are 'Parent account' and 'Child Account'. When I click on new button of account which used for creation…