Forum Discussion

osdevadmin's avatar
osdevadmin
New Contributor III
2 years ago

XFBR not working when passing Custom Name Function

Hi community, I am trying to pass a custom name function in the manner below: XFBR(XFBR_CubeViews, CustomTimeExpansion, timeExp=T#2020.Base, desc = :Name(|MFTimeShortDesc|)) Somehow the XFBR is no...
  • JackLacava's avatar
    2 years ago

    Yeah, that's not going to work. You can only append ":Name()" at the very end of the filter, e.g. XFBR(...):Name("My ColName") should work. :Name is effectively a command to the cubeview ("rename the column with X"), not a generic function.

    In your case, I guess something like this *might* work, although it depends on what your XFBR actually does:

    XFBR(XFBR_CubeViews, CustomTimeExpansion, timeExp=T#2020.Base):Name(|MFTimeShortDesc|)