<%@page language="abap"%> <%@extension name="htmlb" prefix="htmlb"%> <%-- *---------------------------------------------------------------------- * PROGRAM ID : * PROGRAM TITLE : * AUTHOR : * CREATION DATE : * DESCRIPTION : *---------------------------------------------------------------------- * VERSION CONTROL *---------------------------------------------------------------------- * DATE AUTHOR CTS REQ. DESCRIPTION *---------------------------------------------------------------------- * * *---------------------------------------------------------------------- //--%> <% CASE event_id. WHEN 'select'. navigation->set_parameter( 'authorlname' ). navigation->set_parameter( 'authorfname' ). navigation->next_page( 'TORESULTS' ). WHEN 'authors'. navigation->next_page( 'TOAUTHORS' ). WHEN OTHERS. ENDCASE. %>

List of Authors

<% DATA: wa_author TYPE bsauthors. LOOP at authors INTO wa_author. %> <% ENDLOOP. %>
first name last name
<%= wa_author-authfname %> <%= wa_author-authlname %>