target_entity_name
Resolved as the target entity name in load execution.
See also:
Usage
VARIABLE
<target_entity_name>
Notes
Supported in all loads.
Examples
Variable used in an OVERRIDE load step
OVERRIDE load step in D_RATECODE entity:
SQL
insert into <target_schema>.<target_entity_name>
select ...;
Load executed in the target database:
SQL
insert into publish.D_RATECODE
select ...;