Abdullah
Abdullah

Reputation: 1033

Is It Possible to Import Apex Applications From a Higher Version to a Lower Version?

I want to import application from oracle apex 24.1 to lower apex version 23.2

but I got the following error ,

NOT COMPATIBLE (your export may contain calls not supported by your Oracle APEX version)

I tried to change version in project file to 23.2 but I got also same error .

Is there any solution to import the project ?

and thank you in advance.

Upvotes: 1

Views: 36

Answers (1)

cengiz sevimli
cengiz sevimli

Reputation: 2105

If you just want to copy some functionality or use the lowered version as a template etc. you can try more:

  1. change version date (p_version_yyyy_mm_dd parameter)
  2. change release version (p_release parameter) in the import_begin procedure on the exported file.

It is not guaranteed to work fully functional (for example new features, item types etc. might not exists in the older version) but you can check this link also.

Upvotes: 1

Related Questions