hi,
I have a requirement to show all the sites in one string. And there is a custom table which has a relation of 1: n sites .
Eg. I have site1,site2,site3....site10.
A custom table "Sitelinkage" is having column linkageid L001 . This Linkage ID can be associated to N number of sites with custom value assigned to site assigned in this case .
site2= 1 , site 4=5 ,site 6 = 9 ,site 7 =12.
The requirement is that a text file will be created as below.
Site1 Site2 Site3 Site4 Site5 Site6 Site7 Site8 Site9
0 1 0 5 0 9 12 0 0
The problem is that when I am keeping a Tab space in between sites and its values . The string just removes them and print as below
0105091200.
The site1...site 9 is printing properly.
I have taken the variable of str1260 siteValue.
Thanks,
VK