Home
Welcome to www.developerpages.gr
Place for professionals or hobbyists Developers. You can read technical articles for many programming languages, you can post your own articles, comment on solutions to several issues given by other developers to participate in our discussions, to ask your own questions and get answers from professionals.
Create your own account and enter in our community, learn, find solutions and give your own opinion about programming.
Random Articles
Create SAP Goods Movements with BAPI Function
Simple program for SAP Goods Movements with BAPI Functions:
Open and display pdf file with SAP ABAP
The following ABAP Program open PDF file and display into SAP Screen :
Create SAP Customer Classification with BAPI function
The following code creates Sap Customer Classification using BAPI Function :
Sorting Internal Tables in ABAP
Sorting Internal Tables
You can sort a standard or hashed table in a program. To sort a table by its key, use the statement
SORT <itab> [ASCENDING|DESCENDING] [AS TEXT] [STABLE].
The statement sorts the internal table <itab> in ascending order by its key. The statement always applies to the table itself, not to the header line. The sort order depends on the sequence of the standard key fields in the internal table. The default key is made up of the non-numeric fields of the table line in the order in which they occur.
You can specify the direction of the sort using the additions ASCENDING and DESCENDING. The default is ascending.
The larger the sort key, the more time the system needs to sort the table. If the sort key contains an internal table, the sorting process may be slowed down considerably.
Create abap internal table dynamically
Then following simple program creates abap internel table dynamicaly , select 2 rows of any database table and display data to screen :









(21) 


