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: 

matchcode object

Former Member
0 Kudos

Hi,

How to create new matchcode object?Send step by step solution

-Sudhakaran-

5 REPLIES 5

Former Member
0 Kudos

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 .

Check this link....

http://www.sap-img.com/abap/blocking-searchhelp-and-create-new-searchhelp.htm

Regards,

Pavan

Former Member
0 Kudos

You can use the search helps and assign them to Your Selection Screen PARAMTERS with the help of MATCH CODE OBJECT addition.

For example

PARAMETERS p_carrid TYPE s_carr_id

MATCHCODE OBJECT demo_f4_de.

You can find the search help in SE11 demo_f4_de.

reward points to all helpful answers

kiran.M

Former Member
0 Kudos

Hi,

Match code is revise by name search help from 4.6 version.

But u can use same functionality which u use for matchcode.

Step 1: Create matchcode in Select Query

Examples:

Select * from emp with matchcode object object_name.

Step 2: Go to se11 tcode.

Create Search Help which have two types.

1. Elementry search Help

2.Collective Search Help

Chose Elementry Search Help.

- Enter Table name in Selection Method.

- Chose Dialog type

- Enter the search help field with data elements.

- Activate it.

- U can create collective help which is collection of many Elementry Help.

Former Member
0 Kudos

hi

MATCHCODE OBJECT search_help

Effect

This addition links the input field of the parameter with a search help search_help from the ABAP Dictionary. The name of the search help must be entered directly. For the input field of the parameter on the selection screen , the input help key is displayed. When the input help (F4) is requested, the user is displayed the hit list from the search help. When an entry is selected, the respective value is placed into the input field. If no search help for the specified name exists in the ABAP Dictionary, a message is displayed in the status line when the input help is requested.

The addition MATCHCODE OBJECT cannot be used together with the additions AS CHECKBOX or RADIOBUTTON.

Note

The predecessors of search helps in the ABAP Dictionary were socalled matchcode objects. This is why you have the name MATCHCODE OBJECT for this addition. Matchcode objects that have not yet been replaced by search helps continue to be supported by this addition.

Former Member
0 Kudos

match codeare created in transaction se11 , click on radio button search help .

A pop up will ask whether you want elementary search help or Collective search help .Choose elementary search help.Enter the table name in selection method and choose default dialog type .Enter the fields along with data elements .Lpos there will give you the order in which the parameter will come and spos will give the order in which search help parameter will come.Activate it .After creating elementary you can try with collective search help in which there is a collection of many elementary search help

Saurabh Bhardwaj