In COBOL, you can MOVE an alphanumeric field to a numeric edited field only if the sending field contains an unsigned integer. This is because the MOVE verb attempts to convert and transfer data, but will fail if the alphanumeric contains non-numeric characters or signs that don't match the edited format. Signed integers would require specific handling for the sign.