salesforce

Is It Possible To Use An External Database For User Data & Login Credentials With Shopify?

℡╲_俬逩灬. 提交于 2021-02-10 21:37:34
问题 Our client has asked us to build a Shopify site that ties into their in-house customer db (with or without using Salesforce). Is this even possible? Does Shopify support any method of cross-site database querying? The only thing I can think of to accomplish this is to write a webhook on their in-house server with a simple read-only mini DB query API. However, as that I'm not super familiar with Shopify's more obscure capabilities (and having already spent quite some time sifting through their

how to pass SAML attributes from service provider(Salesforce) to Visualforce page Controller

馋奶兔 提交于 2021-02-10 20:20:39
问题 SAML response from the identity provides(External) contains the Employee Id as a separate attribute which i need to display in Salesforce VisualForce Page. So help me in passing the attributes from saml response to a VF Page once authenticated via SSO . Thanks in advance 回答1: Do you have a custom SAML handler class? You can generate a template one in SSO settings (bottom of the form, in JIT section) or just look around in documentation. https://developer.salesforce.com/docs/atlas.en-us

Exclude certain file patterns from rename detection in git?

独自空忆成欢 提交于 2021-02-08 06:35:59
问题 Question Is it possible to exclude certain file patters from rename detection when doing merges with git? Background With our system, Salesforce.com, some metadata files are exactly identical, except for name. Because of this (I believe) merges can get a bunch of conflicts, e.g. if a meta file was deleted in one branch, and a different meta file with an identical body is deleted in another, it sees things as a rename and conflict with one added on deleted. I know I can tweak the sensitivity

Salesforce table names [closed]

℡╲_俬逩灬. 提交于 2021-02-05 12:28:52
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 4 months ago . Improve this question I am new to salesforce and I want to view my table names. Is there any SOQL query to fetch all tables or I have to check from the salesforce dashboard. In any case please help me to get all table names. And if you guide me to view field names, I shall be very thankful I have

Export Salesforce Reports as CSV (Java)

两盒软妹~` 提交于 2021-02-05 11:42:45
问题 I'm trying to automatise the exporting of Salesforce Reports as CSV's, so far I've managed to authenticate in the Salesforce API but I couldn't find any proper documentation on how to export the Salesforce Reports as CSV's or any other examples of doing it. I've understood that there is a chance that could not be done, but you can still export it as a JSON and convert it to a CSV using a library, although I didn't find anything. 回答1: If you're authenticated (got session id back) you're almost

Export Salesforce Reports as CSV (Java)

大憨熊 提交于 2021-02-05 11:39:24
问题 I'm trying to automatise the exporting of Salesforce Reports as CSV's, so far I've managed to authenticate in the Salesforce API but I couldn't find any proper documentation on how to export the Salesforce Reports as CSV's or any other examples of doing it. I've understood that there is a chance that could not be done, but you can still export it as a JSON and convert it to a CSV using a library, although I didn't find anything. 回答1: If you're authenticated (got session id back) you're almost

Wildcard in SOQL python

谁说胖子不能爱 提交于 2021-02-05 11:28:12
问题 I am trying to query from salesforce using python using simple_salesforce package. When I do wildcard, it is throwing me Malfunction error. soql = """SELECT {} FROM Contact where LastModifiedDate like "%2020-06-16%" """.format(','.join(field_names)) results = sf.query_all(soql) Error line 1:1374 no viable alternative at character 回答1: The date filter is wrong, This field is of type DateTime, not Date You need to end up with something like SELECT Id, FirstName, LastName, Email FROM Contact

Mass Upload Files To Specific Contacts Salesforce

ぐ巨炮叔叔 提交于 2021-02-04 21:18:46
问题 I need to upload some 2000 documents to specific users in salesforce. I have a csv file that has the Salesforce-assigned ContactID, as well as a direct path to the files on my desktop. Each contact's specific file url has been included in the csv. How can I upload them all at one and, especially, to the correct contact? 回答1: You indicated in the comments / chat that you want it as "Files". The "Files" object is bit more complex than Attachments, you'll need to do it in 2-3 steps. What you see

Mass Upload Files To Specific Contacts Salesforce

不问归期 提交于 2021-02-04 21:18:19
问题 I need to upload some 2000 documents to specific users in salesforce. I have a csv file that has the Salesforce-assigned ContactID, as well as a direct path to the files on my desktop. Each contact's specific file url has been included in the csv. How can I upload them all at one and, especially, to the correct contact? 回答1: You indicated in the comments / chat that you want it as "Files". The "Files" object is bit more complex than Attachments, you'll need to do it in 2-3 steps. What you see

upload 20 mb file to 3rd Party services from Salesforce

痴心易碎 提交于 2021-01-29 14:40:29
问题 Trying to upload files upto 20 MB from Salesforce Visualforce page to another server. But when I select a file using apex:inputFile , it says file limit is 10 MB. Any idea about this ? Already tried with transient variable 回答1: Normal apex code has 6 MB heap (memory) size limit. Asynchronous apex (batch jobs, @future methods) have 12 and custom-coded inbound email handlers have 36. You won't be able to push more than that from server-side code. Even less if the file is binary and you might