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: 

Premise in Service Order

Former Member
0 Kudos

Hi all,

I would like to have the premise field in the service order in order to link it to the Technical Master data.

Is there some config / extionsion to achieve this.

Thanks

3 REPLIES 3

peter_atkin
Active Contributor
0 Kudos

Unfortunately not..

One solution I looked at was to utilise user-exit [IWO10018|http://pjatkin.users.btopenworld.com/documents/PMCSUserExits.pdf] (order header enhancement tab) to add a button which displays the ISU structure (similar to Environment->Data menu path in connection objects).

You can use FM ISU_NAVIGATOR to display the structure

PeteA

0 Kudos

Thanks Pete,

But what is the FM ISU_NAVIGATOR and how do u use it

0 Kudos

You can use like this:-

CALL FUNCTION 'ISU_NAVIGATOR'

EXPORTING

x_objtype = 'INSTLN' OR 'PREMISES'

x_objkey = objkey

x_prgcontext = TRDIR-NAME

x_subcontext = space

x_from = '19000101'

x_to = '99991231'

  • X_FILTER = ' '

EXCEPTIONS

config_not_found = 1

object_invalid = 2

config_invalid = 3

cancelled = 4

OTHERS = 5.

Regards,

Siva