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

output data when screen popups

Former Member
0 Likes
490

Hello,

I have created a popup screen to FM 'POPUP_GET_VALUES'. But when the same screen popups again, the data input beforehand didn't show on the screen. How can I show the data info when the screen popups?

Thanx.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
454

Hi,

The you have to provide all the data in LT_FIELDS table and that will be displayed.

  CALL FUNCTION 'POPUP_GET_VALUES'

    EXPORTING

      no_value_check  = 'X'

      popup_title     = i_title

      start_column    = '20'

      start_row       = '10'

    importing

      returncode      = returncode

    TABLES

      fields          = lt_fields

    EXCEPTIONS

      error_in_fields = 1

      OTHERS          = 2.

Thanks,

Tooshar Bendale

Hello,

I have created a popup screen to FM 'POPUP_GET_VALUES'. But when the same screen popups again, the data input beforehand didn't show on the screen. How can I show the data info when the screen popups?

Thanx.

1 REPLY 1
Read only

Former Member
0 Likes
455

Hi,

The you have to provide all the data in LT_FIELDS table and that will be displayed.

  CALL FUNCTION 'POPUP_GET_VALUES'

    EXPORTING

      no_value_check  = 'X'

      popup_title     = i_title

      start_column    = '20'

      start_row       = '10'

    importing

      returncode      = returncode

    TABLES

      fields          = lt_fields

    EXCEPTIONS

      error_in_fields = 1

      OTHERS          = 2.

Thanks,

Tooshar Bendale