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: 

report for street route

Former Member
0 Kudos

Hi,

Using the sort sequence from tcode el40 (Display street route, i want to get the ordering sequence from a table to create a report?

Secondly after changing the portion for an MRU using tcode E41H, the data in EL40 (display street route) get mixed up. Is it possible to prevent this mixed up in street route otherwise the meter reader will have to re-arrange them.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Gavisht,

You can use function module - ISU_O_STREET_ROUTE_OPEN to read devices and other related data.

In order to get sort sequence, you need to read parameter Y_OBJ-EXIST. If VORGAENGER is initial, then it is 1st device. In the same line, then you need to read NACHFOLGER to reach to 2nd device. Now read same internal table where device is equal to VORGAENGER and read NACHFOLGER  which will be 3rd device and so on...

Unfortunately, we cannot stop mix up when portion is updated in MRU. You may need to find out an implicit enhancement spot and read value from table ELWEG and restore it back.

Regards,

Avinash

View solution in original post

2 REPLIES 2

Former Member
0 Kudos

Hi Gavisht,

You can use function module - ISU_O_STREET_ROUTE_OPEN to read devices and other related data.

In order to get sort sequence, you need to read parameter Y_OBJ-EXIST. If VORGAENGER is initial, then it is 1st device. In the same line, then you need to read NACHFOLGER to reach to 2nd device. Now read same internal table where device is equal to VORGAENGER and read NACHFOLGER  which will be 3rd device and so on...

Unfortunately, we cannot stop mix up when portion is updated in MRU. You may need to find out an implicit enhancement spot and read value from table ELWEG and restore it back.

Regards,

Avinash

0 Kudos

Thanks Mr. Reddy.

In fact there is a standard report EWM_MU_UPDATE_STREET_ROUTE which does the same thing you explain. Now I am clear how it works.

Thks