Hi All,
In one of my requirement Header value of the excel must be BOLD letter.
i am using OLE concepts for excel generation .
Here is the link which i am following
Please let me know if i can use BOLD letter for header with above sample code .
I have checked few other link for the same but there data insertion process is different than which i'm following .
https://scn.sap.com/thread/644999
So i am bit confused how to proceed further.
Any input please.
Regards,
Prabin
i am inserting the Header data into table by following below code
SELECT EMPID EMPNAM ZDESIG ZBLDGP ZPHNO ZGEND from ZEMPDATA into TABLE it_emp UP TO 10 ROWS .
*first the headings will be displayed in the excel sheet
CONCATENATE 'Emploee ID '
'Emploee Name '
'empoyee designation'
'Blood Group'
'Phone number'
'gender'
INTO wa_tab_excel
SEPARATED BY lv_deli.
APPEND wa_tab_excel TO int_tab_excel.
Add a comment