Discussions
Certification Completion Dates
We have a function to update certification module completion dates/earned units through SQL. Is there any way to update the ActionManifest when we do this?
REST API flowdown
Hello,
In which table is stored event function´s notes.
I´ve realized that adding notes for an order line, such as "CERTEXAM" using REST API , it is stored in Order_Line table but NOT for events and functions.
Setting/Displaying html editor field
We need an html editor field for staff input. I first created the field as part of a panel source but can't then edit it within Business Objects to set the field to html editor. I can use the panel as the source for a BO so I can set the field to html editor but how do I then create a page based on the BO so that staff can add records? I can't get the BO to show up as an available source at Panels and I'm not finding a content type to display a BO on a page. Help is appreciated!
update trans.transaction_date and trans.entered_by
I'm so new with Imis and .net
I have this app that reads data from a file then update imis records from the data in that file.
I have a code that update the trans table. Part of the code is below
ComboOrderData comboOrderData = new ComboOrderData
{
Currency = new CurrencyData { CurrencyCode = "USD" },
Order = new OrderData
{
Currency = new CurrencyData("USD"),
LineTotal = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
Lines = orderLineDataCollection,
OrderDate = OrderDate = DateTime.Now,
OrderState = OrderStateData.Entered,
OrderTotal = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
SoldToCustomerParty = new CustomerPartyData
{
PartyId = donation.DonorId
},
TotalBasePrice = new MonetaryAmountData(donation.Amount, new CurrencyData("USD")),
SourceCode = donation.SourceCode
},
Payments = remittanceDataCollection
};
AdditionalCharges through REST API
I am trying to add the AdditionalCharges object to our payload that is sent to IMIS' REST API to add items to cart. The way it is currently formatted uses a TaxAuthority to try to calculate tax automatically but it is not displaying any extra values or calculations on the cart screen. The payload for AdditionalCharges is as follows:
Cancelled Event Still Showing
We have created some events within iMIS and since then we have cancelled these events, however, they are still showing on our website.
Order Import Calls
What API calls would we need to make in 20.3 in order to replicate what happens in 20.2 when using the order import tool in iMIS desktop? We're guessing some calls to make an order, make a payment, etc, but we're not entirely sure of everything happening in the background.
Possible to update Item.ItemCode in the API?
Hi - pretty sure this isn't possible, but wanted to see if there's a workaround.
How to modify the drop down options in the Content_HTML editor
There are 2 dropdown options in the advanced editor, "Paragraph Style" and "Apply CSS Class" that I would like to update. If we add custom CSS classes to the site (which everyone does) we want to be able to see them in one of those dropdowns (preferably the class one) so a non-technical user can modify the HTML input. The Paragraph Style one consists of H1-6 tags and a couple of basic HTML tags, the Apply CSS Class one is essentially useless, it's 100's of classes no one uses. How can we better use these options better? Thanks.