In Strategy SQL Generation Engine, the VLDB property "Preserve all final pass result elements" is designed for the case in which data elements exist in a fact table that are missing from an attribute's lookup table. (The original name for this property, in fact, was "Incomplete lookup table.") In SQL, this is handled by performing a left outer join from the metric result table to each attribute lookup table in turn.
With this property, it is possible to identify specific attributes as having an incomplete lookup table by setting the "Preserve all final pass result elements" VLDB property within the attribute. With VLDB properties correctly configured, a report can join to some lookup tables using outer join and others using inner join.
To do this, the "Preserve all final pass result elements" VLDB property must be set at both attribute and report level.
Attribute-level VLDB properties are available from the Tools menu in the attribute editor. Here, the property is set for the Region attribute.

The following report uses the Quarter and Region attributes. The Region attribute is set to preserve final pass result elements with respect to lookup table but not relationship table, while the Quarter attribute retains the default setting to preserve only the common elements. With the report-level VLDB property set to the fourth option, SQL generates as shown below. Note that there is only one left outer join, to LU_REGION. LU_QUARTER uses an inner join per the attribute-level setting.
Report-level setting for "Preserve all final pass result elements"

Report template

Report SQL
select a12.QUARTER_ID QUARTER_ID, max(a14.QUARTER_DESC) QUARTER_DESC, a13.REGION_ID REGION_ID, max(a15.REGION_NAME) REGION_NAME, sum(a11.TOT_DOLLAR_SALES) Revenue from DAY_CTR_SLS a11 join LU_DAY a12 on (a11.DAY_DATE = a12.DAY_DATE) join LU_CALL_CTR a13 on (a11.CALL_CTR_ID = a13.CALL_CTR_ID) join LU_QUARTER a14 on (a12.QUARTER_ID = a14.QUARTER_ID) left outer join LU_REGION a15 on (a13.REGION_ID = a15.REGION_ID) group by a12.QUARTER_ID, a13.REGION_ID