Obtain table name instead of relationship name

For a field that is from a relationship and that currently has focus,
event.getSource().getDataProviderID()
returns a value in the following format:
relationship_name.field_name

Is it possible to programatically get the table name instead of the relationship name?

ylockson,

You could use the solution model:

solutionModel.getRelation('relationship_name').foreignDataSource

Rob

Thanks Rob.