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

screen painter

Former Member
0 Likes
924

how can i make a text box a drop down list in screen painter

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
898

i need to make a textbox in screen painter to f4 help is it possible

11 REPLIES 11
Read only

Former Member
0 Likes
898

double click on the text box and in the attribute there will be one dropdown , select that as <b>List box</b>

Read only

Former Member
0 Likes
898

can i make the text box f4 help

Read only

abdul_hakim
Active Contributor
0 Likes
898

set the dropdown attribute to L.

Cheers,

Abdul Hakim

Read only

0 Likes
898

you cannot have f4 help for list box

Read only

Former Member
0 Likes
899

i need to make a textbox in screen painter to f4 help is it possible

Read only

0 Likes
898

In the attributes , give the Search name for that field if any eists

or

u can write

PROCESS ON VALUE-REQUEST in the PBO of that screen

Read only

0 Likes
898

hi,

if the text box is reffering some field in the data base,

if that data base field has search hlp, then ur screen field will get automativcally an F4 help.

other wise u have to write code for getting f4 help.

look this sample

*****************

in the screen layout write this.

PROCESS ON VALUE-REQUEST.

FIELD SCREEN_FIELD MODULE user_get_country.

*--THIS WILL FETCH THE details

module user_get_plant.

SELECT Bill plant Number

FROM ztable_numplant

INTO TABLE int_table

IF SY-SUBRC NE 0.

*--MESSAGE IS 'NO data found'

ELSE.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

RETFIELD = 'SCREEN_FIELD'

VALUE_ORG = 'S'

TABLES

VALUE_TAB = INT_tab

RETURN_TAB = INT_RET

EXCEPTIONS

PARAMETER_ERROR = 1

NO_VALUES_FOUND = 2

OTHERS = 3.

IF SY-SUBRC <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

READ TABLE INT_RET INDEX 1 INTO INT_RET.

WF_data_needed = INT_RET-FIELDVAL.

ENDIF.

ENDFORM.

end module.

rgds

anver

if hlped mark points

Message was edited by: Anversha s

Message was edited by: Anversha s

Read only

anversha_s
Active Contributor
0 Likes
898

hi,

In the SCREEN

double click the field - > on the screen painter - >

the third row is drop down - > from that take listbox.

rgds

anver

pls mark hlpful answers

Read only

gopi_narendra
Active Contributor
0 Likes
898

in the screen painter on double click on text box field, u get the properties, there under TEXT, u have LIST n LIST with Key options

if its a standard field u can get that from the dictionary for Example Company code - t001-bukrs

Regards

Gopi

Read only

Former Member
0 Likes
898

is it possible to make a text box a f4 in screen painter

Read only

0 Likes
898

hi,

no its is not possible.

if the text box field is refrreing a dat base field name and that data base field has a serch hlp,

then only the search help will comde automatically.

other wise u have to write POV.

rgds

anver

if helped mark points