I've created a custom selector that has logic which depends on the value of a field in a header section of a screen. Since the logic is not in the graph which holds the views, how would I obtain the current value of the cache for this header section? I've set the field I'm referencing in the header to commitchanges=true and I've even put SyncPosition=true in the header section of the page. The following logic does not give me the current value that is (I'm assuming) in the cache:
mh = (xTACMappingHeader)PXSelect< xTACMappingHeader,
Where< xTACMappingHeader.mappingName, Equal<Required<xTACMappingDetail.mappingName>>>>.Select(new PXGraph<FinancialTranslatorMaint>(), md.MappingName);
What's the best way to retrieve the current value of the cache in a graph outside of that graph?
Thanks...