‎2009 Nov 23 6:26 AM
Dear all,
I have an internal table which contain data in like this format:
Internal Table:
Material 1
Material 2
Material 3
Material 4
Material 5
Material 6
.
.
.
Material n
Now i want to print this in smart form like this ....
Material 1, Material 2, Material 3, Material 4, Material 5, Material 6,............................Material n
How can i read this table to print as per above example?
Plz. Help Me
‎2009 Nov 23 8:52 AM
hi In general attributes tab of your text element give the text type as text element and start as append directly. Thanks & Regards Surender
‎2009 Nov 23 7:17 AM
Hi,
U have not mentioned that in which window u want to print the data. There are many ways to achieve this. If u want to print the data in any window through a Text Element, first
Declare a "PROGRAM LINES" node under the window:
In the coding block loop on the internal table and concatenate the data to make a string.
Declare a TEXT ELEMENT in the same window.
Assign the string to the text element.
Regards,
Pulokesh
‎2009 Nov 23 8:52 AM
hi In general attributes tab of your text element give the text type as text element and start as append directly. Thanks & Regards Surender
‎2009 Nov 23 9:38 AM
Hi,
Inside the loop in which you print the material numbers, create two text elements.
In the first text element print the material number and in the second text element print a comma (,)
For both the text elements, in the General Attributes tab specify Start as Append Directly instead of New Paragraph.
Now your output will be:-
Material 1,Material 2,Material 3 and so on.........
Hope this helps you.
Regards,
Tarun