Please enable JavaScript to view this site.

ESL Documentation

Object Inquiry Built-in Function

Return the readonly attribute of a column.

(column COL_ID of TABLE_NAME is readonly)

COL_ID

The identifier for a column.

TABLE_NAME

The identifier for a table.

Description

This built-in function returns true if the readonly attribute of the column is set. This may be overridden if the whole table is readonly.

Example

 

if (InputOK_BV) then

 copy "(column " X_IV " of Table is readonly) = "

 (column X_IV of Table_TBL is readonly) to MsgStr_SV

 action SendMsg

end if # InputOK