Determines the line IDs of the rows contained in a subtable.
Parameter |
Type |
Description |
|---|---|---|
$subtable |
string |
Name of the subtable |
If an error occurs, the function throws a JobRouterException.
Example:
try {
$subtableRowIds = $this->getSubtableRowIds("mySubtableName");
} catch (JobRouterException $e) {
$this->error($e->getMessage());
throw new JobRouterException('An error has occurred. For further details, please refer to the log file.');
}