Hello, I have a notes base which was made and used with notes R5. But now, the server & the clients are R6.5 and i have a formula action that doesn’t work well!
The formula is this one:
@If( @Prompt( [YesNo] ; “Relance”; “Êtes-vous sûr de vouloir relancer ce support?” ) ; “” ; @Return( “” ) ) ;
iTexte := iTexte ;
iNbRelance := FS_NbRelanceAssigne ;
@If( iNbRelance = “” ; @Set( “iTexte” ; “Bonjour,” + @Char(0) + @Char(0) + “La demande ci-dessous est en traitement depuis " + iNbJour + " jours. Merci de me dire où se trouve la difficulté ne permettant pas sa clôture.” + @Char(0) + @Char(0) + “Cordialement.” + @Char(0) +“Support HelpDesk” ) ;@Return( “” ) ) ;
@Command( [EditMakeDocLink] ) ;
@Command( [MailForward] ) ;
@If( iNbRelance = “” ;
@Do( @Command( [EditInsertText] ; "alex@blabla.com" ) ;
@Command( [EditGotoField] ; "Subject" ) ;
@Command( [EditInsertText] ; "Première relance d'une demande de support assignée." ) ;
@Command( [EditGotoField] ; "Body" ) ;
@Command( [EditInsertText] ; iTexte ) ) ;
@Command( [EditPaste] ) ) ;
@Command( [ViewRefreshFields] );
@PostedCommand( [MailSend] ) ;
@PostedCommand( [FileSave] ) ;
@PostedCommand( [FileCloseWindow] )
The formula is in a view and makes a mail with the selected document.
In R5, a memo was created and sent and close automaticaly but now, the mail is created and i have a prompt that asks me if i want to send the mail or not!!!
Do I have to modify the formula?
Thanks!