SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling EL31 (Meter reading results) from custom screen

Former Member
0 Kudos

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

2 REPLIES 2

Former Member
0 Kudos

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.

gagan_bulani2
Explorer
0 Kudos

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.