- 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
Determining values of parameters of given type on a given selection screen in SAP
The function module RS_SELSCREEN_INFO will provide you with the list of parameters and selection options once the report name is input. You can see full details about this FM by entering the name RS_SELSCREEN_INFO into the relevant SAP T-code like SE37 or SE80
You can call this FM RS_SELSCREEN_INFO as below −
CALL FUNCTION 'RS_SELSCREEN_INFO' " EXPORTING report = " rsvar-report Report Name TABLES field_info = " scr_info Information about type, reference field, etc. EXCEPTIONS NO_SELECTIONS = 1 " Report has no selections REPORT_NOT_EXISTENT = 2 " Report does not exist SUBROUTINE_POOL = 3 " . " RS_SELSCREEN_INFO
Alternatively, you can try using the function module GET_DICTIONARY_FIELDS- to provide all Dictionary fields used in an ABAP program. You can get complete details by entering the name GET_DICTIONARY_FIELDS into the relevant SAP transaction such as SE37 or SE80.
CALL FUNCTION 'GET_DICTIONARY_FIELDS' "Provides all Dictionary fields used in a program EXPORTING progname = " sy-repid TABLES field_tab = " . " GET_DICTIONARY_FIELDS
- Related Articles
- Changing Parameters on the screen in SAP
- Error while using enter "!" on selection screen in SAP.
- How to write on selection screen after giving any user input in SAP ABAP
- List four precautions which a student should observe while determining the focal length of a given convex lens by obtaining image of a distant object on a screen.
- The image seen in a plane mirror cannot be formed on a screen. What name is given to this type of image?
- Selection Process Parameters for a Software Life Cycle Model
- Multiple ALV grids on a single screen in SAP ABAP
- Change data type of given numpy array
- What type of image is formed:(a) in a plane mirror?(b) on a cinema screen?
- Average of ASCII values of characters of a given string?
- Change data type of given numpy array in Python
- How to set values to list of parameters of IN clause on PreparedStatement using JDBC?
- Determining rank on basis of marks in JavaScript
- Call screen on clicking the button in SAP ABAP
- Program to find number of solutions for given equations with four parameters in Python

Advertisements