‎2022 Jul 07 2:47 PM
Hi,
I can't change the calling program so can't use 'SSF_OPEN' FM.
Inside the smartform I am generating 2-3 headers and for each header, there are few item details.
I need to print pages with data from header in the header section ( repeating on each page) and items in the form of a table.
I need to start with a new page for new header data.
How to achieve this.
Thanks in advance.
‎2022 Jul 07 3:20 PM
Hi,
You can use Command. Insert command after table and select go to new page and corresponding page name.

‎2022 Jul 07 3:12 PM
Hi
I believe you are referring to the table data printing.
You have an option to print the header line each page as below:
In below example, the header sectionof table %table1 - you have two check boxes. You can use it as per your requirement.

Regards,
Venkat
‎2022 Jul 07 10:19 PM
Hi Venkat,
I need to display 3 different delivery data. So I have likp with 3 entries and lips with 9 entries ( assuming 3 lines for each delivery).
I need to show some headers ( no table header) like delivery number, date, customer and few more fields then a table with material number quantity UOM and few more fields.
Each delivery needs to start at new page and line items can go to next page depending on number of lines.
Thanks
‎2022 Jul 07 3:20 PM
Hi,
You can use Command. Insert command after table and select go to new page and corresponding page name.

‎2022 Jul 07 11:26 PM
Hi Anuja,
I am able to achieve this using your method but facing 1 issue. In table in footer, i set condition 'At End of Table' and in footer, i added a command to go to next page.
It is working fine except, it is printing 1 extra page at the end.
Is there any better way to set command condition ?
Thanks
‎2022 Jul 08 6:22 AM
Hi
You can add something like this.
IF SFSY-PAGE = SFSY-FORMPAGES.
lv_last_page_flag = 'X'.
ENDIF..
Regards,
Venkat
‎2022 Jul 08 6:29 AM
Hi mohammadaamir.khan
Please add command by right clicking on table not footer.