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+ ' (' +…
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…
The following describes the new release highlights for users of Infor OS Mongoose: * Utilize Soft Fonts in Themes: The font family theme editor has been revised to now allow for soft web fonts. User can now import web fonts and combine then with installed fonts as well. The Font Family editor within themes has been revised…
I suppose this is a bit of a rant, however with the new "Combined Toolbar" in the April 2024.4 Feature Release I genuinely don't see how "creating flexibility for the user has occurred" has been achieved with this Mongoose "enhancement"? All I have so far is criticism from users, with key points being... - Now the open…
Is it possible to set the height of a row in the grid component?
It looks like you're new here. Sign in or register to get started.