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








How to Show Dialog or Pop up box in Canvas PowerApps

 Introduction: 

 In this blog we will see how to use Dialog or Popup box in Canvas PowerApps

 Implementation Steps:

 

1. Navigate to https://office.com

 

2. Click On SharePoint and Create a Site if not available else copy the existing Site URL

 

3. Create a List in SharePoint (in My demo i have created TestDemo as SharePoint List) and added two records over there

 

rampprakash_0-1636702398261.png

 

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

 

5. Click Apps

 

6. Click New Button --> Select Canvas App --> Select Phone Mode --> Enter the Name as "Popup/Dialog Demo"

 

7. Once the Page Opened --> Click Data Source --> Search for SharePoint --> Paste the URL which you copied from Point 1 --> Then select the List, once done you can see the list like below in your application

 

rampprakash_1-1636702558044.png

 

8. Click On Insert and Add Vertical Gallery and Select the Items as TestDemo from DataSource

 

9. Add a Trash Icon from the Icon Option by selecting the Gallery

 

rampprakash_1-1636702743411.png

 

10. Add a Rectangle in the PowerApps

 

rampprakash_2-1636702828404.png

 

11. Change Rectangle Fill --> RGBA(0, 0, 0, .5)

 

12. Add Three labels like Below

    a. Are you sure you want to delete the Record?

    b. Yes

    c. No

 

rampprakash_3-1636702947734.png

 

13. Group Rectangle, and Three Labels

 

rampprakash_4-1636702989217.png

 

14. Enable Rule for Group 

 

15. On Start of App 

 

 

Set(enableDialog,false)

 

 

16. Visible Property for Group --> enableDialog

 

17.Label On Select of NO 

 

 

Set(enableDialog,false)

 

 

18. Label On Select of YES

 

 

Remove(TESTDEMO,currentItem);
Set(enableDialog,false)

 

 

19. On Select of Delete Icon in the Gallery

 

 

Set(enableDialog,true);
Set(currentItem,ThisItem);

 

 

That's it :slightly_smiling_face:

 

Video for your Reference , Enjoy watching and Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA

 

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