Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Which function module you will use to attach a search help
to a field in Selection screen?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the procedure you followed to upload the data?

1155


What is the significance of hide?

1046


Explain the relationship between a functional area, user group, and query when developing queries using the sap query tool?

1066


wat is the default file name of BAPI trace?

2303


What are the types of records that are transferred to sap r/3 and used by interfaces? : abap bdc

1176


How many structures can be created in a Ztable ?

3666


What is cts and what do you know about it? : abap hr

1278


hi i need detailed information on badi and bapi how can this work in real time senarios plz explain with exp

3770


Define the various contents of technical specifications ?

1136


Which function module would you use to check the user’s authorization to access files before opening a file?

1103


How to eliminate duplicate entries in internal tables?

1206


How to select valid lines for secondary list?

1142


What is the use of abap data dictionary? : abap data dictionary

1096


Explain some essential objects in abap dictionary?

1216


What is a persistent class?

1502