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..

 

Monday, November 29, 2021

How to Set Non-Users in To Field in Email - Dataverse or MSCRM


Introduction:

In this Blog, we will see how to Set TO/CC/BCC with Non CRM Users through JavaScript

Implementation Steps:

 

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

 

2. Click Gear Icon at the Top

 

3. Click Advance Settings

 

4. Click Administration 

 

5. Select System settings, it will open a Popup (Select EMAIL tab)

 

6. Set (Allow messages with unresolved email recipients to be sent) to YES

 

rampprakash_0-1638126337594.png

 

Once the Above setting done write the below script in your code

 

 

 

function setUnResolvedusers(formContext, getEmailId) {
    if (getEmailId != null) {
        var obj = new Object();
        obj.name = getEmailId;
        obj.entityType = "unresolvedaddress";
        obj.id = "{00000000-0000-0000-0000-000000000000}";
        var toField = formContext.getAttribute("to");
        var toValue = toField.getValue();
        if (toValue != null) {
            toValue.push(obj);
            toField.setValue(toValue);
        }
        else {
            var value = new Array();
            value[0] = obj;
            toField.setValue(value);
        }
    }
}

 

 

 

Triggering method:

 

 

 

setUnResolvedusers(executionContext,"ramprakashdemo@live.com"

 

 

 

That's it :slightly_smiling_face:

Tuesday, November 23, 2021

How to fix getting "Undeclared Property Error" when updating a record using API

Introduction:

In this Blog, we will how to Over come the issue "UNDECLATED PROPERTY" in Dataverse/MSCRM using JavaScript web API




Implementation Steps:


Initially am trying to update the Record using WEB API.


var entity = {};

entity["cradf_task@odata.bind"] = "/cradf_tasks(1af58b75-c04b-ec11-8f8e-0022481668c0)";


Xrm.WebApi.online.updateRecord("customEntity", "29ea0ca2-aa4b-ec11-8f8e-0022481668c0", entity).then(

    function success(result) {

        var updatedEntityId = result.id;

    },

    function(error) {

        Xrm.Utility.alertDialog(error.message);

    }

);


While Running the Above code am getting the Above error. So to overcome this issue.


Open this Link and Download "Dynamics 365 Customer Engagement (on-premises)"


https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/developer/browse-your-metadata?view=op-9-1


Then open the entity which you want to use, try replacing these three values(TRY each values and make it work)



















So copied the name and replaced in the above query to solve my solution

var entity = {};

entity["cradf_incomingemail_Task@odata.bind"] = "/cradf_tasks(1af58b75-c04b-ec11-8f8e-0022481668c0)";


Xrm.WebApi.online.updateRecord("customEntity", "29ea0ca2-aa4b-ec11-8f8e-0022481668c0", entity).then(

    function success(result) {

        var updatedEntityId = result.id;

    },

    function(error) {

        Xrm.Utility.alertDialog(error.message);

    }

);


Thats it :)

Monday, November 22, 2021

Show Ribbon Button - When a Row is Selected

 Introduction:

In this Blog, we will see how to Show Ribbon Button on when a Row is selected in the View

Implementation Steps:

 

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

 

2. Click Solution --> then Create a New Solution Named RIBBON CUSTOMIZATION

 

3. Add the Entity to Configure the Button

 

4. Import Ribbon Work Bench Solution

 

5. Click On Gear Icon at the Top --> Navigate to Solutions

 

rampprakash_0-1637602028315.png

 

6. Click on Ribbon Workbench at the Top. Once Opened Select the Solution and Click Ribbon Customization

 

rampprakash_1-1637602094474.png

 

7. Once the page Opened --> Drag and Drop the Button into the Form

 

rampprakash_2-1637602158289.png

 

8. Click On Add Command to add the Command (which is used to process on Button Operations like Visible or perform some operation on click)

 

 

rampprakash_3-1637602261658.png

 

9. Click Add Enable Rules and Provide Minimum as 1

 

rampprakash_4-1637602290721.png

 

10. Once Created Make sure ENABLE RULES added in the COMMAND

 

11. Add the Command which you have created in the Button

rampprakash_5-1637602337393.png

 

Lets Start testing:

 

Button Not Visible without Selection

rampprakash_6-1637602382285.png

 

Visible after selection

rampprakash_7-1637602397361.png

 

That's it :slightly_smiling_face:

Monday, November 15, 2021

How to Handle errors in Microsoft Flow (Try/Catch)

 Introduction:

In this blog we will see how to handle errors in Microsoft Flows.

rampprakash_0-1636977733384.png

When we are developing Code in Visual studio, we will use TRY/Catch Block to handle errors. if Try Errored Out it will come to Catch Block. Lets see how to implement this in Microsoft flow

 

Implementation Steps:

 

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

 

2. Create a New App or Open an Existing app which is already available

 

3. Search for Scope and add the Scope

 

rampprakash_1-1636977898138.png

 

4. Rename the Scope to TRY

 

5. Add another Scope and Rename it to Catch

 

6. In the Catch Block Click three dots and Select Configure Run After

 

rampprakash_2-1636977971718.png

 

7. Once Clicked you will see multiple options to choose when Catch Block should trigger

 

rampprakash_3-1636978009817.png

a. is successful --> If Try gets Success then Catch should trigger

b. has failed--> If Try gets Failed then Catch should trigger

c. is skipped--> If Try gets Skipped then Catch should trigger

d. has timed out --> If Try gets Timed Out then Catch should trigger

 

Select your respective Options and Click Done and save your flow.

 

That's it :slightly_smiling_face:




Friday, November 12, 2021

Changing Text Field Type to Single Line Multiline and Password

 Introduction: 

 In this blog we will see how to change Text box into Single/Multiline and Password

 Implementation Steps:


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

2. Click on Apps then select New then Add New

3. Select Phone Or Mobile mobile and enter the Name of the App

4. Add the Text Box in the Form

5. Click on the Field and Select Properties and Click Mode and Select Single Line of Text to Show Text in Single Line


 



6. Change the mode to Multiline to enter the text in multiple lines

7. Change the mode to Password to enter the text as Password




That's it. :)








Day 11 - Customizing Option Sets Dropdown Fields with JavaScript

  In this Blog, we will see how to Customizing Option Sets Dropdown Fields with JavaScript label1 = formContext.getAttribute( "bosch_op...