3

Sounds not logic but I think there are many cases when a production system is in 46C and (for budget restrictions) the corresponding test system was recently upgraded to ECC 6.0 before doing the same in production.

If not possible, which is the best solution under the indicated scenario?

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Tristan
  • 351
  • 2
  • 4
  • 15

2 Answers2

2

It may be technically possible to transport between 46C and ECC6, but it is advisable to employ a change freeze.

The main reason for this is that your test landscape now is significantly different from your productive system. It will be very hard to regression/integration test anything fully.

If you also changed from a unicode to a non-unicode system you should be particularly careful.

Custom programs may be reasonably safe to transport, but you have to measure the risk very carefully - particularly in business-critical processes.

Doing transports of SAP-Repairs or enhancements may have very unpredictable results (and may not even be allowed). It will really not be a good idea to transport any SAP objects, as the functionality is likely to have changed during the upgrade.

It may be necessary to create a second DEV/TEST landscape that is 46C in the interim, if you cannot afford a change freeze. However this will require dual maintenance, and can result in it's own set of issues.

Esti
  • 3,677
  • 8
  • 35
  • 57
0

Yes, it possible and feasible also. But after import of codes to non unicode system from unicode system some tweaking of program required according to coding standards of 4.6C. We have done the same and executed complete project from 7.4 to 4.6C

Dharman
  • 30,962
  • 25
  • 85
  • 135
  • 1
    Welcome to Stack Overflow, it is great that you answer such an old question with more, valuable insights. It would be even better if you explained which "tweaking of program" is required, since that would help users in the same struggle to quickly resolve their issues. Enumerating some of the key changes that should be done will make your answer better and help a lot of people. – Marc Sances Aug 20 '20 at 16:27