ich suche in einem aktuellen Projekt Batch-Input-Mappen - das einzige Selektionskriterium ist, dass im Mappeninhalt (!) ein bestimmtes Feld mit einem bestimmten Wert gefüllt ist, ein anderes Kriterium gibt es nicht. Ein
- Code: Alles auswählen
SELECT QID VARDATA FROM APQD INTO TABLE LT_APQD
WHERE VARDATA LIKE '%FELDNAME%'.
läuft aber mit Dump gegen die Wand mit
In an SAP Open SQL statement, a "long field" was used in a way that is
not supported by all database systems. This use is therefore not
permitted.
Long fields can only appear on the left side of an assignment in a SET
clause or in a SELECT list without DISTINCT.
"Long fields" are all fields created in the ABAP Data Dictionary with
one of the data types STRING, RAWSTRING, LCHR, or LRAW.
und ist ohnehin schon extrem inperformant (wie man sich vorstellen kann).
Was also tun???


