2014 Jan 20 1:01 PM
Hello Experts,
I have created one custom transaction. Now I want to call standard screen of EL31 (Meter reading result) from my custom screen.
Please suggest me any user exit or enhancement (how we can call this standard screen from custom screen)?
Note: I will be adding one column in meter reading results screen (consumption column)
Regards,
Priya
2014 Jan 20 3:41 PM
You can use one of the below options: if I have understood your question correctly.
CALL TRANSACTION EL31 AND SKIP FIRST SCREEN.
or
SUBMIT RELEABL7 VIA SELECTION SCREEN
WITH field1 = lv_value
AND RETURN.
2014 Jan 22 7:32 AM
Hi,
To add another column to standard alv output, you can create the z-program by copying the standard one. And then add the column in ALV.
With the CALL Transaction way, you will not be able to add the new column.
With SUBMIT way you can get the Result Table in an Internal table. Then you can Add your new column to it. Please check SCN for this approach.