Posts

Showing posts with the label ddic

Exploring SAP: Leveraging Help Views in Search Helps and Unraveling the Mysteries of Table Buffering

Image
 Welcome back everyone, So basically we have discussed Search helps in the last blog, So let’s continue How to use Help view in Search help? → If you remember, when we were discussing about help view, I had told that we will use it in Search help.      So, this is our help view which we had created in our previous blogs. Step 1 :- Go to SE11, select the search help radio button and give a name and press enter. Step 2 :- select elementary search help and press enter. Step 3 :- provide a short description. Step 4 :- In selection method, we will write the name of our help view → and we will choose our search help parameters. Step 5 :- Save and activate our search help. Step 6 :- Now, we can execute our search help with F8 and you will see it is displaying the contents, In help view we were unable to display the contents but we can display them by using them in search helps. So, this is enough for search helps and now we will start Table Buffering. Table

Mastering SAP ABAP: A Step-by-Step Guide to Database and Projection Views

Image
 Hello everyone, we are back again and we will start with the practical implementation of database view and projection view. Creation of Database View :- Step 1:- Go to se11 and select view radio button and give a name { ZAR_DATABASE_VIU } and click on create button. Step 2 :- Select the database view radio button and press enter. Step 3 :- provide the short description. Requirement :- We have to create a database view which include our created Order header and order item table and it consists of following fields :-      Step 4:- In tables column pass the name order header table and click on relationship button { It will show the table which has relationship with order header table }. Step 5:- Select the radio button and click on copy, now the screen will look like this. Step 6:- Click on view fields where select table fields button, then the screen will look like this. Step 7:- Select the first table and select any number of fields that you want in your d

Enhancing SAP Tables: Include and Append Structures, Domain Creation, and View Introduction

Image
 Hey, Welcome back everyone. Today, We will continue with creating include and append structure and add it to our already created order header table. So, basically we have to create the below domains and data elements first.           Requirements:- Add Delivery number and Delivery date field to the Order Header Table with the help of include structure. Add Delivery location to the order Header table with the help of Append structure. Regenerate the table Maintenance Generator and insert the values of Delivery number, Delivery date and Delivery location. Our header table should look like this :- Creating the required data elements and domains :- Step 1: Create domain and data element ZAR_DELIVERY_LOCATION of type char and length 3 and above mentioned value range. Step 2:- Create domain and data element ZAR_DELIVERY_NUMBER of data type NUMC and length 12. Step 3:- Create a domain and data element ZAR_DELIVERY_DATE with data type DATS. Creating the in

Mastering SAP Data Management: From Data Types to Tables and Structures

Image
1.Types of SAP data :- Master data :- A type of data which is accessed very frequently, but changed very rarely. Transaction Data :- A type of data which is always changing and number of records are continuously increasing. Configuration Data :- A type of data which we can customize. Customizing depends on the business scenario and customer requirements. Examples :- Suppose there is a company ABC. Master data :- Employee data of the company ABC. Transaction Data :- Transactions in the company ( Banking transactions , Revenue transactions ). Configuration Data :- (Employee Designation) :- Senior Consultant ( Vehicle allowance applicable ) (Employee Designation) :- other than Senior Consultant ( Vehicle allowance not applicable). Data Class :- A portion or physical area of the database where table will be stored. Delivery Class:- It is used for controlling data transport of tables during installation, upgrade and transporting between customer systems. 2. Creating