Posts

Showing posts with the label sap project

SAP ABAP Dictionary Demystified: Practical Implementation of Data Elements and Domains for Table Creation

Image
 Data Dictionary is also called ABAP dictionary or DDIC. Since, in our previous blogs we have already discussed the header and item table, now we will start with the practical implementation part. We will create the following below table. In the above table we have 5 columns, Order Number, Order Date, Payment Mode, Total Amount and Current. So, we will create domain and data element for these fields. Do not confuse with the Client Number, we will discuss it about later. Now, the question arises in mind, what is data element and domain. Domain :- Domain tells us about the technical characteristics of a field or column. Technical characteristics :- Data type , length. Data Element :- Data element tells us how the column/field will be visible to the end user. So, just think about how many data element and domain we need to create for the table. The answer is, we need to create 5 domains and 5 data elements. Creation of Domains :- Go to transaction ...

SAP Insights: Navigating the Easy Access Screen, Customization Tips, and Project Overview

Image
  SAP Easy Access :- After logging to SAP system through GUI, the first screen that appears on system is SAP Easy Access. It is a user specific point of entry. It is also called as SAP User Menu. The user menu contains only those items that are required to perform daily tasks such as transactions, reports etc. Adding Existing Item as Favorite :- Choose the existing item from the User Menu. Click on Favorites - Add 1. ABAP workbench :- It is a collection of tools which are used to perform certain specific actions. SE38 → Program/Report { ABAP Editor } SE11 → ABAP Dictionary SE37 → Function Module SE24 → Class Builder 2. Transaction Code :- It is a shortcut to access ABAP workbench tools. Examples :- /nxxxx - To call Transaction xxxx ( override the existing session ) /oxxxx - To call transaction xxxx in a new session , where xxxx is the transaction code. /NEX → To close all the sessions /n → to cancel a session /o → display an overview o...