0% found this document useful (0 votes)
2 views1 page

SAP notes

The document provides an overview of various ABAP programming concepts, including the use of SY-INDEX for loop indexing and the ABAP Dictionary for managing database objects. It lists data elements and their specifications, such as customer and vendor numbers, as well as how to create work areas and table types in ABAP. Key terms and their meanings related to ABAP programming are also outlined.

Uploaded by

shivam25012003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

SAP notes

The document provides an overview of various ABAP programming concepts, including the use of SY-INDEX for loop indexing and the ABAP Dictionary for managing database objects. It lists data elements and their specifications, such as customer and vendor numbers, as well as how to create work areas and table types in ABAP. Key terms and their meanings related to ABAP programming are also outlined.

Uploaded by

shivam25012003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

SY-INDEX --> NORMAL LOOP INDEX

WE CAN ASSIGN THE VALUE OF SY-INDEX IN ANOTHER VARIBLE IN A LOOP.


SALECTION SCREEN --> ENDUSER VALUE PUTTING SCREEN , 1000 IS A FIXED DEFAULT NO.
CONSOLE SCREEN --> OUTPUT SCREEN
SY-VLINE ---> VERTICLE LINE

ABAP DICTIONARY / DATA-DICTIONARY (DD) ---> IT IS A TOOL TO CREATE AND MANAGE


DATABASE OBJECTS, THROUGH WHICH WE CAN ACCESS OR INTRACTS WITH THE DATABASE.

Assignment --->
DATA ELEMENT , DATA TYPE, SIZE/LENGHT,
1. ZFLATNO_(NUMC, 3 , FLAT NUMBER)-----> 100 TO 499
2. ZFTYPE (CHAR,1,FLAT TYPE)
-----> S - SINGLE BHK
D - DOUBLE BHK
T - TRIPLE BHK
3. ZDOR (DATS,8,DATE OF RAGISTERED)

1.KUNNR - Customer number


2.LIFNR - Vendor number
3.MATNR - Material number
4.ADRNR - Address number
5.NAME1 - name
6.ORT01 - city
7.LAND1 - country
8.TELF1 - telephone
9.STRAS - street number
10.BUKRS - company code

HOW TO CREATE THE WORK AREA WITH THE HELP OF INTERNAL TABLE IT ?

IT
DATA WA LIKE LINE OF IT

HOW TO CREATE THE TABLE TYPE ?


TYP

You might also like