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

Show selected data in a selection screen.

SantiMoreno
Participant
0 Likes
552

Hi, ABAPers.

I've made a selection screen with a pushbutton which launches a ALV to make a certain selection criteria (based on pairs of two data). Is it there an easy way of showing (via a list, an ALV embeded into the Sel Screen, etc.) the data selected in a way of giving information to the customer.

Thanks in advance for your wise help.

Regards.

Hi, ABAPers.

I've made a selection screen with a pushbutton which launches a ALV to make a certain selection criteria (based on pairs of two data). Is it there an easy way of showing (via a list, an ALV embeded into the Sel Screen, etc.) the data selected in a way of giving information to the customer.

Thanks in advance for your wise help.

Regards.

3 REPLIES 3
Read only

Former Member
0 Likes
517

yes , you can make search help based on your requirements.

1. crate data base view ( make joins of required tables e.g.. kna1, lfa1 ....)

2.Create search help which will call your view.( selection method ( your view)

3. in your program call this search help

DATA: BEGIN OF rp_return OCCURS 0.

INCLUDE STRUCTURE ddshretval.

DATA: END OF rp_return.

PARAMETERS: kunnr TYPE kunnr.

CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'

EXPORTING

tabname = 'KNA1'

fieldname = 'KUNNR'

searchhelp = 'ZSH_your'

TABLES

return_tab = rp_return.

kunnr = rp_return-fieldval.

Read only

SantiMoreno
Participant
0 Likes
517

I've found a very helpful link deep searching in the SDN.

Thank for your interest.

Read only

0 Likes
517

then give the link San..