I am trying to send an email to myself if a particular automated background task fails. I am using the IdoOnItemUpdate for BGTaskHistories to send the email and I am getting this error in the BG task History and all tasks are failing: Experienced an exception while executing [UpdateBGTaskHistoryReportOutputPath]; Invalid…
There is a custom validator that calls global scripts. The global scripts call events using ThisForm.GenerateEvent. This works when the form is called directly. However, when it is a linked child, the event calls cause the session to time out. To avoid the time out, the script has been updated as: If ThisForm.IsLinkedChild…
First, second and fourth row print. No matter what I put in the third row, nothing returns (even just a static field) Trying to add barcodes which work anywhere else. Any simple solutions for my inexperienced mind to comprehend? Thanks in advance.
Suppose that I have SQL: Select DISTINCT co_num, due_date From coitem where [some condition here] Here the code will return DISTINCT values. For example if co_num 123 has 5 lines with same due date, then I will get only one row. How can we achieve DISTINCT feature in IDO Collection? Is there a way that I can specify that I…
Hey all, I'm trying to use list selection/combo box in the Service Order Transactions grid using a derived property. I would like the warranty code box to only allow selection of a warranty code that is currently active for the selected unit. However, the unit may have multiple active warranties. When I try to use: (…
in V9, we had some SQL Scalar-valued Functions like the below one. For example it takes CoNum and returns all the Salesmen in comma separated string. CREATE Function [dbo].[xxx_GetSlsmanFn] (@CO CoNumType) RETURNS nvarchar(max) As BEGIN declare @tmp varchar(100) SET @tmp = '' Select @tmp = @tmp + A.slsman+ ' (' +…
Hello, In Syteline V9 on-prem we have (or “used to have”) BarTender software, that communicates with the Label Printers. In Syteline, when users wanted to print labels, we use to insert data into a SQL Server Table, and BarTender was monitoring and reading data from this table. As soon as there is a new record in this…
When adding a customer through code like this: IDOUpdateItem uItem = null; UpdateCollectionRequestData request = new UpdateCollectionRequestData("SLCustomers"); uItem = new IDOUpdateItem(UpdateAction.Insert); uItem.SetOrAdd("CustNum", NewCustNum, true); uItem.SetOrAdd("CustSeq", 0, true); uItem.SetOrAdd("Name", Name,…
Hi, I am trying to setup Standard operations buttons (New, Save, Delete, etc.) on customized Toolbar in FormOnly mode. According to this: https://docs.infor.com/mg/2024.x/en-us/mongooseolh/default.html?helpcontent=mgwsolh_mg/lsm1454148016896.html it should be done in Standard operations Collection But where I can find it,…
I'm trying to create customer orders using REST web service calls to SLCos and SLCoitems IDOs. I can get both populated and return values indicate success. I also see the resulting data for both the header and the lines afterwards. The problem is that the insert of the SLCoitems records didn't update the header total…
It looks like you're new here. Sign in or register to get started.