cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Backoffice configuration problems after upgrade from SAP Commerce 1808 to 2005

former_member711422
Discoverer
0 Likes
705

I am facing some behavior issues after upgrading from SAP Commerce 1088 to 2005 with backoffice UI configuration. Backoffice is loading my customized backoffice configuration "mycore-backoffice-config.xml" before "b2bcommercefacades-backoffice-config.xml" which is causing having unexpected results with customizations.

For example, for B2BCustomer type, create wizard customization is not displaying as expected.

In version 1808: (expected result)

In version 2005:

Here is the cockpit-config for the two version :cockpit-config-1808.txt cockpit-config-2005.txt

As you can find, I used the following code to remove the third step "Affiliation" of the create wizard, which is working well in v1808 but not in v2005 :

<wz:step id="step3" label="" merge-mode="remove">                 
  <wz:content>
  </wz:content>
</wz:step>

Tried to "Reset everything" but still doesn't work.

Does anyone know how to resolve this issue?

Accepted Solutions (0)

Answers (1)

Answers (1)

padma_1968
Explorer
0 Likes

@mario

were you able to fix this? if so whats the fix

former_member711422
Discoverer
0 Likes

Problem solved.

All you have to do is add the dependency to the default backoffice extension that is causing your backoffice misconfiguration. It will force the default backoffice config to be loaded before the customized backoffice config.

In my case, I had to add to the extensioninfo.xml of my extension mycore-backoffice-config.xml the following code :

<requires-extension name="b2bcommercebackoffice"/>