I need to execute the COOIS transaction (PPIO_ENTRY program) using the SUBMIT statement, then get the data into an structure and join with other table data.
First I've created the type:
TYPES:
BEGIN OF t_1001,
MANDT TYPE MANDT,
AUFPL T...
After the selection screen, I've got an ALV that shows the info + 2 icons:
I've got some actions for the 2 icons. The last one set values for TOP variables and call new dynpro (1300), I need to fill the 1300 dynpro fields with this info but when...
I've created a new dynpro which is called from the 1100 dynpro like this:
I've created the Status_1200 and user_command_1200:
PROCESS BEFORE OUTPUT.
MODULE STATUS_1200.
MODULE SEL_DATA_1200.
PROCESS AFTER INPUT.
MODULE USER_COMMAND_1200...
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...