2013 Jun 14 5:37 PM
Hi experts,
I would like to control delta loadings on BW. If i found empty information i generate a file with the problematic records.
I guess the logic will be as following:
LOOP at records
Find empty records
Append them to file
ENDLOOP
I would like then to generate the file and send it by mail to some people (but all those steps have to be automatic with an abap code)
What do you recommand me regarding your own experiences?
Thanks.
Amine
2013 Jun 14 10:08 PM
Hi Amine,
It need some preety long steps........
Step 1:
Get the information of empty records and store it in one internal table.
Step 2:
Pass this internal table data to an excel file using FM GUI_DOWNLOAD
http://scn.sap.com/thread/107574
Step 3:
Later, send this excel file as an attachment to persons throgh FM "SO_NEW_DOCUMENT_ATT_SEND_API1"
2013 Jun 14 10:08 PM
Hi Amine,
It need some preety long steps........
Step 1:
Get the information of empty records and store it in one internal table.
Step 2:
Pass this internal table data to an excel file using FM GUI_DOWNLOAD
http://scn.sap.com/thread/107574
Step 3:
Later, send this excel file as an attachment to persons throgh FM "SO_NEW_DOCUMENT_ATT_SEND_API1"
2013 Jun 17 9:27 AM