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

Search help select

ronaldo_aparecido
Contributor
0 Likes
541

Hi experts .

I search the solution for this problem in scn but i didn' t find anything.

I have two fields and i created one search help for one.

when i open this match code and select one line it i want to pass data to both fields in screen.(diferent values first colum and second for example)

How can i configure a z seach help to do it?

Thanks for help.

Hi experts .

I search the solution for this problem in scn but i didn' t find anything.

I have two fields and i created one search help for one.

when i open this match code and select one line it i want to pass data to both fields in screen.(diferent values first colum and second for example)

How can i configure a z seach help to do it?

Thanks for help.

3 REPLIES 3
Read only

former_member235395
Contributor
0 Likes
512

Hi Ronaldo,

I think, you have to search the other value in your source table that showing data in Search Help.

Field1 = Value from Search Help

Field2 = Value from source Table based on value got from Search Help.

Regards,

Read only

RaymondGiuseppi
Active Contributor
0 Likes
512

First define the two fields as export parameters of the search help.

(In some case, you may also be required to use DYNP_VALUES_UPDATE in an explicit POV handling)

Regards,

Raymond

Read only

ArcherZhang
Product and Topic Expert
Product and Topic Expert
0 Likes
512

how about below code?

AT SELECTION-SCREEN ON p_1.

     READ SINGLE field2 INTO p_2 FROM DB WHERE field1 = p_1.

Regards,

Archer