Hidden-Data
This property allows you to set or retrieve the hidden value of the item identified by the Item property. The hidden value is never shown to the user, its purpose is to give the programmer an easy way to store and retrieve information related to an item.
 
Example - Add an item to the tree-view and set an hidden-data for that item
...
procedure division.
...
  modify screen-1-tv-1
         parent = null
         item-to-add "Option 1"
         giving tv-item-hdl
         .
  modify screen-1-tv-1
         item = tv-item-hdl
         hidden-data "PROG003"
         .