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

ABAP searchhelp, additional parameters, exit program

Former Member
0 Likes
308

Hi,

We are programming a special ABAP searchhelp function for one of our InputFields and want to use the additional parameters shselname1=, shselvalue1=,..., shname1=, shdest1= . How are these parameters passed to the tables sel and dest of our ABAP exit program?

Thanks,

Shah.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
282

Hi,

A. The tables "sel" and "dest" both have two columns: "name" and "value". They are filled with the values that you specify in the InputField statement. Example:

Inputfield (18,1) "CC" (18,20) name="buk" size="4" searchhelp="exit.zguixtmc1.mcbuk" shselname1="abc2" shselvalue1="1000"

When the routine mcbuk of program zguixtmc1 is called, table "sel" contains one row with name="abc2" and value="1000".

Reward Points if found helpfull..

Cheers,

Chandra Sekhar.

1 REPLY 1
Read only

Former Member
0 Likes
283

Hi,

A. The tables "sel" and "dest" both have two columns: "name" and "value". They are filled with the values that you specify in the InputField statement. Example:

Inputfield (18,1) "CC" (18,20) name="buk" size="4" searchhelp="exit.zguixtmc1.mcbuk" shselname1="abc2" shselvalue1="1000"

When the routine mcbuk of program zguixtmc1 is called, table "sel" contains one row with name="abc2" and value="1000".

Reward Points if found helpfull..

Cheers,

Chandra Sekhar.