我可以在存储库中的别名 physical table 中设置过滤器吗

can I set a filter in an alias physical table in the repository

我正在使用 OBI 11g,在存储库中我有一个 table translations_us。在这个 table 中,我有 3 列:category, ID, translation

这个table用于不同类别的不同翻译。

比如我要翻译postal_code,那我就得取

select * from translation_us where category='postal_code'

如果我要manager_code的翻译,那就是

 select * from translation_us where category='manager_code'

在存储库中,我想创建 table translation_us 的别名,但我想在物理层中放置一个针对该别名的过滤器。这可能吗?

过滤器不会进入物理层。它将进入逻辑维度的逻辑 Table 源的 WHERE 子句(或事实取决于您如何使用它)。