Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

FDM Mail Err: The pickup directory path is required and was not specified.

LarryRMar 4 2011 — edited Mar 4 2011
FDM 9.3.1 on Microsoft(R) Windows(R) Server 2003, Enterprise Edition, Version 5.2.3790 Service Pack 2 Build 3790

I'm getting the following error when trying to send an e-mail. I have verified that all of the parameters are valid & passed correctly to the Sub. Line 343 is the .Send command.

ERROR:
Code......................................... -2147220958
Description.................................. The pickup directory path is required and was not specified.

At Line: 343
Procedure.................................... clsEventHandler.PobjAPI_ImportAction
Component.................................... upsWObjEventHandlerDM
Version...................................... 931
Thread....................................... 8704


Sub SendMail (strErr, strFrom, strTo, strSMTPSvr)

Set objConfig = CreateObject("CDO.Configuration")

With objConfig.Fields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2' 1=use local machine, 2=use over network
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPSvr
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")= 25
.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
.Update
End With

Set objMsg = CreateObject("CDO.Message")
Set objMsg.Configuration = objConfig

With objMsg
.To = strTo
.From = strFrom
.Subject = "Products Missing From Custom2 Mapping Table"
.TextBody = strErr
.Send
End With

Set objMsg = Nothing
Set objConfig = Nothing

End Sub
This post has been answered by TonyScalese on Mar 4 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 1 2011
Added on Mar 4 2011
5 comments
1,492 views