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

report

Former Member
0 Likes
506

hi all,

I have to create a selection screen, with a input field as non modifiable.

Can anybody help me with this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
488

Hi Nayan

AT SELECTION-SCREEN OUTPUT.

Loop at screen.

if screen-name = <your screen field name>.

screen-input = 0.

modify screen.

endif.

endloop.

~Ranganath

4 REPLIES 4
Read only

Former Member
0 Likes
489

Hi Nayan

AT SELECTION-SCREEN OUTPUT.

Loop at screen.

if screen-name = <your screen field name>.

screen-input = 0.

modify screen.

endif.

endloop.

~Ranganath

Read only

Former Member
0 Likes
488

make use of table SCREEN.

Regards

Peram

Read only

Former Member
0 Likes
488

PROGRAM zcmtest01.

TYPE-POOLS: vrm.

DATA: name TYPE vrm_id,

list TYPE vrm_values,

value LIKE LINE OF list.

PARAMETERS: ps_parm(10) AS LISTBOX VISIBLE LENGTH 10.

AT SELECTION-SCREEN OUTPUT.

name = 'PS_PARM'.

value-key = '1'.

value-text = 'Line 1'.

APPEND value TO list.

value-key = '2'.

value-text = 'Line 2'.

APPEND value TO list.

CALL FUNCTION 'VRM_SET_VALUES'

EXPORTING id = name

values = list.

START-OF-SELECTION.

WRITE: / 'Parameter:', ps_parm.

Read only

Former Member
0 Likes
488

Hi

what ever changes u want to your selection screen

that will be stored in a table SCREEN

under AT SELECTION-SCREEN OUTPUT

loop at screen

ex

what ever options you want to modify put screen-input

modify screen

end loop.

reward if usefull