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

Multiple selection button in a module pool screen .

riyajohny18
Discoverer
2,227

My requirement is to have a multiple selection button in a module pool screen . I am using the fm-COMPLEX_SELECTIONS_DIALOG.

It is working , but I would like to change the color of the push button to green as in a std select-options.

Can anyone please guide.

Thanks

Riya

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,419

Just replace the ICON_ENTER_MORE icon with the ICON_DISPLAY_MORE icon in the PBO of your module when there are already some records in the range.

3 REPLIES 3
Read only

mmcisme1
Active Contributor
0 Likes
1,419

Could you post your code to call the function module and what button you expect to be green? The reason I'm asking is because it looks fine to me.

  ranges:
    r_datum        for sy-datum.
call function 'COMPLEX_SELECTIONS_DIALOG'
       exporting
            text      = 'Date'
       tables
            range     = r_datum
       exceptions
            cancelled = 0
            others    = 1.
Read only

riyajohny18
Discoverer
0 Likes
1,419

Hi Michele,

I am using ICON_ENTER_MORE for multiple selection button. So I wanted to change to ICON_DISPLAY_MORE inorder to make it green for multiple selecions.

Thanks

Riya

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,420

Just replace the ICON_ENTER_MORE icon with the ICON_DISPLAY_MORE icon in the PBO of your module when there are already some records in the range.