Posted: Sat Sep 15, 2007 9:15 pm Post subject: Send internal table as e-mail from application server
Code:
REPORT Z_table2email.
DATA IT_MAIL(200) TYPE C OCCURS 0 WITH HEADER LINE.
* message body:
IT_MAIL = '1st line.'. APPEND IT_MAIL.
IT_MAIL = '2nd line.'. APPEND IT_MAIL.
IT_MAIL = '3rd line.'. APPEND IT_MAIL.
IT_MAIL = '4th line.'. APPEND IT_MAIL.
* to view the following function (cannot be viewed in se37):
* go to sm59, select 'TCP/IP connections',
* select and open 'SERVER_EXEC' or 'LOCAL_EXEC',
* look on the pull down menu SYSTEM INFORMATION->FUNCTION LIST
CALL FUNCTION 'RFC_MAIL' DESTINATION 'LOCAL_EXEC'
EXPORTING USER = '[email protected]'
TABLES MAIL = IT_MAIL.
CASE SY-SUBRC.
WHEN 0. WRITE 'E-mail sent successfully.'.
WHEN OTHERS. WRITE 'Error sending E-mail!'.
ENDCASE.
************************************************************************
REPORT Z.
DATA IT_MAIL(200) TYPE C OCCURS 0 WITH HEADER LINE.
* message body:
IT_MAIL = '1st line.'. APPEND IT_MAIL.
IT_MAIL = '2nd line.'. APPEND IT_MAIL.
IT_MAIL = '3rd line.'. APPEND IT_MAIL.
IT_MAIL = '4th line.'. APPEND IT_MAIL.
* to view the following function (cannot be viewed in se37):
* go to sm59, select 'TCP/IP connections',
* select and open 'SERVER_EXEC' or 'LOCAL_EXEC',
* look on the pull down menu SYSTEM INFORMATION->FUNCTION LIST
CALL FUNCTION 'RFC_MAIL' DESTINATION 'LOCAL_EXEC'
EXPORTING USER = '[email protected]'
TABLES MAIL = IT_MAIL.
CASE SY-SUBRC.
WHEN 0. WRITE 'E-mail sent successfully.'.
WHEN OTHERS. WRITE 'Error sending E-mail!'.
ENDCASE.
************************************************************************
REPORT Z.
DATA IT_MAIL(200) TYPE C OCCURS 0 WITH HEADER LINE.
* message body:
IT_MAIL = '1st line.'. APPEND IT_MAIL.
IT_MAIL = '2nd line.'. APPEND IT_MAIL.
IT_MAIL = '3rd line.'. APPEND IT_MAIL.
IT_MAIL = '4th line.'. APPEND IT_MAIL.
* to view the following function (cannot be viewed in se37):
* go to sm59, select 'TCP/IP connections',
* select and open 'SERVER_EXEC' or 'LOCAL_EXEC',
* look on the pull down menu SYSTEM INFORMATION->FUNCTION LIST
CALL FUNCTION 'RFC_MAIL' DESTINATION 'LOCAL_EXEC'
EXPORTING USER = '[email protected]'
TABLES MAIL = IT_MAIL.
CASE SY-SUBRC.
WHEN 0. WRITE 'E-mail sent successfully.'.
WHEN OTHERS. WRITE 'Error sending E-mail!'.
ENDCASE.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.