‎2009 Sep 24 6:11 AM
hi
below is my code in put put it displays as
Advance License Information its fine..
now wn i give plant and date as input i want the output as
Advance License Infomation
Plant : wtvr plant i give as input that should be displayed
Date ; wtvr date i give that should be displayed...
i wil get these information in a single line...but i want the out put as above shown
data : IT_HEADER type SLIS_T_LISTHEADER,
WA_HEADER type SLIS_LISTHEADER,
WA_HEADER-TYP = 'H'.
WA_HEADER-INFO = 'Advance License Information'.
append WA_HEADER to IT_HEADER.
clear WA_HEADER.Plz help me on this
Regards
Smitha
‎2009 Sep 24 6:17 AM
Hello
WA_HEADER-TYP = 'H'.
WA_HEADER-INFO = 'Advance License Information'.
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
if not P_PLANT is initial.
WA_HEADER-TYP = 'H'.
concatenate 'Plant' P_PLANT into WA_HEADER-INFO separated by space. " <- here P_PLANT - from import parameter
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
endif.
if not P_DATE is initial.
WA_HEADER-TYP = 'H'.
concatenate 'Date' P_DATE into WA_HEADER-INFO separated by space. " <- here P_DATE - from import parameter
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
endif.
‎2009 Sep 24 6:14 AM
Hi
Give Column 1 to all the three fields
and row no 1,2,3.
Regards
Aditya
‎2009 Sep 24 6:16 AM
concatenate the plant and date to the WA_HEADER-INFO.
WA_HEADER-INFO = 'Advance License Information'.
concatenate WA_HEADER-INFO ',Plant:', GV_PLANT, ',Date:', GV_DATE into WA_HEADER-INFO.
‎2009 Sep 24 6:17 AM
Hello
WA_HEADER-TYP = 'H'.
WA_HEADER-INFO = 'Advance License Information'.
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
if not P_PLANT is initial.
WA_HEADER-TYP = 'H'.
concatenate 'Plant' P_PLANT into WA_HEADER-INFO separated by space. " <- here P_PLANT - from import parameter
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
endif.
if not P_DATE is initial.
WA_HEADER-TYP = 'H'.
concatenate 'Date' P_DATE into WA_HEADER-INFO separated by space. " <- here P_DATE - from import parameter
append WA_HEADER to IT_HEADER.
clear WA_HEADER.
endif.