Skip to main content
Question

When updating to 25R2 with custo on standard table, Order Environment fails.

  • February 2, 2026
  • 1 reply
  • 33 views

Forum|alt.badge.img+2

Hi,

 

In our project we have standard entities with customization.

 

For exemple for this entity file : SupplierInfo-cust.entity

"entityname SupplierInfo;
component ENTERP;
layer Cust;

attributes {
public CSupplierSync ENUMERATION(FndBoolean) A-IUL;
}"



cdb file associated for 23r2 is :
 

DECLARE
table_name_ VARCHAR2(30) := 'SUPPLIER_INFO_TAB';
columns_ Database_SYS.ColumnTabType;
BEGIN
Database_SYS.Reset_Column_Table(columns_);
Database_SYS.Set_Table_Column(columns_, 'C_SUPPLIER_SYNC', 'VARCHAR2(20)', 'Y');
Database_SYS.Create_Or_Replace_Table(table_name_, columns_, '&IFSAPP_DATA', NULL, TRUE);

END;


 

We tried to modify this cdb file, but every Order Environment in 25r2 release upgrade process failed…

 

How do we manage with this cdb file for the 25r2 upgrade ?

We read the documentation and Ifs community and each "order env" failed ....

We tried with ddlsource file , cdb file, using specific EBR "# function".… without success.

 

Thanks a lot for helping us !

 

Vincent

1 reply

Amila Samarasinghe
Superhero (Partner)
Forum|alt.badge.img+14

Hi ​@Vincent 
What is the error you are getting in the order environment logs? Also, is the fndnzd component set to true in solutionset file?
For CDBs with changes to core tables, you don’t have to do anything since relevant upg files are updated to convert core tables to EBR compliance. Only for CDB’s with custom tables, you need to add below. 

Database_SYS.Prepare_Table_For_EBR('table_name', TRUE);

But if FNDNZD is enabled, then you need to rewrite the CDB in a ddlsource file