‎2005 Jun 08 10:54 PM
Hi,
I am having an error occuring while i am printing my alv report and it is going to short dump. But i am getting the out put.
The error message is
"GETWA_NOT_ASSIGNED"
Program: "SAPLKKBL " or "LKKBLF01 "
In the form: "CHECKBOX_OUT"
Can anyone help me with this.
Thanks...
Dump Code:
Source code extract
009740 hide g_tabname.
009750 if lflg_icon is initial.
009760 write at (rs_fieldcat-outputlen) <hf> no-gap quickinfo
009770 rs_fieldcat-seltext.
009780 else.
009790 write at (rs_fieldcat-outputlen) <hf> as icon no-gap.
009800 endif.
009810
009820 g_tabname = l_tabname.
009830
009840 format hotspot off.
009850
009860 endform. " HEADER_FIELD_OUT
009870 *& *
009880 *& Form CHECKBOX_OUT
009890 *& *
009900 * text *
009910 * *
009920 form checkbox_out using rs_layout type kkblo_layout
009930 r_tabname type stack-i_tabname
009940 r_sum type c.
009950 data: l_mark(1) type c.
009960
009970 if not rs_layout-box_tabname is initial and
009980 rs_layout-box_tabname ne r_tabname.
009990 format color off.
010000 write at (2) space no-gap.
010010 exit.
010020 endif.
010030
> if not r_sum is initial or <box> = '-'.
010050 format color off.
010060 write at (2) space no-gap.
010070 else.
010080 format color off.
010090 if <box> = ' ' or <box> = 'X'.
010100 g_mark = <box>.
010110 if rs_layout-no_input = 'X'.
010120 write g_mark as checkbox no-gap input off.
010130 else.
010140 write g_mark as checkbox no-gap.
010150 endif.
010160 write at (1) space no-gap.
‎2005 Jun 09 1:17 AM