CRM On Demand - Web Services Integration (MOSC)

MOSC Banner

Can you delete Notes from the Message Center via Web Services?

I need to delete Notes via Web Services.  I have created an appliication that queries the Note wsdl object for created date and it does not return any records. 

The code looks like:

Dim notePrxy As New Note.Note
notePrxy.Url = strSessionURL
Dim qryOut As Note.NoteWS_NoteQueryPage_Output
Dim qryIn As New Note.NoteWS_NoteQueryPage_Input

qryIn.PageSize = 100

qryIn.ListOfNote = New Note.Note1(1) {}
qryIn.ListOfNote(0) = New Note.Note1
qryIn.ListOfNote(0).CreatedDate = "<='" & Format(dtEndDeleteDate, "Short Date") & "'"

bEnd=True

lngStartRowNum=0 

Do While bEnd

qryIn.StartRowNum = lngStartRowNum

qryOut = notePrxy.NoteQueryPage(qryIn)

If qryOut.ListOfNote.Length > 0 Then

For intIndex = 0 To qryOut.ListOfNote.Length - 1

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center