Questioning the DataCardSet members using Cloud Connector API program steps

Hello people,

I have a very simple question about cloud connector API. For not writing something in epic proportions, I've attached a screenshot of the issue, and a couple of issue I for its.

I hope that someone out there has an answer.

Thank you

-Philippe Mougin

Have you tried to build two programs, one with the default contact type, with the default value for the type of data card and tried to use two steps of the program?

We have customers using connectors of cloud against data card programs.  The joint program and step (contacts and data cards) may be the cause. Try it and let me know.

Aaron.

Tags: Marketers

Similar Questions

  • How was easy to use Cloud connector?

    I'm still a novice intermediate - I will try to use the cloud connector - if you have some experience and suggest you do anything for this either an easy process - I would appreciate it a lot? on

    One of the best things to do is to check here in Topliners. There is a lot of documentation on how to install and use different cloud connectors.

  • The Action status external cloud connector

    By writing my cloud connector, I came across a few inconsitencies dealing with the status of a Contact in a stage of program generator.

    1. when a contact is added to a stage and I click 'View the Contacts' in the program generator, the contact's status said "pending Action".  When I use my connector cloud to call ListMembersInStepByStatus, however, there is no contact of the AwaitingAction ExternalActionStatus.

    2. after 15 minutes, the program is evaluated for the first time and the status of the contact in the said program generator now "Action underway or planned".  Now when I call ListMembersInStep, he finds the contact in the AwaitingActionStatus.

    3. I use my connector cloud to call SetMemberStatus to set the status of the external action in full contact.  The status of the contact in the program generator still says "Current or planned Action" until the program is evaluated again contact moves this step.

    What is the desired behavior?  I think I should be able to get the contact in the State of AwaitingAction as soon as it is added to the stage and under 'View the Contacts' status would take into account the ExternalActionStatus.

    See also here:

    http://topliners.Eloqua.com/community/do_it/blog/2011/11/19/building-cloud-connectors-timing

  • Error in the updated row using multiple PO API update

    Hi all

    I want to update several lines of the PO for this I'm using the PO_CHANGE_API1_S.UPDATE_PO API.
    But some how, whenever I update IN. several lines am getting following error

    The document is locked by another user. Please try again later.

    I tried with DBMS_LOCK. Sleep (1), but sometimes work and sometimes it isn't.
    Could someone tell me how can I avoid this, is there another way to do this. Help, please

    Thanks in advance

    Ravi Raj.

    I'm not sure of the code you are using, but you can consult the following documentation for the code examples on the use of this API.

    How Po_change_api1_s.Update_po of the API works in 11.5.10? [335083.1 ID]
    How to use PO_CHANGE_API1_S.update_po to change three lines [1077455.1 ID]
    View demo - how to use the change IN API for updating of existing purchase orders [ID 1078842.1]

    Thank you
    Hussein

  • Running the command by using VI SDK API esxupdate

    Hi all

    I need to install a package on an ESX Server. Right now I use the command esxupdate with update on the esx console option, I want to do this remotely without SSHing into the machine. Is there some api in VI SDK for this or there is another VMware SDK/API I should be looking into?

    Thank you.

    vCLI uses the vSphere SDK for Perl... it's the Perl bindings/stubs to the vSphere API and/or VI API

    vSphere 4.x =

    VI = 3.x

    So yes, there are some methods that handle the updates/etc, look at the source code of vihostupdate which is just the Perl script and you'll see what methods are used.

    =========================================================================

    William Lam

    VMware vExpert 2009,2010

    VMware scripts and resources at: http://www.virtuallyghetto.com/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    VMware developer community

    If you find this information useful, please give points to "correct" or "useful".

  • Impossible to SetMemberStatus complete singles Cloud Connector

    We are trying to build a simple Cloud for Eloqua connector.  Our connector updates the Contact objects that flow into it with additional information.

    The logic is simple.  In a loop:

    1. ListMembersInStepByStatus through the cloud connector API (aka ExternalActionService.svc) to get the maximum of 1,000 members with status "AwaitingAction."
    2. Retrieve matching items of Contact via the API (aka Service.svc) normal data.
    3. Update Contacts via the normal data API.
    4. SetMemberStatus through the API of connector of Cloud to mark them as "Complete".

    To test our output connector, we tried using the time (in 9 Eloqua) builders program and (E10PartnerPlayground) campaigns to create super-simple workflows that just pump a few contacts in a cloud connector.

    We can successfully do steps 1-3.  However, our SetMemberStatus calls fail to change the status of a member to 'Complete' - everything "AwaitingAction."  We see this in both contexts program Builder and campaign.

    We waited hours for the changes to take effect, but no difference.

    Thanks in advance for any help.

    Python examples to help illustrate this issue:

    from foam import WSSE, customer

    def mkclient (wsdl, org, user, password):

    CLI = customer. Customer (WSDL)

    Security = WSSE. Security()

    Token = WSSE. UsernameToken ('% s\\ %s "% (org, user) password")

    Security.Tokens.Append (Token)

    CLI.set_options (wsse = Security)

    return of cli

    def main():

    # connect to eloqua API

    org, user, pw = open('/home/yang/.eloqua.auth').read().split)

    svc = mkclient ("https://secure.eloqua.com/API/1.2/Service.svc?wsdl', org, user, pw")

    ccs = mkclient ("https://secure.eloqua.com/api/1.2/ExternalActionService.svc?wsdl', org, user, pw")

    While True:

    # 1. the extraction of the queue of the cloud connector

    MS = ccs.service.ListMembersInStepByStatus (5013, 'AwaitingAction', 0, 50). Members

    Print "got members:'"

    print ms

    # 2. extract the matching contact entities; are not suitable to reproduce the problem

    # type_contact = svc.client.factory.create ('EntityType')

    # contact_type.ID = 0

    # type_contact. Name = "Contact".

    # type_contact. Type = 'Base '.

    # cs = svc.service.Retrieve (...)

    # 3. update of contacts in eloqua

    # ...

    # 4. Mark members as complete

    RES = ccs.service.SetMemberStatus (ms, 'Complete')

    Print "authorized members:'"

    print resources

    # in all our tests, this loop really only runs once

    breaking

    If __name__ == "__main__":

    main()

    The problem was that demand for SetMemberStatus was not correctly under construction.  We should have wrapped up the list of members in an ArrayOfMember element:

    NS = ccs.factory.create ('ArrayOfMember')

    NS. Member.extend (MS)

    RES = ccs.service.SetMemberStatus (ns, 'Complete')

    Foam too bad is not automatically catch this malformation.

  • PHP 5.3 cloud connector

    I am currently building a sign in application of Cloud based (prototype for now) for Eloqua in PHP 5.3.

    I was able to set a configuration page and see that the StepID, etc. have been properly transferred.

    And then as the next step, I wanted to get the list of Contacts of the current step in the program generator by using Web Services. That is to say. "ListMembersInStepByStatus" of https://secure.eloqua.com/api/1.2/ExternalActionService.svc?wsdl

    Try actually based on the blog post at: http://www.codeevolution.com.au/code/2011/03/build-an-eloqua-cloud-connector-in-php/

    Now, I am able to access the many other web services with PHP - using PHP 5.4 built-in SOAP extension or library NuSOAP.

    Unfortunately, I am never able to connect to any of the Services of the Eloqua Web from PHP. Could you help me with this?

    I also tried the SDK-PHP-Eloqua http://code.google.com/p/eloqua-php-sdk !

    When I tried on the example of: http://www.codeevolution.com.au/code/2011/03/build-an-eloqua-cloud-connector-in-php/ , I'm getting errors as shown in the attached HTML page.

    Unfortunately I can't spend any more without the ability to communicate with Web Services.

    If this can be of any assistance my investigation, I think it's one of these IIS - HTTP errors, because most of the time I'm interested in something like:

    HTTP/1.1 400 Bad Request

    Cache-Control: private

    Content-Type: text/html

    Server: Microsoft-IIS/7.5

    P3P: CP = "" IDC DSP COR DEVa TAIa OUR PHY ONL UNI COM NAV CNT STA BUS ","

    Date: Thu, July 28, 2011 14:52:53 GMT

    Connection: close

    Bad request

    Thank you

    Hello

    My name is Warren and I wrote the blog on PHP cloud connectors. One thing on which I'm not pointing was that I had to adjust the nusoap.php in NuSoap library as the encoding has been used always caused DEMAND INCORRECTE.

    To test your calls on the best program to use is soapUI. It will allow you to test XML calls to make sure that you have correctly configured your PHP. In the example below, I've added your xml in soap UI, adjusted to the encoding of what I have in my file of nusoap and it worked (see below).

    I have included my entire library of NuSoap here.

    http://www.codeevolution.com.au/sample/lib.zip

    Although I have only updated the nusoap.php file. I have also updated by blog to take account of what we discussed here.

    Good luck.

    Warren

  • Newly inserted row in Table not visible until scroll us - question of ease of use

    Hello

    JDeveloper 11.1.1.5

    I have a table in a page and an Add button which will add a new row in the table.
    I just add the line before the current line.
    After you have added the line, I put new line on the current line in the View object.

    When there are a number of lines in the table and we have a scroll bar on the table to display the rows preceding and following, the question of ease of use, I am facing.

    Steps to follow:
    -Select the first row in the table
    -Scroll downwards several times so that the first line is not visible in the table
    -Added a new line

    This will add the line before the first line, but the problem is we cannot see it as the selected active line and is not ready for data entry.
    Users need to scroll upwards or downwards to find where the row is inserted.

    Is there a way we can set the focus on a particular point on the new line in the table?
    Or is there a way that we can make the new line to shown during creation, regardless of the current visibility of the rows in the table?
    Or can we get handle for the current line or any component of the current line so that we can try to set the focus?

    I observed the same behavior in the ADF components demo
    http://jdevadf.Oracle.com/ADF-richclient-demo/faces/components/table/updateableTable.JSPX

    Thanks for any help
    Concerning
    Sameer

    >
    Or is there a way that we can make the new line to shown during creation, regardless of the current visibility of the rows in the table?
    >
    try to set the property DisplayRow of the selected table

  • Unable to accept the terms of use, which is needed to manage the security of the family

    Hello

    I have a new laptop with Windows 8, which I created two users - one for me and one for a child (Standard user - and Coachman on behalf of child) (Administrator). I created a real account for the child and filled out all the necessary information - my live account has been used for a few years, but I update personal information.

    When I try to manage parental controls from the Control Panel, I get an error message indicating that I should go to account.live.com to agree to terms of use. I can't find any place to accept the terms of use, or my account og the child account. I looked for a solution and found that many have had similar problems. One of the solutions that seeems to help was to connect to fss.live.com, but this page just redirects to a generic MS information page of security for the family.

    Any suggestions?

    Thanks for the quick response!

    I managed to find a solution, not an elegant solution, but it will keep your real account (parent1) to monitor your kids.

    1. create a new live account (parent2)
    2. create a new account admin on the PC using the new live account (parent2)
    3. connect to the computer with the admin account and create an account for child
    (using either an og existing live new account - don't forget to check the child...)
    4. you should now be able to manage via the parental control panel
    5. Add a new parent in parental control (your old existing live account - parent1)
    Some steps are probably not necessary, but I managed to get the "accept the terms of use" hampers by following these steps.
  • Questions of the ON24 cloud connector

    You have some questions, little that can actually be applicable and able to answer by people using connectors of cloud by other Webinar providers too...

    (1) by using the register cloud connector, I notice more often, he can send that ON24 data once a day. Anyone know what time of the day it does this?

    (2) associated with #1, what happens to people who register at the last minute? They are not if is going to be in the system at the time where the stats Webinar, won't be able to connect.  I remember when I saw a demo of ReadyTalk cloud connectors, they talked about this question and said they send a different email to these people, with a direct link to the webinar, without having them to connect.  Other people do it too, or is it better to maually run the connector cloud just before the start of the event, to push these people of last minute?

    (3) I'm not the admin of On24, so this question may be basic and I hope easy to answer - the landing page on On24 standard where the connection of people and you register has the form of ON24. Obviously, I don't want to replace this form with form Eloqua? Or so people otherways to go about this?

    Thank you

    Eytan

    Cloudfeeder really does not fit in your use case. It is used when someone wants to transfer those who are not registered channel Eloqua in the system.

    It seems that On24 CloudConnector registry has a single drop further down to the amount of time that should not be in step. We feel that deleted. For now, just leave it at once a day. He will speak in the regular time.

  • How to use String Manipulation Cloud Connector to shoot the first five characters of the field? (Expression syntax experience)

    The question

    I need to segment data on a large number of Postal Codes, usually about 400 to 600 at the same time. It is that our postcode field includes the last four digits in some cases, for example 92101-1957. When you use the Contact filter 'Value In A' I'm not able to do this 92101 *, 92102 * and of course I can't account for any combination of four numbers that might appear.

    The Solution - in theory

    The solution I came up with that is to create a new field of Contact in Eloqua 'Segmentation Zip Code' copy of the 5 digits of the postal Code field and execute segmentation using this new field.

    The Solution - Cloud Connector

    String Manipulation cloud connector must be able to perform this action - copy on the first 5 digits of the zip in the zip segment field field.

    When I'm stuck - via cloud connector

    I can't figure out how to write the syntax for expressions to search and replace. I have read the instructions of syntax and am still unable to establish exactly what I enter in the "regex to find: ' and the ' Regular Expressions to replace:

    Does anyone have expierence with an Expression syntax that might help train these expressions?

    Any ideas on other ways to address the problem would be too great.

    Thank you

    Louis

    Hi Louis,.

    Okay, I think I might know how to do it now but don't have access to Eloqua for the moment, so I'm kind of make this Store, but try below.

    Use the regex below in the "Regex for find" and let the "Regex to replace white": "."

    -(.*)$

    This will be after the hyphen and the replacement string will be empty, so I hope you should be left with just the first five digits that you can map to a new field.

    Let me know how you get on, I might be able to test myself so tomorrow so I'll see if I can make it work.

    Chris

  • Progressive profiling on website of the company using the cloud connector

    We would like to start building a progressive profiling on our companies website and I wanted to see if its possible for us to use a form created in Eloqua using progressive profiling cloud connector to do this? I'm not sure if this feature works when you put a form on the Web site of our society rather than using a landing in Eloqua page.

    Did anyone else with progressive profiling their companies outside Eloqua Web site? If so, how it was handled?

    Thanks in advance.

    Hi Robert,.

    This can be done - you can also find these son deserves to be read for some ideas:

    http://topliners.Eloqua.com/thread/2842

    More advanced:

    http://topliners.Eloqua.com/community/do_it/blog/2011/08/03/progress-Pro--JavaScript-for-advanced-progressive-profiling-in-Eloqua-10

  • Is someone using the data cloud connector Melissa with Eloqua

    We are in the middle of our integration and try to make calls from Melissa Data of our Eloqua forms.  Anyone out there who did or can provide an overview?

    I understand that if someone used this service in real time - if a person completes a form and between a postal code invalid - in real-time we ping Melissa Data to know it is a zip code not valid, and the person filling out the form receives a message that is not valid the data.  Our territory lead routing depends on ensuring that we correct geographic information if we want the data validated in real time.  Thank you!

    Post edited by: Maia Tihista

    Maia,

    I could be wrong, but I'm not aware of a Melissa data cloud connector which was built immediately.  From what I know, I think that David York (on this thread) may be closest on that.  There are other people interested too, can't wait to see it built.

    Steve

  • Hi, now I have pay the subscription free creative cloud, I want to go to the package of the Danish student for 121 kron. My question is if I choose the student kit, how to I can other members.

    I pay 119 free subscription creative cloud

    HI Nadine,.

    I guess you want to know how to cancel the other members.

    Upgrade or cancellation, please contact our customer service.

    Reference:--

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    You can also check the help below document:

    https://helpx.Adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

    Please go through the Adobe - General conditions of subscription as well.

  • Delay with Gotowebinar cloud connector records? Where is the problem?

    Hi all

    I ran a number of campaigns of Webinar recently and every time there was a delay with contacts once they land on the connector of cloud on the canvas of the campaign. In my last campaign, there was a delay of two hours. In the end I had to manually register a certain number of contacts they complained.

    Would be - anyone know if there is a failure with gotowebinar or connectors of clouds are sometimes known to do this. Also are there tricks to try to minimize the delay.

    If I can't solve this problem, I sued a different Webinar provider that cannot be a bad thing.

    Thank you

    HEY Kevin,

    (Full disclosure: I work for ReadyTalk we have our own connector).

    There are several ways that a delay may be introduced in the whole process. Without seeing your campaign, I'll just comment all.

    1. The use of the program generator will set up and artificial deadlines. If you are in normal mode, it's 15 minutes a step. I would recommend the canvas of the campaign to eliminate this type of delay.
    2. Have your segment on the campaign will cause a delay also because they need to cross a decision rule of "They did sign up?" before you get on the cloud connector. The answer here is that the form processing stage put them to a waiting time before the connector. (The step of waiting is configured pour.01 mins) It will also take forward invite since they would not be part of the initial segment.
    3. The cloud connector itself can be slow depending on the number of API calls it undergoes. W
    4. You may also have the form post directly on cloud connector, which eliminates a lot of #1 and #2 using the Repost at server stage in the stages of processing of forms. TJ fields has a document circulating here describing how to do so.

    Using our own in-house cloud connector and avoiding the #1 and #2, we see coming in under 3 minutes quite systematically confirmations. Faster if you use the post to the step of the server in the form.

    Hope that helps. Let me know if have any other questions.

Maybe you are looking for

  • Disease affects

    Is it for my iphone 6, with, after about a year and a half, touch my iPhone just stopped working, I suppose that is this famous "touch the disease." Apple fix this location? Apple devices do work under 2 years?

  • Solve mixed content blocking

    I clicked on the shield and disabled the blocking of mixed content for a page. How to re - activate the blocking of the page? Thank you

  • Equium L20 - left & touchpad are hot

    Hello After about 30 minutes, my phone starts to get really hot.I m not too bothered except when my touchpad becomes very hot and it s very uncomfortable. I n t say its hot because I can keep my hand there. I've lifted my laptop by putting four cubes

  • Satellite M45-S359 does not work as it should

    So, I got the M45-S359 computer two years a go.In two years so I had to replace a monitor and 2 hitters... Well now the new problem. Lately, the computer does not start some time and I have to play with it for a while to start.It is a 15 "monitor, bu

  • transfer songs from iphone to mac?

    I accidentally deleted songs on my laptop which are still on my iPhone. I tried to sync to have these songs 'redownloaded' on my laptop but it does not work. These songs are not purchased, they were imported from my own CD. There are a few software p