Good afternoon Community,
I am experiencing the above error after building an app to collect data from a from and pass it to a SharePoint list.
On the SP list I have created 3 Lookup controls which I hope will look up data from a table in the Dataverse (when it is uploaded)
I have also created 4 drop down controls to select a value between 1-4, as well as 3 text boxes, a user search field in O365, and finally a box to collect the ID of the person logging in and completing the form.
I have successfully set up most of the form, but I'm experiencing the error "Behavior function in a non-behavior property".
P'Apps doesn't point to where the fault lies, just reports it, and stops the app from working.
When I hit the submit button, and error is returned saying "Title Field required".
When I add the title field, and run it again, it works,, but I don't understand why?
The Title field appears to be connected with the 3 lookup fields:
So if I add it back
The app runs. Since the title is supposed to be data picked up from the Dataverse, I am clearly doing something wrong by having to add it back manually.
I don't understand why a Title field is mandatory? I think my approach must be wrong. Can anyone explain the best approach?
@Pstork1 and @BostonSailor , thanks again for your valued input. Your guidance has led to the app working now - super grateful for the guidance.
I'm not hundred percent sure I'm on the right track yet, however, about this default ‘Title’ column and how it should integrate with the 3 Lookup columns I have now added. Regarding your advice @Pstork1, "What should normally be in the Title field when you submit the data?" That's a very good question. I'm still trying to get my head around things.
To back up a bit, my first iteration of the app around 4-5 months ago, consisting of the default Title column renamed "ID", type single line of text, incrementally added a numeric value to the previous record in SP. I thought that was quite useful from a tracking point of view. I can't for the life of me think how it behaved like an auto number field with a field set to "single line of text". That was then, and now the project has shifted to require three additional columns that will pull in data uploaded batch wise from an external source.
Having researched known resources on the internet, it seems the way forward it is to upload that data to the Dataverse, and then use lookup types to bring that data into the App, to then be pushed into the SP list. If my approach is not the best, I should appreciate further guidance.
Now the app more less seems to be doing what it was designed for – except pick up the lookup data from the Dataverse (that has yet to be uploaded).
I can't recall how I got some test data into the Lookup fields previously, but I think it must have been directly through SP since that seems to be the only way I can get it in now. I can't repeat that effect now. With Look ups, is there a setting somewhere that permits free texting data directly through the control box or is it strictly for looking up elsewhere, be that SP or the Dataverse?
Regarding integration with the Lookup columns, here is how I setup the first setting options.
These are my column headers in SP.
Am I supposed to align it to Title?
Having said that I did see a delete option in the List settings. I didn't try it.
I would recommend finding another use for the Title column that will always have data rather than making it not required. SharePoint expects it to be required and there can be side effects if you change that setting. They are fairly rare, but I have seen issues in the past when people rename the Title column or make it not required.
You can't delete it, but you can ignore it. You need to go and make it not required, though.
In a SharePoint data source the Title column is required by default. So the Title field always has to have something in it when you submit. What should normally be in the Title field when you submit the data?
You should take the error message at face value.
You are updating a SharePoint list, which always has a column called Title. By default, this is a required field. Go to the SharePoint list, List Properties, and make the Title column not required.
Thanks for the heads-up @Pstork1 and @BostonSailor . I moved the code from the App.OnStart to OnVisible screen. It worksed once, now gives an error message on the Submit button. It will work if I add text to the title control.
So to be clear, my code in the AppOnStart was Set(UserEmail, User().Email), to collect the the person's ID who logs onto to complete the form, then pass the data to my SharePoint list. So I moved the code here
The error keeps coming back to Field title required.
Pstork is correct, although I would say that App.StartScreen requires a formula that yields a "screen" reference as a result. In any case, move your behavior to OnStart or OnVisible.
You've added some code to the App.StartScreen property. That property can only contain a reference to a screen, not a formula. You need to move the code to either the App.OnStart property or to the OnVisible property of the screen you reference in the App.StartScreen. You may need to change your settings to put it in App.OnStart since that is disabled by default now.
WarrenBelz
89
Most Valuable Professional
MS.Ragavendar
60
stampcoin
48