cancel
Showing results for 
Search instead for 
Did you mean: 

How to make only the internal table flow to next pages in Adobe Forms ?

Former Member
0 Kudos

My Requirement is to flow the internal table data to next pages, without breaking. I have a logo, 2 boxes in the first page. There is also space for the internal table. If the number of data is less, then, only the first page would satisfy it. But, if it has more data , Then I want my internal table data to flow to next page, till data persists. Only the internal table.

Requesting you to comment on the logic, about how to approach in this kind of scenario.

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

suneel_uggina
Participant
0 Kudos

Hi shubhamoy,

If you want to flow internal table data only to next page,wrap the internal table which you have created in layout level into a subform and set the properties of subform as flowed.

For the logo and other data which you want to keep in first page only wrap all those into a subform and set the property as positoned.

Thanks,

Suneel.uggina

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Suneel. Another thing to add. I also have a footer to show. and the footer must be in the last page of the form. So, Should I wrap the footer in a sub-form and make it flowed ?

prajeshdesai
Contributor
0 Kudos

to unsure that footer is only on final page, do below checks,

Hope this helps.

suneel_uggina
Participant
0 Kudos

Hi Shubhamoy,

In order to add footer which should be displayed on last page, We have to create sub form in the master page level and need to add script as shown below.

var curp = $layout.page ( ref ( $ ) )

        var totalp = $layout.pageCount()

        if ( curp ne totalp ) then

        $.presence = "hidden"

        endif

For step by step procedure please refer the below document.

Thank you,

Suneel.Uggina.