Before you go, check this out!
We have lots more on the site to show you. You've only seen one page. Check out this post which is one of the most popular of all time.
An ABAP function module encapsulates a piece of ABAP code under a name and makes this code globally available within the SAP system. Function modules are always part of a function group. In many...
An SAP system can perform FTP data transfer directly in ABAP. The function module to open the FTP connection is FTP_CONNECT. Password handling however is tricky. Please also check whether you could...
ABAP does not have a ++ operator like C or Java do. The best equivalent for ++ is the += operator starting in Netweaver 7.54. On older systems you can use the add command. What we want ABAP to do,...
These tables are used in SAP to store IDocs: The table EDIDC - IDoc control recordThe table EDID4 - payload of the IDocThe table EDIDS - status records of the IDoc Knowing these tables better...
SAP provides over 1000 icons ready for use. Here you will find sample code for the most important use cases, including ALV lists, dialogs (dynpros), selection screens and report outputs. Finding...
SSL means that the data transfer between a user's web browser and your web server is encrypted. This can be seen in the "https" in the URL bar in your browser. It is easy to teach your WordPress blog...