Hello everyone,
Szenario:
I have a table inside an object page. Within that table a set of columns is displayed.
The table columns consist of attributes from 2 different entities. In my case:
entity HandlingUnit {
key HandlingUnitNumber : String;
@readonly DeliveryNumber : String;
(...)
to_DeliveryItem : Composition of many DeliveryItem on to_DeliveryItem.HandlingUnitNumber = $self.HandlingUnitNumber;
}
entity DeliveryItem {
key DeliveryItemNumber : String;
@readonly DeliveryNumber : String;
@readonly HandlingUnitNumber : String;
(...)
}
Description of the issue:
In any case, all of the table column labels are being rendered. But for some reason (sometimes) only a few of the label values are being rendered. As soon as I reload the page, all labels are being rendered again.
Further information:
It seems that sometomes the css class sapMHiddenToken is attached to the parent div of each label-value <span> element. This results in the element being hidden from DOM with display: none;

best regards,
Martin