cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with backoffice script generator after migration

mohammed24
Participant
0 Kudos
431

Hi Experts,

After migrating from 6.7 to 1905 hybris version the Backoffice script generator suddenly stopped working.

When trying to generate scripts in Backoffice through script generator then a popup is displayed with the error message "contact system administrator".

Attaching the log trace for the above error!

Any leads or help would be appreciated?

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

And you can create a support ticket to SAP for help.

romitchhabra
Participant
0 Kudos

Hi Ahmed,

I don't have 1905 package and thus checked it in 2105. generateColumnDescription method calls generateColumnTypeDescription if attribute is of ComposedType and generateColumnTypeDescription calls generateColumnDescription for each attribute.

Now it could be that you have really complex data model and the memory allocated is not sufficient for the script to be generated.

Second, and more likely is that there could be a cyclic dependency in your data model (not sure if hybris allows that or not) but it could be that datatype A is having B and B is having C and C is having A, so A->B->C->A is cyclic. To find out the issue, you can extend AbstractScriptGenerator to create your own version that logs the attribute name it is working on. Then once the StackOverflow error happens, from the log you will get to know which attribute is causing the issue.