Author name: ittichai

Ittichai C.

Power Apps with Attachment Control to send File Content to Power Automate

In one of my use cases, I’d like to upload all files from the Power Apps’ Attachment control to Azure Blob Storage. Note that this will also work with any type of target. Here are the steps: 1. Create a stand-alone Attachment control from the one from the Edit Form. I followed the steps from …

Power Apps with Attachment Control to send File Content to Power Automate Read More »

Embed images in the email when sending it from the Oracle APEX Application

When using Oracle APEX hosted externally, such as on Oracle Cloud, if your application includes sending an email notification with embedded images from linked images, the image may look broken, as seen below. Based on the warning message, the embedded image’s host, which the email is referring to, is not on the safe list. Obviously, …

Embed images in the email when sending it from the Oracle APEX Application Read More »

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API

If you have access to the OpenAI Chat Completions GPT APIs either through the one from OpenAI LLC or Azure OpenAI, it is pretty simple to create the ChatGPT-like app using Power Apps and Power Automate. The intention of this article is to create a simple application process without worrying too much about making it …

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API Read More »

PowerShell – Get the list of all connectors used by each Power Apps application

The PowerShell script will list all connectors used in the Power Apps application in all environments user has access to. # Required Modules (installed as admin) #   Install-Module -Name Microsoft.PowerApps.Administration.PowerShell #   Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber # $Delimiter = “,” # Get list of all Environments $Environments = Get-PowerAppEnvironment | Select-Object -Property EnvironmentName, DisplayName  write-host $Environments # Loop …

PowerShell – Get the list of all connectors used by each Power Apps application Read More »

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data

This is a quick post showing how to save Office 365 Users data from the combo box to a SharePoint list. It shows two combo boxes with Office 365 Users – one allowing only one selection, another allows multiple. The former will save to the SharePoint column with the Person data type, the latter to …

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data Read More »

Scroll to Top