Friday, December 31, 2021

Retrieve Quick View Value using JavaScript in Dataverse Environment


Introduction:

In this Blog we will see how to get Values from Quick View Form

Implementation Steps:

 

What is Mean by Quick View?

 

If we want to Populate data from One Entity to Another Entity based on Lookup then we can easily create Quick View Form to display the same.

 

Navigate to Forms --> Open main form --> Select Quick View Component and select respective entity and its Quick Form 


rampprakash_0-1640945694379.png

 

Javascript:

 

Quick View Form Name : QuickViewContact

 

 

function getQuickViewForm(executionContext)
{
// get form Context
   var formContext = executionContext.getFormContext();
// get Quick View Contact
   var quickViewControl = formContext.ui.quickForms.get("quickviewcontact");
// get First name
   var firstNameControl = quickViewControl.getControl("firstname");
// Show Alert Dialog from FirstName
   Xrm.Utility.alertDialog(firstNameControl.getAttribute().getValue());
}

 

 

That's it :slightly_smiling_face:


Wednesday, December 22, 2021

How to get Error Message from Try Block using Microsoft Flow


Introduction 

In this blog we will see how to get the Error Message from TRY in Catch block using Microsoft Flow


Implementation Steps:


1. Navigate to https://flow.microsoft.com


2. Create a new Flow


3. If we follow existing Blog then we can use Try Catch block easily but we cannot get the error message from TRY block to Catch Block


Lets see how to Achieve that



in the Catch block just write result('TRYBLOCKNAME')

In my case it is result('Try')


Thats it :)

Now when an error Message occurs in Try block it will automatically catch the Error Message in Catch Block.



Tuesday, December 21, 2021

Hide Flow Button in Microsoft Dataverse Environment

 Implementation Steps:

 

After Creating Dataverse environment, in all the OOB or Custom Entities you will see a Button called FLOW like below screenshot

 

rampprakash_0-1640064369874.png

 

Lets see how to Hide it.

 

1. Navigate to https://make.powerapps.com

 

2. Click Gear Icon at the Top

 

3. Select Advance settings

 

4. Now Navigate to Administration then Click System Settings

 

rampprakash_1-1640065285381.png

 

5. Turn Off

 

rampprakash_2-1640065368936.png

 

Make sure once you turned on you cannot turn it off

 

rampprakash_3-1640065910596.png

 

If you want to hide it, you need to hide using Ribbon work bench

Monday, December 20, 2021

How to Create Quick View in Dataverse or MSCRM Environment

Introduction:

In this Blog we will see how to create Quick View in Dataverse/ MSRM Environment.

Scinario:

I have an Account and Opportunity Entity Available, in Opportunity Entity I have Account lookup Available, I need to display Account related fields in Opportunity form without any custom code.

Lets see how we can achieve this Behavior.

Implementation Steps:


1. Navigate to https://make.powerapps.com

2. Click Dataverse

3. Open Account Table and Click Forms

4. Check Quick View Form Already Available

5. If Already Available we can use else we can create a new One.

6. For Creating a New One Click ADD FORM and Select Quick View Form


7. Once selected it will Open the Form --> Add all the Field Which needed in Quick View Form

8. Once Done Provide Name --> Save and then Publish.

9. Now Navigate to Tables Again and Open Related(in my case its Opportunity). Click on Form and Open Main Form or where you want to display Quick View Form

10. Click Components and Select Quick View Form


11. It will show a Popup Select the Lookup and then Select the Form Which we have created

12. Then Position it in Respective place in the Form.


That's it :)

Save Now and Publish.

Open the Opportunity Form Select the Account lookup you will be popped up with Account Related Information

Note:

It will be a Read only Field. 





Saturday, December 11, 2021

Show Document Location Entity as a Tab in Dataverse or MSCRM


Introduction: 

In this Blog we will see how to display Document Location as a Default tab in Dataverse or MSCRM Envirnment.


Implementation Steps:

 

Consider if we have an account entity and we have configured SharePoint Integration for the Account. If we want to See the Document for Respective entity of Account, you need to Click Related to See the Document. 

 

rampprakash_0-1639244972009.png

 

If Customer Expects to see the Documents as a TAB there is no OOB functionality to implement the same, to achieve that we need to write a Simple JS to Show the same.

 

function onLoad(executionContext){
var formContext = executionContext.getFormContext();
var sharePointDocumentItem = formContext.ui.navigation.items.get("navSPDocuments");
sharePointDocumentItem.setFocus();
var DefaultTabToDisplay = formContext.ui.tabs.get("tabGeneral");
DefaultTabToDisplay.setFocus();
}

 

Call the above function in Onload of the Page(in my Case its Account Entity).

 

rampprakash_1-1639245221334.png

 

Note:

 

navSPDocuments -- > SharePoint Entity Document Location (Default For All)

tabGeneral --> Tab to Display Default 

 

That's it :slightly_smiling_face:

Thursday, December 9, 2021

Change Application User and Dataverse user Time Zone


Introduction: 

In this Blog we will see how to change Time Zone for Application user and Dataverse user in Dataverse Environment.

Implementation Steps:

 

Usually when we are using Code like C# or Microsoft Flow while updating the date the date will update based on the user who is used.

 

How to Change Dataverse User Time Zone Change:

 

1. Navigate to https://make.powerapps.com

 

2. Click Gear Icon at the top and open the respective Model Driven Apps

 

3. Once page loaded then click Gear Icon at the top

 

4. Select Personalization Settings then Change the Time Zone

 

rampprakash_0-1639066281889.png

 

How to Change Application User Time Zone:

 

1. Download XRM Tool Box and Open it and Connect with your organization

 

2. Install Tool USER SETTINGS UTILITY

 

3. Once Loaded then click Load Users and Settings

 

4. Click the Application User and Change the TIMEZONE 

 

rampprakash_3-1639066528392.png

 

 

 

That's it :slightly_smiling_face: 

Friday, December 3, 2021

Is Custom Table Not showing in Activity Regarding?

 

Introduction:

In this Blog we will see how to enable custom table/entity in Activity Regarding


Implementation Steps:

 

1. Navigate to https://make.poweapps.com

 

2. Click Gear Icon at the top

 

3. Click Advance Settings

 

4. Click Customization

 

5. Click Customize the System

 

6. Click your Custom Table

 

7. Make Sure you have enabled Checkbox for Activities & Enable for Unified Client

 

rampprakash_0-1638530352102.png

 

8. Once Done click Save and Publish All Customizations

 

That's it..

 

How to Import Data from Excel to Multiple tables in PowerApps

Introduction:   I have created a view on how to import data from excel to multiple tables in Canvas PowerApps   Implemented Steps: ...