Hi,
I am trying to to see what inside the fields hash from the table DimensionAttributeValueSet¨.
I tried two methods but neither seems to be working. The first returns blanks and the second return blank in varaible a and zeroes in variable b and c.
static void BcyrTest(Args _args)
{
DimensionAttributeValueSet dimset;
str a,b,c;
while select * from dimset
{
//First method
info(strFmt("dimension set = %1", con2str(dimset.Hash)));
//second method
[a,b,c] = dimset.Hash;
info(strFmt(" dim = %1 - %2 -%3",a ,b,c ));
}
}
Can somebody help me ?
Thanks.