Component.getTables

Returns the Tables object that gives access to all tables available to the component. An individual table can then be accessed using its table name as shown in the examples below.

Javascript example:

 var t1 = components.PREFIX1.tables.TABLE1;
 var t2 = components.PREFIX1.getTables().TABLE2;
 

returns Tables