Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a dataflow with over 20 objects from Salesforce. I see that the default version of Sales force api in Power bi is 29. I want to use another version or the current version
I tried this for example for one of the objects and this worked.
Source = Salesforce.Data("https://login.salesforce.com/", [ApiVersion=47.0])
Is there a way, I can this for all the objects in the data flow or the Power BI environment level?
Solved! Go to Solution.
Hi, @Quest
Here are some references that may be helpful:
API Request Limits and Allocations
Salesforce balances transaction loads by imposing three types of limits:
When a call exceeds a request limit, an error is returned.
Salesforce Reporting row number Limitations
Power Bi Integration with Custom Salesforce Objects. ( Not Reports)
Connect Salesforce to Power BI: 2 Easy Methods
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am new to power BI. I am looking forward to any resolutions that will be posted in this community.
Hope this would answer your question.
How to update the Salesforce API
Thanks
Thank you for the response. My question was around how the API version can be changed. The data flow works fine now. But the default Salesforce API version of Power BI seems to be 29.0. I want this to be changed to a later version
Hi, @Quest
You can change the API version used by Power BI by specifiying the API Version in the query using [ApiVersion=XX.X].
Source = Salesforce.Data("https://login.salesforce.com/", [ApiVersion=47.0])
Returns the objects on the Salesforce account provided in the credentials. The account will be connected through the provided environment loginUrl. If no environment is provided then the account will connect to production (https://login.salesforce.com). An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:
Refer:
Salesforce.Data
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Quest
Here are some references that may be helpful:
API Request Limits and Allocations
Salesforce balances transaction loads by imposing three types of limits:
When a call exceeds a request limit, an error is returned.
Salesforce Reporting row number Limitations
Power Bi Integration with Custom Salesforce Objects. ( Not Reports)
Connect Salesforce to Power BI: 2 Easy Methods
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.