IvanPat
IvanPat

Reputation: 11

How to correctly filter Effective Date?

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 :(

Error

Where is mistake? Help me please.

Upvotes: 0

Views: 839

Answers (1)

Circumlocution
Circumlocution

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

Related Questions