Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regd Abap Objects

Former Member
0 Likes
416

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.

3 REPLIES 3
Read only

Former Member
0 Likes
394

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

Read only

Former Member
0 Likes
394

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

Read only

0 Likes
394

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