Reputation: 11
I build a Power BI Dashboard with a Dataset from SuccessFactors using the following URL for querying EmpJob
Object -->
https://api**preview.sapsf.eu/odata/v2/EmpJob
BUT! It returns only EmpJob
Record effective as today.
I need the Records from 2010 till today, here is my Link -->
https://api**preview.sapsf.eu/odata/v2/EmpJob&fromDate=2010-01-01
But it fails :(
Where is mistake? Help me please.
Upvotes: 0
Views: 839
Reputation: 65
Your url is just not formatted correctly. You have an & instead of a ?
https://api**preview.sapsf.eu/odata/v2/EmpJob?fromDate=2010-01-01
Upvotes: 1