Hi,
I have a BSP and am using ABAP for scripting. I have a variable and I want to display the value on the webpage. What's the ABAP scripting syntax?
I tried:
<%
DATA: l_dat TYPE string.
l_dat = request->get_form_field( 'SELECTION' ).
WRITE: l_dat.
%>
I need the syntax to display l_dat.
Also, is there a ABAP scripting reference that shows syntax?
Thanks!