2014 Jun 27 11:25 AM
Hey gurus,
I have defined a selection-screen
SELECTION-SCREEN BEGIN OF SCREEN 1100.
SELECT-OPTIONS:
s_idkn for zbr_t_autori-id_kniznice,
s_idau for zbr_t_autori-id_autora,
s_meno for zbr_t_autori-meno,
s_prie for zbr_t_autori-priezvisko,
s_umme for zbr_t_autori-umelecke_meno,
s_dana for zbr_t_autori-datum_narodenia,
s_daum for zbr_t_autori-datum_umrtia.
SELECTION-SCREEN END OF SCREEN 1100.
And I would like to link it with the zbr_t_autori transparent table tru dictionary, but I don't know how, or is it even possible?
I want the data element texts instead the s_idkn text and I also want the search helps which are using the zbr_t_autori table.
How can I achieve it, without setting it manually one by one on the 1100 screen painter?
Regards,
Robert
2014 Jun 27 11:34 AM
Hi robert,
For getting the texts for date elements Go To-> Text Elements-> and select Dictionary check Box this will get the data element text.
For search help you dont need to do anything if your data element contains the search help parameter in Further characteristics.
Regards,
Pavan
2014 Jun 27 11:34 AM
Hi robert,
For getting the texts for date elements Go To-> Text Elements-> and select Dictionary check Box this will get the data element text.
For search help you dont need to do anything if your data element contains the search help parameter in Further characteristics.
Regards,
Pavan
2014 Jun 27 11:37 AM
Regards,
Philip.
2014 Jun 27 11:39 AM
Hi Rebort,
as per your requirement,
1st statement is not clear, you want link zbr_t_autori table to dictionary but when link after input or before selection screen and which dictionary and why.
you can use data element text instead of s_idkn or any other name ...no restriction for that. GOTO->Text Element->Selection Text
and related to search help , you can create global search help using SE11 t-code for every filed and assign at time selection screen creation
OR
Inside code
using this event
at selection-screen on value-request for
use call function 'F4IF_INT_TABLE_VALUE_REQUEST'
you can pass value to as per your field.
Regards,
Sandeep
2014 Jun 27 11:42 AM
Hi Robert,
Go to--> text elements-->selection text, You will find Dictionary option with check box, just check it for all select options, activate and see. Let me know for further quiries.
2014 Jun 28 11:08 AM
2014 Jun 29 10:48 AM
Can I ask one more think?
From screen 100 I call a selection screen, which has a next screen set to 200, but after I sumbmit the selection screen the screen 100 is continuing and not the screen 200, why?
2014 Jun 30 9:40 AM
2014 Jun 30 1:22 PM
I solved it, but thank you for ur post. The solution was that before I call the selection screen I put this command SET SCREEN 200.