cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
SaWu
Impactful Individual
Impactful Individual

Dynamics 9, empty required fields accepted; Blank() vs ""?

Please be so kind as to read my full post before responding.
My actual questions are at the bottom of the post.
The required attribute of datacards in the form is not relevant to my question.

I do already have a workaround, not a solution, for my problem and have listed it at the botto just in front of my actual questions.

Thank you for your consideration.

I am using PowerApps to connect to Dynamics 9.0.2.1719 with Common Data Service.
I have to deal with a custom entity with 3 required fields (required in the the entity) kk_company, kk_lastname, kk_firstname and guid kk_exhibition_leadid.
I have not yet been able to reproduce my error with another PowerApp for a standard entity with standard fields for testing purposes.
Hence, all my code examples refer to these field names, etc.
For various reasons, I cannot directly use SubmitForm but am using
Patch after making some adjustments to the submitted record.

In one app that I have already spent too much time on, the checks for the required fields have suddenly stopped working.
Leaving the required fields empty and submitting via Patch succesfully enters the record into the CRM database.
Even a completly blank record is accepted.

Upon some testing I have been able to reduce my problem to the following minimal example:

  1. Open a standard Common Data Service Template for the Table.
  2. Choose the fields kk_company, kk_lastname, kk_firstname as Fields of EditForm1
  3. Rename the Text Input of these fields to CompanyInput, LastnameInput, FirstnameInput
    image.png
  4. Change the OnSelect action of the submit button to
    Patch('Messe-Erfassungen', {kk_exhibition_leadid: Blank()}, {
        kk_company: CompanyInput.Text,
        kk_lastname: LastnameInput.Text,
        kk_firstname: FirstnameInput.Text
    })
    image.png
  5. Play the PowerApp and try to submit an empty record (required fields not filled!)

The expected behaviour is that the empty record is not accepted:
image.png
If I create a new PowerApp following these steps I get the expected behaviour.

However, in the PowerApp that I have been developing for quite some time, (recreating) the same Form with the same fields and attributes and code suddenly started accepting these empty records into the CRM:
image.png

After some testing I am now assuming the crux of the issue is the difference between Blank() and "".
In both my old and new apps the following code produces the expected behaviour of records with missing required fields not being accepted:

Patch('Messe-Erfassungen', {kk_exhibition_leadid: Blank()}, {
    kk_company: Blank(),
    kk_lastname: Blank(),
    kk_firstname: Blank()
})


However, in both my old and new apps the following code produces the unexpected behaviour of records with missing required fields being accepted and even yielding basically empty records in the CRM:

Patch('Messe-Erfassungen', {kk_exhibition_leadid: Blank()}, {
    kk_company: "",
    kk_lastname: "",
    kk_firstname: ""
});

image.png

As a workaround, in both my old and new apps the following code produces the expected behaviour of not accepting records with empty required fields:

Patch('Messe-Erfassungen', {kk_exhibition_leadid: Blank()}, {
    kk_company: If(IsBlank(CompanyInput.Text), Blank(), CompanyInput.Text),
    kk_lastname: If(IsBlank(LastnameInput.Text), Blank(), LastnameInput.Text),
    kk_firstname: If(IsBlank(FirstnameInput.Text), Blank(), FirstnameInput.Text)
})

image.png

My actual questions are:

  • Why does NewForm set yet unfilled fields to, apparently, "" in my old (for some reason bugged?) PowerApp and Blank() in a new freshly created PowerApp?
  • How can I "reset" my original App to the expected behaviour?
  • Why does Dynamics even accept "" in required fields in the first place?
    Or am I missing some setting in Dynamics that allows ""?

Thank you for your consideration.

2 REPLIES 2
v-xida-msft
Community Support
Community Support

Hi @SaWu,

 

For your first question, I think you have some misunderstanding in "" and Blank(). The "" is not equal to Blank(). The Blank() function is used to create a blank value (a placeholder for "no value" or "unknown value"), but the "" represents a empty string text value.

 

The "" represents a string text value, but there is no character within this string text. You could consider take a try to add a Label control within an app, set the Text property to following formula for checking if "" is equal to Blank():

If(Blank()="",true,false)

the above formula would return false.

 

For your second question, I agree with the last solution that you provided almost. You could consider take a try to check if the corresponding fields (TextInput controls) are empty, if yes, provide Blank() for the corresponding fields, otherwise, provide corresponding input values.

 

In addition, you could also check if the corresponding TextInput controls are empty before executing the Patch function. Please modify your formula as below:

If(
IsBlank(CompanyInput.Text)||IsBlank(LastnameInput.Text)||IsBlank(FirstnameInput.Text),
Notify("The required fields must be populated with values",NotificationType.Warning),
Patch(
'Messe-Erfassungen',
{kk_exhibition_leadid: Blank()},
{ kk_company: CompanyInput.Text, kk_lastname:LastnameInput.Text, kk_firstname: FirstnameInput.Text }
)
)

 

For your third question, please check my response for your first question as above. In addition, I think you have some misunderstanding within SubmitForm function and Patch function.

 

The SubmitForm function would automatically check for validation issues with any field that's marked as required or that has one or more constraints on its value before submitting any changes. Please check here for more details.

 

Best regards,

Kris

 

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for reading and replying.


I think I do understand the difference between SubmitForm and Patch.
Since I think you need more details on what I'm doing, I use Patch because it allows more control and it also allows selections in MultiSelect OptionSet or OptionSet field to be unset.
SubmitForm does not seem to accept changing selections to "nothing selected".
You have already already read my inqury about this here:
https://powerusers.microsoft.com/t5/General-Discussion/PowerApps-Dynamics-9-MultiSelect-Option-Set-e...

I also do understand the difference between "" and Blank().
They are not the same but they are close:
image.png
Also, as shown in my original question, Dynamics apparently accepts "" in Required fields but does not accept Blank() in required fields.

This is why my assumption is that the unwanted empty records created in the Dynamics are caused by submission of "".

Normally, trying to create a new record with a Form and NewForm seems to reset Inputs to Blank().
Trying to SubmitForm or Patch then yields expected "Required field empty" errors.

In my "stuck" App, something else happens.
Trying to SubmitForm or Patch then yields unexpected empty records in the CRM.

Let me reiterate my question:
- Shouldn't there be a guarantee that all Form Inputs, for fields with no default set in the CRM, are reset to Blank() after calling NewForm?

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages