Hello Omar Abdullwahhab, Thanks for taking the time to investigate and share those insights.
You're correct—the error message surfaces during the handling of a `GenericEntityException`, which typically indicates a problem with database access. We're currently working with OFBiz version 18.12, and the manufacturing module aligns with what you've pointed out. In particular, the method `executeMrp` in: **`org.apache.ofbiz.manufacturing.mrp.MrpServices.java`** shows related logic at **lines 755 and 876**. We'll be adding enhanced logging just before those lines to get more visibility. For instance, including: ```java Debug.logError(e, e.getMessage(), MODULE); ``` should provide more detailed output in the console and help us trace the root cause efficiently. Appreciate your guidance, and we’ll keep you posted as we dive further. Warm regards, Arifa On Fri, 25 Jul 2025 at 23:08, Omar Abdullwahhab <[email protected]> wrote: > Hello Arifa, Jacques, > I Investigated the code of the service executeMrp > and found that the message you have given is reached > When the GenericEntityException is caught, which > is usually related to database access. > > If you are using the trunk version or latest > You will find this in the manufacturing source code > > *org.apache.ofbiz.manufacturing.mrp.MrpServices.java* > *in the method executeMrp * > *line 755 and line 876 * > if you add more debugging before these lines you will get more information > In the console. > for example add > Debug.logError(e,e.getMessage(), MODULE); > You will get more information > > Best regards. > > > On Fri, Jul 25, 2025 at 5:32 PM Jacques Le Roux < > [email protected]> wrote: > > > Hi Arifa, > > > > I see no change related to MrpEvent since 2021 > > > > Maybe giving more details, like steps and parameters used could help > > > > HTH > > > > Jacques > > > > Le 24/07/2025 à 06:48, Arifa Hashmi a écrit : > > > Dear Community, > > > > > > I hope you're doing well. > > > > > > I've been trying to execute the runMrp service through Manufacturing in > > > OFBiz, but it recently started failing with an error. Previously, this > > > function was working correctly without any issues. > > > > > > Has anyone else experienced this problem lately or found a fix? I'd > > really > > > appreciate any help or insights. > > > > > > " > > > > > > Error during creation or update MrpEvent, parameters: > {reInitialize=true, > > > userLogin=[GenericEntity:UserLogin][createdStamp,2024-06-11 > > > 03:24:15.0(java.sql.Timestamp)] > > > > > > " > > > > > > Thank you! > > > > > > Best regards, > > > > > > Arifa Hashmi > > > > > > ------------------------------ > > > > -- > Omar Abu-Arab > Java Engineer >
