Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

match code objects

Former Member
0 Kudos

what are matchcode ids ?plz explain briefly ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi naga

Matchcodes are an obsolete version of Search Helps. Matchcodes served the same purpose as Search Help.

You first define the relevant tables and fields for the search in a matchcode object. A matchcode object describes the set of all possible search paths for a search string.

You then create one or <u><i><b>more matchcode IDs</b></i></u> for a matchcode object. A matchcode ID describes a special search path for a search string. The matchcode ID defines the fields or field combinations to be used in the search.

regards

navjot

reward if helpfull

Message was edited by:

navjot sharma

7 REPLIES 7

Former Member
0 Kudos

hi,

match code and serach helps are same. Search help provides all the possible values for a specific field under consideration.

regards,

Navneeth.K

Former Member
0 Kudos

hi naga

Matchcodes are an obsolete version of Search Helps. Matchcodes served the same purpose as Search Help.

You first define the relevant tables and fields for the search in a matchcode object. A matchcode object describes the set of all possible search paths for a search string.

You then create one or <u><i><b>more matchcode IDs</b></i></u> for a matchcode object. A matchcode ID describes a special search path for a search string. The matchcode ID defines the fields or field combinations to be used in the search.

regards

navjot

reward if helpfull

Message was edited by:

navjot sharma

Former Member
0 Kudos

Match code is nothing but the Search help in Higher versions

It is same way from SE11 you have to create.

so from SE11 create it and use it.

Refer

Regards,

Santosh

Former Member
0 Kudos

hi,

Matchcodes were replaced with Search Helps starting with Release 4.0. Please use search helps to assign an input help to a field.

Existing matchcodes were automatically converted to search helps. A matchcode object is hereby converted to a collective search help with the same name. Each matchcode ID of the matchcode object is converted into an elementary search help with the same name and assigned to the collective search help created from the matchcode object.

A matchcode is a means of finding data records stored in the system. The matchcode is defined in the ABAP Dictionary in two steps:

You first define the relevant tables and fields for the search in a matchcode object. A matchcode object describes the set of all possible search paths for a search string.

You then create one or more matchcode IDs for a matchcode object. A matchcode ID describes a special search path for a search string. The matchcode ID defines the fields or field combinations to be used in the search.

-

-


Search Help

Use

With this function you can search for objects, thereby defining and linking different selection conditions for the search help.

Prerequisites

You can call this function by:

· Selecting Object ® Search... () in the main menu bar of the Integration Builder

· Placing the cursor on a software component version and selecting Search... () in the context menu (only in the Integration Repository)

In this case the software component version is defined as the search criteria.

Features

Defining the Object Type

You can select the object type in a dropdown list in field Object Type.

In the design (Integration Repository) you can

· Select an object type (for example Message Interface)

· Select a cross-object category (for example Interface Objects)

In the configuration (Integration Directory) you can select types Values Mapping Group and schema in addition to the individual object types.

-

-


CHECK THIS LINK TO CREATE A SEARCH HELP.

http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_basic.htm

CHECK THIS LINK TO CREATE A MATCHCODE OBJECT

http://searchsap.techtarget.com/tip/1,289483,sid21_gci553386,00.html

more details...

Rgds

Reshma

Former Member

Former Member
0 Kudos

Hi Naga,

In Simple words it provides maximum possible values.

Match code object checks the database independently and then it checks the relationship between the tables, where as search help checks the database independently and it w'll not check the relationship between the tables.

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.

REPORT sel_screen_parameters_mco.

PARAMETERS p_carrid TYPE s_carr_id

MATCHCODE OBJECT demo_f4_de.

Regards,

Prasad

Former Member
0 Kudos

Match code was available upto 4.6 c version...

Since 4.7 we are having Search Helps...

Function remains the same..

Praveen .