Requires Free Membership to View
When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.
Hannah Smalltree, Editorial DirectorFor easy design, you can use the very powerful HTMLB library, a number of macros that render into plain HTML and Javascript. To see what is possible to create a BSP application and a page, browse the possible HTMLB tags in Tag Browser->BSP Extensions->Transportable->HMLB
A very simple example may look like this.
<html> <head> <% data: itab type table of sflight. %> <% field-symbols: <row> like line of itab. %> <% select * from sflight into table itab. %> </head> <body> <table> <% loop at itab assign <row>. %> <tr> <td><%= <row>-carrid %></td> <td><%= <row>-connid %></td> </tr> <% endloop. %> </table> </body> </html>
If you want to call transaction codes via HTML you need to activate the ITS.
This was first published in August 2005
Join the conversationComment
Share
Comments
Results
Contribute to the conversation