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?
Hi, please how can I do delete record from other collection? I know how to update, insert or load other collection via UpdateCollectionRequestData and LoadCollectionRequestData. but I can't find any delete class here. Thanks.
We have a Mongoose Report with a Report Option output of Comma Separated Values. The output contains a header row of the property names. Is there a way to suppress this so we just see the data? I've tried adding a header row and hiding. I've tried no header row. Thank you, Tim
It looks like you're new here. Sign in or register to get started.