Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

at least one required field was empty. please fill in the required fields (highlighted)

Community Beginner ,
Jan 12, 2024 Jan 12, 2024

I was wondering if anyone could help me with an issue I am having please.

I have a form with multiple signature boxes on. Every now and then when someone signs a document with signature boxes, I get the error message in the image I have attached below. Normally when someone signs this signature box it brings up an email to send which informs me that it has been signed. However, as I stated I sometimes get this error message and no email pops up. Any help is much appreciated.

 

The error message is as follows:

Charlie303735890y2h_0-1705059305183.png

TOPICS
Security digital signatures and esignatures
2.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 12, 2024 Jan 12, 2024

Hi @Charlie303735890y2h

 

Hope you are doing well and thanks for reaching out.

 

Does the PDF form consist on any required filed? The error message usually occurs when there is a required filed in the PDF form.

 

Also check out the correct answer marked in the similar discussion (https://adobe.ly/3TXvmK7) and see if that works.
 
~Amal
Regards
Amal
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 12, 2024 Jan 12, 2024

I do not think the form has any required fields as this error message very rarely pops up. When it does pop up the same signature boxes get signed. The same outcome when signing the same signatures in adobe are producing two different results. One is the form gets signed and an email pop up occurs. The second is there is no email pop up and you instead get the error message i posted above stating - at least one required field was empty. please fill in the required fields (highlighted).

 
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 12, 2024 Jan 12, 2024

If this message appears then the form must have some required fields, and they are not filled in when you try to submit it. It could be they are hidden, though, which would make it difficult to fill them in... Unless you can share the file it's hard to say for sure, but you can find out what are their names using this code:

 

for (var i=0; i<this.numFields; i++) {
	var fname = this.getNthFieldName(i);
	var f = this.getField(fname);
	if (f==null) continue;
	if (f.required) {
		console.println("REQUIRED FIELD: " + f.name);
		console.println("Page: " + f.page);
		console.println("Display: " + f.display);		
	}
}

If you run this code from the JS Console it will print out a list of all required fields in the file, where they are located (with 0-based values, meaning 0 is page 1), and their visibility state (0 or 2 means it will be visible on the page, 1 or 3 means it will not be).

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 17, 2024 Jan 17, 2024

I have managed to open the java script console. I beleive it is the debugger? How do i run the code in which you have put in your message? Thank you.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 17, 2024 Jan 17, 2024

Correct. Paste the code into the text field in the lower part of the window, select all of it using the mouse or keyboard and press Ctrl+Enter to run it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 12, 2024 Jan 12, 2024

The answer is in the error message: you must fill all required field before.

The other solution is not to use the required attribute for fields.


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 12, 2024 Jan 12, 2024

Well it only gives this error message on a rare occasion. Also the error message does not makes sense as when it does not give the error message and when it does the same exact things are happeneing and getting signed. But yet doing the same thing will either make the signature boxes and email box pop up work or give this error message. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 13, 2024 Jan 13, 2024

Can you share (part of) this form?


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 17, 2024 Jan 17, 2024

No part of the form has any fields that say they are required. There are multiple parts of this form to sign but none have required attribute for fields. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 17, 2024 Jan 17, 2024

Please, use the Form Report plugin which is part of the (free) abracadabraTools and carefully check the Required column after the CSV has been opened in the spreadsheet.

https://www.abracadabrapdf.net/utilitaires/utilities-in-english/abracadabratools_en/

 

Capture_2401171621.png

 

 


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 24, 2024 Jan 24, 2024
LATEST

I am struggling to find the form report in tools. I have put the .js files from the download link you sent me into the javascript folder... however i cannot find the from report. Any thoughts on this please?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines