Q&A Discussion of IFS Solutions for our IFS Employees, Partners and Customers
Recently active
Hi Experts , if you can help me to understand as what exactly needs to be done so that barcode can be rendered within a .rdlc report. We have a requirement where we want to have the barcodes for all the tasks under a request.Any suggestion is highly appreciated. RegardsAbhishek
I wonder if the Purchase Authorization Matrix can exclude ‘active’ Supplier agreements?According to my reasoning, this is not possible because there is no parameter to exclude ‘Active’ Supplier Agreements.Has anyone experienced this? And set up a workaround for it? If so, what is it?
When an item is inside a structure which is then returned leads to problems when tracking changes to delivered items. How do you manage that ?
I’m interested in getting some feedback from others that are on IFS Cloud regarding your experiences with major releases, service updates, and deliveries.I wanted to include multiple questions/polls, but the forum will only let me include one poll. If you’d like to answer these additional questions by responding in the comments would be greatly appreciated. #2 - How many major releases, service updates, or custom deliveries have you performed on your IFS Cloud (PRD) environment in the last 24 months?#3 - Do you regularly install service updates or major releases and version releases only? If service updates, some or all?#4 - How often has a delivery failed for you in one of the environments while the other environments were successful (e.g. A delivery is successful in CFG and UAT environments, but fails in PRD environment OR successful in CFG and then fails in UAT.) in the past 3/6/12 months?
I’ve created a lobby showing rejected Purchase Requisitions. I’d like to link the lobby to the Purchase requisition page to allow employees to make adjustments to rejected PRs.Here is my code that doesn’t work: page/PURCHASEREQUISITION/List?$filter=RequisitionerCodeRef eq $[USER_DIRECTORY_ID] and AuthorizationRejectedDb = 'true' I’m new to coding but have gotten the hang of creating the lobby elements. Any tips on getting this navigation to function?
Hi All, Anyone have experience using spend analysis feature in Strategic procurement? I am trying to understand what does this Expenses categorization does in spend analysis and category assortment.Is it just to analyse different expenses based on the category? If so how these expenses are reported in IFS?Couldn't find any info on this in help or release notes.Is this connected to HCM in IFS or I am little bit confused how we can use this expenses category in strategic procurement or in spend analysis.If anyone has any input please feel free to add in here.Much appreciated. Thanks,Chamath
Hi, Do you know how I can setup the rule for an absence type: 1 day available every quarter for employees, If not used in previous quarter, can be carried forward to next quarter- to be consumed within the same year.I've already set up the 1-day-per-quarter limit, but I need help configuring the carry-over rule. thank you!
Hi all,I was wondering if anyone has used those limit setting parameters, and would share a short description of what these actually do / for what they are used.I could use the the VAL_PERIOD_EXT (validity period extension), where absence limits had to be valid for 2 years (instead of default 1 year). But all the other parameters sound somehow cryptic. I could not find any further description in the IFS online documentation, and I would be happy for any input. I wonder if I could use these… especially the MIN_DIMENSION (Minimal absence limit dimension) 😊.Thanks for sharing! KR,Anny
Hi. I have a customer who want to start working with Project module (IFS 10), and I need to know how deliver parts without a Customer Orders,I mean, they only have the demand in the Demand tab of the Activity and when they purchase or manufacture the parts, how is the functionality to do the shipment?Thank you in advance.
I am trying to connect a sales contract to my Customer Order as a reference, but the Sales Contract I want is not appearing as an option to connect. The CO is in planned and the Sales Contract is Active, the project connected to it is attached, and it is all under the same Company/Customer. What may be the reasoning for why it is not available? Sales ContractTrying to attach correct Sales Contract but it doesn’t appear as option
I have used Page Designer ‘Default Value’ to set the Tax Code value in the Purchase Order (part & non part tab list).Whilst this appears to be working - how can I configure IFS to do the same.I have tried changing settings in the Supplier - tax at address/invoice and Company - Tax control/purchase - largely based on another community thread. But I am finding I am having limited success with this approach - it’s likely due to a lack of knowledge on my part & not taking all the correct steps necessary - how can I find out the correct approach to achieve this functionality, please....Is there an IFS Cloud configuration guide book I can purchase?TIA
Hi All,We have created a new repository as a file storage type to create a separate file location for docman files. Then we have created documents and could be able to add new documents to different screens without any issues. However, when we try to view or download the attach document it pops up an error after scanning for the document for so many minutes. What would be the issue here? Is this a bug ? Thank you!
Hi All, I have a question about the change management in the supplier schedule. I create a Material requisition for a part, e.g. Part 01. The requisition’s have 3 lines - Part 01 - 10 pc - Due date: 2025.03.10. - Part 01 - 10 pc - Due date: 2025.03.11. - Part 01 - 10 pc - Due date: 2025.03.12.I runned MRP for this part, which create the supplier schedule appropriate so I can release and send these lines to the PO. However when I change the amount (e.g. from 10 to 20) of the first line of the material requisition and run a new MRP it create a new supplier schedule which is very similar to the previous one, just create one more line with the needed 10 pc on !!2025.03.12!! due date, and when I release it and send to the PO, the planned receipt date is 2025.03.12. which is late because I set due date in the material requisition on 2025.03.10 for this line. How should I set up the system to create these lines with the correct date? Thank you for your answers!Roland
Hello Team,I have an issue discovered today.While I’l trying to copy an inventory part, the ABC Class is wrong. You can see on the screenshots below that the REF part is in class A, but the copied part is in Class C.Do you know how can I solve that ?
Good morning, I need support in finding the function that is responsible for counting the number of attachments attached to a line and the function that will get me the name of the attachmentNeed to create two such custom fields with these functions in the Receipt view.
Hello,We’re currently working on a project where many technicians have tasks assigned on Saturdays. They would like to have a clear overview of their schedule in the "My Work Calendar" within MWO. The question is, is it possible to adjust the Work Week settings to include Saturday?They prefer not to work with the "Week" setting (Monday to Sunday). We’ve been unable to find an option in IFS Cloud to configure this. Does anyone have any ideas?Thank you very much,Iulia
Hi all, I’m looking to add dynamic time filters to a custom IFS lobby view. I already have a custom date filter implemented, but I’d also like to include: • Year-to-Date (YTD)• Last Year vs This Year (LY vs TY)• Month-to-Date (MTD)• Rolling 12 months (R12M) Here’s my current filter logic:((NVL('$TIME_FILTER$', 'YTD') = 'YTD' AND planned_delivery_date BETWEEN TRUNC(SYSDATE, 'YYYY') AND SYSDATE)OR (NVL('$TIME_FILTER$', 'YTD') = 'LY' AND planned_delivery_date BETWEEN ADD_MONTHS(TRUNC(SYSDATE, 'YYYY'), -12) AND ADD_MONTHS(TRUNC(SYSDATE, 'YYYY'), -1))OR (NVL('$TIME_FILTER$', 'YTD') = 'MTD' AND planned_delivery_date BETWEEN TRUNC(SYSDATE, 'MM') AND SYSDATE)OR (NVL('$TIME_FILTER$', 'YTD') = 'R12' AND planned_delivery_date BETWEEN ADD_MONTHS(SYSDATE, -12) AND SYSDATE)OR (NVL('$TIME_FILTER$', 'YTD') = 'CUSTOM' AND planned_delivery_date BETWEENNVL(TO_DATE('$START_DATE$', 'YYYY-MM-DD'), TRUNC(SYSDATE, 'YYYY'))AND NVL(TO_DATE('$END_DATE$', 'YYYY-MM-DD'), SYSDATE)))Has anyone implemented something
Hi all,I’m trying to get a bar chart to display amounts in £GBP using the format 'L999G999G999G990D0'. However, the BASE_UNIT_PRICE is still appearing as US dollars, and it won’t populate on the axis in IFS.Can anyone recommend how to fix this issue? Bar Chart without TO_CHAR(SUM(ROUND(BASE_UNIT_PRICE_INCL_TAX)), 'L999G999G999G990D0') on Y-Axis Here’s my query and column setup: Query:WHEREplanned_delivery_date BETWEEN NVL(TO_DATE('$Start Date$', 'MM-DD-YYYY'), TRUNC(SYSDATE, 'YYYY'))AND NVL(TO_DATE('$End Date$', 'DD-MM-YYYY'), SYSDATE)AND objstate != 'Cancelled'AND contract LIKE NVL(UPPER('$SITE$'),'%')AND company LIKE NVL(UPPER('$COMPANY$'),'%')AND customer_no LIKE NVL(UPPER('$CUSTOMER_NO$'),'%')AND &AO.Customer_Order_API.Get_Authorize_Code(order_no) LIKE NVL(UPPER('$COORDINATOR$'),'%')ORDER BYto_char(planned_delivery_date, 'MM'), to_char(planned_delivery_date, 'Mon'), to_char(planned_delivery_date, 'YYYY')GROUP BYto_char(planned_delivery_date, 'MM'), to_char(planned_delivery_date
Hello,We accidentally created a customer and need to delete the account. When trying to delete we are getting the following message:“The Customer Info "PHI-REPGSSNA-US" is used by 1 rows in another object (Credit Collection Info).” Wondering what screen we need to look at to remove this associated record? Any help is greatly appreciated.Thanks,Kyle
Does anyone have an idea about transaction SOMTRLV (Positive/Negative variance of Direct Material Cost)?What triggers this transaction?What is its actual impact on Inventory Value and the GL?Can we prevent this transaction from being triggered?
Hi Community,i have a question in IFS Cloud regarding “how to query with multiple criterias in list view tables”. e.g. if i want to get in customer invoice analysis all customer invoicesexcept customer-no 2999999% ANDexcept customer-no. 5% I did not manage to get in basic search the expected result with entering attached query. My workaround was to enter in advanced query attached search, which shows my the expected result. If I switch from advance query to basic seach result the query is transferred in the way i entered it previously and “holding” correct result !?In my opionion this search criterias is the same as entered previously in basic query. Any idea why the origin multiple criteria in basic search is not working !? IService update: 24.1.4Framework service update: 24.1.8 Thanks in advance for support. Florian
Dear IFS Community,When trying to connect to MWO, we are encountering an error message. We haven't made any modifications at the database level, so I'm unsure what might be causing this issue. I would really appreciate any insights or guidance on resolving this. Please let me know if you need any further details.Thank you in advance!
Dears, I need IFS Cloud FSM Interface documents (User Docs to learn ) or any learning documents link also fine. Regards,Pinmaya
Hi All, How to address “java.lang.OutOfMemoryError: Java heap space” issues in 22R2. The error is from “ ifsapp-reporting-ren” What is the parameter/how to increase/decrease the heap size of a pod? Best regards
We are currently in IFS 10 upd 19, and moving to upd 24. We are working with creating surveys for Aurena and MWO but I was recently given a requirement to be able to have a picture/drawing that they technicians can see and confirm that their site looks like this. Is there a way to build that into the surveys? I know how they can attach a picture, but can there be one that is shown to them instead? Here is two examples of what they are doing in excel that they need put into their IFS surveys somehow.
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.