In the
InputField definition you should name the additional values shselname1,
shselvalue1, shselname2, shselvalue2,.. Example:
inputfield
... searchhelp="exit...." shselname1="OTYPE"
shselvalue1="[Order type]" shselname2="CC"
shselvalue2="[xcompany]"
refering
to the values of an an SAP entry field "Order type" and an InputScript
variable (or your own InputField) "xcompany".
In
your ABAP exit routine:
Form
xxxx
tables
sel "table with shselname1=, shselvalue1=,
dest "table with shname1=, shdest1
using invalue
changing selvalue.
the
passed table "sel" contains one line for each shselname/shselvalue
pair; each line with sel-name and sel-value. For example, you obtain
OTYPE
OR
CC
0001
|