Hi Team ,
i have a view where it consits of 228 values in the first column when it is categorised.
i am trying to loop through the all the rows and create one tree structure by using the belwo code in the computed text
menulist :=@Explode(@Implode(@Unique(@DbColumn(“”:“”;“”:“”;“web.learning.fnrthemes.training.prod”;1));““);””);
FIELD fres:=“”;
@For(i:=1;i<=@Elements(menulist);i:=i+1;
leaf:=“”;
leafprnt :=“”;
leaf :=@DbLookup(“”:“”;“”:“”;“web.learning.fnrthemes.training.prod”;menulist[i];2);
leaf :=“
- ”+@Implode(leaf)+“
leafprnt := leafprnt+“
fres :=fres+leafprnt
);fres
in place of @elements(menulist) i give “180” then the required structure is showing but when i give @elements(menulist) it is not showing .
beyond 180 wht ever the number i give it is not showing
i also checked the @length(fres)=59724
is it because of the size it is not display or any other reason please help me out .