Amend fields with Read Only status

SOLVED

Hi all, 

for some reason, I want to update specific fields but these fields have read only status. Any other way to update it programatically?

  

the fields is DocumentValue, UnitBuyingPrice, LineTotalValue in Sage.Accounting.POP.POPInvCredItem

this is the message that is prompted.

Parents
  • 0

    POPInvCredItem inherits from POPInvCredItemView, and 'View' objects in Sage 200 can be thought of in the same way as SQL Server views (I know there are certain conditions under which SQL views are updateable but generally speaking you don't use views for CRUD operations).  In this case the metadata on the columns does explicitly mark them as being read-only.

    What is it that you're trying to do? 

Reply
  • 0

    POPInvCredItem inherits from POPInvCredItemView, and 'View' objects in Sage 200 can be thought of in the same way as SQL Server views (I know there are certain conditions under which SQL views are updateable but generally speaking you don't use views for CRUD operations).  In this case the metadata on the columns does explicitly mark them as being read-only.

    What is it that you're trying to do? 

Children