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

Selection-screen link with dictionary object

Former Member
0 Likes
1,567

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

1 ACCEPTED SOLUTION
Read only

pavanm592
Contributor
0 Likes
1,349

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

8 REPLIES 8
Read only

pavanm592
Contributor
0 Likes
1,350

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

Read only

philipdavy
Contributor
0 Likes
1,349
  • You are defining select options in selection screen. (Not in screen painter)
  • You may have to give description of select options through Text Elements ->Selection Texts -> Dic Ref.
  • If you have maintained search help for the fields in your ZTABLE it will be populated automatically.

Regards,

Philip.

Read only

Former Member
0 Likes
1,349

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

Read only

Former Member
0 Likes
1,349

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.

Read only

Former Member
0 Likes
1,349

Thank you guys it's working

Read only

Former Member
0 Likes
1,349

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?

Read only

0 Likes
1,349


Better you present your code.

Read only

0 Likes
1,349

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.