target_entity_logical_name
Resolved as the target entity logical name in load execution.
See also:
Usage
VARIABLE
<target_entity_logical_name>
Notes
Supported in all loads.
Entity logical name does not contain prefixes or suffixes (e.g. "H_" for HUBS, "F_" for FACTS...).
Examples
Variable used in an OVERRIDE load step
OVERRIDE load step in D_RATECODE entity:
SQL
insert into <target_schema>.D_<target_entity_logical_name>
select ...;
Load executed in the target database:
SQL
insert into publish.D_RATECODE
select ...;