Recently was trying to figure out the maximum file size limit for the attachments.
It is 131072 (in kilobytes)
Can be defined at Settings – Administration – Email Tab.
Scroll down to Set file size limit for attachments section

Hope it helps..
Recently was trying to figure out the maximum file size limit for the attachments.
It is 131072 (in kilobytes)
Can be defined at Settings – Administration – Email Tab.
Scroll down to Set file size limit for attachments section

Hope it helps..
In the last post, we saw how we can use the Microsoft.PowerApps.Checker.PowerShell module to analyze the Solution (Unmanaged and Managed – Online or On-Premise) outside the PowerApps Maker Portal.
The reports generated by the tool are in SARIF format i.e. Static Analysis Results Interchange Format (JSON based) standard for the output format of the static analysis tool. This format originated at Microsoft.
To view the result, we can use the below tools
For Visual Studio :
After installing the extension, navigate to Tools à Import Static Analysis Log files for Error List à Import SARIF file and select the result file generated.
It will list down the details in the Error List Window as shown below.

For Visual Studio Code :
For Visual Studio Code, after installing the SARIF Viewer, simply open the file

Below is how the result is displayed in the UI inside Visual studio code.

Hope it helps..
Using PowerApps Checker PowerShell Module we can perform the solution check functionality from outside the PowerApps Maker Portal. This can be useful for automated build and release pipelines. Apart from that some of the notable capabilities of the module include
To get started à
Open the PowerShell (as administrator) and install the module

Next, we need to register an Azure Active Directory application in a tenant with PowerApps or Dynamics 365 licensing, even if it is on-premise environment (solution) against which we want to run it.

Redirect URI

Copy the values of Application id and Directory (tenant) Id which we will use later and click on View API Permission to give the required permission to the app.

Click on Add a permission (we’d see Sign and read user profile added by default)

API level permissions to the PowerApps-Advisor first party Microsoft AAD application

Permissions à

PowerApps solution checker uses Solution checker rule set. Here we are getting all the rulesets available passing our tenant’s id.

We wil be using Solution Checker rule set here.

Now let us run it against the Solution Zip file as shown below
Give the required consent

We can see the results download at the path specified


Result is in JSON format

IssueSummary to get the quick overview

Get all the details here
https://docs.microsoft.com/en-in/powershell/powerapps/overview?view=pa-ps-latest
Hope it helps..
The PowerApps Solution Checker feature released for general availability on May 2019, can be used to perform static analysis of the Unmanaged solution for components like plugin, web resources, custom workflow activities and provide guidelines and recommendations around the issues found.
To get started à
Sign in to PowerApps maker portal
https://make.powerapps.com/home
Select the Solutions in the left navigation pane and click on Install to install the Solution checker.

Click on GET IT NOW from the AppSource, specify the instance and the PowerApps Checker Solution will be installed in that Instance.


This will install the PowerApps Checker solution for the selected instance.

After the installation is done, we’d see the Solution checker menu enabled for the unmanaged solution.

Click on Run to run the test

We can see the results in the portal and can download the same as shown below.


Result of running it against another solution in which we are still using Xrm.Page object model à



The results will be available in both Excel and CSV format on the download

csv à

Excel will include a report as wellà

In the next post, we will see how to use the PowerApps Checker PowerShell Module to validate the solutions.
Hope it helps..
Kindly refer the previous post, here we will be adding style to the component created in the post.
Let us continue with our previous sample component and try adding style to it.











Hope it helps..
Update – use context instead of Xrm.Page
Also,
https://nishantrana.me/2020/01/20/best-resources-to-start-with-power-apps-code-component-pcf/
Go through below articles to get a better understanding
Below is the quick step by step guide to get started (sort of Hello World example)
pac pcf init
– -namespace <namespace for the component>
– -name <name of the component>
– -template <component type>

It adds the following files in the folder.








*Use ctrl + c è to terminate the job.


pac solution init – -publisherName [publisher name] – -customizationPrefix [publisher prefix]


pac solution add-reference – -path [path to pcfproj file]
i.e. reference of the below path.









For reference à



Followed by
1. Install npm
2. Install PowerApps CLI
3. Install Visual Studio 2017 or later
4. Create a new folder for the project.
5. Navigate to the folder in Developer Command Prompt and run the following command to create the component project

6. Install the project dependencies using below command
7. Update ControlManifest.Input.xml
8. Update index.ts
9. Build the project
10. Use the below command to test the component
11. Create a folder for holding the solution zip and related files. Navigate to that folder and run the below command.
![]()
12. Add reference of the custom component in the solution
![]()
13. To create the Solution Zip File

14. Import the solution file and use it inside Dynamics 365 CE.
Hope it helps..