Problems with the campaigns do not send emails once active!

Again this morning another one of our users has 3 time very distinct sensitive campaigns do not come out once activated.

I think the problem lies in the segment element. If you make changes or perhaps too many changes to the segment once its on the Web

It seems to mess up somehow in the backend config!

Anyone encounter this problem or knows what I can do to solve this problem for my users? For obvious reasons, this is a major problem.

Thank you all!

Sort of... It may just be that Eloqua has a hicup causing a little late... It may be my users do something strange inside the segment that breaks.

When it comes to a campaign I created... I guess it was just a hicup. Great, I know. But if it happens once on 500 campaigns, I'll be ok with that. We had this same report with our internal e-mail system that we built ourselves.

Also, these problems were because the user did something wrong with the list.

Tags: Marketers

Similar Questions

  • HP Support Assistant unable to fix a problem with the CD/DVD not detected

    I have a G42-415DX laptop and I can not read cd/DVD, it was working fine 3 weeks ago and now nothing / I tried the support assistant and he could not solve the problem.  I got a message saying the driver must be reinstalled, how do I reinstall the driver?

    Hello

    If you do not get the chance to use another PC, I would definitely create the CD and the DVD bootable as it would give a clear indication if there is a hardware problem with the optical drive.

    In the meantime, try following the procedure in the title of the subheading "Let me fix it myself" on the link below to remove upper and lower filters (if these registry keys exist) and see if that helps the issue.

    http://support.Microsoft.com/kb/982116

    If find you the following registry keys and delete them, restart the laptop before checking the disc.

    Kind regards
     
    DP - K

  • I have a problem with the DVD drive not detected on Windows 7.

    I built a new PC (I've built a few of them).  This time is not considered my ASUS BD player with Windows 7 DVD burner.  It is not in either Device Manager just do not at all recognized.  The BIOS for the ASUS P9X79 of luxury see the SATA drive without problem.  Sometimes after restarting the BD Player looks and functions perfectly, but when the computer goes to sleep or shuts down is usually not there when it is restarted.  Please help me solve this problem :-)

    Original title: optical drive not recognized...

    Hello

    Please contact the Microsoft Community.

    You have a problem with the driver DVD being missing on the computer. It can be difficult when something that is important to you does not work as expected. It's pretty simple and we're here to help you solve the problem. We work as a team and get this sorted out.

    Please answer these questions-

    (1) that you get an error message or error code?

    (2) did you have performed the steps in troubleshooting?

    (3) have you made changes on the computer before the show?

    I would like more information about the issue.

    Method 1-

    I wish that you are running the fixit-

    Hardware devices do not work or are not detected in Windows

    http://support.Microsoft.com/mats/hardware_device_problems/en-us

    Method 2-

    Note: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs.
    Back up the registry - http://windows.microsoft.com/en-US/windows7/Back-up-the-registry

    I would have you look at the article-

    Your CD or DVD drive is missing or is not recognized by Windows or other programs

    http://support.Microsoft.com/kb/982116#top

    Let us know if you have other questions about Windows in the future. We will be happy to help you. We at Microsoft, strive for excellence and provide our customers with the best support.

    Thank you.

  • Problem with the instruction FOR... Once again!

    Hello world

    Well, I'm still doing a slideshow of car using external files and can't see the end. The current movie is here:

    http://www.virtuallglab.com/projects.html

    I also enclose the code. My problem is I had initially set up an animation with 2 pictures slide with text and then wait 4 seconds before slipping outside, and then next photos and text would slip in and so on, using a setInterval.
    The problem is the loop FOR seems to ignore the setInterval and slides of the 'wait' service, so buckle up just quickly and get to the last picture, so now the example above, it comes the last picture (I = 9) and that's it!

    Can you do not include another function in a statement FOR. Or is there a way to tell the loop TO wait for all movement is complete?

    Any help greatly appreciated

    ***************************************************

    Mx.transitions import. *;
    Import mx.transitions.easing. *;


    for (i = 0; i < 10; i ++) {}

    var picLeft = "photos /"+ i + ".jpg"; ".
    var picRight = "pics /"+ i +"b.jpg";
    var txtToLoad = "text /"+ i + ".txt"; ".

    this.createEmptyMovieClip("leftHolder",1);
    leftHolder.loadMovie (picLeft, i, leftHolder.getNextHighestDepth ());
    leftHolder._x = - 200;
    leftHolder._y = 15;

    var leftTween:Tween = new Tween (leftHolder, "_x", Strong.easeOut, leftHolder._x, 10, 2, true);

    this.createEmptyMovieClip("centerHolder",2);
    centerHolder.loadMovie (picRight, i + "b", centerHolder.getNextHighestDepth ());
    centerHolder._x = 180;
    centerHolder._y = 250;

    var centerTween:Tween = new Tween (centerHolder, "FLF", Strong.easeOut, centerHolder._y, 15, 2, true ");

    Text._x = 600;

    myData = new LoadVars();
    myData.onLoad = function() {}
    text.carText.text = this.content;
    };
    myData.load (txtToLoad);

    var textTween:Tween = new Tween (text, "_x", Strong.easeOut, text._x, 420, 2, true);

    myInterval is setInterval (wait, 4000);.



    function wait() {}
    var leftTweenFinished:Tween = new Tween (leftHolder, "_x", Strong.easeOut, leftHolder._x,-200, 1, true);
    var centerTween:Tween = new Tween (centerHolder, "FLF", Strong.easeOut, centerHolder._y, 250, 1, true ");
    var textTween2:Tween = new Tween (text, "_x", Strong.easeOut, text._x, 600, 1, true);
    clearInterval (myInterval);

    }
    }


    ***************************************************************************************** ***

    There is no way to tell a loop to wait for. This isn't what they are doing.

    All of the loop for runs (if possible and it is not a kind of infinite loop) completely before whenever the image is rendered.

    If you want to spread in time, you must use the setInterval - but not inside a loop for! If you do this, you immediately set, but the number of intervals of your loop. In this case you will also assign IDS for these intervals to the same variable, replacement effectively the value so you won't ever be able to erase most of these intervals.

    That means rethink you the entire structure. Set up a kind of counter and limit like this:

    var slidesToShow:Number = 10;
    var curSlide:Number = 0;

    Then have your setInterval the curSlide increment each time it is called, and check to see if it showed all the. This is where the "loop".

    As for the other part of your question - Yes you are actually two different issues in progress - once again, you can't do a loop for, wait for anything. So no there is no way to pause while you wait for your pre-teen at the end. But you can be notified when a Tween completes.

    See the documentation on the tween class in the help files. You will find the onMotionFinished event. If you configure one of those to begin with everything that needs to be started when the Tween is finished.

    You should also use the MovieClipLoader class to load your images, because you don't know how long it will take to load. Using this class, you get a nice event (onLoadInit) that tells you when the asset is ready for use.

    Finally, I think that you might want to use instead of setInterval setTimeout. It runs only once, whereas setInterval repeat forever. So I think that your algorithm would be something like that.

    1. load creditrice
    2. when ready to animate in and set onMotionFinished Manager
    3. when the query is finished start loading assets and setTimeout for 4 seconds.
    4. when 4 seconds is up or the clip is loaded (no matter what either takes longer) go to 2 and repeat.

    If this is going to be run locally on a hard drive or CD you will have no problem with the length of time that it takes to load external assets, but if it's on the web it's going to take time.

  • Problem with the creation of a response email

    A new problem has occurred. When I read an email and click on the reply button I get a new empty e-mail page and not a response page. I can't delete this page or drag it to the trash. I can't find the setting that will make me come back to hit the reply button and have the system create a response email that has the previous message inside.

    I'm working with OSX El Capitan 10.11.4

    Someone help me please?

    Dennis little

    Hi Dennyboy,

    Excuse the question, but are you sure you're hitting the reply button and not the new message button create?

    There are several options. You want the purple arrow, not the red arrow options.

    Also, in your mail preferences go to composition workshop and make sure that you have selected (to enter text).  You can see below for options.

  • Problems with the Publisher files attached to emails...

    HI - when I receive attachments to e-mail editor, they open in Notepad with just loads of symbols. This happens when the email stuff to me too. I Publisher 2010. I need to send and receive Publisher files which can be edited - by myself or the person I'm sending to. They probably have an older version of the editor. Help me please... Thank you

    I have it! Sorry - I was looking in "program files" rather than "program (x 86)..."

    Looks like I'll now open files in Notepad as an editor.

    I am not quite sure that he is the real difficulty I wanted to, but I'll try it out - thank you for your help!

  • I'm having a problem with the tabs is not responding after deleting localstore.rdf

    After the 4.0 update b7, I had a problem with my toolbar to reset and (a little), I corrected by deleting localstore.rdf. Now, however, my tabs do not respond when you click them, and Firefox is essentially locked on the first tab ideas?

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of your modules is causing your problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    See the extensions, themes and problems of hardware acceleration to resolve common troubleshooting Firefox problems and troubleshooting questions with plugins like Flash or Java to solve common Firefox problems

    Create a new profile as a test to see if your profile is the source of the problems.
    See basic troubleshooting: a new profile

  • Having a problem with the message saying (not answer) and computor lock, answers please

    Problem with computor saying "not responding" and lock, any ideas please.

    Problem with computor saying "not responding" and lock, any ideas please.

    Provide you any other information.  You have to give to get when it comes to troubleshooting.

    Given that don't even give you an operating system - replace the defective hardware.  ;-)

    What specific operating system you use?  Include the service pack level and architecture (SP1, SP2, SP3... (32 - bit or 64 - bit?)

    I'm guessing that has happened since the first day - of a lifetime of computers - what happened between he works and does not?  New software installed?  All new hardware installed or attached?

    Did you * nothing * to try to remedy the situation?  If so - what?

    Be specific.  Ignore the cameras, microphones and remote viewing software, we have installed in your home, clothing and computer.  Pretend that we do not understand what you do and save it for future reference.  * smile * (should be easy - we don't have).

    Stuff in general, you could do (as long as you use a Microsoft Windows Operating System after the year 2000...)

    Search for malware:

    Download, install, execute, update and perform analyses complete system with the two following applications:

    Remove anything they find. Reboot when necessary. (You can uninstall one or both when finished.)

    Search online with eSet Online Scanner.

    The less you have to run all the time, most things you want to run will perform:

    Use Autoruns to understand this all starts when your computer's / when you log in. Look for whatever it is you do not know usingGoogle (or ask here.) You can hopefully figure out if there are things from when your computer does (or connect) you don't not need and then configure them (through their own built-in mechanisms is the preferred method) so they do not - start using your resources without reason.

    You can download and use Process Explorer to see exactly what is taking your time processor/CPU and memory. This can help you to identify applications that you might want to consider alternatives for and get rid of all together.

    Update your drivers for hardware devices from the manufacturer themselves - do not use the built-in features of Windows. If you want, come back and let us know a bit more information on your system - particularly the brand / model of the system, you have - and maybe someone here can guide you to the place s x of law to this end. This isn't 100% necessary - but I'd be willing to bet that you would gain some performance and features in making this part.

  • Windows Vista Home Basic - problem with the icons does not meet various Windows services after trying to download updates

    I use Windows Vista Home Basic on a Dell Inspiron 1501.  I have recently accepted that some guest downloads Windows with terrible results.  First downloads do not appear to have been accepted and the system of guard stop and startup trying to cancel.  Second as I result, I seem to have lost access to a range of Windows tools.  For example in Panel I can't open system icons or Windows Update.  Nor can I access these services from any other avenue on the computer.  Whenever I have find an icon or a file screen flashes a dialog briefly and then disappears.  The effect of this is that I'm completely unable to access or to implement the recommended tools or services that could solve this problem.  My ability to manage my computer has been reduced to zero.  Dell were not receptive and I can't get a response from Microsoft

    worm post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    One thing you can try try the system restore, safe mode.

    Start the computer in safe mode with networking capabilities (hold DOWN F8 while the computer starts).

    To start your computer in safe mode, you can check the link below:http://windowshelp.microsoft.com/Windows/en-US/help/323ef48f-7b93-4079-a48a-5c58eec904a11033.mspx>

  • Problem with the laptop does not connect to wifi.

    I have a new laptop to windows 8 toshiba still in the menu setup and he asked me to choose my wifi so I did and put the password and its says unable to connect to wifi, all other laptops and tablets are connected to wifi I chose but its only the my laptop which does not connect. What should I do?

    Hello

    1 have had any changes made on the computer before the show?

    2. do you get an error message? If Yes, what is the exact error message?

    To solve the problem with Wi - Fi internet access, you can follow these methods:

    Method 1:

    I suggest you to refer to the article and see if it helps:

    How can I troubleshoot network card?

    http://Windows.Microsoft.com/en-us/Windows-8/fix-network-adapter-problems

    Method 2:

    I suggest to refer to article and follow these steps:

    Wireless and wired network problems

    http://Windows.Microsoft.com/en-in/Windows/network-connection-problem-help#network-problems=Windows-8&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    Let us know the results. If you have additional questions on the computer, please ask your question about Windows and we will be happy to help you.

  • Problem with the webcam does not.

    my pc is that Sony with windows7.the webcam is not working... I found the Webcam listed under devices and it say works correctly

    A question for Sony support or their forums as the webcam is a built-in feature of Sony

  • Problems with the keyboard does not

    I am on windows 7 and for a week, my keyboard does not work. some of the keys do not work. p, return, tab key, and a few others do not work. My on-screen keyboard works fine - except for the question mark-. I tried the drivers, and the computer says that it has the best drivers so no need to update. I don't know where it came from, but then, after an update of windows, my keyboard is back to normal. It worked fine for three days and then, once again, he screw up. It's always the same keys that don't work, so I don't think that my keyboard is worn. my computer is only a year. It's a computer laptop sony vaio. whenever I press the p key, for example, the Start button - a physics - flashes. same thing for the other buttons. When I press the return key, the Start button flashes.

    in the bios, the keys do not work either.

    can anyone help

    Get a cheap USB keyboard and see if it works.  You can buy those cheap for $10 or less.  The fact that the keyboard does not work in the BIOS means is not a Windows problem.

    Good luck.

  • I have a problem with the Bitlocker does not not after entering the password.

    Original title: my bitlocker encrypted Drive not respoding after entering the password.

    Hello

    I tried to block my external hard drive with bitlocker, but unfortunetly got encryption interrupted before finishing because I accidentally unplugged the hard drive, I use windows 7... And now when I enter the password the bitlocker stops responding until I unplug the external drive, I tried to decipher the drive using bitlocker repair tool in cmd, but she also is stuck at 29% every time if I managed to get some data back but not my whole data.

    , I just want to know that is there any way to recover my entire data or unlock the drive?... .Please help!
    Thank you

    I'm sorry to say, but you have made two big mistakes:

    (a) you forgot to backup your data regularly, e.g. once per week.
    (b) you have not backed up your data before making a major change, such as when your data encryption.
    There is a small chance that you can repair the damage with the found here BitLocker Repair tool:
    http://TechNet.Microsoft.com/en-us/library/ee523219 (WS.10) .aspx
    If this isn't the case, then you will have to deal with this disaster as a harsh reminder that regularly back up the files is not an option but a 'must '.
  • I have a problem with the Aero does not.

    Original title: Aero do not work

    Aero will not work on my pc cause my graphics card is an Ati Radeon 9200 series and doesn't support Aero cause the producer do not release the update. I'm looking for a solution to make aero work? Thank you.

    Hello Nello,

    The support of the ATI Radeon 9200 series to only Windows XP drivers. These drivers do not support WDDM 1.1, and therefore will not support the Aero features. I've looked everywhere and there seems to be no work around that. In this case, I would say that you can buy a new graphics card or contact AMD support for assistance:

    http://support.AMD.com/us/contacts/pages/global-technical-support.aspx

  • Various problems with the latest Firefox, not necessarily caused by Firefox

    Windows 7 with firefox 34.0.

    A few days ago I installed firefox 34.0, and at the same time, AVG safe Search decided to move against my will in Firefox. Since then, I had a few problems. I can't tell if they are caused by Firefox or AVG Search. I hope that someone can identify the culprit and have solutions.

    (1) AVG safe Search took over my home page. I don't want to. How can I get rid of him? I tweeted AVG and they sent me 2 removal tools that don't work

    (2) when I type in a text box on a web page, while I type and apparently random times, the slider switches abruptly to the url address bar and I have to find myself typing in the address bar.

    (3) when I navigate on a Web site, it disappears from the address bar, sometimes but not usually, web page normally, but the url just disappears and says "search or enter an address.

    Thank you...

    Hello richlaughlin, please try to reset firefox - this can probably solve all three of these problems...

Maybe you are looking for