also die Datei ist auf dem Server.black_adept hat geschrieben:Wo liegt die Datei?
Auf dem Frontend ( über GUI erreichbar ) oder auf dem Backend ( vom applicationserver aus erreichbar )
Code: Alles auswählen.
call 'SYSTEM' id '' ...
Asaph hat geschrieben:Hi,
in command steht der BS-Befehl.Code: Alles auswählen.
CALL 'SYSTEM' ID 'COMMAND' FIELD command ID 'TAB' FIELD tabl-*sys*.
Gruß Andreas
Code: Alles auswählen.
data: command(100) type c.
data: begin of rtab occurs 100,
line(100) type c,
end of rtab.
command = 'mv'.
CALL 'SYSTEM' ID 'COMMAND' FIELD command
ID 'TAB' FIELD rtab-*sys*.
Die F1-Hilfe hast Du ja vielleicht gelesen.Anonymous hat geschrieben:Asaph hat geschrieben:Hi,
in command steht der BS-Befehl.Code: Alles auswählen.
CALL 'SYSTEM' ID 'COMMAND' FIELD command ID 'TAB' FIELD tabl-*sys*.
Gruß Andreas
hi Andreas so weit war ich auch schon!
ich meine wenn ich in command jetzt 'mv' für umbenennen (glaub ich) eingebe, dann weiß ich trotzdem nicht genau was da abläuft.
Dieses tabl-*sys* ist ja ne interne Tab. aber ich bestimme ja niergenswo die 2 (neuer und alter) Dateipfade.
So passiert ja auch nichts. Bestimmt muss man anstatt ID 'TAB' was anderes benutzen, weiß nicht mehr weiter.Code: Alles auswählen.
data: command(100) type c. data: begin of rtab occurs 100, line(100) type c, end of rtab. command = 'mv'. CALL 'SYSTEM' ID 'COMMAND' FIELD command ID 'TAB' FIELD rtab-*sys*.
Gruß Dima