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

Program to send email concerning table in SE16

Former Member
0 Likes
1,134

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
Read only

former_member404244
Active Contributor
0 Likes
842

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

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

2 REPLIES 2
Read only

former_member404244
Active Contributor
0 Likes
843

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

Read only

0 Likes
842

Thanks very much....

Sounds simple enough.