2007 Jul 18 2:35 PM
Hi ,
I need to print the values which I m getting from a work area like
A1 A2
A3 A4
and so on
but I m getting it as
A1
A2
A3
A4.
Any solutions to this will be highly appreciated.
Regards,
Vivek
2007 Jul 18 2:53 PM
Hi,
It seems after each value, you have provided a line feed. Remove the line feed & pass extended line.
If this doesnt work, then concatenate the values and pass.
Best regards,
Prashant
2007 Jul 18 2:57 PM
Dear vivek,
how is your work are structure - is it only with single field ?
In your script after the each value give an extended line comman "=" which will take first and second values for print and after the second value give "line feed" or "carriage return" command.
Hope this solves your problem
Thanks
venugopal
Reward accordingly
2007 Jul 18 3:07 PM
Hi,
These values are all coming from same work area.
In the script I have written just one line &wa_xyz-field&.
The values coming from loop are printing one after other.
i need that I can print two of those in one line.
Concetanion seems to be one solution. Can you eleborate on that.
Regards,
Vivek
2007 Jul 18 3:11 PM
&wa_xyz-field0(2)& &wa_xyz-field2(2)&.
&wa_xyz-field4(2)& &wa_xyz-field6(2)&.
2007 Jul 18 3:41 PM
I think this functionality is for printing the specific words of a string.
How it can be used here.
Regards
Vivek
2007 Sep 07 10:20 AM
Hi,
I solved the problem by concatenating the values fetched from work area upto specific length and saving it into another string.
Regards,
Vivek