Skip to main content
Question

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

  • February 2, 2026
  • 0 replies
  • 24 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