Application Development and Automation 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: 
Read only

Displaying data in table format in SAP Script

Former Member
0 Likes
414

Hello All,

I need to replicate a SMARTFORM to a SAP Script. In the Smartform, in one window data is displayed in table format. The table has a header and 1 line item.

How can this be replicated in SAP Script? A sample code will be of great help.

Many thanks in advance.

Regards

Indrajit

2 REPLIES 2
Read only

Former Member
Read only

Former Member
0 Likes
334

hi,

delcare a text elemnt for heading.

declare a text element for table contents that has to be looped.

APPLY THE LOGIC.

perform write_form (for header).

loop.

perform write_form (for table content).

endloop.