This will include questions around upgrading to newer versions of IFS products.
Recently active
Hello everyone,I am currently working on a project to develop custom connectors for our organization to analyze and retrieve data from IFS. The functionality is comparable to solutions like Addovation, particularly in enabling the execution of Quick Reports. So far, the connectors have been performing reliably and meeting all intended requirements.As part of this initiative, I have developed two separate connectors: A Power BI connector that allows users to pull data directly from IFS and build dashboards within Power BI An Excel add-in connector that enables users to retrieve and work with the IFS data in Excel At this stage, I am looking to better understand the broader implications of maintaining custom connectors at an organizational level. Specifically, I am interested in insights related to API usage, rate limits, performance considerations, governance, security, and long-term maintenance.The solution has been built entirely from scratch, so there are currently no licensing or
Hi Team,I’m looking for a complete example of a DDLSOURCE file, as the link in the IFS documentation appears to be broken (404 error):docs.ifs.com/techdocs/25r2/060_development/027_base_server_dev/225_reduced_downtime_delivery/020_code_changes/007_concepts/090_source_code_file/ddlsource_files.mdDuring the 25R2 upgrade, the documentation states that all code from the .cre file should be added to the .ddlsource file. However, when I attempt to deploy, I’m encountering the following error: Thank you, Best Reagrds,Bhanuka
HI, I am looking for information on how to request a backup/snapshot for IFS Managed customer. I have only found very old information while searching for this topic and no specific information for IFS Cloud IFS managed customers Thank you in advance for your assistanceStacey
There is problem with the R24...cdb -scripts which are not executed and therefor some database alters are not in place. The unexecuted scripts are in component folders and named like 24R2-SU02.cdb or 24R2-GA.cdbexample:ifsremote\ifsroot\deliveries\buildhome_24_2_2\database\apppay\24R2-GA.cdbIs it Ok to execute those scripts before actual run of installer or is there some better solution for that?
HiI am trying to access the below URL but I receive a network error. Can someone help on this asap?
Hello, We want to use CRM Companion on Android. I can access the CRM/SRM screens. Does CRM Companion require an additional license?
Hi everyone,Could anyone confirm if IFS provides any recommended minimum sizing specifications for IFSCloud Management servers? I’d appreciate any guidance or documentation references.Thanks in advance!
In Apps 10 users were able to select/highlight more than one Business Opportunity at a time, right mouse and select Close Opportunity. In Cloud the Close option is only there when one record is selected - If more lines are selected then the command buttons disappear - Is this functionality scheduled to be added back? Thanks.
Hi,In Oil and Gas extension in App10 and prior, we have a functionality that when receiving a purchase order (PO), the PO number is copied to W/D/R number in the corresponding inventory transactions and inventory part in stock. This makes possible for us to track inventory for Transport, tax, return purposes etc..As Oil and Gas extension has become a core functionality in cloud, I wonder how the above functionality is implemented. Is it as same as before or a new column is used to track the PO information?
Hello,We are trying to upgrade our in house install of v10 to a later version of IFS Cloud which we will also host in house. We do have a current process that works, however it takes 30+ hours to run. It currently upgrades 10 to 23r2s4. Then it cycles through 2 versions of 24 and 3 versions of 25. It seems that we should be able to skip from 10 to the latest version of cloud that we plan on implementing to shorten the lifecycle. However, there were some steps provided to us per our customization by IFS for the leap to 23r2s4 and there are some other steps for the initial 24 version related mostly to queueing. I’m trying to figure out how to include those while going more directly to a later version. Any help or advice would be appreciated. Thanks so much.Julie
Hi,In 25R2 , customers who use delivery continuity need to empty all cdbs and move code to relevant ddl/dml files to support online delivery.For customers who upgrade to 25R2 and dont use delivery continuity for now , can still do the same as above targeting future use of the feature and continue with offline installation? As per documentation this is possible as i understood?Best Regards,Wasana
Hello our wonderful IFS Community :)We’re running IFS Cloud 24R1, applying SU20 to a pilot instance for evaluation (going from SU9). We’ve encountered an issue when receiving goods off of a Shop Order, complaining that an Expiration Date is mandatory. I’ve limited things down to something that appears correct in the SU9 version of the API INVENTORY_PART_IN_STOCK_API and a variable check_mandatory_expire_date_ that is referenced in the Check_Insert__ / Check_Common__ procedures.Here’s a sample of the check_mandatory_expire_date_ being set (as opposed to the DEFAULT value for the parameter taking place. Anyone encounter an issue like this when going to SU20? Error message:ORA-20124: Error.NULLVALUE: Field [EXPIRATION_DATE] is mandatory for Inventory Part In Stock and requires a value.INVENTORY_PART_IN_STOCK_API package body snippet:-- Bug SCZ-27258, Start check_mandatory_expire_date_ BOOLEAN := TRUE; -- Bug SCZ-27258, EndMany thanks, and feel free to let me know if you’d like addit
Currently, we create Customer Orders with lines that detail all of the Services quoted and sold to a Customer. We use Lobby elements to look at the Customer Order Lines based on Wanted Delivery Dates so that when actual date approaches the lines wanted delivery date, we generate a New Requests from a Customer Order. This brings over our Connected Customer and Order No. and when we get complete the service and approve the Invoice Preview from the request it will add an additional line to the Customer Order it was made from. Our Sales Coordinators now have a Service Sales line that cannot be adjusted from their end, so if pricing is wrong, it has to be done from revoking the Invoice Preview and re approving it through our Service Team. If the pricing is accurate, they take an already existing line from the Customer Order for that specific service and mark it free of charge, then invoice the Customer Order Line for the Service.What I believe would be much more efficient for our business
Hi,In the page designer, in dont find how to set default value for a custom fields mandatory. its a field with enumeration. thank you KR
Hi everyone,We are currently uplifting from IFSAPP 9 to IFS Cloud and I’m converting our Execute Online Custom Event Actions into Workflows.In IFSAPP 9 we had the following Custom Event condition:IF ( (country_of_origin_ IS NOT NULL) AND ( (NVL('&OLD:COUNTRY_OF_ORIGIN','xyzXYZ') <> NVL('&NEW:COUNTRY_OF_ORIGIN','xyzXYZ')) OR (NVL('&OLD:PRIMARY_VENDOR','xyzXYZ') <> NVL('&NEW:PRIMARY_VENDOR','xyzXYZ')) ) ) THEN I’d like to understand how to model this logic correctly in an IFS Cloud Workflow.Specifically: How can I compare OLD vs NEW values (e.g., COUNTRY_OF_ORIGIN, PRIMARY_VENDOR)? Is there an equivalent to Oracle’s NVL() function in workflow expressions? What is the recommended approach for handling field change detection in workflows?
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 : DECLAREtable_name_ VARCHAR2(30) := 'SUPPLIER_INFO_TAB';columns_ Database_SYS.ColumnTabType;BEGINDatabase_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
What are the challenges in 25R1?
Hello, has anyone installed 25R2 SU1 yet? We have leftover Custom Field Views after the update, because views like the RECEIPT_INFO_ALT were removed, but the RECEIPT_INFO_ALT_CFV is still there.Would you consider this a bug or is there a way, besides dropping the view, to get rid of the invalid views with IFS onboard functions? Best RegardsChristian
I am trying to use the IFS Report Migration Tool to convert an rdl layout to an rep layout. I get an error that states a file is missing and to please add the .XSD file to the same directory. The XSD file is in the same directory and I still get this error. I have tried both individual file conversion and the folder conversion.The file names are exactly how they were exported:SomeReport.rdlSomeReportRep.XSDIs there an additional naming convention that needs to be applied to the XSD file?
Hi All,To develop Java transformers executable on IFS Applications 10, does IFS Developer Studio 18 already include everything that is needed, or are additional integrations required? If so, what is missing and where can it be obtained?
Hiwhen IFS release a service update, sometimes face some issues which have later been identified as a bug.Does IFS release a known bug list for each of the releases?thanksGary
Would you kindly recommend the effect analysis, compatibility, and support issues for the Windows update from 2016 to 2025?Product Version: UPD27
Hi All, [Sun Dec 11 15:40:33 GST 2022] - SEVERE: Failed to create namespace[Sun Dec 11 15:40:33 GST 2022] - SEVERE: Failed to install ifs-cloud. Collected logs from command:INFO: Creating namespaceUnable to connect to the server: x509: certificate signed by unknown authority (possibly because of "crypto/rsa: verification error" while trying to verify candidate authority certificate "xxx.xxx.xxx.xxx")SEVERE: Failed to create namespace The above error occurred during a delivery installation; the delivery went well in TEST, but this occurred during MIG installation. Anyone knows how to fix this?
Hello,Does IFS make available a table of IFS Cloud releases organised by month - ideally with a hyperlink to the release notes for said service update.It could look something like this:Release Month 25R2 25R1 24R2 24R1 23R2 23R1 December 2025 SU? SU? SU? SU? SU? SU? January 2026 SU? SU? SU? SU? SU? SU? February 2026 SU? SU? SU? SU? SU? SU? When there is General Available of a new release (e.g. 26R1) - a new column would be added for said release. Presumably for the first month the logical link would say GA. If a release is End of Life (EOL) then an EOL link to the End of Life announcement could be provided.The reason I ask about this is that:-I personally find it difficult to establish what service updates came out in a given month. Knowing this may be helpful for companies considering whether they A - Upgrade to a later service update for the release they are currently on B - Update to the equivalent service for a more recent relea
Just putting some feelers out there to try and understand the current picture from other users. We are trying to upgrade our Build Place to 25R2 (25.2.2) from 25R1 (25.1.2) however have hit a number of snags. Firstly, we were unable to take 25.2.1 due to a notice in the Lifecycle Experience portal that there were issues with certain modules in the solutionset that would cause a failure during installation. We decided to wait until 25.2.2 for this to be resolved.Upon release of 25.2.2 in the past week, we attempted to get the delivery into our Release Studio. Per step 3 of release studio (applying to baseline repo), the build failed. Upon raising a support case for this, it appears there is an issue with certain solutionsets of which we have to now wait until 25.2.3 until it’s resolved.Wondering if anyone else is having a similar experience? Without getting too subjective, we have not had a great experience with getting builds out of the Release Studio or Build Place, especially around
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.