I'm using Apache-Airflow 1.10.10 ( hopefully will migrate to Airflow 2 soon).
My goal is to import data from a Salesforce table, into Snowflake data warehouse.
If i want to use the Salesforce Hook, as described here, how do I install the Salesforce provider? ( I'm using ubuntu on windows).
How can I know if I have the Salesforce sub-package? ( as seen here ),
How can i see all of my installed sub-packages?
Are there any examples of DAGS, which shows import of data from Salesforce to Snowflake?
Thanks a lot
Related
I have a requirement with respect to Polarion. We need a script that will export all workitems from Polarion to Excel Format on daily basis using Job scheduler.
Expecting suggestions to implement this scenario.
what actions/connectors one could use to parse a excel file and map columuns from a excel table to and external store, in this case i wish to make a record in Dynamics 365 operations using OData entity.
Thanks
Why exactly are the obvious RapidStart Services no option for you?
If you definitely need to use OData, I suggest building a publishable OData page via WebServices. You then can implement a parser in any environment/language you prefer and submit the new record via a RESTful Webservice-Call (which nearly every framework should allow) to this very same page, in order to submit the record to your productive environment.
I have to work on this task..but I have no idea how to start. I googled it..but did not get the relevant answer.
I have various forms on website. These forms are made using drupal. On the submission of form I have to push the contents in the contacts and activities of salesforce. For eg let's say ABC has downloaded a newsletter. Then ABC will go in contact(of salesforce) and newsletter will go in activity(of salesforce) of ABC in salesforce. Now using the activity I have to create a custom list and import it to mail chimp.
My research :
Drupal to salesforce :
It says drupal has salesforce suite module where you can map drupal entities with salesforce field. And on submission it will automatically go to salesforce.
Salesforce to mailchimp:
Am not sure of this part. Any help will be greatly appreciated. Thanks .
You can use Zapier for this. I believe this zap will do what you want.
If you want to customize the integration you can see a full list of triggers and actions for both mailchimp and salesforce here
Essentially, you can connect any of those triggers on the left to any of the actions on the right. This way you can make your own custom integrations to do whatever you need. You should be able to satisfy this requirement with this.
I'm doing wordpress website. And what i wanna do is: when user send contact form ( include their information) or user register, their information is added to CRM directly.
What i wonder is :
1) I should write my own plugin to do these things? possible? Because I think it will get the problem of permission ( when access to CRM)
2) There is a contact plugin which data is saved to database. Can we do cron tab to add data every period of time?
Can I ask you guy:
Are 2 above ways possible?
Are there any easier and possible way to do?
Really appreciate your help.
It's quite possible for Smartsheet to receive such information through the Smartsheet API. To help you get started with connecting to the API with PHP, and sending data to your sheet, I recommend looking at the Smartsheet Platform PHP Samples.
For your particular situation I would look at the Sheet Structure sample.
I have a salesforce I export to CSV using a URL like this https://tapp0.salesforce.com/00OT00000014APi?export=1&enc=UTF-8&xf=csv following this blog post.
This works fine and is very fast when I run for a fully licenced user.
However when I try to call the same report export as a Gold Patner portal user I get an error "Insufficient Privileges"
I have marked the report as deployed.
Given all users access to the Report Folder
The user does have the correct sharing and profile rules setup to view the data in the report.
Going to just the report URL by itself works https://tapp0.salesforce.com/00OT00000014APi
It only fails when I try to export to CSV.
I DO reliase I am using an unsuported internal API call. But was wondering is there anyway portal users can export reports to CSV?
Not sure about through the UI, but this can be done through a SOQL query and portal users do have limited access to the API. Most, but not all, reports can be converted to SOQL queries to produce the same output.
For running your query, the easiest is probably to build a Visualforce page that is backed by an Apex controller that runs the query and outputs a CSV. Take a look at the contentType attribute on the apex:page tag. You can set things like application/vnd.ms-excel#contacts.xls to automatically export a data table to Excel. I didn't try, but it probably works with CSV too -- worst case is that you open in Excel first and save as CSV.
Also, if you don't mind portal users having to leave Salesforce to get their CSV, you might want to try Workbench, which is an app I built that allows for portal user login and helps you build the SOQL query for CSV export both through the SOAP and Bulk APIs.
Ok I found the problem
You need to go to Salesforce > Setup > Manage Users > Profiles
Then Click to Edit the RS_PortalUser profile
Click the checkbox next to “Run Reports” and “Export Reports”
Click save