action_="combine_tabs"
<do action_="combine_tabs">
combines
two or more tables into a new table. (Available as of version
19.48)
Syntax
<dynamic> <do action_="combine_tabs" from="{[PATH_LIST]}" path="[NEW_PATH]" title="[NEW_TABLE_TITLE]" sdesc="[NEW_TABLE_SHORT_DESC]" ldesc="[NEW_TABLE_LONG_DESC]"/> </dynamic>
Attributes for action_="combine_tabs"
from
- Takes a list of table paths to combine, separated by commas.
path
- Full path of the combined table.
title
- Title of the combined table.
sdesc
- Short description of the combined table.
ldesc
- Long description of the combined table.
Example: Combining two tables
The following example shows how to combine tables from work.book_sales1
and work.book_sales2
and create a new table in
work.combined_sales
.
<do action_="combine_tabs"
from="{'work.book_sales1','work.book_sales2'}"
path="work.combined_sales"
title="combined sales"
sdesc="combined sales sdesc"
ldesc="combined sales ldesc"/>