Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

New page issue in smartform

former_member198132
Active Participant
0 Kudos

Hi all,

I need help in page trigger in smartforms.

I have data like below

PO  POitem

1      101

1      102

1      204

2      103

2      105

I want to print each PO  details in new page  using command.

accodring to above data , it should display in 2 pages.  I am using the Table .

please adv.

Regards,rama

1 ACCEPTED SOLUTION

former_member198132
Active Participant
0 Kudos

Issue fixed.

By taking one more loop inside the table before main area

thanks,rama

Table

  It_final into ls_final

    loop

      it_final_temp into ls_final_temp where ponum = ls_final-ponum.

 

end of Main area of table..

COMMAND-  page1

1 REPLY 1

former_member198132
Active Participant
0 Kudos

Issue fixed.

By taking one more loop inside the table before main area

thanks,rama

Table

  It_final into ls_final

    loop

      it_final_temp into ls_final_temp where ponum = ls_final-ponum.

 

end of Main area of table..

COMMAND-  page1