‎2006 Dec 01 8:51 AM
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
‎2006 Dec 01 8:57 AM
Refer this link:
http://help.sap.com/saphelp_47x200/helpdata/en/d1/80318f454211d189710000e8322d00/frameset.htm
Regards,
Ravi
‎2006 Dec 01 9:05 AM
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.