Lufthansa Before You Can Continue Please Check the Following Errorthe Field is Mandatory

Dynamics 365 Finance Forum

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Hi I am getting this error when i am trying to save a new record in Table browser VendTable. There are no customizations done for this table.

I created some classes. I got this error. Then deleted those classes. Rebuild done. Sync done for that project.

1. Still i am getting this error. It doesnt give any more information. Thats the error.

Some of the information that you entered is not valid. You must enter valid information before you can continue.

2. One other thing is: I tried to attach iisexpress.exe while debugging and still i am not able to hit breakpoints in visual studio. Any help would be appreciated too on this one.

Replies (15)

Ajit picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Please make sure if you are not missing any mandatory columns. And why are you creating new record from table browser?

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I tried to create the vendor from vendor Form too on UI. But still i got the same error. I filled all the required fields.

Satish Panwar picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

It's showing message/error on 2 fields. Can you try to select valid data (in Group field). Not sure why it's showing message in vendor. When you create, is it blank by default? Try to create again by selecting a valid data in group field and see if error is still same. If you can post exact steps you are taking to create a vendor that will help.

Thanks,

Satish Panwar

Please help verify answer(s) if they guide you in right direction so other community members can also benefit from your question with verified answer.

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Its new Vendor record. I added account number manually and vendor group from dropdown. But when i move my cursor over to those warning marks on those fields  its showing me like this

Last Valid Value

Current Value: hggth

Same with Vendor Group even though i added a value from Dropdown. I am not doing anything different. I clicked on New vendor > Added Vendor Account Manually > Selected Vendor Group Dropdown and Selected a value > Filled other values and Clicked Save.

Satish Panwar picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I am on the same form, see what you see.. General/change party association... but when i put in vendor account.. i never see something like ''... last valid value../current valid value. Do you have some kind of functionality turned on that's causing this behavior. I did validate with require approval and it still doesn't show me what you see. If it's plain vanilla system with MS data, i don't see it same in my environment unfortunately. Can you check what may be turned on in this environment that may be causing such kind of behavior.

Thanks,

Satish Panwar

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Its a Plain Vanilla System too. I am not sure what would cause this issue. I checked if there is any extensionclasses/forms/tables causing this behaviour but i didnt find any codes related to vendTable. Will keep checking and will see if i can find out... I dont even know why is it happening and where to check.

Ajit picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Could be some county specific columns. Can you please confirm the assigned country to your legal entity?

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Ajit picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Ok. Find vendTable form in AOT and right click - Find References and see if form is customized.

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I dont see any customizations. This is what i found when i clicked on references on vendTable form.

Ajit picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I see extension of for 'vendTable'. Please check that.

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Thats the Standard Object right? I tried to delete it and it says :

---------------------------

Microsoft Visual Studio

---------------------------

Unauthorized to modify model 'Application Suite'.

---------------------------

OK

---------------------------

Ajit picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

yeah sorry, that's application suite extension.

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Hi All,

I am able to get rid of this issue.

So when i am trying to enter vendor details and click Save i am getting two warnings as shown in below post. I thought i removed all customizations that are there in system till today. But when i checked today each model carefully and found a new model which had some Projects. So i tried to delete all of those as much as i can. Then performed Build of all models ( Full compilation as per 2012 terminology). I got some errors and found those customized objects and deleted them. Then Performed Build of all models.

Finally after Build All models(Application Compile or Full CIL) is completed. Then I tried to create a record in VendTable. Now i didnt get this error and main thing is i didnt see those validation marks for Vendor Account num and Vendor Group fields as i used to get before as shown in below url.

dynamicsuser.net/.../some-of-the-information-that-you-entered-is-not-valid-you-must-enter-valid-information-before-you-can-continue

Conclusion: I removed existing customizations and Performed full application compile(or Build All models) - which resolved this error.

I am not sure if the issue is resolved because of full compile or because of removing customizations.

Erik Drijfhout picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I had this problem when using a registerOverrideMethod for the Modified() method on a dialog FormStringControl. It appears that the standard FormControl.Modified() is always required to execute, like in the following example. This solved the problem for me. Maybe the same goes for other overridden methods.

private boolean dialogFieldModified(FormStringControl _formStringControl)

{

boolean ret = _formStringControl.modified();

.

.

}

DynamicsAXExplorer picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

Hi All,

I am able to get rid of this issue.

So when i am trying to enter vendor details and click Save i am getting two warnings as shown in below post. I thought i removed all customizations that are there in system till today. But when i checked today each model carefully and found a new model which had some Projects. So i tried to delete all of those as much as i can. Then performed Build of all models ( Full compilation as per 2012 terminology). I got some errors and found those customized objects and deleted them. Then Performed Build of all models.

Finally after Build All models(Application Compile or Full CIL) is completed. Then I tried to create a record in VendTable. Now i didnt get this error and main thing is i didnt see those validation marks for Vendor Account num and Vendor Group fields as i used to get before as shown in below url.

dynamicsuser.net/.../some-of-the-information-that-you-entered-is-not-valid-you-must-enter-valid-information-before-you-can-continue

Conclusion: I removed existing customizations and Performed full application compile(or Build All models) - which resolved this error.

I am not sure if the issue is resolved because of full compile or because of removing customizations.

Erik Drijfhout picture

Some of the information that you entered is not valid. You must enter valid information before you can continue. D365fo

I had this problem when using a registerOverrideMethod for the Modified() method on a dialog FormStringControl. It appears that the standard FormControl.Modified() is always required to execute, like in the following example. This solved the problem for me. Maybe the same goes for other overridden methods.

private boolean dialogFieldModified(FormStringControl _formStringControl)

{

boolean ret = _formStringControl.modified();

.

.

}

serraformenjoute.blogspot.com

Source: https://community.dynamics.com/365/financeandoperations/f/dynamics-365-for-finance-and-operations-forum/366662/some-of-the-information-that-you-entered-is-not-valid-you-must-enter-valid-information-before-you-can-continue-d365fo/966713

0 Response to "Lufthansa Before You Can Continue Please Check the Following Errorthe Field is Mandatory"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel