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: 

how to get return values of Elementary search help

Former Member
0 Kudos

Hi ,

This is regarding Elementary search help.

I have created a elementary search , which includes 3 fields .

After selecting a value from search help i need to get entire row of selected value (Not the single field value , entire row needed i.e 3 fields)

I tried using F4INT_FIELD * funtion module , but i am getting single field value .

I need values of entire row , based up on the values i need to do some validations .

Edited by: vijayareddy on Feb 20, 2011 9:31 PM

1 ACCEPTED SOLUTION

brad_bohn
Active Contributor
0 Kudos

You should call F4UT_PARAMETER_VALUE_GET for each of the 3 fields in your post-hitlist selection processing. See search help SFLIGHT_MIN_FREE as an example.

5 REPLIES 5

Former Member
0 Kudos

Hello,

you could use function module

F4IF_SELECT_VALUES.

In parameter SHLP should be set:

SHLPNAME = <your elementary search help>

SHLPTYPE = 'SH'

in the SHLP-SELOPT tables you should specify some selections for the items of your search -

else you'll get all records of the specified search help - which may last a while.

Regards Wolfgang

brad_bohn
Active Contributor
0 Kudos

You should call F4UT_PARAMETER_VALUE_GET for each of the 3 fields in your post-hitlist selection processing. See search help SFLIGHT_MIN_FREE as an example.

lijisusan_mathews
Active Contributor
0 Kudos

HI,

Check if you have checked the Exp parameter for all teh three fields that need to be transferred.

Suzie.

Former Member
0 Kudos

hi

All 3 fields should be check ( check box ) in export parameter (EXP) in search help

Former Member
0 Kudos

Thanks for the replies

Edited by: vijayareddy on Feb 23, 2011 1:48 PM