cancel
Showing results for 
Search instead for 
Did you mean: 

Designing a dynamic table in SAPScript

Former Member
0 Kudos

Hello All!

I'm really tired trying to build a simple table in SAPScript form.

This table may not be fixed on form because it should appear at the end of the report and a report may have more than one page.

The structure of the table should be as follow:

_____________________________________________

REGISTER

DATE

BEGIN TIME

END TIME

OBS

_____________________________________________

_____________________________________________

Any idea in how to do that?

Thanks,

Michel Khouri

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Put the code lines between BOTTOM and ENDBOTTOM

and in that again put the condition

if &nextpage& eq 0.

endif.

Totally

/:BOTTOM

/:IF &nextpage& eq 0.

code lines

/:ENDIF

/: END BOTTOM

Reward points if useful.

Regards,

Nageswar

Former Member
0 Kudos

Hi Nageswar,

Thanks for your reply, however I'm looking for a way to draw a table inside the form using SapScript.

Do you have the codes to make that?

Michel