Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Control empty information

Former Member
0 Likes
404

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
377

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"

http://scn.sap.com/thread/107574

2 REPLIES 2
Read only

Former Member
0 Likes
378

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"

http://scn.sap.com/thread/107574

Read only

0 Likes
377

Thanks Venkat.

Amine