Hi there,
I have created a Display method which gives me Product Specifications i.e.
display AttributeValueText getItemIdAttributeValue(RefRecId _product=this.Product)
{
EcoResProductAttributeValue ecoResProductAttributeValue;
AttributeValueText attributeValueText;
InventTable InventTable;
EcoResAttribute ecoResAttribute;
EcoResValue ecoResValue;
str Brand,size,countryoforigin,material,ResistanceOption,Density,Style;
;
while select ecoResProductAttributeValue
where ecoResProductAttributeValue.Product == _product
join Name from ecoResAttribute
where ecoResProductAttributeValue.Attribute == ecoResAttribute.RecId
join ecoResValue where ecoResValue.RecId == ecoResProductAttributeValue.Value
{
attributeValueText = ecoResValue.value();
}
return attributeValueText;
}
When i am trying to use this method in SSRS Column its not giving me only the Last Specification Value.
I have also tried by taking Matrix Column, but the output is same.
Above code is working fine when i try to run as a Job, its giving me all the specification values.
Can you please guide me how to use the above method in SSRS Column to give me all the Specifications values.
Thanks
Regards
Altaf
*This post is locked for comments