Application Development 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: 

Pop up screen to display internal table contents

Former Member
0 Kudos

How can i display internal table contents as a pop up window after running bdc and NOT IN ALV.

Regards,

Harish .

3 REPLIES 3

Former Member
0 Kudos

Create a FM with a screen that contains a table control.

Pass the table contents to the FM and inside the FM call the screen.

There are no standard FM's for this task. So you have to write your own.

Regards

Karthik D

Former Member
0 Kudos

Hi

You can use the FM POPUP_WITH_TABLE_DISPLAY_OK

Eg:

CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'

EXPORTING

ENDPOS_COL = 50

ENDPOS_ROW = 20

STARTPOS_COL = 20

STARTPOS_ROW = 10

TITLETEXT = TEXT-025

TABLES

VALUETAB = I_EXTRCT_FAIL_MSG

EXCEPTIONS

BREAK_OFF = 1

OTHERS = 2.

Regards

Raj

0 Kudos

Thank,

I used to show a standard text loaded through So10 and then I show it to the user using this FM.