2007 Mar 21 5:36 PM
while iam creating sreachhelp
i am getting the following error "Search help parameter ABC does not occur in the selection method"
plz suggest me
2007 Mar 22 7:32 AM
Check for the field ABC in the table/view u are using for search help.As per the message, it feels as if the field is not there in the table/view. If the field is there, then the table/view is not active.
Hope it helps.
Regards,
Himanshu
while iam creating sreachhelp
i am getting the following error "Search help parameter ABC does not occur in the selection method"
plz suggest me
2007 Mar 22 7:32 AM
Check for the field ABC in the table/view u are using for search help.As per the message, it feels as if the field is not there in the table/view. If the field is there, then the table/view is not active.
Hope it helps.
Regards,
Himanshu
2007 Mar 22 8:55 AM
Hi Rasheed,
There might be two reasons :
First check whether the Search help has been activated or not.
Second, check whether you have used the particular search help in the corrrect program or not.
Hope this resolves your query.
Reward all the helpful answers.
Regards
2007 Mar 22 9:29 AM
hi rasheed,
first u should look about ABC parameter,
u should have ABC field in database table to define there other wise it throws error
as u got,
define the parameter with availabel fileld in the database table then plm solves automaticaly.
regards...
seshu.
2007 Mar 23 9:50 AM
For restricting values at the F4 help at the selection screen filed,
You must give the Field name from where this F4 help must bring the possible values.Therefore know the field( and its Data Element ).
Example:
For CARRID field in SPFLI Table Seach help is H_SCARR.
For easy understanding see already created Search helps:
1.Go to SE11
2.In the initial screen, click at search help radio button and type H_SCARR
and check how how search help parameter is given.
Reward points if helpfu.
Regds,
Rama chary.Pammi
2007 Apr 05 7:26 AM
Hi
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_field-low.
PERFORM search_help_fieldname .
FORM search_help_field .
DATA: BEGIN OF itab_field OCCURS 0,
required fields.
END OF itab_field.
Selection query for HitList.(Which values you want to show in the Search Help)
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'fieldname'
dynpprog = sy-repid
dynpnr = sy-dynnr
dynprofield = 'S_field'
value_org = 'S'
TABLES
value_tab = itab_field
return_tab = t_return
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
IF sy-subrc EQ 0.
READ TABLE itab_charg INDEX 1. "transporting field
IF sy-subrc EQ 0.
MOVE itab_field-fieldTO s_field-low.
ENDIF.
ENDIF.
ENDFORM.
In this way we can handle the Search Help.
reward if helpful.
vijay
2007 Apr 05 7:28 AM
you can also visit following links.....
http://help.sap.com/saphelp_webas620/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbad1135c111d1829f0000e829fbfe/content.htm
fuller.mit.edu/tech/search_helps.ppt
regards
vijay
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |