cancel
Showing results for 
Search instead for 
Did you mean: 

how to use ticker

Former Member
0 Kudos

hi,

i have a query which is having three fields.

i want to display values of these three fields in the ticker

so i added one form and selected ticker.

now how how to assign this query to the ticker so that i can display all the three fields data

example

matno matgrp matprc

m001 a 100

m002 b 200

m003 c 300

i want ticker to move in this way

m001 a 100 m002 b 200 m003 c 300

how to get this

please suggest me

Edited by: venkat s on Jan 30, 2008 7:00 AM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Venkat,

I think this is not possible by default. I think you need a workaround, maybe an ABAP RFC function module which calls the query and concatenate the values of the query into on string for your ticker.

Best Regards,

Marcel

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello venket,

It is possible. Let me take your example.

matno matgrp matprc

m001 a 100

m002 b 200

m003 c 300

m001 a 100 & m002 b 200 & m003 c 300

Try this to add space between 2 entries,

m001 a 100 &" "& m002 b 200 &" "& m003 c 300

Regards,

Chan