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 an “on input filed” statements?
Can we use binary search in internal table sorted in decending order ? if no why?
What is the differences between structure and table in data dictionary in abap?
Hi, I have a requirement for locking the fax field in user master records. As you know user can edit the details using the System>profile>own data (SU3), it is causing some security threat to our model. What i want is users should not be able to change the fax field under communications when they get into su3.I have heard of user Exist functionality but don't know how to implement it. Can you suggest something, it will be greatly appreciated.
what are the various types of parameters and how are they distinguished from one another?
Does SAP has a GUI screen painter or not? If yes what operating systems is it available on? What is the other type of screen painter called?
Explain the relationship between a functional area, user group, and query when developing queries using the sap query tool?
please any one can tell me modifytable keyword used in DDIC? what is a basic diffrence between modify table and update key word?
How to transfer the objects? Have to transferred any objects?
how to Implemented a BAPI to upload Payroll summary information into SAP R/3 system
How to display dynamic logo's in Smartforms? i mean to say different logo's on different pages?
2 Answers Altimetrics, Cap Gemini,
Which method is faster among 4 methods used in LSMW.?