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 Message

former_member225134
Participant
0 Kudos

Hi All,

                      In my requirement i want to disply the pop up message with some internal table values before the itab values ,

want to display the 2 hard coded texts..with space..

Example :  WE cant proceed this process.

     ----------------------------------------------------------------------------------------------------------(Blank space)

                These are the below company codes..

                 itab values.......

so i appended the hardcoded values into the internal table and append inital lines also..while executing,

the line space is not coming....

                 WE cant proceed this process.

                These are the below company codes..

                 itab values.......

so how to insert blank space inside the hard coded text ?

I tried many POP-UP Fm's..Can you please suggext me..

Regards,

Nithya

7 REPLIES 7

former_member197916
Active Participant
0 Kudos

Hi,

try this fm:


CALL FUNCTION 'POPUP_TO_INFORM'

     EXPORTING

       TITEL         = 'WE cant proceed this process.'

       TXT1          = ' ------------------------------------- '

       TXT2          = ' These are the below company codes.. '

***     TXT3          = value1

*     TXT4          =  value2

             .

0 Kudos

Hi Abhisek,

              Thanks for your reply. By using this function module how can i pass the internal table values..

Because it is only for texts and harcoded values..can you please suggest both internal table values  + hard coded text..

Regards,

Nithya

ziolkowskib
Active Contributor
0 Kudos

Hi Nithya,

Following thread should answer your question:

0 Kudos

I believe I did not make an effort to point the finger on the right part of the thread (obviously its length can be overwhelming).

There is standard report RSSPO120 with sample usage of POPUP_TO_CONFIRM where you can pass DIAGNOSE_OBJECT which actually is the name of Dialog Text (DT) defined in SE61. You can format the text as you wish and also use the parameters which should do the job.

shashank_agarwal
Participant
0 Kudos

Hi,

You can Use - POPUP_WITH_TABLE_DISPLAY

Under table, Insert Blank Row as '------------------' , it will display.

Thanks.

0 Kudos

Hi Shasank,

               Thanks for your repli,but  i want to display the hardcoded text first then ly the internal table values..

                 WE cant proceed this process.


                These are the below company codes..

                  1233

                  4545

                  7777

                  4545


in between the hardcoded text i want to display like empty line..


Chintu6august
Contributor
0 Kudos

Hi,

you can use the following FM :

POPUP_WITH_TABLE_DISPLAY

POPUP_WITH_TABLE_DISPLAY_OK


pass the table with data and the cordinates of the pop up window.


thank you!!