cancel
Showing results for 
Search instead for 
Did you mean: 

relationship Organizational Unit and BP

Former Member
0 Kudos

Hi experts,

How can you find the address of an Organizational Unit when you know the ID of it?

For example, the ID of the Org Unit is o 50000011, in which table can you see the address nr of it?

Thanks a lot in advance.

Yongmei

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Yongmei,

Use Function Module COM_OM_ORGOBJECT_ADDRESS_GET

in import parameters: OBJECT fill 'O 50000011'

This way in export parameters You get addres of this organisation.

Regards,

Marcin Gajewski

Former Member
0 Kudos

Hello Marcin,

Thanks for your prompt reply. However I can't find this Function Module using SE37 in my system. Any hints?

Best regards,

Yongmei

Former Member
0 Kudos

Hi,

I have SRM 3.0 System in my Company.

This FM belongs to Package CRM_COM_ORGMAN (last hanged by: 10.01.2003)

Try use Function Module RH_GET_ADDRESS:

call function 'RH_GET_ADDRESS'

exporting

plvar = 01

otype = O

realo = 50000011

begda = sy-datum

endda = sy=datum

istat = '1'

tables

address = your_addr_tab.

Regards,

Marcin

Former Member
0 Kudos

Hi Marcin,

It's a good one! Thanks very much.

Best Regards,

Yongmei

Answers (1)

Answers (1)

Former Member
0 Kudos

Table HRP1028 contains the data you are looking for.

Tomas