Skip to Content
0
Former Member
Sep 26, 2005 at 08:56 PM

How To Display ABAP Variable Value

2678 Views

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!