FORCEINLINE ufunctions are not seen in BP

Actually, yeah: if the function is inline then there wouldn’t be a way for the BP to call it. Since the BP isn’t C++ code there is no way to put the function inline. It needs to be a function call (with parameters pushed on the stack and all that) so the BP can call it (via the BP interpreter).