In the BeginPlay for my custom pawn I called Super::BeginPlay. So something like this:
void ACustomPawn::BeginPlay( )
{
Super::BeginPlay( );
// Do whatever else you wanted to do during BeginPlay
}
where ACustomPawn is a new class derived from APawn.