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: 

FM : COPO_POPUP_TO_DISPLAY_TEXTLIST

Former Member
0 Kudos

Hello ,

I want to display space between two texts in FM COPO_POPUP_TO_DISPLAY_TEXTLIST .

Ex : name

name1 .

But when we pass as blank in text_table between two entries it doesnt display in output a space .

Please help .

Thanks ,

Rahul

5 REPLIES 5

Former Member
0 Kudos

hi,

It will display space if there is space in the text table...

can u send me which data u r filling in the text_table ?

regards,

lavanya

0 Kudos

Hello ,

Suppose you have supplied 'SAP' first , then space , then 'SAP1'.

It will display

SAP1

SAP

But i want to display a space in between

Thanks and Regards ,

Rahul

0 Kudos

Do u want to display them in a single line separated by space ?

0 Kudos

Hi,

I am facing a similar problem...

I want a blank line in between 2 lines...

This can be achieved by passing paragraph format/ character format to tline-tdformat field.

But the problem is i dont know what paragraph formats/ character formats this FM uses.

Any pointers towards this will be helpful...

Thanks in Advance

Sruti

Former Member
0 Kudos

Hi,

You can use the function module DD_POPUP_WITH_LIST.

Example:

data: itab type POPUPTEXT occurs 0 with header line.

data: v_ans.

do 10 times.

itab-text = 'Hello'.

append itab.

if sy-index = 3.

itab-text = ' '. ---> to get the blank line.

append itab.

endif.

enddo.

CALL FUNCTION 'DD_POPUP_WITH_LIST'

EXPORTING

TITEL = 'hello'

LISTTITEL = 'hi'

START_COLUMN = 1

START_ROW = 1

END_COLUMN = 50

END_ROW = 20

INFOFLAG = ' '

IMPORTING

ANSWER = v_ans

TABLES

lines = itab

.

Edited by: Velangini Showry Maria Kumar Bandanadham on May 19, 2008 1:54 PM