Which function module you will use to attach a search help
to a field in Selection screen?
Answers were Sorted based on User's Feedback
Answer / rajarao
REPORT z_test11 .
PARAMETERS:
p_carrid(2).
DATA: table1 LIKE
ddshretval
OCCURS 0 WITH HEADER LINE.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_carrid.
CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
EXPORTING
tabname = 'scarr'
fieldname = 'carrid'
* SEARCHHELP = ' '
* SHLPPARAM = ' '
* DYNPPROG = ' '
* DYNPNR = ' '
* DYNPROFIELD = 'p_carrid'
* STEPL = 0
* VALUE = ' '
* MULTIPLE_CHOICE = ' '
* DISPLAY = ' '
* SUPPRESS_RECORDLIST = ' '
* CALLBACK_PROGRAM = ' '
* CALLBACK_FORM = ' '
* SELECTION_SCREEN = ' '
TABLES
return_tab = table1
EXCEPTIONS
field_not_found = 1
no_help_for_field = 2
inconsistent_help = 3
no_values_found = 4
OTHERS = 5
.
IF sy-subrc 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
p_carrid = table1-fieldval.
START-OF-SELECTION.
WRITE: p_carrid.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / amit bhatia
f4IF_INT_TABLE_VALUE_REQUEST "To display internal table in F4
F4IF_FIELD_VALUE_REQUEST " for single field as F4
Is This Answer Correct ? | 4 Yes | 0 No |
What is the significance of delivery class?
Differentiate between the uline and write: sy-uline statements if any?
What is the Difference between Transparant Tables , Pooled & cluster Tables?
1 Answers Patni, Satyam, Siemens,
Explain Catch Command in ABAP?
Can a transparent table exist in the data dictionary but not in the database physically?
what is search help exit ????
Can you assign a matchcode object to a parameter? If so how?
How to create any functions?
In selection screen, I have three fields, plant material number and material group. If I input plant how do I get the material number and material group based on plantdynamically?
16) Is BSEG and BKPF transaparent tables?
what is the major advantage of start-form?
What are interactive reports?