2021 Jun 20 12:25 PM
I've created an screen with custom structure with icons:
The last two fields have actions associated, no problems with the print icon, but i need to call a new screen when the second button is clicked and pass the other values of the row.
I've created a new screen with I/O fields:
When I try to set a value in the PBO using
T_MATNR = 'Let's try!'.
The field is empty.
How can I pass the first screen values?
2021 Jun 20 12:25 PM
2021 Jun 20 4:27 PM
You have to define a global variable in your TOP variable. You have to set the value of this global variable in the user_command module and need to call the second screen.
In the PBO of the second screen, use the same global variable to set the value.
Thanks,
Gourab
2021 Jun 20 7:07 PM
Did you make sure that T_MATNR is a global variable of your new screen program? Its value will be automatically transferred to the screen when it's displayed.