ATF Test step "FAILURE: Validations failed. Failed to Order Item" while submitting order guidesIssue ATF test fails while submitting order guides with the error message "FAILURE: Validations failed. Failed to Order Item", even though all the mandatory fields in the form are taken care of.CauseThis issue is due to the onSubmit Client Script 'check attachments', which checks if attachments are present by getting the widget scope and accessing the `attachments` variable. This works fine other cases, but in the ATF scenario, as the $scope.attachments variable is not updated even when attachments are added via the `Add attachments to form (SP)` step. So the submit script is returning false and causes the ATF error.ResolutionYou will have to use client side glide record on sys_attachment for ATF. If the attachment check can be skipped for ATF, use the code structure below in /sys_ui_script.do?sys_id=3ed0e952dbdc54509d9a6693ca961931 if(Window.ATF) {//do not check attachment section} else {//check section}