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
Only the first user is selected from the input
Currently, this is my code which sends on email to one user only even if there are multiple users selected. I want to modify it so one email should be received by multiple users.
"This is for setting the recipient
lo_sender =…

Bigflatfoot
- 45
- 2
- 13
0
votes
1 answer
How to change message class icon?
I try to change the error message indicator from to
I change my code from below:
message W101(ZPP) with 'PPTMEL' lv_value lw_resb-charg .
to
message E101(ZPP) with 'PPTMEL' lv_value lw_resb-charg .
However nothing change, hopefully can get some…

NG SUIT YAN
- 45
- 1
- 6
0
votes
2 answers
Why FF_5 is not posting EBS records to subledgers?
I'm trying to post document through tcode FF_5 (electronic bank statements) as SWIFT MT940 - international format, with immediate posting parameter. Bank Accounting Posting works fine, but Subledger posting doesn't work correctly.
After debugging I…

TyRRRax
- 55
- 11
0
votes
0 answers
SAP GUI 7.70 Screen Painter
I am facing an issue, after creating screen in my program, when I click Layout, the Screen Painter tool opens up and when I am done declaring objects I try to activate and my whole SAP GUI lags. I have to close SAP GUI and again I have to logon. Can…
0
votes
1 answer
Trigger PAI after dropdown selection in module pool screen?
On a screen of a module pool I have a dropdown list that works fine.
How can I trigger execution of PAI immediately after the user selected a value from the dropdown box?
I'd like to change some screen properties depending on the value the user…

Gerd Castan
- 6,275
- 3
- 44
- 89
0
votes
0 answers
Two pf-statuses with the same function code and different descriptions?
I have a simple problem and I wonder how to solve it. I already searched online but probably dont know the right key words to find the solution in the internet. I am sure, that somebody else have had this issue before me :)
I have a program with…

Julia
- 49
- 1
- 1
- 9
0
votes
1 answer
ABAP Dynpro Flow logic - Find field (name) after POV call
I would like to know if you know a way to find the name of a field after calling a POV.
For example,
A dynpro with this code (Flow logic) :
process on value-request.
field _field_ module dynpro_pov.
An ABAP program where the module is…

depth1
- 135
- 10
0
votes
0 answers
Table Control Empty cell
In my dynpro, I have a table controller, named TC300, that is showing data from my database table zma_kostl. When I change some data in the table controller, the data will be modified even in the database table. This is true when I change the data…

stepanVich
- 318
- 4
- 11
0
votes
1 answer
Release group and Release Strategy fields not filled in Service Entry Sheet(SES)
I'm having a problem with transaction code ML81N and ML85.
Both programs works as expected, though, there is a problem with the release strategy not being assigned to new orders.
I followed this guide, but it doesn't seem to be working.
I did…

Diego
- 133
- 1
- 12
0
votes
2 answers
ABAP report toolbar is disabled
I'm having trouble making the Toolbar(see image) of my SAP Report working despite having tried multiple solutions.
My report's code:
CLASS cl_orders_alv DEFINITION.
PUBLIC SECTION.
METHODS:
on_init, on_display.
PRIVATE…

Diego
- 133
- 1
- 12
0
votes
1 answer
Show tooltip on selection screen mouseover event?
I have defined a SELECTION-SCREEN and it should show a small infotextbubble, with self defined text over the input field, at mouse over event.
I have defined the following screen:
PARAMETERs: p_dfrom TYPE timestamp, "==> need the info bubble at…

Erzsébet Gombkötő
- 13
- 5
0
votes
1 answer
Modal dialog appears in fullscreen instead of as a dialog box
My program has two dynpro screens. From the first screen the user can call a popup showing the details of a customer by double-clicking on the customer number.
My problem is that the popup shows up in fullscreen despite being set as a "Modal dialog…

Cutter
- 1,673
- 7
- 27
- 43
0
votes
0 answers
Screen Painter shows wrong field names when adding fields from table KNA1
In the Screen Painter, I'm trying to add fields from table KNA1 declared globally in my program:
TABLES: VBAK, VBAP, KNA1.
What shows up in the program fields list are the fields from table VBAP assigned to table KNA1 The fields specific to KNA1…

Cutter
- 1,673
- 7
- 27
- 43
0
votes
2 answers
Remove default values from ABAP form
I have a screen for creating new records in a table, it contains a form with all the database columns. Problem is, once the screen is called, it has the last database record in it. So to add a new record, you have to empty the current values…
user393964
0
votes
1 answer
Change visible length of Dynpro output fields at runtime?
I am trying to make a dialogue screen into a reusable message screen, which resizes itself dynamically depending on how long the message is. I'm not sure whether that is even possible. This is my code:
FORM show_messagescreen.
"Size screen…

Elekam
- 75
- 1
- 9