cancel
Showing results for 
Search instead for 
Did you mean: 

Object Creation in PDF document dynamically

bruno_ricciardi2
Employee
Employee
0 Kudos

I have the following scenario: I have database of questions and answers, i need to build a webdynpro application that generates a PDF document with the content of this database, but in a dynamically way, for example i have one question like "What is the best color in your opinion?" and four answers like "Yellow, Red, Blue, Gray", i need to take all the questions and the answers from the database and build the PDF form. What are your recommendations for these case? Is there a way to generate a Topic and for these topic 4 checkboxes in a dynamically way?

All these data come from ECC.

Thanks for your help!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Bruno,

You can add or remove subform instances dynamically from your form.

BodyPage1.Subform.instanceManager.addInstance(1);

Create one subform, that has 4 RadioButtons and 4 InputFields, bind the inputfield with the options.

Hope this helps,

Amit