Hi Michael,
hier der Code für ein Smarticon um belibige Dokumente in dein DL zu übernehmen:
FromTmp:=@Name([Abbreviate];From);
SubjectTmp:=Subject;
QuelleTmp:=@DbTitle+" ("+@Name([Abbreviate];@DbName[1])+":"+@DbName[2]+")";
LinkTmp:="notes://"+@Name([CN];@DbName[1])+"/"+@ReplaceSubstring(@DbName[2];"\\";"/")+"/$DefaultView/"+@Text(@DocumentUniqueID);
@Command([EditCopy]);
REM {@Command([FileOpenDatabase];"":"HaPe's Library.nsf")};
@Command([Compose];"":"HaPe's Library.nsf";"Documentation");
@Command([EditGotoField];"Title");
@Command([EditInsertText];SubjectTmp+@If(FromTmp="";"";" [From:"+@Name([Abbreviate];From)+"]"));
@Command([EditGotoField];"Source");
@Command([EditInsertText];QuelleTmp);
@Command([EditGotoField];"Content");
@Command([EditInsertText];"Link: "+LinkTmp+@NewLine);
@Command([EditPaste]);
@Command([EditGotoField];"Category")
Es muss nur im [Compose] Command der Pfad zu DB angepasst werden.
MFG
HaPe
Hi Hape,
prima, danke :D
Ich hab das ganze noch ein wenig kommentiert etc. und werde es bei der nächsten Aktualisierung mit in die DB aufnehmen ins "Using this Database" - Dokument.
REM {===========================================================================};
REM {Purpose:};
REM {Copies the current document into a new YA doc library - document.};
REM {You can use this formula in a smarticon.};
REM {-----------------------------------------------------------------------------------------------------------------------------------};
REM {Date Author Changes};
REM {14. Jan 2004 Hanspeter Jochmann New};
REM {14. Jan 2004 Michael Woehrer Minor changes"};
REM {===========================================================================};
REM {-------------------------------------- SETUP Start --------------------------------------};
REM {Enter here the server where the YA doc library is located. Leave it empty if the db is local.};
_TargetServer := "";
REM {Enter here the full path, e.g. 'doc/yadl.nsf' };
_TargetPath := "doc/yadl.nsf";
REM {-------------------------------------- SETUP End --------------------------------------};
REM {Values of current document};
_SourceFrom := @Name([Abbreviate];From); REM {Get the content of the field From -- usually from an email};
_SourceSubject := Subject; REM {Get the content of the Subject -- usually from an email};
_SourceSource:= @DbTitle+ " (" + @Name([Abbreviate];@DbName[1]) + ":" + @DbName[2] + ")"; REM {Build the string for the target field 'Source' };
_SourceLink := "notes://" + @Name([CN];@DbName[1]) + "/" + @ReplaceSubstring(@DbName[2];"\\";"/") + "/$DefaultView/" + @Text(@DocumentUniqueID);
REM {Copies the current document content};
@Command([EditCopy]);
REM {Create new YA Doc Lib - document and insert the values};
@Command([Compose]; _TargetServer : _TargetPath; "Documentation");
@Command([EditGotoField]; "Title");
@Command([EditInsertText]; _SourceSubject + @If(_SourceFrom = "";"";" [From:" + _SourceFrom + "]") );
@Command([EditGotoField];"Source");
@Command([EditInsertText];_SourceSource);
@Command([EditGotoField];"Content");
@Command([EditInsertText];"Link: " + _SourceLink + @NewLine);
@Command([EditPaste]);
@Command([EditGotoField];"Category")
Als nächstes kommt noch eine Archivierungsfunktionalität in die DB, da ich das brauche ;)
Ciao,
Michael