Application Development 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: 

Program to send email concerning table in SE16

Former Member
0 Kudos

Hi Everyone,

I think I have a pretty simple question to ask. I'm looking to do a Number of Entries against a table in SE16, and I basically want to be able to send that number in an email to myself.

Does anyone know if there's a program that already exists to do this, or if there's any other way???

<removed_by_moderator>

Thanks,

John

Edited by: Julius Bussche on Sep 8, 2008 1:31 PM

1 ACCEPTED SOLUTION

former_member404244
Active Contributor
0 Kudos

Hi,

Write a small program..

data : v_tfill type sy-tfill.

SELECT COUNT(*) FROM <dbtable> into v_tfill.

v_tfill will give you number of lines...

for sending mail please refer the below link..

http://www.sapdev.co.uk/reporting/email/email_mbody.htm

Regards,

nagaraj

2 REPLIES 2

former_member404244
Active Contributor
0 Kudos

Hi,

Write a small program..

data : v_tfill type sy-tfill.

SELECT COUNT(*) FROM <dbtable> into v_tfill.

v_tfill will give you number of lines...

for sending mail please refer the below link..

http://www.sapdev.co.uk/reporting/email/email_mbody.htm

Regards,

nagaraj

0 Kudos

Thanks very much....

Sounds simple enough.