2009 Nov 23 4:36 PM
Hello friends,
I'm having an issue with excel attachmnet which is being genetaed through email using function module 'SO_NEW_DOCUMENT_ATT_SEND_API1'...issue is getting more space on first column of the data...not header column, only space on data column. Do you have any idea what might be the reason? Thanks in advance.
Regards,
Satya
2009 Nov 23 4:54 PM
2009 Nov 23 4:54 PM
2009 Nov 24 5:49 AM
2009 Nov 24 11:21 AM
HI
Implemented this idea . Problem is while generated the excel file That is
Suppose 5 field in ur internal table then but dont want display all 5 fields
just all add ' ' if you dont want column then alignment will ready
for example
CONCATENATE CON_NEW ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' INTO IT_ATTACH SEPARATED BY CON_TAB. "***
APPEND IT_ATTACH.
with regards
anand kumar
2009 Nov 25 3:56 PM
Hi Anand, I could able to get rid of space on first column..but now my problem is decimals won't show up on output in excel..Any idea?Thanks in advance.
2009 Nov 26 2:09 PM
HI
Simple Mate
just make variable as Type p DECIMALS 0
Just try this option
With regards
anand kumar
2009 Nov 26 2:30 PM
Hello Satya,
I was doing similar kind of example; SAP data has decimals but output in an Excel sheet will not have that; it doesn't mean that it has skipped decimals; again when you migrate data from Excel sheet to packed data type input structure; it will surely add decimals.