Ich habe ein SmartIcon, das mir UNID und Note ID des jeweils aktuellen Dokumentes anzeigt.
aktUNID:=@Text(@DocumentUniqueID);
aktNoteID:=@Text(@NoteID);
@Prompt([Ok];"UNID + NoteID anzeigen"; "UNID: "+ aktUNID + @Char(10) + "Note ID: "+ aktNoteID)
Viele Grüße
fritandr
Ich habe ein SmartIcon, das mir UNID und Note ID des jeweils aktuellen Dokumentes anzeigt.
Vielleicht noch praktischer als Smarticon:
_UNID:=@Text(@DocumentUniqueID);
_NoteID:=@Right( @Text(@NoteID); 8);
@If(Form = "";
@Return("");
@Do(
@Command([MailComposeMemo]);
@Command([EditGotoField]; "Body");
@Command([EditInsertText]; "UNID vom ausgewählten Dokument:");
@Command([EditInsertText]; @NewLine);
@Command([EditInsertText]; _UNID);
@Command([EditInsertText]; @NewLine);
@Command([EditInsertText]; @NewLine);
@Command([EditInsertText]; "NoteID vom ausgewählten Dokument:");
@Command([EditInsertText]; @NewLine);
@Command([EditInsertText]; _NoteID)
)
)
Damit wird ein neues Mail erzeugt und die ID's ins Body-Feld kopiert. Damit kann man sich diese dann z.B. ins Clipboard kopieren.....