You can import multiple images and optionally additional information (e.g. magnification of microscope images) in one parameter, requiring only a new evaluation and two parameters.
To ensure that the evaluation can correctly assign images, there are two options:
Use Sample Number in File Name
SampleNumber;ParameterShort;Column.jpgAssign Unique Image ID
Example code for the evaluation (SQL)
Images are initially imported without assignment in a file import interface and subsequently assigned via this evaluation using the file name. This evaluation must be connected to a measured value import and should run at regular intervals (e.g. every 30 minutes).
The files must be given a fixed name, here:
Sample number;Parameter short;Parameter column
Replace XXX with id of the file import interface,
Adjust interval to the frequency of the evaluation.
SELECT
SUBSTRING_INDEX(imports.file_name,';',1)as 'Probe',
SUBSTRING_INDEX(SUBSTRING_INDEX(imports.file_name,';',2),';',-1)as 'Parameter',
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '0%', imports.upload_id, '') as Spalte0,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '1%', imports.upload_id, '') AS Spalte1,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '2%', imports.upload_id, '') AS Spalte2,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '3%', imports.upload_id, '') AS Spalte3,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '4%', imports.upload_id, '') AS Spalte4,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '5%', imports.upload_id, '') AS Spalte5,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '6%', imports.upload_id, '') AS Spalte6,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '7%', imports.upload_id, '') AS Spalte7,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '8%', imports.upload_id, '') AS Spalte8,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '9%', imports.upload_id, '') AS Spalte9
from imports
where imports.importinterface_id = XXX
and imports.date > UNIX_TIMESTAMP(NOW() - INTERVAL 35 MINUTE)
Upload Image:
Upload the image as a file via the File Import Interface.
Optional: Import Measurement Values:
Import text-based information (e.g., microscope data) along with the Image ID and sample number.
Execute Evaluation:
uploads.id into the parameter.Info: Enterprise customers can schedule import interfaces, so manual execution is not required.
Last change: 20.10.2025
Allgemeines
AI Funktionen
Mitarbeiter
Berichte
Berichtstabellen Editor
Schnittstellen
Einführungsphase
Auswertungen
Aufträge
Proben
Probenvorlage
Kunden
Kundenzone (optional)
Anlagen
Angebote
Rechnungen
Parameter
Rechnen mit Parametern
Webservice
Transformationscode
Prüfpläne / Grenzwerte / Spezifikationen
Dokumentenlenkung
Material
Fragen und Antworten
Prüfmittel
Mitarbeiterschulungen
8D-Report
Sonstiges
PDF-Vorlagen
Lieferantenbewertung
Dateiverwaltung
Prozesse