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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Function with dynamic database name not working online

Hi,

 

our company runs multiple affiliates on SAP B1, each affiliate is stored within it's own db-container like:

 

  • SAP_US
  • SAP_UK
  • etc.

The schema within this db containers is always the same! So in PB-Desktop I could easily setup a settings table and added a custom column (invoke from function) to generate a table with a content column, containing the table from the different sap entities. 

Bringing this logic into the dataflow (online) the logic seems to work fine, but when I try to save the dataflow, it tells me that I'm trying to use dynamic datasources within one entity - and yes I want to do this on purpose. I don't wanna copy n paste the same script 16 times in order to retrieve data!

let
  Source = (varAffiliate as text) =>
    let
        localVarAffiliate = if Text.Length(varAffiliate) > 0 
            then varAffiliate
            else "SAP_Buchi_BIT" 
        ,Source = Sql.Database("BLTCHSAP003.buchi.com", localVarAffiliate)
...

And the invoked column looks like:

Table.AddColumn(#"Andere Spalten entfernt", "Content", each fx_fact_invoice([DBName]))

As said - this works fine in the preview - until I save...

2019-10-21 11_39_38-Power BI and 11 more pages - Microsoft Edge.png

If anyone has a solution for this - I would highly appreciate!

Thanks Philipp

2 REPLIES 2
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

Sorry for that, We can not found an effective solution. We suggest you to open a ticket here for help if you are a pro user: https://powerbi.microsoft.com/en-us/support/

 

Support Ticket .gif

 

Best regards,

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

Community Support Team _ Dong 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

Dirty Cheat that solves the issue temporary:

 

let Source = (varAffiliate as text) =>
    let
        Source = if varAffiliate = "SAP_Buchi_BIT"
            then Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_BIT") 
            else if varAffiliate = "SAP_Buchi_BUS"
                then Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_BUS")
                else if varAffiliate = "SAP_Buchi_BUK"
                    then Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_BUK")
                    else if varAffiliate = "SAP_Buchi_BFR"
                        then Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_BFR")
                        else if varAffiliate = "SAP_Buchi_BHK"
                            then Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_BHK")
            else Sql.Database("BLTCHSAP003.buchi.com", "SAP_Buchi_xxx")
        ,EntityFactInvoiceSIN = Source{[Schema = "dbo", Item = "INV1"]}[Data]

It works but I have to maintain db-information in each file 😞 - well i have everything in GIT so I can search and replace BUT would love to pick it from my central sharepoint list!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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