Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enriching the metadata with the process title is not supported in mass import #6081

Open
BartChris opened this issue May 13, 2024 · 0 comments
Labels
feature import Import mappings and configurations

Comments

@BartChris
Copy link
Collaborator

BartChris commented May 13, 2024

Is your feature request related to a problem? Please describe.
There is a feature which allows to enrich metadata fields with the process title. It was implemented in the following PR: #5623
This does however not work during mass import as the required logic only gets called in the case of a normal process creation, when saveProcessHierarchyMetadata is called:

private void saveProcessHierarchyMetadata() {
// save ancestor processes meta.xml files
for (TempProcess tempProcess : this.processes) {
if (this.processes.indexOf(tempProcess) == 0) {
tempProcess.getProcessMetadata().preserve();
}
saveTempProcessMetadata(tempProcess);
}
// save child processes meta.xml files
for (TempProcess tempProcess : this.childProcesses) {
saveTempProcessMetadata(tempProcess);
}
}

Describe the solution you'd like
After the problems with the current enrichment of metadata with the process title (see: #6024) are solved, this feature should also be usable in case of a mass import.

@BartChris BartChris added feature import Import mappings and configurations labels May 13, 2024
@BartChris BartChris changed the title Enriching the metada with the process title is not supported in mass import Enriching the metadata with the process title is not supported in mass import Jul 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature import Import mappings and configurations
Projects
None yet
Development

No branches or pull requests

1 participant