Autor Thema: Tochterdoc ID als Link im Parentdoc  (Gelesen 1973 mal)

Offline MrMagoo

  • Senior Mitglied
  • ****
  • Beiträge: 359
  • Geschlecht: Männlich
  • AAAhhh
Tochterdoc ID als Link im Parentdoc
« am: 26.05.03 - 10:08:02 »
Hallo,

ich schreib aus einem Tochterdokument heraus die Dokument ID in das Mutterdokument, funktioniert prima. Wie bekomme ich es aber hin, das die Dokument ID des Tochterdokuments, die jetzt ja in einem Feld im Mutterdokument stehlt, als Link auf das Tochterdokument behandelt?

Danke

Offline Performance

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 1.096
  • Geschlecht: Männlich
  • I love YaBB 1G - SP1!
Re:Tochterdoc ID als Link im Parentdoc
« Antwort #1 am: 26.05.03 - 10:28:37 »
z.B
plink ist ein computed rtf Feld - hier schreibst du den link rein

im Queryopen des Doks - wird bei jedem öffnen berechnet:
If doc.HasItem( "plink" ) Then   
   Call doc.RemoveItem( "plink" )
End If
      
Set rtitem = doc.CreateRichTextItem( "plink" )
Set docChild = ..... deine initialisierung
         
Call rtitem.AppendDocLink( docChild , " <-- der Link zur Tochter")
Call rtitem.AddNewLine( 1 )


cu

Wir können alles außer hochdeutsch !

Alles ist möglich, es ist nur eine Frage der Zeit oder des Geldes!

Offline wflamme

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 690
  • Geschlecht: Männlich
  • Irgendwie geht das schon...
    • wflamme
Re:Tochterdoc ID als Link im Parentdoc
« Antwort #2 am: 26.05.03 - 17:43:43 »
Hier noch ein Oldtimer aus meiner KB:

FILE:    Linking a Parent to a Response
UPDATED: June 1996
AUTHOR:  Eric Koeler
         mailto:ekoeler@panix.com
         http://www.panix.com/~ekoeler
NOTE:    Copyright (C) 1997 by Eric Koeler, this file is protected by the
         GNU General Public License
----------------------------------------------------------------------------

Since every response document contains a field called $ref with its parent's Doc ID in it, you can set up a hidden view of response documents (No Response Hierarchy) with @Text($ref) as the first sorted column's formula - we'll call this view (ResponseLookupView) and this first sorted column Key.  
We can use this $ref field as a common unique lookup key.  Create a computed text field in the response document, call it myID, with @DocumentUniqueID as the formula.  Now create a computed text or a computed for display field in the parent document, we'll call it respLink, with the following formula:

     @DbLookup("";"";"(ResponseLookupView)";
     @Text(@DocumentUniqueID);"myID")

This respLink field will yield a doclink to the response document.
Grüße,
Wolfgang

"I love deadlines. I love the whooshing sound they make as they pass by..."
DOUGLAS ADAMS

wflamme@mainz-online.de
http://www.sns1.de/partner/flamme/wflamme.nsf

Offline MrMagoo

  • Senior Mitglied
  • ****
  • Beiträge: 359
  • Geschlecht: Männlich
  • AAAhhh
Re:Tochterdoc ID als Link im Parentdoc
« Antwort #3 am: 27.05.03 - 09:44:23 »
Hallo,
die Formel von WFlamme geht, zeigt die ID allerdings als String und nicht als Link an??
Gruß

Offline doliman

  • Senior Mitglied
  • ****
  • Beiträge: 332
  • Geschlecht: Männlich
    • www.doleschel.de
Re:Tochterdoc ID als Link im Parentdoc
« Antwort #4 am: 27.05.03 - 10:29:35 »
Hi,

wer's braucht:

mit zwei Varianten:
1. mit der Ansicht vom Beitrag oben oder
2. mit set dc = doc.responses

Dim session As New NotesSession
   Dim db As NotesDatabase
   Dim view As NotesView
   Dim dc As notesdocumentcollection
   Dim doc As notesdocument
   Dim rtitem As NotesRichTextItem
   Dim docChild As notesdocument
   
   Set doc = source.document
   Set db = session.currentdatabase
   Set view = db.GetView( "(ResponseLookupView)" )
   
   If Not doc Is Nothing Then
      If doc.HasItem( "unbennant" ) Then  
         Call doc.RemoveItem( "unbennant" )
      End If
      
      Set rtitem = doc.CreateRichTextItem( "unbennant" )
      Set rtitem = New NotesRichTextItem( doc, "unbenannt" )
      
      Set dc = doc.responses
      
      'Set dc = view.getalldocumentsbykey(doc.universalid)
      Set docChild = dc.GetFirstDocument
      While Not ( docChild Is Nothing )
         Call rtitem.AppendDocLink( docChild, docChild.universalid)
         Call rtitem.AddNewLine( 1 )
         Set docChild = dc.GetNextDocument( docChild )
      Wend
      
   End If
Grüßle
                           _///_
                          (o~o)
-------------oOOO--(_)--OOOo-------------
Frank Doleschel

----------------------
Ein Berufsleben ohne Notes ist zwar möglich aber die Alternativen sind erschreckend ;-)

Offline wflamme

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 690
  • Geschlecht: Männlich
  • Irgendwie geht das schon...
    • wflamme
Re:Tochterdoc ID als Link im Parentdoc
« Antwort #5 am: 27.05.03 - 11:11:49 »
Hallo,
die Formel von WFlamme geht, zeigt die ID allerdings als String und nicht als Link an??
Gruß

Laß den @Text doch mal weg... ich glaube, das ist lt. Designerhilfe der Trick. Sorry, manche Sachen merke ich mir einfach nicht... wenn man viel mit Klassen programmiert, versucht man ohnehin zu vermeiden, daß zuviel Code außerhalb der Klassen steht, weil der dann außer (zentraler) 'Kontrolle' ist...
Grüße,
Wolfgang

"I love deadlines. I love the whooshing sound they make as they pass by..."
DOUGLAS ADAMS

wflamme@mainz-online.de
http://www.sns1.de/partner/flamme/wflamme.nsf

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz