cancel
Showing results for 
Search instead for 
Did you mean: 

Parse PDF object for input values

Former Member
0 Kudos

Hi,

can somebody tell me how I can access the values entered into an offline PDF document? Or can anybody tell me where I could finde apporpriate documentation?

Many thanks!

Birgit

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello.

You can use the method transferPDFDataIntoContext from WDInteractiveFormHelper to populate your context with the data filled in the offline pdf.

http://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/clientserver/adobe/api/WDInteract...

You have to define the same Context structure used to generate the pdf in your app that reads/uploads it.

Something like:

WDInteractiveFormHelper.transferPDFDataIntoContext(wdContext.currentContextElement().getPdfSource(), wdContext.nodePDFData());

Regards,

Paulo.