Hi ARIS-community,
I just figured out that the integration approach to Alfabet is now different. Rather than using the ARIS - Alfabet mapping report in the Architect, the code lines of the relevant report must now be copied to ARIS Connect.
Here's what and where you need to do it:
Open the administration of Connect. Select content type config and navigate to the new menu "Alfabet import". Then, select user configuration and paste your "ARIS - Alfabet mapping report code" in there.
Afterwards, I created a new report in the Architect with the following lines:
var alfaInt = Context.getComponent("AlfabetIntegration");
var oGroup = ArisData.getSelectedGroups()[0];
var oDb = ArisData.getActiveDatabase();
alfaInt.doSynchronize(oDb);
alfaInt.doImport(oGroup, null);
The report allowed me to schedule the interface again; there is also some help text available: https://[...]/abs/help/en/script/ba/#/home/r_O_AlfabetIntegration/en/1
Hope this post is of use to someone :)