cancel
Showing results for 
Search instead for 
Did you mean: 

Creating Organisational Structure Drop Down/Pick List

Former Member
0 Kudos

In SAP there is an Organizational Hierarchy facility that enables the user to select single or multiple objects from the core Organizational Structure by clicking on the 'Org Structure' button. This is seem primarily in HR ABAP reporting under Report Categories.

Does anyone know if there is any facility or code in BSP's to replicate this feature or is it something that has to be built from scratch.

Any help appreciated.

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Not sure exactly what you are needing but you might want to check out this weblog: /people/durairaj.athavanraja/blog/2004/12/20/bsphow-to-chained-dropdownlistbox

It's about making chained drop down boxes which can be used to simulate an origizational structure.

athavanraja
Active Contributor
0 Kudos

I think what he is loooking for is htmlb:tree with check boxes next to the nodes so that single or multiple nodes can be selected.

If this is true you can use htmlb:tree with the node-text concatenated with plain html for check box and set the page content encoding to true.

Code sample for htmlb:tree can be found at

/people/durairaj.athavanraja/blog/2004/11/21/bsphow-to-build-performance-efficient-dynamic-htmlbtree

coding to get check box.

'<input type="checkbox" name="C1" value="ON">' to into wf_string .

concatenate wf_string 'Node0 with children' into wa_tree-text .

Hope this helps.

Regards

Raja

Former Member
0 Kudos

Also a good thought Raja - we will see