oracle-databaseoracle-apex

Convert Apex application from 19.2 to 19.1


I have an Apex application on a server running Apex 19.2. I would like to import this application into a server running Apex 19.1.

The import doesn't work, and is saying that the versions are not compatible.

I tried to manually change the release date in the application SQL file to "fake" the version but it still doesn't work.

How can I solve that?


Solution

  • It is not only the release date, but release itself:

    wwv_flow_api.import_begin (
      p_version_yyyy_mm_dd => '2020.02.24',
      p_release            => '19.1.x.yy.zz'     --> this
      ...
    

    Did you do that as well?

    Perhaps you'll be interested in reading How to import an Oracle APEX Application export file from a higher version into a lower version. There's no guarantee that it'll actually work, but - if you're desperate enough, try it.