Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Refresh screen input/output field values on OO ALV

0 Kudos
599

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?

3 REPLIES 3
Read only

moshenaveh
Community Manager
Community Manager
0 Kudos
512
Welcome and thanks for visiting SAP Community to get answers to your questions. Check out our tutorial to get started in SAP Community: https://developers.sap.com/tutorials/community-start.html
By adding a picture to your profile you encourage readers to respond to your question. Learn more about your profile here: https://developers.sap.com/tutorials/community-profile.html
Read only

Gourab_Dey
Product and Topic Expert
Product and Topic Expert
0 Kudos
512

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

Read only

Sandra_Rossi
Active Contributor
0 Kudos
512

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.