New employee needs to be onboarded. Can you just send a Telegram Message? You certainly can with help of Telegram Bot Connector and Power Automate. 1.1 A new record is created in the Employee Onboarding SharePoint List. 1.2 The bot sends a Telegram message with details from the SharePoint record. 2.1 New SharePoint list. Rename Title column to Name and add two more text column: Job Title and ..
Advanced Find is an old feature that is hidden from UI. It is useful for checking the record, looking at the number of record, change owner, delete, build FetchXML query. This video get you to the Advanced Find page. 1. In the top right corner “Settings” icon to pull up the right hand pane. Select “Developer resources”2. Copy the URL under "Web API endpoint”3. Modify it as follows3.1 Web API end..
Scenario In a Dynamics 365 Customer engagement, user needs to export (download) multiple case into local device. Acceptance Criteria User is able to select multiple cases and export from the app Exported cases will be stored and downloaded in CSV file All activities related to the case (Case timeline) will be also stored and downloaded in CSV file Case and activity can be related by case number...
Goal: Get the height of the gallery Procedure: Create a Blank vertical Gallery Set the property as follows Gallery1.TemplatePadding: 0 Gallery1.Height: Self.TemplateHeight * Max(0, CountRows(Self.AllItems)) Gallery1.TemplateSize: 50
Goal: A button in PowerApps to attach files to SharePoint Document Library Prerequesit: - An SharePoint site with Document library and a list - An canvas app connected to that SharePoint site Procedure 1. Gallery with files 1.1. Create a gallery and change followings Gallery1.Items: Documents // SharePoint Document Library 1.2. Put 2 lables and a icon in gallery and change followings Label1.Text..
Example case: The submit button only enables when the pen input (Signature) is filled. Old way App.OnStart Set(initialTeamLeaderSig, penManagerERS.Image); Pen.OnSelect Set(TeamLeaderSig, penTeamLeaderERS.Image) Button.DisplayMode If(TeamLeaderSig initialTeamLeaderSig, DisplayMode.Edit, DisplayMode.Disabled) Issue: when user clicks and not draw anything, the button still enabled. New way Screen.O..