Kbase P114448: Error 142 with ADM2 RowObject temp table
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  21/03/2006 |
|
Status: Unverified
SYMPTOM(s):
Error 142 with ADM2 RowObject temp table
** Unable to update RowObject Field. (142)
** Unable to update <filename> Field. (142)
Assigning a value to a RowObject field in a User Interface object such as a smartDataViewer or smartDataBrowser, e.g.
RowObject.pbnummer = 111.
CAUSE:
The RowObject Temp Table cannot be referenced in a User Interface object because the record is not available here. This Temp Table is available in the SDO, so could be referenced here. But the smartDataObject only passes character strings and not records to its visualization objects. In the smartDataViewer or smartDataBrowser only screen values of the RowObject fields can be referenced.
FIX:
Modify the code in the visualization object to reference the RowObject field screen values. For example:
RowObject.pbnummer:SCREEN-VALUE = "111".