Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Unable to create dynamic function parameters in Power BI Custom Connector

I am trying to get the dropdown to be populated by another function and am getting a Microsoft.Mashup.Engine.Interface.UnpermittedResourceAccessException (I believe means forbidden access) or a grayed out dropdown.

 

It seems like there was already someone trying to do this (https://github.com/microsoft/DataConnectors/issues/70 and Use-an-API-Call-to-Populate-Custom-Data-Connector-Settings/), but no one appears to have solved this issue. The main problem I believe is that you are trying to call a function from within a type definition. It doesn't seem to work for me, so does anyone have any ideas?

 

Here is my complete test source code. The API is public so anyone can try running this.

 

// This file contains your Data Connector logic
section IssueTest;

DefaultRequestHeaders = [
    #"Accept" = "application/json"
];

[DataSource.Kind="IssueTest", Publish="IssueTest.Publish"]
shared nothing = () =>
    let 
        a = "Hello From Issue Post"
    in
        a;

[DataSource.Kind="IssueTest"]
shared IssueTest.Contents = Value.ReplaceType(IssueImpl, IssueType);

IssueType = type function (
    optional employee as (type text meta [
        Documentation.FieldCaption = "Pick Employee",
        Documentation.AllowedValues = getEmployees // also tried * = employees which gives (Microsoft.Mashup.Engine.Interface.UnpermittedResourceAccessException)
    ]))
    as text meta [
        Documentation.Name = "IssueTest"
    ];


IssueImpl = (optional employee as text) =>
    let
        a = getEmployees()
    in
        a;


[DataSource.Kind="IssueTest"]
getEmployees = () =>
    let
        Source = Web.Contents("https://gorest.co.in/public-api/users/"),
        Parsed = Json.Document(Source),
        Result = Parsed[result],
        Table = Table.FromValue(Result),
        Column = Table.RemoveColumns(Table,{"Value"}),
        List = Table.ToList(Column),
        Buffer = List.Buffer(List)
        // Check = Buffer{0} is text // Check if the list is filled with text values
    in
        Buffer;

// This gives a mashup exception (Microsoft.Mashup.Engine.Interface.UnpermittedResourceAccessException)
// [DataSource.Kind="IssueTest"]
// shared empl = employees;

employees = 
    let
        Source = Web.Contents("https://gorest.co.in/public-api/users/"),
        Parsed = Json.Document(Source),
        Result = Parsed[result],
        Table = Table.FromValue(Result),
        Column = Table.RemoveColumns(Table,{"Value"}),
        List = Table.ToList(Column),
        Buffer = List.Buffer(List)
        // Check = Buffer{0} is text // Check if the list is filled with text values
    in
        Buffer;


// Data Source Kind description
IssueTest = [
    Authentication = [
        // UsernamePassword = [], // will end up needing to use Basic Auth
        Implicit = []
    ],
    Label = Extension.LoadString("DataSourceLabel")
];

// Data Source UI publishing description
IssueTest.Publish = [
    ...
];

IssueTest.Icons = [
    ...
];

 

 

3 REPLIES 3
Anonymous
Not applicable

        result1 = Json.Document(Web.Contents("https://run.mocky.io/v3/7deabcab-06bf-43f8-8efe-2fbf06eb3988"))[dat],
            



TypeA = type number meta [
        Documentation.FieldCaption = Text.From(1),
        Documentation.FieldDescription = "Number of times to repeat the message",
        Documentation.AllowedValues = result1
    ],

 

It works in Power Query Editor

v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

Could you tell what's your aim?

It's hard to find it from your code.

 

In addition, you can find how to create dynamic function parameters in Power BI from these links:

Creating Dynamic Parameters in Power Query

Dynamic API parameters in Power BI

Custom Functions Made Easy in Power BI Desktop

 

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Sorry. There also might be some confusion of the word parameter, I mean it as a function parameter when making a query in a custom data connector. I am unable to populate the Documentation.AllowedValues with values returned by an API call. Here is a screenshot:

 

Screenshot (4).png

 

Does that make sense @v-juanli-msft ? Thank you for responding quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors