Hi, you can use the “FindFunction()” method in AActor to find it in the dictionary, then call it if found: (the CallInEditor must be ticked)
UFunction* func=MyActor->FindFunction(FName(TEXT("Public Method")));
if(func) {
MyActor->ProcessEvent(func,nullptr);
}