SAP Dynpro (Dynamic Program) ABAP or Classic Dynpro is a legacy framework for constructing rich user interfaces with UI controls (tables, buttons, tabstrips, etc.). Dynpro flow logic is comprises of PBO (process before output) and PAI (process after input) modules.
Questions tagged [dynpro]
151 questions
0
votes
2 answers
Show table by button click
TABLES: mara, marc.
"marc is N
"mara is 1
SELECTION-SCREEN PUSHBUTTON 15(10) text-001 USER-COMMAND press.
DATA: lt_mara TYPE TABLE OF mara WITH HEADER LINE,
ls_mara TYPE mara.
DATA: lt_marc TYPE TABLE OF marc WITH HEADER LINE,
ls_marc…

Demotivated
- 117
- 3
- 13
0
votes
2 answers
Internal table isn't modified from table control
I have an table control (ctrl) and an internal table (snctab).
I want to add items snctab from the table control. I can add but not modify a record from snctab. Here are my PBO and PAI modules:
PROCESS BEFORE OUTPUT.
MODULE status_0100.
…

Nuran Yüksekce
- 155
- 1
- 9
0
votes
2 answers
How to set the default value and read the selected value of a Dropdown Listbox
So I've added a field with the Dropdown type as Listbox via Screen Painter (SE51).
I've binded the data to the dropdown using the PBO and the VRM_SET_VALUES function.
I have 2 problems with this;
How do you set a selected value to the binded…

Isuru
- 3,044
- 6
- 30
- 39
0
votes
1 answer
Value Suggestion for SAP Dynpro input field
I need to show suggestions when someone types something into my input field.
It's a field for a transport request. So if someone starts to type something in it shows at the moment last entered entries but it should make suggestions what to type in…

Sergen
- 5
- 3
0
votes
1 answer
How to add a button in 'TERM_CONTROL_EDIT' popup
I'm trying to use the FM TERM_CONTROL_EDIT to show and edit a text.
I would like to know if there is a way to add a button in the popup toolbar?

Hamza Chioua
- 135
- 3
- 11
0
votes
1 answer
Change SELECT-OPTIONS text programmatically
I'm trying to replace the selection-option name when it's showed in the screen by using abap code. not the "Goto->Text Elements->Selection Text".
If there is any kind of solution with you please share with me.
Thank you in advance,

Buddhika Samith
- 305
- 2
- 7
- 20
0
votes
1 answer
Dynamically update row contents via dialog screen
I need some help with the following problem. I currently have one dialog screen with a field in which a user can type a number. This number corresponds with an ID field in a database table I've made (using se/11). I want to display the contents of…

RobVH
- 95
- 1
- 14
0
votes
2 answers
Why is my Exitbutton in my screen disabled? (ABAP)
I read something about the ok-code but I cant really understand how it works and how I have to implement it.
I tried implementing a MODULE in the PAI for my Buttons but they are not working either.
MODULE test INPUT.
case sy-ucomm.
when…
user6814009
0
votes
2 answers
Call (Report-)Function from Class Method to change screen title
I wanna change my titlebar in a dynpro when a specific class method is triggered. So I thought I could call a function in my report, where my dynpro is located, which changes uses the 'SET TITLE' to change the titlebar content.
Is this possible and…

Dyrdek
- 411
- 4
- 12
- 33
0
votes
2 answers
Problems with multiple selection screens
START-OF-SELECTION is not getting triggered in my program. I am trying to fetch book details based on book name and book author using multiple selection screens in ABAP. There are two pushbuttons and based on those selection screens are opened. When…

user3621835
- 27
- 1
- 7
0
votes
2 answers
Enable standard toolbar for ALV grid
I created a screen for displaying ALV output but I am not able to show standard toolbar buttons (save, exit, back, etc.).
Can any one suggest how to enable them?
DATA: it_zztstudent type STANDARD TABLE OF zztstudent,
it_fcat TYPE STANDARD…

prakash singh parmar
- 21
- 1
- 2
0
votes
1 answer
CL_GUI_ALV_TREE Link Click on node
I want to catch events on link click on node. I know how to set link click on column item, it's like:
DATA: ls_layout TYPE lvc_s_layi,
lt_layout TYPE lvc_t_layi.
ls_layout-fieldname = 'Fieldname from table passing to alv…

miskohut
- 957
- 1
- 14
- 34
0
votes
3 answers
ALV is not refreshed after edit. Why?
I know my problem has been asked hundred times.
But I still cannot find any suitable solution for me
I have a dropdown, every time I change data in dropdown it will load new data based on dropdown data
From step one, I refresh editable ALV
Any…

yukou
- 305
- 3
- 6
- 17
0
votes
1 answer
Mimic SAP Transaction in RFC
How would one go about creating a SAP RFC that runs a transaction with parameters and return its data?
I have seen someone use a PERFORM BDC_DYNPRO and when I run the code through the debugger it seems to run the actual transaction screens. How do…

shinjw
- 3,329
- 3
- 21
- 42
0
votes
1 answer
ABAP retrieving data from database to a screen table control
I need help if possible because i am stuck on a place where there is no syntax errors .
I am using abap to retrieve data from my database table to the table control i have in screen 0300 .
And whenever i press direct processing in screen 0300 i have…

A.Wad
- 29
- 3
- 9