Cannot save or commit document in client

Hi,

After upgrade to version 2023.06-ext5, I cannot save or commit a form at client side.
No api dispatch, only have a log core/application Saving: data provider PlatformSingleDocumentDataLoader handles 1 data holder(s). is showed and a loading effect at form display forever.

Ours package:

    "@com.mgmtp.a12.base/base-model-api": "27.1.0",
    "@com.mgmtp.a12.client/client-core": "14.5.2",
    "@com.mgmtp.a12.dataservices/dataservices-access": "36.3.6",
    "@com.mgmtp.a12.formengine/formengine-core": "36.6.2",
    "@com.mgmtp.a12.kernel/kernel-core-runtime-api-ts": "28.5.0",
    "@com.mgmtp.a12.kernel/kernel-md-facade": "28.5.0",
    "@com.mgmtp.a12.overviewengine/overviewengine-core": "36.5.0",
    "@com.mgmtp.a12.uaa/uaa-authentication-client": "7.5.0",
    "@com.mgmtp.a12.utils/utils-connector": "6.0.5",
    "@com.mgmtp.a12.utils/utils-localization": "5.7.0",
    "@com.mgmtp.a12.utils/utils-localization-react": "5.7.0",
    "@com.mgmtp.a12.utils/utils-logging": "5.7.0",
    "@com.mgmtp.a12.widgets/widgets-core": "36.5.0",
    "@redux-devtools/extension": "3.2.2",

More debuging
I debug into internal handleSaveActivity (where to print the log Saving: data provider... and saw that handledDataHolders have exactly dataholder I need to save (image below)

And this is redux


The action Activity/SAVE_STARTED is dispatched

Maybe I missing some configuration.

Thanks for your support.

Hi,
Is there any action after Activity/SAVE_STARTED in redux devtools?

No, activity stop at Activity/SAVE_STARTED

Update debuging

I continue debug inside createDataProviderForDataLoader.ts and saw that it stop at line 106

yield* call(
	getDataLoaderParams,
	config,
	dataLoader,
	loadedModels
);


The loadedModels has state "pending"

Continue go inside function getDataLoaderParams

It look like waitForModelsTask has some problem

I have fixed it. It was due to the Model References not loading. Therefore, the waitForModelsTask encountered an error while attempting to load all referenced models.

The root cause was that I forgot to set true in ModelGraph.build() within the loadModelsGraphWorker saga.

I will close the topic now. Thank you.

I got the error Document graph is missing when open cdm form when upgrade 2023.06 ext3 to 2023.06 ext6.
This solution also works for me.