Hi,
we have a setup with a some projects for different departments an a common remote project containing a data source for news.

When we release a news from our datasource in the remote project and link it on our news page in the actual project, the detail pages that are generated from the datasource in the remote project are not generated in the delta deployment. So we ending up in an 404. The only possibilities that allow us to deploy the news detail pages are:
1) Full deployment (takes very long, no solution) in the actual project
2) we run a delta deployment only on the news detail page template in the actual project. This generates all news and takes also very more than an hour (there a lot of news)

Releasing the news from the local project is no option, there we get an exception
Error creating task - java.lang.IllegalStateException: failed to create workflowable for de.espirit.or.impl.EntityImpl@e0967c61{event,PERSISTENT,fs_id=254592,fs_valid_from=1666593029763,fs_...
What we simple try to reach is a delta deployment for the one or two news pages when the news are relaased.
The generation is configured as follows:
import de.espirit.firstspirit.access.schedule.*;
deltaGeneration = DeploymentUtil.createDeltaGeneration(context);
deltaGeneration.dependencyRules(EnumSet.of(DependencyRule.PROPAGATE_PAGE_CHANGES,
DependencyRule.PROPAGATE_SECTION_CHANGES,
DependencyRule.PROPAGATE_TEMPLATE_CHANGES, // references pagestore-content based on the changed template will be generated
DependencyRule.PROPAGATE_GCA_CHANGES)); // regenerate content projections if datasets changed
DeltaGeneration.ChangeSet changeSet = deltaGeneration.levelRule(0,1).levelRule(2,4).calculateChangeSet();
changeSet.configureGenerateTask();
So we do not use
UPDATE_PAGEREF_WHEN_ENTITY_HAS_CHANGED
But this should not be related, isn't it?
Our FS version is 5.2.