cancel
Showing results for 
Search instead for 
Did you mean: 

How to get attributes from a signature field?

Former Member
0 Kudos

Hi folks,

is anyone out there who knows how to find out whether a pdf form is signed or not within the form? There must be an attribute belonging to the signature field which can be used for that via scripting. Does anybody know how to do that?

Answers will be highly appreciated!

Kind regards,

Alexander

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please check the whether the following link is helpful.

[]

Thanks & Regards,

Sanoosh

Former Member
0 Kudos

Thank you for the hint. But I am looking for a solution within the document via scripting. So, the validation methods via ABAP are not the right thing.

Regards,

Alexander

Former Member
0 Kudos

Hi Alexander,

It is possible to get the signed state of a document. Try the script below.

var oState =event.target.getField("form1[0].#subform[0].SignatureField1[0]").signatureValidate();
if (oState == 0) {
...
}

I am not very sure about getting the other attributes.

Thanks & Regards,

Sanoosh

Former Member
0 Kudos

Hi Sanoosh,

thank you for your reply! We will try that coding and get back to you!

Regards

Alexander