2007 Jul 17 3:46 AM
Hi all
I want to use the WRITE statement in the program.But when I write it ,the result doesn't show all in the screen . It only shows a part of the result.
CALL TRANSFORMATION id
SOURCE root1 = source1
root2 = source2
RESULT XML xml_string.
WRITE XML xml_string.
Q: I want to show all the result , so what can i do now ?
write /5(108) XML xml_string.
what about the rest how to do ?
Thanks in advance
Nick.
2007 Jul 17 6:10 AM
Hi,
One more way may help you,
break the string into pieces and show on screen.
like str0(10) then str11(10) ........
Reward if useful@
2007 Jul 17 6:00 AM
Could you check whether Is it because of the line-size ?
What is the LINE-SIZE of your report ?
Please increased the LINE-SIZE and check.
Regards,
A.Singh
2007 Jul 17 6:06 AM
Hi,
<b>write /5(108) XML xml_string</b>
The above statement says that starting from 5th character write 108 characters of the string.
If the string is bigger that this in size, then complete text will not be displayed.
If the string is more in length, then u shud remove this 108 specification.
Regards,
Himanshu
2007 Jul 17 6:10 AM
Hi,
One more way may help you,
break the string into pieces and show on screen.
like str0(10) then str11(10) ........
Reward if useful@