• contactSales
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 0
    Replies
Hi,
I create a campaign , Add / Append contacts to this campaign on a daily basis. 
I have a scheduler application which will return only the appended records (not all) for that Campaign
How can this be done?
 
Is the "Member First Associated Date" Column (for that contact appended) useful ??
If so how I can access it in my code ?
 
I'm using VB.Net 2.0 with Enterprise.wsdl to access web service .
 
 
P.S. You display this column ("Member First Associated Date")  in your "Campaign Contacts" Reports section.
 
 
Regards
Hello,
I create a campaign , append contacts to this campaign on a daily basis. Hence, I need to access and display the "Member First Associated Date" Column (for that contact appended) in code
 
You display this column ("Member First Associated Date")  in your "Campaign Contacts" Reports section.
What object will I have to use to access the same via my code? I couldnt find it in CampaignMember object
 
I'm using VB.Net 2.0 with Enterprise.wsdl to access web service .
 
Regards

Hi,

  I am using Enterprise WSDL with VB.Net 2.0. I Want to return ADO.NET datatabe / dataset  based on the below code:-

 

Dim qr As QueryResult = Nothing

qr = binding.query("select id, Website, Name from Account")

If qr.size > 0 Then

Dim account As Account = CType(qr.records(0), Account)

Dim Id As String = account.Id

Dim Website As String = account.Website

 End If

  • So, I would like to return all the rows of account QueryResult  as a datatable ? What would be the best way? 
  • Do you provide any CreateDataTable methods in the webservice ?

Regards,