Duplicate RITM records when created via a script within a Scheduled JobIssue The user experienced an issue where two RITMs were created from a single scheduled job when only one RITM was expected to be created.ReleaseJakarta Patch 6aCauseThe user had multiple scheduled jobs running at the same time.ResolutionIt was noted that the user had multiple scheduled jobs running at 2:00 am which were assigned to the same user ("Bucky Barnes"). The script being utilized within the job was creating a cart for the user, adding the item into the cart, and then ordering the item.In several scenarios, with regard to the parent Requests, the system seemed to be confused and added both items to one cart creating one Request, and then another cart is created for the other item, and both items are again added to the cart.To prohibit such behavior from happening, it was recommended that the user specify a unique cart in the script being utilized. For example:var cart = new sn_sc.CartJS(gs.generateGUID());