Discussions
How to Return additional fields from existing Views?
I am relatively new to working with SCA and am coming across many cases when there is one or two additional fields that I would like returned from a view which are not provided by the underlying model. I realize this entails either extending the View or the Model and am looking for what is the best practice and possible examples.
One case for example: I'm working with the OrderHistory.Details.View which returns the value for Location (Field ID: location) from a Sales Order. It returns the value (e.g., 170) rather than the text (e.g., New York) for the location. It gets its data from the OrderHistory.Model which extends the Transaction.Model. I am wondering how best to include this additional field.