Hi Juwin,
I am using the below code and creating .xls file with string data input
CREATE OBJECT lo_zipper.
CONCATENATE l_subject '.XLS' INTO l_file.
* move l_subject to l_file.
CONDENSE l_file.
CALL METHOD lo_zipper->add
EXPORTING
name = l_file
content = l_xstring.
You can check my above complete code. I am able to generate .xls file with in the program.
Now i have to points,
1. can we skip that warning message?
2. how can we create .xlsx file with in the program using CL_ABAP_ZIP.
Thanks
Nageswar