I have a reference in VF page to a SOBject from another package like this...
<apex:pageBlockTable value="{!UsageStats}" var="usageStatRecord">
<apex:column headerValue="AM_Details__c" value="{!usageStatRecord.OTHER_PKG__AM_Details__c}"/>
This mean I can't build one of my own packages because it has a reference to this package.
When I try I get:
An extension of a beta package (OTHER_PKG) cannot be uploaded
This seem fair enough. Why should I be allowed build a package that is not modular. However, any tips how I get around this?
Is it possible to change this from a static reference to a dynamic reference? Or can I build my package another way?