Application Development 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: 

special feature in the selection screen

Former Member
0 Kudos

Hi all,

I want to write a selection screen with the push button features like that in changing the vendor address in XK02.

i.e., there is a push "+" button ("More fields"), when user clicks it, the screen would be expanded.

How to accomplish such features in the selection screen?

Thanks!

3 REPLIES 3

Former Member
0 Kudos

goto se38 - > save-> set varient ->under ->hide field set check

Former Member
0 Kudos

Hi,

Use this statement to create push-button

SELECTION-SCREEN:

BEGIN OF LINE,

PUSHBUTTON 2(10) TEXT-001 USER-COMMAND PROC,

END OF LINE.

SELECTION-

AT SELECTION-SCREEN.

CASE SSCRFIELDS.

WHEN 'PROC'.

" Do your requirement here "

ENDCASE.

REGARDS

MUDIT

Former Member
0 Kudos

Thanks!