‎2006 Sep 26 8:38 AM
‎2006 Sep 26 8:43 AM
i need to make a textbox in screen painter to f4 help is it possible
‎2006 Sep 26 8:39 AM
double click on the text box and in the attribute there will be one dropdown , select that as <b>List box</b>
‎2006 Sep 26 8:40 AM
‎2006 Sep 26 8:41 AM
‎2006 Sep 26 8:42 AM
‎2006 Sep 26 8:43 AM
i need to make a textbox in screen painter to f4 help is it possible
‎2006 Sep 26 8:45 AM
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
‎2006 Sep 26 8:48 AM
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
‎2006 Sep 26 8:44 AM
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
‎2006 Sep 26 8:47 AM
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
‎2006 Sep 26 8:51 AM
‎2006 Sep 26 8:55 AM
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