Q&A Forum for IFS assyst Customers, Partners, and Employees
Recently active
Hi, I couldn’t find a resource containing the information that we’re looking for, so I thought I’d log a question here.Our organization has a development and a production environment. We were wondering if there is a way for changes made in production to be automatically replicated on the development environment? In this case, we’re mostly wondering about changes that technicians may apply to singular Items, user profiles, etc. It would be great if those changes could be replicated in development automatically. Is there a feature for this? Does anyone have this set up? We are currently on version 11.2.3, soon to be updated to 11.7.2.
Hello,short Question: Is it possible to add/update/delete Entries into an Lookup Table via ETM?If the answer is YES: How? :-)If the answer is NO: Is this Feature on an axisting Roadmap? If not i would like to submit this as an Idea The corresponding Data is stored in the DB under:SELECT *FROM [ASSYSTETM].[dbo].[ips_config_value]WHERE [configkey] in ('data','name','headers','notes') AND [ips_config_id] = 902 -- specified ID in this caseKind RegardsChristian
Hi! I downloaded IFS Assyst Self-Service app and I’m getting an error: Server Unreachable. Try again later.We’ve discarded to be a communication problem by running some tests in 443 port. We also confirmed that the server name is being resolved just fine.Do you guys have any idea of what may be causing this behavior? Att.,Elaine
Hello,ETM Version 1.5.0Thanks to the support here in the forum, i am able to expand and access Customfields as described here: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Category:assystREST#Field_Expansion_and_Filtering However, the opposite way would now be needed: To identify an item based on the value of an CustomField via ETM.i couldn't find a way to search for Item by CustomFields inside an Datamapper.I also couldn't find a suitable variable assyst search for this task.In this specific case, it is about finding an item using the IP address, which is stored in a custom field of the item-formular (and finally create an New Event with the found Item as Item_B, which shouldnt be a Problem)Is this even the right approach inside ETM?If it is possible to create/update an additional Look Table i could create a separate Channel to gain access to the needed information in this way (Even if this is not the prefered way to store identical Data on different places). But i also coul
I’m working on the configuration of IPaaS after having a copy of the database from production to development. I’m on the step of doing “assyst-config-persist:reload” which seems to be taking forever. Is this normal?
You used to be able to browse online the javadocs found here https://wiki.axiossystems.com/assyst11-6Wiki/index.php/assyst_Javadocs but they have taken the download and browse online off the site. They say you can find it in your assystweb 11 directory but I can’t seem to find it. What directory should I be looking in because I can’t find them anywhere.
Hi, I want to fetch all events in a certain date range. Following the docs ihttps://wiki.axiossystems.com/assyst11-3Wiki/index.php/Category:assystREST#JSON_Body, I already managed to get all events from a certain department, but I can’t manage to limit the results to a daterange. https://<assyst>/assystREST/v2/events?eventType=incident&eventStatus=open&assignedServDeptId=68 works just finehttps://<assyst>/assystREST/v2/events?eventType=incident&eventStatus=open&assignedServDeptId=68&dateLogged=2023-09-22T00:00:00Z,2023-09-22T20:00:00Z returns “Invalid Lookup Parameter: dateLogged”. Any idea on how to make this filter work?
Has anyone set a date using a javascript todays date function. I have an item movement datamapper and want to set the move date to always be todays date.
We created a custom Single-Select field on our contact user forms.We want to use the values in a Lookup Filter expression on our forms to restrict the results of our Single-Select Contact User field but cannot find the correct syntax to include:We’ve tried multiple variations like below:FROM usr as contactUser WHERE contactUser.$W(‘RAD’).shortCode = ‘ADULT REPRESENTATION SERVICES’FROM usr as contactUser WHERE contactUser.$new.W(‘RAD’).shortCode = ‘ADULT REPRESENTATION SERVICES’Currently on version 11.6.3 of assyst.Any ideas?
We need to allow unauthenticated access to the IFS Assyst knowledge base. Right now, only logged-in users can access it. This is a problem for new users who need to register and learn the tool.The information needed for registration is stored elsewhere, making it hard to maintain and access. This setup creates a barrier for new users and hinders the efficient use of our knowledge base.Allowing unauthenticated access would improve the user experience and help keep our knowledge base up-to-date. Please consider this change.
Hello. I am trying to set a variable in an ETM data mapper based on whether an external bond exists or not. Below is my expression to set the variable to either true or false (the assyst resource for the mapper is Contact User):if (outbound.self) { if (! outbound.self.bonds.externalIdentifier) { false; }else{ true; }}else { false;}With my test data, I know that the bond does exists, so I believe this should be evaluating to true. However, no matter if the bond exists or not in the ips_bond table, this expression always evaluates to false.I have tried just using outbound.self.bonds.externalIdentifier and outbound.self.externalIdentifier to bring back the identifier in the variable instead of setting it to true/false, but it always evaluates to null.The wiki is not clear on how this value can be used.We are running ETM 1.6 and assyst 11.4.1.Any help appreciated.Thanks,Duncan
My client has been requesting an update for a problem.I had an incident (376354) which resulted in a problem record opened close to two years ago (April 2022). The problem record is P15952. I submitted an email to “axios.problem.management@ifs.com” for an update in November.The issue occurs when using Save As New to create a new system. There is a limit with the amount of items that are saved with the new System.
Hello,We are on 11.6.3 and we use Contact User Gateway to import and update our users from AD.Are there any templates we can import to ETM or a tutorial on how we can achieve this with ETM? Thanks.
Hello, We’ve just built a tabular version of impact explorer that we’d like to be linked from events’ forms. Therefore, I created a custom field of type title that I intended to update with an hyperlink to that external report that receives item’s id as an input parameter via its URL.However, assystETM does not seem to allow me to update those title fields directly, even giving me a warning when I try to do so: Is there any way around this via ETM ? Or any other alternative which would enable me to create a dynamic hyperlink from inside my event forms to external URLs based on the form’s item id ? Regards,Otmar
Hello All, I am hoping someone can help.I am trying to create Dynamic tasks in a process which are triggered upon the CSG of the parent event. I have so far tried:if($new.parentEvent.csgShortCode = "ABA_CSG","ABA_CSG",if($new.parentEvent.csgShortCode = "SBA_CSG","SBA_CSG",$NO_VALUE )) if($new.parentEvent.csg.ShortCode = "ABA_CSG","ABA_CSG",if($new.parentEvent.csg.ShortCode = "SBA_CSG","SBA_CSG",$NO_VALUE )) if($new.parentEvent.csg.shortCode = "ABA_CSG","ABA_CSG",if($new.parentEvent.csg.shortCode = "SBA_CSG","SBA_CSG",$NO_VALUE )) if($new.parentEvent.CsgShortCode = "ABA_CSG","ABA_CSG",if($new.parentEvent.CsgShortCode = "SBA_CSG","SBA_CSG",$NO_VALUE )) if($new.parentEvent.Csg.ShortCode = "ABA_CSG","ABA_CSG",if($new.parentEvent.Csg.ShortCode = "SBA_CSG","SBA_CSG",$NO_VALUE )) Has anyone done something like this before, if so can you please help!!!!
Hi all,for a customer we produced the following report, which shows the most used products in the last month:Is there a possibility to sort the graph by number of events instead of product name?I can't find any option that allows me to do this in the Group by section of the chart data. Furthermore, is it possible to also sort the detailed table below by count event in ascending order?
We have a requirement to limit the selected users on system lookup field (contact user) to get users that their aliases are members of specific secondary service departments.If it was primary service department it would be more straight forward, but for secondary service departments I tried many expressions but all failed. Any ideas?
Would any IFS assyst customers be willing to share information or examples of their Category for Cause and Event and Generic/Product Class/Product/Item structures with us?We are in a period post SaaS migration of re-evaluating our structures and uses of the tool to better align with best practices with increasing efficiency in mind. Our reporting and SLAs are lacking as a result of how we initially structured many of the system fields in our instance and would like a reference point for how others are utilzing this currently. After pouring over the wiki i have a good idea of what we should be moving towards but always helps to share with our staff and leadership other real world examples where possible. Anyone interested please let me know and I’d love to work with our CSM to get in touch and set up the call or working session!
assystREST/v2/events?eventType=change&eventStatus=openassystREST/v2/events?eventType=incident&eventStatus=open how to get all events (open/pending/closed) in one query ?also how to get Service Requests because its part of Change ?
Hello,After upgrading from assyst 11.2.6 and then to 11.4.3 and 11.4.4, some assyst Users started complaining about frequent disconnections from assyst Portal, well bellow the session timeout period defined in your system: 25200 seconds, which corresponds to our default shift time of 7 hours Yesterday I experienced this while updating an item form, suddenly I was logged off with a message that my session had expired. I’m finding it very difficult to track this issue. Any ideas on how to track this issue ? After analyzing my server.log file, I noticed the following issues several messages like the following: Unhandled exception: org.jboss.resteasy.spi.UnhandledException: RESTEASY003770: Response is committed, can't handle exception.Bellow that message, in general, just bellow it there’s a mesasge like this: “ java.lang.IllegalStateException: UT010006: Cannot call getWriter(), getOutputStream() already called” In both message there’s a full stack trace, making the log extremely large.
Has anyone figured out how to adjust the CSS for these tooltips? If I have a tooltip that is long it goes to the very edge of the page, so I’d like to change the width to make it more compact.
Im trying to develop a dynamic task expression that pulls through the selected options on a multi select lookup, but Im having difficulty with the expression code. This is the set up for the Multi Select Lookup:And in the task expression I have tried utilizing following codes: $new.parentEvent.W("MSL-BU")$new.parentEvent.W("MSL-BU").name$new.parentEvent.W("MSL-BU").shortCode$new.parentEvent.W("MSL-BU").value$new.parentEvent.W("MSL-BU").values$new.parentEvent.W("MSL-BU").multiSelectValues$new.parentEvent.W("MSL-BU").multiSelectValues.systemLookupValue$new.parentEvent.W("MSL-BU").multiSelectValues.systemLookupValueId$new.parentEvent.W("MSL-BU").multiSelectValuesShortCode$new.parentEvent.W("MSL-BU").multiSelectValues.id$new.parentEvent.W("MSL-BU").multiSelectValues.shortCodebut the result is always returned as “NO VALUE”. I’ve tried trawling through the wiki to no success. Has anyone else managed to do this?
Hi there,we’d like to search for all active incidents including Major Incidents, alas, incidents linked to a Major as member of the Major Incident group should be excluded. We didn’t find a way to do this. We thought “state” would help, but excluding states is not an option in the search form. Any ideas?Take careMathias
We currently have a form on assystNET so that users can make software requests. Once approved they are added as an item in our product structure. We want to show a list of approved software's, which we can do using a lookup filter. We also want to tell the users about the software in the hope that in the case of their software not being on the approved list, a software that does something similar is. Can you add columns to the lookup table below? Or does anyone have any suggestions for this?
HelloHow I can control and specify attachment file types in IFS Assyst 11.6for example: Allow contact users to attach only pdf and jpg files
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.