Posted on January 30th, 2011 in ABAP ale, edi, idoc
EDI, stands for Electronic Data Interchange, is the electronic exchange of structured business data between different applications. EDI Architecture EDI Architecture consists of -
Published by admin //
SAP script is the SAP System’s own text-processing system.It looks and feels a lot like other leading text-processing systems. It is used to print preformatted text in pre-formatted forms. Components of SAP Script SAP Scripts comprises of five main components: An editor for entering and editing the lines of a text
Published by admin //
Posted on January 29th, 2011 in ABAP ABAP, BDC
This tutorial will cover the following topics- Introduction to BDC. Method of Batch Input. Batch Data Procedures. Writing BDC programs. Creating Batch input Session. Batch Input Recording. Lets Begin! Introduction to Batch input Batch input is typically used to transfer data from non-R/3 systems to R/3 systems or to transfer data between R/3 systems. It [...]
Published by admin //
When you modularize source code, you place a sequence of ABAP statements in a module. Then, instead of placing all of the statements in your main program, you just call the module.When the program is generated, the source code in the modularization unit is treated as though it were actually physically present in the main [...]
Published by admin //
The goal of this tutorial is not to teach you SQL or database concepts but to introduce you to the SQL diversity in ABAP In ABAP/4 programming language, there are two types of SQL being used. NATIVE SQL OPEN SQL. Open SQL allows you to access the database tables declared in the ABAP dictionary regardless [...]
Published by admin //
In this tutorial we will cover the following topics Internal Tables . Difference between Internal Tables and Work Areas Types of Internal Tables Creating Internal Tables Populating Internal Tables Reading Internal Tables Deleting from Internal table. Lets Begin! What is an Internal Table? Internal tables are used to obtain data from a fixed structure for [...]
Published by admin //
Table controls and step loops are objects for screen table display that you add to a screen in the Screen Painter. From a programming standpoint, table controls and step loops are almost exactly the same. Table controls are simply improved step loops that display data with the look and feel associated with tables in desktop [...]
Published by admin //
What is an IDOC? IDOC is simply a data container used to exchange information between any two processes that can understand the syntax and semantics of the data. In other words ,an IDOC is like a data file with a specified format which is exchanged between 2 systems which know how to interpret that data. [...]
Published by admin //
Posted on January 23rd, 2011 in ABAP ABAP, dialog
Before you read this tutorial make sure you what a Dialog Program is … Subscreens A subscreen is an independent screen that is displayed in an area of another (“main”) screen. Subscreens allow you to embed one screen within another at runtime. You can include multiple sub-screens on main screen. The term subscreen applies both [...]
Published by admin //
First ,to begin with if you know nothing about Screen Flow logic and their uses in SAP ,we recommend you check our tutorial on Dialog Program Now , lets look into POH and POV in detail Process on Help-Request (POH) : F1 Help Whenever F1 is pressed the POH event for the specified data element [...]
Published by admin //