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
1 answer
Add record to SAP database with generated 'form'
I've created a screen, and inside the layout painter I created a 'form' based on the table (using the wizard that appears when you hit F6). So now I have all the fields to create the row, and I've created a 'save' button to, but obviously nothing…
user393964
0
votes
1 answer
Validate SELECT-OPTIONS values on a screen?
In this event I am throwing message
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
CLEAR g_variant.
PERFORM set_variant.
IF g_msg IS NOT INITIAL.
MESSAGE g_msg TYPE 'S' DISPLAY LIKE 'E'.
ENDIF.**
And here I have two select option and…

stella
- 51
- 2
- 5
- 13
0
votes
1 answer
ALV refresh problem while navigating from user command
I have 2 screens 7000 and 7001, 7000 screen contains one button when we click on it it has to navigate to the 7001 screen, but it was not working as expected. SCREEN 7000 also have some details to display as an alv.
screen was navigating to screen…

Lakshmi
- 3
- 1
- 3
0
votes
2 answers
Set Parameter ID not working for custom screen
I am trying to call a custom screen when a user clicks on a hotspot in an ALV grid (reuse_alv_grid_display). I want specific values from the row that has been selected by the user to be displayed in the fields of the custom screen.
form…

Rahul
- 903
- 1
- 10
- 27
0
votes
1 answer
SELECT-OPTIONS by arbitrary ABAP variable
I've created a report that contains a selection screen that has select options for fields like : kunnr,sortl etc from standard SAP tables.
In addition, I've created a variable that sums a few fields from a table.
Now I need to add a select option…

Assaf
- 63
- 4
- 11
0
votes
1 answer
Displaying multiple table in same alv screen
Hello Sorry for asking the silly question since I am very new to abap programming.
I am trying to display multiple display in the same ALV screen. I have created the custom container and named properly still I am not able to get the display…

Chetan
- 27
- 1
- 5
0
votes
2 answers
Multiple exclude values in SELECT-OPTIONS?
I have to create a new initial selection for the material group and set as default view one with excluded mat groups Z310 and Z320. However, when needed, the user should be able to include Z320
selection-screen begin of block b4 with frame title…

PureAbap
- 99
- 3
- 13
0
votes
0 answers
How to find Function Group Name and Screen Number against T-Code or Programe Name in SAP?
I have requirement to fetch data base related information for extracting function module group name and Screen Number for the corresponding T-Code in SAP. Could You provide some idea for regarding this requirement.
Thanks for Advance...!

Surya
- 23
- 1
- 5
0
votes
1 answer
CALL SCREEN (not modal) in modal dialog box not allowed
I have a program who does the following:
The user asks from the program to display the Z* tables in an ALV.
Then it selects a table and press the button SELECTTAB which it will run the following command:
**--Display screen with the fields listed…

ekekakos
- 563
- 3
- 20
- 39
0
votes
0 answers
Screen Personas - reorder elements after disappearing elements
I'm pretty new to screen personas.
I built a module pool dynpro screen and now want to adjust the screen elements.
On my first screen there are several input elements and labels, whose visibility can be changed by clicking a button.
When I start my…

user42932
- 31
- 2
- 7
0
votes
1 answer
Listbox error "Entry is too long for the field"
After selecting a value in a dropdown listbox field, there is this error message:
Entry is too long for the field
(it's the message number 00092)
I created one text field TXTOPENV as Listbox with key value, set value using VRM_SET_VALUES in PBO…

ashish bhatt
- 3,091
- 5
- 25
- 23
0
votes
1 answer
Configure screen button events
How to configure a save button in order to press it and the info that is entered on the screen to be saved in a specific database table?

Korca95
- 1
- 1
- 6
0
votes
1 answer
Keep selection on initial row after closing popup Dynpro
I'm working with dynpros and ALV-tables in my ABAP-Report. When I'm selecting an specific row, and clicking on an button for an specific event, an dynpro is beeing called. After closing the dynpro I want to select the same row as in the beginning.…

Markus
- 41
- 7
0
votes
2 answers
Return two screens back in dynpro sequence
I want to develop the following logic:
The box "DISPLAY ALV" corresponds to the function module REUSE_ALV_GRID_DISPLAY.
With LEAVE TO SCREEN 0 I can't pass directly to DISPLAY ALV. Is it possible?
Thank you.

Saros Begh
- 35
- 2
- 9
0
votes
2 answers
Disable enter in module pool sap abap
I have created a function module pool in sap abap. How can I make it possible when the user presses enter the values in input field not to disappear?
MODULE user_command_0200 INPUT.
CASE ok_code.
WHEN 'EXIT'.
LEAVE PROGRAM.
…
user6780121