SAP: Change Documents for SAP Objects (Master Data / Transactional Data)


Program- RSSCD100 (Display Change Documents) : can display the Change Documents related to any master or transactional data in SAP. Yes, that's true… you can display ALL the details of ALL change documents related to few SAP Object, onto a single screen.

Table - TCDOB : To find the Object id for the relevant master data / transactional data table.
 
Continue reading here

SAP ABAP: Generic Method for Sending Mails from SAP Systems

Problem

In most cases, from Java based (like Portal) or ABAP based (ERP, CRM,...) systems, sending email is easy by just setting the SMTP server IP address.
 
But if you're using a hosted email service like us (we're using Google Apps), SMTP server doesn't allow to send emails directly. It requires you to set specific SMTP port, TLS and SSL as well as authentication.
 
So, for example, for sending emails from ERP systems, you just have SMTP Server address and Port area for settings via SCOT transaction.
 
Solution

To solve the problem, you can use IIS SMTP Server as an intermediate SMTP server between your SMTP server and local SAP System.
 
ERP, Portal >> -- send direct mail -- >> IIS 6/7 >> -- send with Authentication-- >> SMTP Server >> recipient.
 
Continue reading here

source: sdn. sap. com