Hi,
I am using reuse_alv_grid_display to display the data.
In the top of page we need to display some data which is the following format
Project : XXXXX Project Description : ABCDS
Comp Code : 124 Company Descriptio : ASDFGHJ
I am using reuse_alv_comantry_write to display the data
lv_project = wa_header_data-pronr.
lv_project_desc = wa_header_data-post1.
CONCATENATE 'Project:'
lv_project
INTO lv_string.
CONCATENATE 'Project Description:'
lv_project_desc
INTO lv_string1.
CONCATENATE lv_string
lv_string1
INTO
lv_string3
SEPARATED BY
SPACE
lwa_list-typ = 'A'.
lwa_list-info = lv_string3.
APPEND lwa_list TO li_list.
ALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = li_list[].
But when the output is displayed there is no spacing between the strings (Even If I put spacing between the strings in the Debugger it gets condensed)
I want some space between The strings.
Plese suggest how can I get the desired spave between the strings of the Header.