- 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
Call screen on clicking the button in SAP ABAP
Please follow the steps below to make it functional.
- First, open the screen painter
- Now, double click on the button you want to make functional
- Above “Context Menu Form", you will find a field to enter Functional code where you enter the functional code.
This will convert your button to functional trigger theOK code which will run the dynpro “PROCESS AFTER INPUT". Now add a PAI module to this dynpro which indicates the screen you want to call when the button is clicked. Below is the example
case sy-ucomm. " the ok code when 'Functioncode’. call screen screennumber. when others. " DO NOTHING” endcase.
Functioncode is the code you set up and screennumber is the screen you want to call.
- Related Articles
- Multiple ALV grids on a single screen in SAP ABAP
- Creating a Radio button group in ABAP Screen Painter
- Call the same function when clicking a Button and pressing Enter in Tkinter
- How to write on selection screen after giving any user input in SAP ABAP
- Writing at the end of report without clearing current screen in SAP ABAP
- Changing Parameters on the screen in SAP
- JavaScript - Create an alert on clicking an HTML button
- Skipping mandatory fields in an ABAP screen
- Error while using enter "!" on selection screen in SAP.
- Using logarithm in SAP ABAP
- Declare dynamically in SAP ABAP
- Negation logic in SAP ABAP
- Getting error not assigned on running SAP ABAP program
- How to change the background color after clicking the button in JavaScript?
- How to start a new activity by clicking a button on Android using Kotlin?

Advertisements