When event management subflow is ran we get the error: "value of field record is not a GlideRecord"Issue subflow (flow designer) are being called without their inputs, and are failing later on in the flow with "value of field record is not a GlideRecord"Causeif you review the subflow context we can see that it has no inputssubflow is likely customsubflows are not trigger via CRUD, but scriptso the inputs names should already be definedResolution- from the script include "EvtMgmtAlertManagementProcess" make sure the inputs of the subflow match those defined in method "callActivateSubflowAPI" var inputs = { "ah_alertrulename": ruleName, "ah_alertruleid": ruleSysId, "ah_alertgr": alertGR, "ah_executionid": executionGR.getUniqueValue(), "ah_username": gs.getUserName(), "ah_userdisplayname": gs.getUserDisplayName() };