2007 Jul 29 12:21 PM
can anybody explain in detail about matchcode objects,the use of a amatchcode object and how to create it and use it.
2007 Jul 29 4:03 PM
Search Helps for Parameters
A search help is a ABAP Dictionary object used to define possible values (F4) help (see Input Help in the ABAP Dictionary). You can link a search help to a parameter as follows:
PARAMETERS p ... MATCHCODE OBJECT search_help.
The search help search_help must be defined in the ABAP Dictionary. The system now automatically displays the input help button for the field on the screen and activates the F4 key for it. When the user requests input help, the hit list of the search help appears, and when he or she selects an entry, the corresponding export parameter is placed in the input field.
The predecessors of search helps in the ABAP Dictionary were called matchcode objects, hence the name of the addition, MATCHCODE OBJECT in the PARAMETERS statement. Existing matchcode objects are still supported.
http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
2007 Jul 29 12:26 PM
before post into forum.. u should search ur queries into forum...
already we have discussed the same of topics....
2007 Jul 29 12:51 PM
MATCH CODE OBJECTS IS TOOL FOR SEARCHING A RECORD FROM THE DATA DASE
YOU CAN CREATE MATHCODE OBJECTS LIKE BELOW
PARAMETER : ABC(10) LIKE KNA1-NUNNR MATHCODE OBJECT 'MCODE OBJNAME'.
THEN DOUBLE CLICK ON MATHCODE OBJECT YOU WILL GO TO A SCREEN WHERE YOU CAN CREATE MATHCODE OBJ.
THERE R 2 STEPS
1. CREATE MATHCODE ID.
2. CREATE MATH CODE OBJ
TRY THIS HOPE U WILL GET .
2007 Jul 29 1:58 PM
sandeep you are the winner.
Name: sandeep G View users Business Card
Registered: 7/15/07
Total Posts: 58
Forum points: 0
Recent Messages:
meaning
ABAP Development » ABAP, General, Jul 29, 2007 1:41 PM
what is the exact meaning of the keyword dataset
differences1
ABAP Development » ABAP, General, Jul 29, 2007 1:40 PM
what is the difference between an internal table and database table
differnces
ABAP Development » ABAP, General, Jul 29, 2007 1:39 PM
what is the difference between a structure and an database table
structure
ABAP Development » ABAP, General, Jul 29, 2007 1:37 PM
what is the difference between a structure and an internal table
itable
ABAP Development » ABAP, General, Jul 29, 2007 1:36 PM
Regarding performance which internal table is faster.
urgent
ABAP Development » ABAP, General, Jul 29, 2007 1:34 PM
I have modified standard layout of script(form) by means of smartforms,now how can i attach it to ...
execute
ABAP Development » ABAP, General, Jul 29, 2007 1:31 PM
I have migrated and modified standard layout and attached it to the print program,now how can execut...
search help
ABAP Development » ABAP, General, Jul 29, 2007 1:29 PM
what is the process for implementing our own search help.
f1 help
ABAP Development » ABAP, General, Jul 29, 2007 1:27 PM
while creating tables how we can maintain our own F1 help for the fields in the tables created by us.
spool
ABAP Development » ABAP, General, Jul 29, 2007 1:25 PM
how to generate spool requests while doing data manipulations by means of table maintenance generat...
Search for all user messages
2007 Jul 29 4:03 PM
Search Helps for Parameters
A search help is a ABAP Dictionary object used to define possible values (F4) help (see Input Help in the ABAP Dictionary). You can link a search help to a parameter as follows:
PARAMETERS p ... MATCHCODE OBJECT search_help.
The search help search_help must be defined in the ABAP Dictionary. The system now automatically displays the input help button for the field on the screen and activates the F4 key for it. When the user requests input help, the hit list of the search help appears, and when he or she selects an entry, the corresponding export parameter is placed in the input field.
The predecessors of search helps in the ABAP Dictionary were called matchcode objects, hence the name of the addition, MATCHCODE OBJECT in the PARAMETERS statement. Existing matchcode objects are still supported.
http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm