This is a test message to test the length of the message box.
Login
|
ABAP Quick Editable popups
Created by Software-Heroes

ABAP Quick - Editable popup

3698

Have you ever searched for an easy way to view and change your data? Here you can find out how easy it will be for you in the future.

Advertising


Today's tip is a bit shorter than you might be used to, but we want to show you a way to display data quickly and easily. The advantage of this function module is additionally the editability of the data. This gives you a flexible way to display data quickly, easily and changeably.

 

Implementation

All the magic is in the function module STC1_POPUP_WITH_TABLE_CONTROL. Before we call it, you still need to read the data. In the following listing you will find an example with table T001 (company codes).


" Selection
SELECT * 
 FROM t001
 INTO TABLE @DATA(lt_t001)
 UP TO 20 ROWS.

" Call of the function module
CALL FUNCTION 'STC1_POPUP_WITH_TABLE_CONTROL'
  EXPORTING
    header            = 'Anlage von Änderungen'
    tabname           = 'T001'
    no_button         = abap_false
  TABLES
    table             = lt_t001
  EXCEPTIONS
    no_more_tables    = 1
    too_many_fields   = 2
    nametab_not_valid = 3
    handle_not_valid  = 4
    OTHERS            = 5.
IF sy-subrc <> 0.
ENDIF.

 

Output

The data will be outputed in a popup. Changes to the data are transferred to the local table and can then be backed up to the database.

Editable popup preview

 

Conclusion

You can compare the changed data with the help of one of our older tips and write back customized and new lines to the database or transfer them to your result. We hope this little tip can help you in your daily work.


Included topics:
QuickPopup
Comments (0)



And further ...

Are you satisfied with the content of the article? We post new content in the ABAP area every Tuesday and Friday and irregularly in all other areas. Take a look at our tools and apps, we provide them free of charge.


ABAP Tools - Working with Eclipse (Classes)

Category - ABAP

In this article, we'd like to discuss working with classes and how you can extend them cleanly and easily in Eclipse. We'll also look at further options available in the ABAP Development Tools.

04/21/2026

ABAP in Practice - Use the News App

Category - ABAP

In this practical example, we'll look at how to populate the new News app with information in the ABAP environment. We'll analyze the current ABAP delivery of the application and the service to find the correct format.

03/31/2026

ABAP in Practice - Object Generator

Category - ABAP

In this example, we will look at how to create a reusable generator using the XCO library to save ourselves some work for our tutorials and to automatically generate DDIC objects.

01/09/2026

ABAP Quick - Logging Performance

Category - ABAP

What about the performance of the BAL log in the ABAP Cloud world? Let's look at three solutions and measure their performance in different scenarios.

12/19/2025

ABAP in Practice - Fiori Data incorrect

Category - ABAP

In this short practical example, we'll look at a Fiori error. Here, the data is displayed incorrectly in the UI, even though everything else appears to be correct. The trail leads us in a different direction through the RAP stack.

10/10/2025