hi all,
i need to run the report in background, in selection screen MATNR is one of the select option.
even it is output field.it is an ALV report.
if we run in background, the MATNR field is displaying half value
i mean if the MATNR = 123456789.
it is displaying as MATNR = 123456. (MISSING some of the last values)
The code is below.
ls_fieldcat-fieldname = 'MATNR'.
ls_fieldcat-tabname = 'GT_DATA'.
ls_fieldcat-seltext_m = 'Material'.
ls_fieldcat-col_pos = loc_count.
APPEND ls_fieldcat TO gt_fieldcat.
CLEAR ls_fieldcat.
please suggest.
thanks in advance