Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.
SOLVED

How to develop PDF form with its own database of values

Avatar

Level 1

I am creating PDF form with Adobe LiveCycle.

I want this form to be available standalone (without database connection) but I want to have local data lookups within the form and populate the values.

This data table lookup should not be visible to the users.

Is there a way to use PDF forms along with XML, EXCEL anything which can allow us to do this?

1 Accepted Solution

Avatar

Correct answer by
Level 7

I have done this many times, it is only as complex as you make it.

What you need to do is simply have an 'in form storage'. This can be done with whatever fields you like.

For an in form storage just create the 'storage' fields you need and make them hidden. You can have one storage field per item or there are more advanced ways of doing things.

Many times i want to be able to choose 1 item from many items to add to 1 field. You can do this too.

One thing to remember is that if you 'save' a textfield to a hidden storage text field, you would effectively copy the rawvalue to another field, you arent actually saving the pdf file.

For example, all these fields are hidden storage fields in my form. You can 'save' to the next blank field by using simple if statements to check if a field is null or not. You can have multiple fields like this appear in a combo or list box for user selection when loading back an item.

1489727_pastedImage_0.png1489728_pastedImage_1.png

View solution in original post

1 Reply

Avatar

Correct answer by
Level 7

I have done this many times, it is only as complex as you make it.

What you need to do is simply have an 'in form storage'. This can be done with whatever fields you like.

For an in form storage just create the 'storage' fields you need and make them hidden. You can have one storage field per item or there are more advanced ways of doing things.

Many times i want to be able to choose 1 item from many items to add to 1 field. You can do this too.

One thing to remember is that if you 'save' a textfield to a hidden storage text field, you would effectively copy the rawvalue to another field, you arent actually saving the pdf file.

For example, all these fields are hidden storage fields in my form. You can 'save' to the next blank field by using simple if statements to check if a field is null or not. You can have multiple fields like this appear in a combo or list box for user selection when loading back an item.

1489727_pastedImage_0.png1489728_pastedImage_1.png