Submitting a form does not work when you use form fields

Hi Topliners,

We strive to create a POST of an external page to an active form Eloqua.  We spend the Type of preference (Subscribe /Unsubscribe) and the name of Group of email in our POST request so that, when we can drive the presentation of these values for the group by e-mail with the correct Type of preference in Eloqua, and it seems not work. See attachment for the snapshot of our processing steps. We missing something here?

On another note, what form values are expected when submitting to subscribe or unsubscribe?

Thank you

-Syed.

I could find the answer to that, however, it is of no use in our application.

We need instead to pass the name of e-mail group, pass id e-mail group.  They are not easy to retrieve and we have our group ID changed so that they cannot be changed or in correspondence.

To answer the other part of my question, the Subscribe value is '1' and unsubscribe is '0 '.

-Syed.

Tags: Marketers

Similar Questions

  • Call the native browser blackberry OS6 does not work when you use this line Browser.getDefaultSession () .displayPage (url);

    Hello

    I need to invode a native browser showing a Web site using the code below

    Browser.getDefaultSession () .displayPage (url);

    She works in OS5, but does not work for the OS6. Please, someone knows how to solve this problem, too much to guide me

    regards + thank you

    codemobiles.com

    Oh, thanks for your response. (the browser is not called, there is nothing happen)

    Hoowever, the problem is resolved. That's my problem forget to add the "http://" in the url.

    regards + thank you

  • Bland Muse - States Panel - Adobe does not work when you use images of filling

    Hi all

    I have a filled rectangle with an image using the control panel of the padding in Muse. I want the rollover State to present a slightly modified image. I have change the rollover State in the States Panel and check the option melted and set it for ease in/out to 0.5 s.

    When I preview/publish my site, the fade does not work. The image flashes just as he would have before the last update.

    The works of bland on the text very well or if I wanted to reduce the opacity of the image in the rollover State, but not one filling to another. Why is this?

    Thanks in advance.

    I see in Firefox, it isn't the transition but Safari it is. So I suspect that this is probably the browser compatibility to have a transition of filling.

  • It does not work when you use the trigger to check the data of the other table.

    Please help me with this, I put a trigger on a table, but it can not work as I expect.

    case study: a class has many students, one of them is going to match.
    The purpose of this trigger is to check when to choose a student going to match, this student has in his class where it belongs to.
    Oracle version is 10.2.0.1.0.
    --table:
    DROP TABLE STU;
    DROP TABLE CLASS;
    
    create table CLASS(
    CID     VARCHAR2(5)   PRIMARY KEY,
    CNAME   VARCHAR2(20)  NOT NULL,
    SCHOSEN VARCHAR2(5));
     
    create table STU(
    SID     VARCHAR2(5)   PRIMARY KEY,
    SNAME   VARCHAR2(20)  NOT NULL,
    CID     VARCHAR2(5)   NOT NULL REFERENCES CLASS(CID) ON DELETE CASCADE);
    
    --data:
    --CLASS
    INSERT INTO CLASS(CID,CNAME) VALUES(1,'SUN');
    INSERT INTO CLASS(CID,CNAME) VALUES(2,'MOON');
    INSERT INTO CLASS(CID,CNAME) VALUES(3,'EARTH');
    --STU
    INSERT INTO STU VALUES(1,'JACK',1);
    INSERT INTO STU VALUES(2,'TOM',1);
    INSERT INTO STU VALUES(3,'LILY',2);
    INSERT INTO STU VALUES(4,'DUSTIN',3);
    
    --TRIGGER
    CREATE OR REPLACE TRIGGER CHECK_SCHOSEN
    BEFORE INSERT OR UPDATE OF SCHOSEN ON CLASS
    FOR EACH ROW WHEN (NEW.SCHOSEN IS NOT NULL)
    
    DECLARE
    DUMMY INTEGER;
    INVALID_STU EXCEPTION;
    VALID_STU EXCEPTION;
    MUTATING_TABLE EXCEPTION;
    PRAGMA EXCEPTION_INIT(MUTATING_TABLE, -4091);
    
    CURSOR DUMMY_CURSOR (ST VARCHAR2, CL VARCHAR2) IS
      SELECT SID FROM STU, CLASS
      WHERE STU.SID=ST AND STU.CID=CLASS.CID AND CLASS.CID=CL
        FOR UPDATE OF CLASS.SCHOSEN;
    
    BEGIN
      OPEN DUMMY_CURSOR(:NEW.SCHOSEN, :NEW.CID);
      FETCH DUMMY_CURSOR INTO DUMMY;
      IF DUMMY_CURSOR%NOTFOUND THEN
        RAISE INVALID_STU;
      ELSE
        RAISE VALID_STU;
      END IF;
      CLOSE DUMMY_CURSOR;
    EXCEPTION
      WHEN INVALID_STU THEN
        CLOSE DUMMY_CURSOR;
        DBMS_OUTPUT.PUT_LINE('PLEASE RE-ENTER CLASS ID AND STUDENT ID AS CLASS OR STUDENT IS NOT VALID.');
      WHEN VALID_STU THEN
        CLOSE DUMMY_CURSOR;
        DBMS_OUTPUT.PUT_LINE('STUDENT CHOOSE SUCCEFULLY!');
      WHEN MUTATING_TABLE THEN
        NULL;
    END;
    /
    Just copy and paste on it and try to run next:
    UPDATE CLASS
    SET SCHOSEN = 3
    WHERE CID = 1;
    Clearly, you can't student who is 3 as to Member of class 1. Please help me. Thank you.

    Published by: 991096 on March 1st, 2013 02:36

    Published by: 991096 on March 1st, 2013 03:03

    Published by: 991096 on March 1st, 2013 03:11

    Hello

    991096 wrote:
    1. the purpose of this trigger is to check when to choose a student going to match, this student has in his class where it belongs to. Then, when I try to choose 3 student-member of correspondence of class 1, should give me "PLEASE RE-ENTER ID AND STUDENT ID AS CLASS or STUDENT not IS NOT VALID."

    Then do something like this:

    CREATE OR REPLACE TRIGGER CHECK_SCHOSEN
    BEFORE INSERT OR UPDATE OF SCHOSEN ON CLASS
    FOR EACH ROW WHEN (NEW.SCHOSEN IS NOT NULL)
    DECLARE
        sid_found     stu.sid%TYPE;
    BEGIN
        dbms_output.put_line (:NEW.schosen || ' = schosen entering check_schosen');             SELECT  sid
             INTO    sid_found
         FROM      stu
         WHERE     sid     = :NEW.schosen
         AND     cid     = :NEW.cid
         AND     ROWNUM     = 1     -- to avoid TOO_MANY_ROWS
         ;
    EXCEPTION
        WHEN  NO_DATA_FOUND
        THEN
         RAISE_APPLICATION_ERROR ( -20000
                        , 'Please re-enter class id and student id as class ('
                          || :NEW.cid
                          || ') or student ('
                          || :NEW.schosen
                          || ') is not valid.'
                        );
    end;
    /
    

    DBMS_OUTPUT creates only a message. The message may not be displayed, and if this is the case, then the user cannot see it. The DML will still take place.
    I used instead, RAISE_APPLICATION_ERROR to keep the DML does not happen. It displays a message like

    ORA-20000: Please re-enter class id and student id as class (1) or student (3) is not valid.
    

    ' 2 ' game ' means ' an official competition in which two several people or teams competing.

    What individuals or teams are competing in this case?
    In any case, the question wasn't 'that 'game' means', but

    Frank Kulash wrote:
    What do you mean when you say "going to match?

    I think that now you're saying that the new values of (class.cid, class.schosen) must be equal to (or "fit") some existing (stu.cid, stu.sid).

    3. thanks for your tip, I learned how to use '{code} '.

    4. it's really goes with the exception of MUTATING_TABLE. So, how do to fix the trigger to show me INVALID_STU EXCEPTION when I try to choose a student does not belong
    a class?

    Don't refer to the table of class in the trigger, and the error table mutation occur. All the information you need are in the stu table, so there is no need to query the table of class, anyway.

  • Windows 7 turn off the display does not work when you use empty screen saver.

    My friend is running Windows 7 x 64 on a desktop and x 32 on a laptop.  He found that if he chooses the screensaver empty (set to 5 minutes) and will display at 10 minutes, the screen never goes round.

    On my laptop, I use the screensaver of ribbons with the same settings and my laptop screen goes off as planned.  However when I go to the screen saver, the display is never off (actually so that empty screen saver was active, my mouse reappears after a certain time).

    There seems to be a Bug with the Windows 7 built in empty screen saver.

    Thoughts, other experiences, etc.? Alex

    Hi archimedes027,

    I hope you are well, I understand you want to listen to music but have no display on your pc.

    If this is correct, there are two options that are available to you first open windows media player, right-click in an empty space at the bottom of the player and select options in the verification of the Advanced box section to enable the screensaver during playback,

    the second option you have is if you use another music player ie itunes then in the section Customization via right click on a empty space on your desktop, select the screen saver options and set it to none, and then click battrey you and together turn display both you need , windows 7 will be dim your office after a short period and in your turn to your screen settings.

    hope this helps let me know

    your

    Ashley

  • setActionListener does not work when you use the pop-up

    Hello

    My requirement I need to send a value to the front to call popup.

    < af:commandButton text = 'empty '.
    Binding = "#{backingBeanScope.backing_authorizationLookup2.CB1} '"
    ID = "cb1" disabled = "#{securityContext.userInRole [' survey internal-cardauthui '] or links.}" Don't AuthorizationStatus.inputValue 'NEW' or links. "{ParentAuthNum.inputValue don't row.bindings.AuthorizationNumber.inputValue}" partialTriggers = "t1" >
    < af:setActionListener from = "#{false}.
    to = "#{pageFlowScope.cancelResultFlag}" / >
    < af:showPopupBehavior popupId = "p4" / >
    < / af:commandButton >

    This indicator is not set, can any help me how can set this flag value before calling to the pop-up window.

    Try to set triggerType = 'click' on the showPopupBehavior and contentDelivery = "lazyUncached" on the context menu.

    Pedja

  • Microsoft Pinball Arcade, everything works except the right flipper does not work when you run the game. __Keyboard is very good

    Microsoft Pinball Arcade, everything works except the right flipper does not work when you run the game.
    Keyboard is fine.  Is this a compatibility issue?

    ---------------

  • AutoPlay feature does not work when you insert a CD-ROM into the CD drive

    Original title: computer disc drive

    Download or CD extract of music reading, record music, download CD etc... Before my hard drive had to be replaced, when a disc is inserted into my computer, a window appears, asking what you want to do... Burn music, Rip, copy in folder etc... now when I insert a disk, the window no longer appears, which gives you options and you get to this site... How can I get that back?

    Hey Big-Mack,

    Try the steps of troubleshooting mentioned in the following article and check the result.
    See the enforcement function automatic or AutoPlay feature does not work when you insert a CD-ROM into the CD drive

    If the problem persists, run the Autoplay Repair Wizard and check the result.
    See Autoplay Repair Wizard

    Play functionality; New in Windows Media Player 12 makes it easy to listen to the music, video and photos from your computer to other computers, TVs or stereo on your home network.
    For more information, see play in

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Question 1: The button "Buy now" does not work when you select a plan. Question 2: Can not select "Monthly Plan" for a "unique App."

    Question 1: The button "Buy now" does not work when you select a plan.

    How to reproduce the problem:

    1. go in terms of pricing and membership creative cloud | Adobe Creative Cloud

    2. choose a plan, then click on 'buy now '.

    3. you go to a blank page instead of the next steps in the payment.

    Question 2: Can not select "Monthly Plan" for a "unique App."

    How to reproduce the problem:

    1. go into "https://creative.adobe.com/plans".

    2. under "Unique App", select a product and then try to select the "monthly Plan" in the second menu drop-down.

    3. for some reason, it isn't get selected and the price is replaced with the ellipsis (...). I expect the monthly price to appear.

    Please notify.

    Thank you.

    Contact adobe during the time pst support by clicking here and, when available, click on "still need help," http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Acer toggle display does not display when you use the Fn + F5 key secret on my Acer Aspire 5560

    What it does:

    When you use the Fn + F5 key combination on my Acer Aspire 5560, it brings up a screen changes on the laptop screen for the selection of an external monitor, I am currently using Windows 7 Ulitmate

    Before the problem:

    Display mode switch Acer existed prior to the upgrades of the drivers

    The problem:

    The toggle screen Acer does not display when you use the Fn + F5 key secret on my Acer Aspire 5560?

    Additon Information needed to solve the problem or any other information:

    I would like to know what driver or software operates the Acer toggle display Mode?

    Also where can I find this driver for computer: Acer Aspire 5560 to bring this Acer toggle display Mode function?

    Acer Toggle display Mode: this is a picture of it when you use the Fn + F5 combination:

    Thank you very much Ironfly Ace, it has worked Acer hero of the day

  • SpeedGrade CC14 does not open when you use the "Direct Link to Adobe SpeedGrade... "of PremierePro CC14.

    SpeedGrade CC14 does not open when you use the "Direct Link to Adobe SpeedGrade... "of PremierePro CC14.

    I can open the SG of start menu/desktop computer and I can open the PP project in SG very well. The PP project contains 3 deadlines and I take one I want without any problem. Returning to the SG PP works fine as well. It seems only thing doesn't work does not automatically open the PP file and selecting the correct timeline in the Official Journal of the project.

    I had a glance at the "C:\Users\john Bishop images\AppData\Roaming\Adobe\SpeedGrade\8.0\logs\SpeedGrade.log ' but it is not updated when I try to use the link Direct from PP. command It updated when I invoke the start menu/desktop computer SG. Note that none of the other newspaper, the files are updated either (Plugin Loading.log, Database.txt Trace and Debug Database.txt). All these get updated when I run the desktop/start. It would appear that SG is not yet known.

    I uninstalled the SG and the PP and re-installed (all in the directories by default) and everything seemed to go OK but no change.

    I also added 2 political profile the NVIDIA Control Panel, just display a message when loading SpeedGrade.exe and another for a slightly different message when loading SpeedGradeCmd.exe. SG invoking the desktop/start causes the SpeedGrade.exe message to display. Using the 'Direct link' PP file option does not display anything, reinforcing my thought that SG is just never called from PP.

    SP1 Windows 7 Professional 64 bit

    12 GB OF RAM

    2-Intel Xeon E5640 (16 sons) processors

    NVIDIA GeForce GTX580 1536 MB memory graphics

    PS... I used the Adobe cleaning tool noted elsewhere and tried NVIDIA workarounds as well - all to nothing does not.

    Problem solved!

    My Antivirus software was in the way. Once I have updated, things work fine.

    Thanks for your help!

  • The slide show feature does not work when I used my Apple TV new 4th gen. I have all the minimum requirements for Macbook and Macbook OSX the Airport express. The slide show starts and stops after that 7 photos are displayed on the TV. If I change the

    The slide show feature does not work when I used my Macbook with new Apple TV 4th gen. The slide show stops after that display 7 photos and display to select the options for the slide show is displayed on the screen. The selected interval was 5 seconds. If the interval is spent in 3 seconds the slide show would work for a time and then to display random images. Has worked with Apple on this issue Support Mike and he managed to reproduce the problem. Since I'm in the return period of 14 days for this product, I returned it to the Apple store

    Welcome to the Apple community.

    After returning, I'm not really clear on what your question.

  • Get the error the Service does not work when you try to update

    Original title: Dell Inspiron 1545 model

    My Labtop wife; the automatic update is enabled; but will NOT be updated. When I try to update; There are NO error codes. After trying to update. The computer

    addresses by specifying THE SERVICE IS DO NOT running. You must restart; also the F8 key does not work.

    Hello

    1. What is the error message right on the service does not work?

    2. were there any changes (hardware or software) to the computer before the show?

    Perform the steps in the link and check.

    The problems with the installation of updates (Windows Vista)

    Hope this information helps.

  • My mouse does not work when you type

    Whenever I type in Internet Explorer, Mozilla Firefox, or ANY program for that matter, I try to move the mouse, and it does not work, but after I've finished typing, I can move my mouse again. I know that this does not seem like a big deal, but when I play games like Garry Mod (I try to play often, but it never works because I use A, W, S, D to move and the mouse to look around, so I can't) I can't look around, making the game practically unusable and not fun at all. I looked on the Internet for similar problems, and some have said that it must:

    «Edit the file "/ etc/default/mouseemu" and put 0 instead of 300 online»

    Code:

    "TYPING_BLOCK ="block - typing -"300"

    Make sure to uncomment the line by deleting the symbol #. Finally, restart mouseemu entering

    Code:

    sudo /etc/init.d/mouseemu restart

    in the Terminal. (http://ubuntuforums.org/showthread.php?t=353162) »

    I don't know what it means and if someone can help me in some way, it would be greatly appreciated.

    Thank you

    Sincerely,
                                           
    Alex H.

    I can't comment on the proposed amendment that has been given.

    I guess you already checked the mouse settings in case there is some fantasy in this utility who think you want that he disabled this way.  I can't imagine what that but there might be something that hides the mouse during the strike that is defective.  Disable all suspicious settings & try again - you might need to reboot to get a reliable result.

    Initial checks, I would say go into Control Panel, Manager of devices.  Search for all the warnings on the mouse & the video adapter.  Update their drivers [right-click, update drivers].

    If this does not work then check the compatibility of Windows http://www.microsoft.com/windows/compatibility/windows-7/en-gb/default.aspx and check to your PC & manufacturers of mouse support sites for advice, including Windows 7 tips & updated drivers.

    If this does not fix it then confirm the list of controls that you did & results back here.  Include your brand-model-version PC, the mouse brand-model-version, the version of Win7 & x 32 / x 64.

    Good luck with it,

  • Logitech gamepad does not work when you play Flight Simulator 2004.

    When you run FS 2004 use logitech extreme 3d pro joystick Z axis will result in the plan or the Swing window beyond the movement of z. then again

    accrose the screen. It apears as a swing. no adjustment of the sensitivity or the value null will be wet this condition.  Please notify

    Original title: logitech Z erratic joystick axis, it would be possible to correct?

    Hi melvin sorensen,.

    Thanks for posting your query in the Microsoft Community.

    You have a problem with the Logitech extreme 3d pro joystick doesn't work don't properly during playback in Flight Simulator 2004. 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 the question-

    What is the version of Windows installed on the computer?

    I would like more information about the issue.

    Method-

    I would like you to contact Microsoft Flight Simulator for assistance.

    Check out the link-

    http://www.Microsoft.com/products/games/FSInsider/tips/pages/default.aspx

    You can also post your request in the forums of community of Flight Simulator.

    Check out the link-

    http://www.Microsoft.com/products/games/FSInsider/community/pages/default.aspx

    We know if ACE of other Windows issues. We will be happy to help you. We, at tender Microsoft to excellence.

    Thank you.

Maybe you are looking for