-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Hi all,
I am trying the component.
My source tree is:
...
limosaRegisterDocumentNotifications[1, 1]:
limosaRegisterDocumentNotification[1, 200000]:
...
The proposed (by component) target tree is:
...
limosaRegisterDocumentNotifications_limosaRegisterDocumentNotification[1, 200000]:
...
Note: in my XSD, "limosaRegisterDocumentNotification" is the only child under "limosaRegisterDocumentNotifications".
Then, I get the error: Identifier 'temp_179f1bb3_limosaRegisterDocumentNotifications_limosaRegisterDocumentNotification' exceeds maximum length of 63 characters.
To solve this, I add a model configuration:
mc = {
"tables": {
...
"limosaRegisterDocumentNotifications": {
"fields": {
"limosaRegisterDocumentNotification": { "transform": "elevate_wo_prefix" }
}
}
}
}
But after this, I get the error: Transform value 'elevate_wo_prefix' cannot be applied to field 'limosaRegisterDocumentNotification' of table 'limosaRegisterDocumentNotifications'.
Any idea what could be wrong?