cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

azure blob storage get file content

So, Im having an issue where I've stored the ID of each blob in a sql database and I'm then inserting that id into the AzureBlobStorage.GetFileContent method. Now, the images will load. Every time without fail, they load. However, on the phone, I get the error: 

AzureBlobStorage.GetFileContent failed: the method 'GetFileContent' has an invalid value for parameter 'id'.

 

but on the web, it doesn't show up. Here is the function I'm using to bring the image in.

 

AzureBlobStorage.GetFileContent(Image)

I don't understand why it seems to only have an issue on the phone, but not the web. Also, even on the phone, the images still come in. Also, all I'm doing is saving the ID of the blob in sql in the 'Image' column and then in the gallery that is displaying all the items of the sql table, I'm putting in this function for an image control.

 

Anyone got an idea why it seems to have an issue, but still renders the images? I feel like I can't let other people use this app if on every page I use the image their getting that big red error flying up.

1 ACCEPTED SOLUTION

Accepted Solutions

@chris_cochrunHey Chris this is an update to my previous post.  I think the whole issue I was experiencing with the getfilecontent 'Id' error that was happening just on the phone was linked to a type mismatch were I was using a GUID.  Here is a link to the article that solve this problem for me.  Experimental feature: Treat GUIDs as GUIDs  also GUIDs for Canvas apps graduate (With our latest release (3.19032) these features are now permanent.)

Look at the Experimental feature: Treat GUIDs as GUIDs that is now a built in activated feature.  It seems the timer delay I was using allowed enough time for the GUID to convert to a string before the error occured.  Hence using the GUID() function to convert eliminates the need for the timer.  I have only been using PowerApps for about six months so I am new to all this so please correct me if you see anything wrong.  I didn't want to pass misleading information on so I added this as a correction to my previus post.

 

 

View solution in original post

9 REPLIES 9
v-xida-msft
Community Support
Community Support

Hi @chris_cochrun,

 

Could you please share a bit more about the error message on your side?

 

I think this issue is related to recent SQL connection issue within PowerApps. Currently, Apps with connections to SQL may be experiencing errors where data may not show up.

 

The PowerApps product team has been aware of the issue and are working on a fix. More details about the issue, please check following article:

https://powerapps.microsoft.com/en-us/support/

 

You could consider take a try to add a Label control within the Gallery control, then set the Text property to following ormula:

ThisItem.Image

then within your PowerApps Mobile App, check if the blob id could be shown up.

 

As an alternative solution, please take a try to turn off/disable the "Explicit Column selection" option within Advanced Settings of App settings (App settings-> Advanced settings-> "Explicit Column selection" option), then try your app within your Mobile device, check if the issue is solved.4.JPG

 

 

If the issue still exists, please take a try to uninstall PowerApps Mobile App from your Mobile device, and re-install it, then try your app again to check if the issue is solved.

 

Best regards,

Kris

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

Well, the issue is not that the images aren't coming in. Because they are. I still get the id coming through when I use the

 

ThisItem.Image

in a label control.

 

But, it's just oddly still telling me there is an error while the images still load. So, technically I could ignore it because it's working, but I don't want a big red error flying up in front of the user on every page those images are used.

 

I tried uninstalling and reinstalling the app and still it popped up. Smiley Sad

 

Oh, and I've not been using the explicit column selection thing. I've had it off on this app because of some other issues it was causing.

Did any one find a solution to this issue I am experiencing the same issue on the phone and I also have tried the work around suggestions but still have the problem.Screenshot_PowerApps.jpg

 

Hey @Spencer so, I finally discovered why mine was doing it. The table that held the id or path to the Azure Blob storage had some empty records and since every record is trying to seperately load a blob from Azure Blob storage, the records without images in them or rather the blob ids, were trying to load with empty strings and then I'd get that error. Instead, I've just preloaded all the blobs in a collection and their ids then connected them to the records by their ids. This means I'm only grabbing the ones that are actually in there and then when there isn't an id it simply just doesn't load.


@chris_cochrun wrote:

Hey @Spencer so, I finally discovered why mine was doing it. The table that held the id or path to the Azure Blob storage had some empty records and since every record is trying to seperately load a blob from Azure Blob storage, the records without images in them or rather the blob ids, were trying to load with empty strings and then I'd get that error. Instead, I've just preloaded all the blobs in a collection and their ids then connected them to the records by their ids. This means I'm only grabbing the ones that are actually in there and then when there isn't an id it simply just doesn't load.


@chris_cochrun thanks for the reply Chris!  I didn't have any empty records.  I tried preloading the data.  I tried a collection, SaveData, LoadData (so the data would be local on the device) I still get the error.  The only way I have found to work consistently is to use a timer and introduce a 1 second delay on the getfilecontent call.  With the timer delay it seems to work every time even if the data is not preloaded in a collection and just coming strait from the Azure SQL table.  The following below code is what worked (timer.ontimerend = Set(varGo,true) and the (<>) test stopped the empty record errors.

 

If(
AzureBlobID <> "" && varGo=true,
AzureBlobStorage.GetFileContent(ThisItem.AzureBlobID)
)

@chris_cochrunHey Chris this is an update to my previous post.  I think the whole issue I was experiencing with the getfilecontent 'Id' error that was happening just on the phone was linked to a type mismatch were I was using a GUID.  Here is a link to the article that solve this problem for me.  Experimental feature: Treat GUIDs as GUIDs  also GUIDs for Canvas apps graduate (With our latest release (3.19032) these features are now permanent.)

Look at the Experimental feature: Treat GUIDs as GUIDs that is now a built in activated feature.  It seems the timer delay I was using allowed enough time for the GUID to convert to a string before the error occured.  Hence using the GUID() function to convert eliminates the need for the timer.  I have only been using PowerApps for about six months so I am new to all this so please correct me if you see anything wrong.  I didn't want to pass misleading information on so I added this as a correction to my previus post.

 

 

Thanks @Spencer , glad you found a solution. Hopefully it may be of some use to others who may have a similar issue. I wasn't using any guids, but my previous post was my issue. Looks like we both have learned a little more about this platform! Man Happy

Hi,

 

I am having EXACTLY the same issue as you today with the GetFileContent function creating an error in IOS or Andoid. I have posted separately on this, but was wondering if you could tell me if you actually resolved the issue without the timer function and if so how.   If not, perhaps you could explain where and how you inserted the timer function (ie when/where/how  did it wait 1 second).

 

In anticipation.

 

Cheers

 

Hi, I have posted both in this chat and in Tim's

 

I am having the same problem. I have a CDS entity that has the Blob Path and a gallery that uses the Azure.GetFileContentUsingPath formula.

 

I have turned off the Explicit Column Selection and Tried Uninstalling and Reinstalling the item.

 

The Formula Used for the Image is:

AzureBlobStorage.GetFileContentByPath(EventGallery.Selected.'Event Floorplan')

 

The Event Floorplan field has this record in it: /pictures/009477a_hb_a_001.jpg

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (864)