Autor Thema: bestimmte Emails in Lotus Script localisieren  (Gelesen 1841 mal)

Offline MatzeW

  • Frischling
  • *
  • Beiträge: 45
bestimmte Emails in Lotus Script localisieren
« am: 18.01.08 - 14:33:55 »
Wie kann ich eine Email localisieren die alle im Thema: "Hallo"
enthalten???


Offline m3

  • Freund des Hauses!
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 8.102
  • Geschlecht: Männlich
  • Non ex transverso sed deorsum!
    • leyrers online pamphlet
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #1 am: 18.01.08 - 14:37:20 »
Volltextsuche?
[Subject]="Hallo"
HTH
m³ aka. Martin -- leyrers online pamphlet | LEYON - All things Lotus (IBM Collaborations Solutions)

All programs evolve until they can send email.
Except Microsoft Exchange.
    - Memorable Quotes from Alt.Sysadmin.Recovery

"Lotus Notes ist wie ein Badezimmer, geht ohne Kacheln, aber nicht so gut." -- Peter Klett

"If there isn't at least a handful of solutions for any given problem, it isn't IBM"™ - @notessensai

Offline MatzeW

  • Frischling
  • *
  • Beiträge: 45
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #2 am: 18.01.08 - 14:48:06 »
wie heist der befehl für die volltext suche im lotus script. Finde ihn in der Hilfe nicht.

Offline m3

  • Freund des Hauses!
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 8.102
  • Geschlecht: Männlich
  • Non ex transverso sed deorsum!
    • leyrers online pamphlet
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #3 am: 18.01.08 - 14:51:29 »
FTSearch
HTH
m³ aka. Martin -- leyrers online pamphlet | LEYON - All things Lotus (IBM Collaborations Solutions)

All programs evolve until they can send email.
Except Microsoft Exchange.
    - Memorable Quotes from Alt.Sysadmin.Recovery

"Lotus Notes ist wie ein Badezimmer, geht ohne Kacheln, aber nicht so gut." -- Peter Klett

"If there isn't at least a handful of solutions for any given problem, it isn't IBM"™ - @notessensai

Offline MatzeW

  • Frischling
  • *
  • Beiträge: 45
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #4 am: 18.01.08 - 15:08:28 »
Code
Sub Initialize
	
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim collectionA As NotesDocumentCollection
	Dim docA As NotesDocument
	
	
	Set db = session.CurrentDatabase
	
	Set CollectionA= db.FTSearch("Hallo",10)
	Set docA = collectionA.GetFirstDocument()
	
	If docA Is Nothing Then
		Messagebox("Document not found")
	Else
		Delete.docA
	End If
	
	
End Sub


Er findet aber die Mail nicht.

Offline MatzeW

  • Frischling
  • *
  • Beiträge: 45
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #5 am: 18.01.08 - 15:22:31 »
Ok Fehler wurde behebt

Hatte auch keine Mail namens Hallo

Danke für die schnelle hilfe

Code
Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim collectionA As NotesDocumentCollection
	Dim docA As NotesDocument
	
	
	Set db = session.CurrentDatabase
	
	Set CollectionA= db.FTSearch("Hallo",10)
	Set docA = collectionA.GetFirstDocument()
	
	If docA Is Nothing Then
		Messagebox("Document not found")
	Else
		call docA.remove(true)
	End If

Offline MatzeW

  • Frischling
  • *
  • Beiträge: 45
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #6 am: 18.01.08 - 15:27:56 »
Wie lösche ich die Email??
bei remove macht er nichts

Offline m3

  • Freund des Hauses!
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 8.102
  • Geschlecht: Männlich
  • Non ex transverso sed deorsum!
    • leyrers online pamphlet
Re: bestimmte Emails in Lotus Script localisieren
« Antwort #7 am: 18.01.08 - 15:37:50 »
1) Willst Du eine Fehlerbehandlung in Dein Script einbauen.
2) NotesDocument-Remove() liefert auch einen Wert zurück, den könnte man sich mal ansehen.
3) Da es sich bei der Datenbank vermutlich um eine MailDB handelt, willst Du Dir in der Designer-Hilfe mal den Unterschied zwischen Remove und RemovePermanently ansehen.
4) Das hier ist nicht IRC.
HTH
m³ aka. Martin -- leyrers online pamphlet | LEYON - All things Lotus (IBM Collaborations Solutions)

All programs evolve until they can send email.
Except Microsoft Exchange.
    - Memorable Quotes from Alt.Sysadmin.Recovery

"Lotus Notes ist wie ein Badezimmer, geht ohne Kacheln, aber nicht so gut." -- Peter Klett

"If there isn't at least a handful of solutions for any given problem, it isn't IBM"™ - @notessensai

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz