Forum Discussion
Parameterize Odata Feed Link
Hello,
I would like to parametrize Odata Feed link (server and client id)
My current full link is
https://somethingSAP.mydomain.com:portnum/sap/opu/odata/sap/?sap-ds-debug=true&sap-client=xxx
I would like to parametrize
and
Client
Is it possible? Apprecite your help
I figured it out thanks
6 Replies
- WashivaleResolver V
Hi MSFTPBI : store your parameter as column on new query and refer it in new custom column with ODATA feed URL
something like below should work
let
Source = Parameter6,
#"Converted to Table" = #table(1, {{Source}}),
#"Added Custom" = Table.AddColumn(#"Converted to Table", "Custom", each OData.Feed("https://"&[Column1]&".mydomain.com:portnum/sap/opu/odata/sap/?sap-ds-debug=true&sap-client=xxx"))
in
#"Added Custom"you can use Odata.Feed(......) from your current version of query and switch values with parameters
Regards,
Washivale