OWB - OMB Data Dictionary / Properties

Card Puncher Data Processing

About

When you need to create OMB script, you need to know the properties that you can modify. The documentation is really difficult to read and sometimes miss some properties. The script below gives you a way to create a dictionary op all properties from all class (object) that contain OWB.

What properties can be used

The model page below was first construct with this script.

set model OWB
set classes [OMBDESCRIBE MODEL '$model' GET CLASS_DEFINITIONS]
foreach class $classes {
puts “############### Class: $class ###############”
puts “— Properties:”
set props [OMBDESCRIBE CLASS_DEFINITION '$class' GET PROPERTY_DEFINITIONS]
foreach prop $props {
puts “—— $prop”
}
}

The result is here: OWB - OMB Class Properties Definition

Reference





Discover More
Card Puncher Data Processing
OWB - OMB (Oracle Meta Base) Language

OMB is : the scripting language from . a set of java function embedded in the scripting langage tcl (with the help of tcljava). Thus, you must...
Card Puncher Data Processing
OWB - OMB Class Properties Definition

This is the data dictionary/definition of the class properties for the OWB script language OMB. It was generated with OWB version 10.2. BATCH_MAPPINGMAPPING Properties: BUSINESS_NAME DESCRIPTION...



Share this page:
Follow us:
Task Runner