cancel
Showing results for 
Search instead for 
Did you mean: 

Search Help for Organization Unit ID..

Former Member
0 Kudos

Hello Friends,

Is there any search help which will display all the Organization Unit ID?..

John.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi. Org units are stored in table HRP1000.

The serach help for that org unit number is H_T778O.

Regards,

Dave.

Former Member
0 Kudos

Hello Friends,

When you goto Users_gen->create->copy user and employee... - > create users from existing SU01 users.. you can see the Organization unit id input field.. which has F4 help.. I need to have same F4 help in my custom program.. when i try to find the search help in debug mode i found that 'HRBAS00OBJID' but when i execute this search help in se11.. i dont find the same value which appear in the Users_gen. when i execute in se11 i can see more than 5000 records... appear but when execute users_gen i can see only 20 records.. i want to know is there any other search help will only display the Organiztion unit id only..

John.

Former Member
0 Kudos

Hi. All org objects are stored in the same place, org units, positions, central persons etc.

Is there a parameter you can set to make the search restrict to org units?

Regards,

Dave.

imthiaz_ahmed
Active Contributor
0 Kudos

Take a look at this module used by that field

Program LBBP_MASS_CREATIONI01 :

MODULE input_help_orgunit INPUT.

CALL FUNCTION 'BBPU_F4_HELP_ORGUNIT'

IMPORTING

selected_value = default_orgunit

EXCEPTIONS

no_value_selected = 1

OTHERS = 2.

IF sy-subrc <> 0.

ENDIF.

ENDMODULE.

Regards, IA

Former Member
0 Kudos

Hi,

You can try other search helps like HRBAS00OBJID1 ..Just pass the plan version as '01' and object type as'O',you will get a list of all the Org units in the Org stucture.

Also have a look at the foll FM :

REUSE_HR_OBJID_F4

BBP_F4_LOCATION_PPOMA

BR,

Disha.

Former Member
0 Kudos

Hi,

Sorry the 2nd FM should have been "'BBPU_F4_HELP_ORGUNIT'".

BR,

Disha.