salesforce | following plugins | Command Line Interface library
kandi X-RAY | salesforce Summary
kandi X-RAY | salesforce Summary
Following plugins are available in this repository.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Initializes the lineageRecorder
- Waits for Batch to finish
- Generate SOAP query
- Validates connection
- Set up multiple SObjectSplits
- Generate CDAP schema for each SObjects
- Gets a list of SObjects
- Generate a list of SObject queries
- Configure pipeline
- Close and submit the current batch
- Checks that the input schema matches the actual schema
- Returns the current map s current value
- Receive messages from the push topic
- Compares two SObjectDescriptors
- Compares two AuthResponse objects
- Generate the schema for a push topic
- Method to get SOAP objects
- Helper method to start the OutputCommitter
- Handles a browse request
- Generate connector spec
- Overrides the top level nested statement
- Creates the pipeline
- Fetch records from a single query
- Configures the pipeline
- Retrieve a structured record from a JSON message
- Create a record reader
salesforce Key Features
salesforce Examples and Code Snippets
Community Discussions
Trending Discussions on salesforce
QUESTION
I'm trying to access salesforce through Azure Data Factory by creating linked service and I'm seeing error as: ERROR [HYOOO] [Microsoft][Salesforce] (148) INVALID_LOGIN: Invalid username, password, security token; or user locked out.
Steps followed:
- Added Copy data in a pipeline
- Selected Salesforce as new data set in copy data as source
- Integration Runtime, tested with both Azure's AutoResolveIntegrationRuntime and Self hosted Integration Runtime but no luck
- Environment URL as https://something.salesforce.com
- username as something@something.com, password and security token.
- API version is kept as Default
NOTE: I am able to login to salesforce successfully through browser using custom login/company login and authentication is passed via Microsoft login page.
...ANSWER
Answered 2021-Jun-07 at 07:28Check if the salesforce URL is in a public network or it is in your organization network. If the salesforce is in your organization's network, then you may need to install SHIR in a computer in your company's network and then try creating a linked service with that SHIR to connect to the salesforce.
QUESTION
I am very new to Salesforce, so apologies if my use of terms is not correct.
I am using Lightning Knowledge
I have enable and setup Knowledge Base and added FAQ articles and have added Question and Answerr fields to those articles.
I have setup the field visibilty so they are visible to all user including "Read Only" users (I could not find anything specific for Guests, should there be?)
So as far as I can tell the field permissions on the Question and Answer fields is correct.
I create articles and enter my values for my "Question and Answer fields" but when I go to my public site to view the FAQ, I only see the content of the Title and URL Name fields. I do not see my Question and Answer Fields.
If I login and view the articles via the public site, I do see the Question and Answer values.
I would very much appricaite it if anyone could point me in the right direction for trying to figure this out. I have googled but cannot seem to find anything that talks about guest users and field visibilty that has helped me.
Many Thanks Derek
...ANSWER
Answered 2021-Jun-08 at 10:51Yes, guest user is still an user. There's hidden user account (which acts as "created by" when you make new Case for example) and Profile which you might have to edit. It doesn't show up on normal list of profiles (but for example the Id can be queried and once you know Id you could construct the url yourself).
If you're using an Experience Cloud (aka Community) go to your site's Builder and the links will be at the bottom.
If you're using Sites - it should be in Site's config.
QUESTION
I would like to know if it is possible to send data from my firestore firebase to Salesforce. I have an ios application where i can create data and this data is stored in my Google firebase. Now i would like to send this data (in real time) to salesforce. If there is a change on a data, Salesforce should also be informed, that means that both of the database have to been synchronised.
Has anyone ever had to do this? If so, how do I go about it?
...ANSWER
Answered 2021-Jun-08 at 10:44I finally found a solution,
you can simply get the Http Json file response address of your firebase in Salesforce
QUESTION
I am currently using the simple-salesforce
library to retrieve data from Salesforce, using the token method.
ANSWER
Answered 2021-Apr-22 at 19:51I think MFA will be required only for users using the standard login - from the Help article mentioned above, it says: "All internal users who log in to Salesforce products* (including partner solutions) through the user interface must use MFA. To ensure that MFA is enabled for all your Salesforce users, you can turn it on directly in your Salesforce products or use your SSO provider's MFA service."
But you are auth'ing via the API, right?
Can you share an error message or screenshot?
Typically API auths happen via a connected app configured in the org, and as I recall, the connected app has a setting requiring MFA ... This help article goes into greater detail about where MFA is required (which login approaches)
Could it be that you are running into the standard user verification challenge whenever salesforce sees an auth for a user from a new network location. You can disable that here by setting an IP address range.
QUESTION
I'm currently using cypress to test salesforce, and I'm running into a certain circumstance where I don't know the Party record ID that will create it within the opportunity. Meaning that I have to find a workaround to select a specific party record to be able to edit the file.
If I use the chrome tools or doing the following within cypress, I'm able to do call the element but it will not open or click anything:
...ANSWER
Answered 2021-May-06 at 01:27You can use each()
to iterate over all the dropdowns and based on the index, do a click()
like:
QUESTION
I'm looking to identify subscribers and put them into buckets inside a new data extension. I have a query to identify the segment I want, but I'm not sure how to move them into a new data extension that contains an additional column to identify these subscribers without downloaded the results applying the bucket name and uploading manually to a new data extension.
Ideal Goal: Use Automation Studio to have this automate and refresh data on a schedule.
Example:
I have a Data Extension called All_Users with the following fields:
Field Type Primary Key SubscriberKey Text X EmailAddress Text - FirstName Text - LastName Text - Age Text - Sex Text - ZipCode Text -I have an SQL query that collects the following data:
...ANSWER
Answered 2021-May-29 at 05:36Wow, this was so simple. I got my answer from this other post I found.
All I needed to do was past the Group_Name as a string and pass it AS the Field Name.
QUESTION
I am trying to upload an opportunity to Salesforce using openpyxl and simplesfoce. Below is the current attempt I have made to get the upload to work. I have tried that, a normal excel date object, excel date object as a string, and excel date object as a string with the time portion cut off.
...ANSWER
Answered 2021-Jun-03 at 12:35Correct date formats are as eyescream mentioned, "2021-06-02". The error here was simply referring to the wrong custom field in one of these items. If you struggle with this kind of error try removing unneeded fields to find which one is causing the error.
QUESTION
I'm trying to create a web-hook listener to create a new Lead when a form is filled out through google ads. Google has an option to use web-hooks to connect to CRM.
I followed this tutorial over here: https://www.greytrix.com/blogs/salesforce/2018/06/04/creating-an-webservice-in-salesforce-and-using-rest-api-to-externally-access-it/
and made a RestResource class
...ANSWER
Answered 2021-Jun-02 at 15:06Last Name is a required field on Lead and, in your code, I cannot find the line where you're populating the LastName. That could be an issue.
Also, you can setup debug logs for the Guest Site User in Salesforce to see if there is any exception.
QUESTION
We had a requirement to create customers and save their credit card information in Square using salesforce and them we had to charge payments of customer later through apex code(in salesforce). So for this, we read and understand the Square API doc as a developer do. After reading this link https://developer.squareup.com/reference/square/customers-api/create-customer we were able to create the customer from salesforce to square using Square API. the Square API documentation is ready good easy to read. But when we started to implement the functionality to save credit card for customers Square we got stuck because while creating/saving customer card in Square there were two things required "customer_id" and "card_nonce". So we had customers Id because we had created the customer already in Square using apex code in salesforce. But we did not have "nonce" What does a Square nonce represent? and the only way to generate the nonce as per Square API documentation is "Square Payment Form" https://developer.squareup.com/docs/payment-form/payment-form-walkthrough, How to get Nonce for Card using Square API from Backend So I spent more much time to find workarounds but all the efforts went wrong. I also tried to create VF page and pass all the customer and card info we already had in salesforce object to that Square payment form from apex code but JS did not execute and Square payment form only work with JS SDK.
Does anyone have an idea about how can we generate "nonce" from backed (apex code) to save cards for a customer in Square?
...ANSWER
Answered 2021-Jan-08 at 18:36There is no way to create a nonce without using the Square Payment Form. You also can not pass raw data to the Square Payment Form, as it does not contain functions to fill in card data (other than the postal code). Someone would need to manually type that information into a site using HTTPS hosting the Square Payment Form in order to generate a legitiate
QUESTION
I am trying to display parent( Survey ) & child ( Survey participants ) details retrieved from the database ( Salesforce ).
I am using LWC ( Lightning web component ) to display the details.
There is a limitation in lwc that you can't access data from a related object using '__r' ( This means related object ) directly in HTML component.
Here is my data:
...ANSWER
Answered 2021-May-29 at 10:21Try this. I hope you are intending to flat the participant object
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install salesforce
You can use salesforce like any standard Java library. Please include the the jar files in your classpath. You can also use any IDE and you can run and debug the salesforce component as you would do with any other Java program. Best practice is to use a build tool that supports dependency management such as Maven or Gradle. For Maven installation, please refer maven.apache.org. For Gradle installation, please refer gradle.org .
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page