2009 Nov 17 10:02 AM
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.
2009 Nov 17 10:37 AM
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.
2009 Nov 17 10:42 AM
I've found a very helpful link deep searching in the SDN.
Thank for your interest.
2009 Nov 17 11:52 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |