- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Equivalent for Row_Number() in SAP ABAP
When you want to modify the contents and store them into table and also to add a column for the value, use something like
DATA: my_string TYPE String
LOOP AT itab INTO wa_itab. my_string = sy-tabix. CONCATENATE some_text my_string more_text into wa_itab-my_field. MODIFY itab FROM wa_itab. CLEAR my_string. ENDLOOP.
- Related Articles
- ROW_NUMBER() equivalent in MySQL for inserting?
- Information for obsolete functions in SAP ABAP
- Using datatype/element for destination in SAP ABAP
- Using logarithm in SAP ABAP
- Declare dynamically in SAP ABAP
- Negation logic in SAP ABAP
- What is SAP ABAP?
- What is ROW_NUMBER() in MySQL?
- Create database view in SAP ABAP
- Getting unauthorized exception in SAP ABAP
- Sort Datetime Type in SAP ABAP
- Modification not working for both internal table and control table in SAP ABAP
- Debugging an Asynchronous RFC in SAP ABAP
- Defining a variable reference in SAP ABAP
- Form a dynamic Query in SAP ABAP

Advertisements