Application Development and Automation 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: 
Read only

matchcode query

Former Member
0 Likes
803

Hi Experts,

I have one field called vendor no in screen. If i press F4 it will display the list of all the possible values.

Suppose it is displaying 1000 entries. Now i wanted to delete 10 enteries from this. Will u tell me how to do this>??

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
650

Hello,

You can not delete the lines from the list. but you can redefine your selection of vendor numbers.

Or, in program you can pass some initial selection string,

use function HELP_VALUES_GET_WITH_MACO in the at selection-screen on value request

pass matnchcode, matchcode id and selstr = '=A.1*'.

here A is matchcode id.

So, system will disply on the vendor starts with 1.

Regards,

Naimesh

5 REPLIES 5
Read only

naimesh_patel
Active Contributor
0 Likes
651

Hello,

You can not delete the lines from the list. but you can redefine your selection of vendor numbers.

Or, in program you can pass some initial selection string,

use function HELP_VALUES_GET_WITH_MACO in the at selection-screen on value request

pass matnchcode, matchcode id and selstr = '=A.1*'.

here A is matchcode id.

So, system will disply on the vendor starts with 1.

Regards,

Naimesh

Read only

0 Likes
650

Hi Naimesh,

Is any function module is availble which can delete the entries for the matchcode id?

Read only

0 Likes
650

Hello Salil,

There isn't any function module for that.

regards,

Naimesh

Read only

Former Member
0 Likes
650

hi

good

you cant delete from the search help, it ll show you all the values that is there in the database for that particular field.

if you can able to delete the fields from that paricular field value from the database table,than you can achiever your requirement,but not while showing the f4 help.

thanks

mrutyun

Read only

former_member378318
Contributor
0 Likes
650

Hi,

If you wish to influence the data displayed (delete, add or change entries) then it can be achieved using a "Search help exit". The search help exit can be linked to your search help and will allow you to, amoung other things, control the data that is displayed.

Take a look at the example search help exit function " F4IF_SHLP_EXIT_EXAMPLE"

Hope this helps.