- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Accessing table data from SAP system
Using Select statement you can read data with a dynamic table name. Try using below code &are
DATA: lv_tablename TYPE string, ev_filelength TYPE i. lv_tablename = 'mara'. "e.g. a parameter DATA dref TYPE REF TO data. CREATE DATA dref TYPE TABLE OF (lv_tablename). FIELD-SYMBOLS: <wa> TYPE ANY TABLE. ASSIGN dref->* to <wa>. SELECT * FROM (lv_tablename) INTO TABLE <wa>.
- Related Articles
- Accessing Source code of SAP Transport without using SAP system
- Export Data from a SAP system
- Extract data from SAP system using ERPConnect
- Fetching data from transparent tables in SAP system
- Searching data from the different system in SAP.
- Dynamically creating parameters from table entries in SAP system
- Extracting data from SAP ERP for a Third Party System\n\nExtracting data from SAP ERP for a Third Party System
- Retrieving data from a table in SAP ABAP
- Retrieving Idoc XML data from SAP system over HTTPS
- Exporting data from SAP system to an Excel Report
- Getting table name in SAP system
- Exposing employee master data from SAP HR system using Web Service
- Finding the table from which data is fetched in SAP
- Data Compression in SAP HANA system
- How MySQL prevents unauthorized clients from accessing the database system?

Advertisements