‎2006 Dec 01 3:22 PM
Hi,
Using abap objects i have designed a screen with tree structure.
In my tree,nodes correspond to menu items of a standard transaction.
In the std transaction, if i click menu items i will get diff. selection-screens for each menu item.
In the same way,If i click a node in my tree, screen corresponding to that menu item in the std. transaction shold be displayed.
<b>i just want to know how to get/call the scelection-screens here.</b>
Hope i am clear.
Please let me knwo how to do.
Regards,
Sowjanya.
‎2006 Dec 01 3:47 PM
Please use the event
METHOD handle_node_double_click.
" this method handles the node double click event of the tree
" control instance
CLEAR ws_key.
ws_key = node_key.
ENDMETHOD.
And use the node key to call the Sub Screens
‎2006 Dec 01 4:02 PM
hi dominic,
i know which method to use.
In the method node_double_click
if node_key = 'Child1'.
call transaction 'VA03'.
endif.
if i give it goes to 1st screen of VA03 transaction.
but i want to go directly to create sales screen like if i click 1 st menu item i will get a screen i want to get that.
I hope you got it.
Regards,
sowjanya
‎2006 Dec 01 4:13 PM
Hi
Then in the method
give the following code
SET PARAMETER ID 'AUN' FIELD p_vbeln(your document numbe).
CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
Hope this helps