Skip to main content
Answer

Cannot access code PXCache

  • August 12, 2021
  • 2 replies
  • 141 views

Hello,

  Can i consult the code source of the methods in PXCache. For example method : GetValueExt

 

best regards.

 

Best answer by Naveen Boga

Hi @mohamed1walha  We need to use below syntax to assign/Get the value..


GraphName.ViewName.Cache.SetValueExt<DAC.FieldName>(row, value);

object value = ViewName.Cache.GetValueExt<DAC.FieldName>(row); // I never used this, but hoping that this will help you..

 

 

2 replies

Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • Answer
  • August 12, 2021

Hi @mohamed1walha  We need to use below syntax to assign/Get the value..


GraphName.ViewName.Cache.SetValueExt<DAC.FieldName>(row, value);

object value = ViewName.Cache.GetValueExt<DAC.FieldName>(row); // I never used this, but hoping that this will help you..

 

 


  • Author
  • Jr Varsity II
  • August 13, 2021

thank you @Naveen B , i will test it.