Submit unique surveys to a website?

I have about 1600 unique surveys (each one had different options). Currently I am sending using Acrobat mail merge with an email javascript. But even with the enabled form, some people are having a hard time sending it back to me (unable to use the submit button AND unable to save their filled out answers). I would be able to get a better response rate if I could have people submit their forms to a website. Can I do this with unique surveys? How? The Adobe Forms Central looks more like I could send ONE regular survey, but not many unique surveys without having to send them all individually..

You get that problem if you select the Firefox program to handle a file if you get an "open with" dialog.
*https://support.mozilla.org/kb/Firefox+keeps+opening+many+tabs+or+windows
Try to delete the mimeTypes.rdf file in the Firefox Profile Folder to reset all file actions if you can't fix it.
*http://kb.mozillazine.org/mimeTypes.rdf
*http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions
You can use this button to go to the Firefox profile folder:
*Help > Troubleshooting Information > Profile Directory: Show Folder

Similar Messages

  • How do I add a survey to my website?

    Hello everyone,
    I want to build my own website using IWeb. I want use this website to collect data for my honours thesis. What I would like to do is add a survey to my website. I would like visitors to be able to answer a number of questions and I would like these answers to be send to me. Therefore, I need to add some sort of "form" to my website. Does anyone whether this is possible in IWeb? Or whether I can download anything to add it to my website? Or maybe add a link to it, directing to another website?
    Thanks you all very much in advance!
    Gabrielle

    Copy/Paste this into an html snippet
    <FORM ACTION="mailto:[email protected]?subject=Email Subject you see when someone fills out your form " ENCTYPE="text/plain">
    <B>Radio Button Questions</B>
    <BR>
    <INPUT TYPE="radio" NAME=Category is VALUE="Answer 1 ">
    Answer 1
    <INPUT TYPE="radio" NAME=Category is VALUE="Answer 2 ">
    Answer 2
    <INPUT TYPE="radio" NAME=Category is VALUE="Answer 3 ">
    Answer 3
    <B>Basic one-Line submission Question</B>
    <BR><INPUT Name="Question2" size="50">
    <B>Large comment box area</B>
    <BR><TEXTAREA NAME="comment" ROWS=5 COLS=50></TEXTAREA>
    <INPUT TYPE=submit VALUE="Send Form ">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    Google "form tags" to find more...

  • FF4 does not allow opening of surveys on NCP website

    When trying to take a survey on the NCP website, the new window pops up but never opens in FF4. Yet another reason I'm going to have to go back to IE.

    Yes, I see the problem now. I'm not sure what to make of it to be honest.
    I suggest hanging on until one of the Moderators reviews this thread to see what they think.
    To summarize.
    The "Quick Read" tab is visible until the user loads another site and doesn't return to huffingtonpost.com for about 10 mins or so after which these links disappear.
    Another odd thing is that the background to the smaller pictures turns yellow briefly.
    Refreshing the page re-enables the "Quick Read" tabs.
    '''EDIT''': You can disable autorefresh in the Advanced menu, but I already have that disabled, so I don't think it makes any difference.

  • When submitting a target survey I get back an error.... I think this may be a safari problem or mountain lion problem as I used to be able to submit surveys on their survey site.

    When submitting a target survey I get back an error.... I think this may be a safari problem or mountain lion problem as I used to be able to submit surveys on their survey site.  This problem occurs if I use my MacBook Pro or my iPad.  I want try  to win a 5000 gift card and can't win if I can't submit the survey.  It lets me fill out everything and only after I hit submit I receive an error.  Target says it's not their problem.  I curious to know if anyone else has tried and receive back an error after hitting the submit button.

    Thanks.....I'll try that the next time I get a new receipt from target.  My old receipts are older than 72 hours now so I can't try Firefox with them.  I appreciate the response and will certainly try this and post a reply if I was successful in submitting the target survey.

  • About SRM web survey form submit

    Hi, Expert
         I meet a requirtment, and I need to collect the questions from the third part web, then I need to submit the survey with ABAP code, could you give me some useful help? and I am using SRM7.0 .
        I found the class method 'On_input_processing', but I don't know how to use it and if it is useful.
    thanks.

    Hi Palaniappan
    Thanks for your reply.
    Now my old flow is: 1. The supplier fill his info by SUS(It is developed by BSP), then the system automaticlly send a mail(The mail contain a URL that lead the user to the survey form).
                                    2. After the supplier receive the mail, and click the URL to open the survey form, when he fill all needed fields, then he click the button "SUBMIT".
    my new new flow is 1. The supplier fill his info( include the survey info) in the third part web page and save the data.
                                     2. when he click "SAVE", my interface need to create a vendor with "ROS_BUPA_CREATE_PROSP".
                                     3. when I get the vendor's GUID, I need to submit the survey data.
    My question is how to submit the survey data with ABAP code without web form environment.
    Could you give me some suggestions or example!
    Thanks.

  • Survey code not working

    Ok so I'm making a survey for a website and I have a series
    of questions where the user can rate it from a list of choices and
    I have these questions in a table in access and the rating options
    in a table. I want to have the questions display with the options
    in a dropdown box next to each question, I can't seem to get this
    to work. Here is my code:
    <!--- Get ratings --->
    <cfquery datasource="PFB" name="RatingsQ">
    SELECT *
    FROM Ratings, Questions
    ORDER BY RatingID, QuestionID
    </cfquery>
    <!--- Get genders --->
    <cfquery datasource="PFB" name="Gender">
    SELECT *
    FROM Gender
    ORDER BY ID
    </cfquery>
    <!--- Get states --->
    <cfquery datasource="PFB" name="State">
    SELECT *
    FROM State
    ORDER BY StateID
    </cfquery>
    <!--- Get questions2 --->
    <cfquery datasource="PFB" name="Questions2">
    SELECT *
    FROM Questions2
    ORDER BY Question_ID
    </cfquery>
    <!----get ages----->
    <cfquery datasource="PFB" name="Age">
    SELECT ID, Age
    FROM Age
    ORDER BY ID
    </cfquery>
    <html>
    <body>
    <cfform action="insertnewreview.cfm">
    <table>
    <tr>
    <td>Age:</td>
    <td> <select name="AgeID">
    <cfoutput query="Age">
    <option
    value="#ID#">#Age#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td>
    Gender:
    </td>
    <td>
    <select name="Gender">
    <cfoutput query="Gender">
    <option
    value="#Gender#">#Gender#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td>
    State:
    </td>
    <td>
    <select name="State">
    <cfoutput query="State">
    <option
    value="#State#">#State#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td><cfoutput
    query="RatingsQ"><br><br>#Question#</td><td><select
    name="RatingID"><option
    value="#RatingID#">#Rating#</option>
    </select></cfoutput></td></tr>
    <tr>
    <td><cfoutput
    query="Questions2">#Q#:</cfoutput></td>
    <td>Answer:
    <textarea></textarea></td>
    </tr>
    <tr>
    <td colspan="2" align="center">
    <input type="submit" value="Insert"></td>
    </tr>
    </table>
    </cfform>
    </body>
    </html>

    1. In CRM_SURVEY_SUITE, created 'XYZ' survey under Marketing
    2. Following Setting were made in Extras-->Settings
    a. Checked Save Completed Questionnaire
    b. Checked Completed Questionnaire Changable later
    c. Checked Create version of Completed Questionnaire
    d. Checked Evaluation without BW
    e. Callback to PBO: CRM_MKTCA_SURVEY_MKT_PBO
    f. Callback to PBI: CRM_MKTCA_SURVEY_MKT_PAI
    3. Survey Parameters Settings:
    Survey Repository>Parameters XMLs>bsp
    I have maintained the following information in parameter file u2018TTTu2019
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam Action="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=100" Method="post"
    IncludeStylesheetInOutput="true"
    AccessURL="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm" Enctype="application/x-www-form-urlencoded"/>                                                                                <SurveySystemParam  Action="" Method="post"  IncludeStylesheetInOutput="true" Enctype="application/x-www-form-
    4. CTRL+F5 is OK
    5. Activate
    6. Click on Generate URL
    7. I have added Get Option and Send Option u2013 BSP and Get file and Send File u2018TTTu2019 (parameter file)
    8. When I click on Test URL button , it opens up Blank Webpage
    Any Suggestions?

  • Sending Unique email links from APEX

    Hello folks,
    I wonder if i can create a email form that can allow the users to choose the Recipients address from the DB ( I have a table with the email addresses) & to send them a link for a Survey application, BUT my idea is to use a parameter for the email address with the link ....so once the recipients receive the link they will be allowed to Submit the survey ONLY ONCE by checking the parameter value?!!
    Regards,
    Ehammad

    Hi every1,
    Thanx all for your reply,
    My idea was about sending the survey link for my customers by email..once they click & submitted responds it will Not allow him to use the link again..even if he forwarded to another email, to prevent the customer from submitting the survey more than once by using different emails address!!...
    I Dunno if this idea is logical or poor ...i need ur advices all..
    I customers are login through "PUBLIC_USER" ...
    - Yes its logic to generate Unique ID , but my table is already have my Transaction Unique ID ,and still the user can use the link again to submit the results because he use "PUBLIC_USER" on login.
    -I am using the email address column in the transaction table to check if the user had already submitted the survey or no, but am not using a field in the survey to ask for the user email address, if i did, still the user can use more than one email to submit the survey.
    -I will check the SYS_GUID. Can I add this generated Key to the Application link?! so each user can get the link like this
    ex " APEX application Link+ SYS_GUID key"?!! instant of using the email parameter?
    Please advice if am missing somthing or my idea is not logic...
    Regards,
    ehammad

  • Disappearing Sharepoint Foundation 2013 anonymous list submissions

    I have a custom Sharepoint Foundation 2013 list configured to allow anonymous submissions from a public facing website, but which requires admin permissions to view the full list content. Think like a contact form or an online application - anonymous users
    can submit a new item via the form, but get "permission denied" when attempting to access the list itself. I've customized the New Item .aspx in Sharepoint Designer, and I've also added a redirect page after submission for a "confirmation"
    page.
    This seems to work perfectly in all of my tests - but I have several dozen users who have reported correctly filling out the form, pressing "Submit," and being taken to the confirmation page, but the list item is nowhere to be found when I log in
    and look at the list. It appears that somehow Sharepoint is losing the new list item, while still redirecting users to the post-submission confirmation page.
    If it was a single user, I'd chalk it up to user error (not pressing Submit or something), but I have enough identical reports to verify that this is definitely happening and data is definitely being lost. I have similar reports from users of all 3 major browsers,
    both Mac and PC. 
    Unfortunately, I can't reproduce this behavior on demand - the form works fine for me no matter what I throw at it. There's nothing in the recycle bin, no validation errors (I've turned off all validation for the form), and I have tried every browser/OS combination
    I can think of. In every single test I have done, the form submits flawlessly, and the new list item appears immediately - even for a blank form.
    Any ideas? Where do I even start trying to troubleshoot this if it happens seemingly at random?
    Thanks in advance for any thoughts...

    Hello,
    Without being able to reproduce the problem I can imagine this will be a difficult one to diagnose. I would start by getting some dates and times from users from when they did submit items that they are claiming did not appear in the list. I would then look
    in the ULS logs around these times and see if you can see the item being submitted / created.
    Regards.
    Brian Jones

  • Adding a calendar scheduling capability to my website

    I’m novice Website Designer in that I’ve only created 1 website, mine, 3 different iterations.  I want to add a calendar scheduling capability to my website.  I’d like to be able to display a calendar which will allow a visitor to click on a specific day, select a specific time of that day, and add their name and number to a specific time, which will then allow the visitor to save the calendar schedule to update it.  This calendar will then send me an email indicating that I have a new appointment added to my calendar, then, allowing me to accept the scheduled appointment, which would then turn the time slot on the calendar a particular color for the user to be able to know that his schedule has been saved and accepted. 
    I have Dream Weaver CS4 which I used to create my website with.  My Web host has MYSQL, and PHP if I need a dynamic creation capabilities. 
    Is there a tutorial out there that I can use to walk me through how to create a calendar scheduling capabilities? Is there a video that I download that can walk me through creating this capability? Is there code out there that I can paste that will perform this function for me? 
    I’m willing to read and learn.  Please forward an answer or suggestion to me at
    [email address removed by host]

    I don’t use adobe website often and I don’t use the forum often, so when accessing my page after logging in, my objective was to post a question, but, the website isn’t intuitive nor is there verbiage specifically saying the obvious, “Select a product that you want to post a question about, or “Click Here””.
    Either put simple and direct verbiage stating where to post specific questions or put visuals that pop up that guide a user to open forums associated to specific product. 
    It’s natural for a user that isn’t used to your website to make this type of mistake.  I’d recommend that you consider testing your website with testers by providing test material asking the tester to access certain areas of your website with minimum instructions. Then allow them to critique the intuitiveness of your website. 
    When I worked for Raytheon, One of our software testing techniques was asking people who had “no” idea of the functionality of the software to test and submit critiques as to the website intuitiveness.  We found that out software development team assumed that most users were savvy enough to navigate the software.  Thus, we didn’t allow our development team to write user instructions because our software developers couldn’t understand why users weren’t able to follow their user instructions. We created training material for the user that had the least understanding of technical stuff.  This allowed us to ensure that any and all users were able to navigate our software app without feeling like punching the screen.
    I did attempt to search for the correct place to submit my question, but, as you can tell, I didn’t do a good job. 
    fmb

  • Survey Builder : Survey question not populate with questionnaire link.

    Dear Friends
    i have created application using SURVEY BUILDER Package application .
    i have two application with same schema .one is my created application :100 and second is Survey Builder pacaskge application 105 ,with no chamge in survey builder application.
    My Questionnaire Link is created but when i put this link into address bar then there is no rection,no question set open in that window.
    Questionnaire Link
    http://178.110.201.231:7777/apex/f?p=100:Q::AAL8:::code:AQDQEIWJAUWVCGGZ
    this is my application question link.
    But if i change application no 100 with survey builder application 105 and submit then survey question open .
    I am confuse where is problem why survey question does not populate with my application 100.
    Please help.
    Thanks

    Did you get your link from "Manage Respondents"?
    I usually get a link like
    http://apex.oracle.com/pls/apex/f?p=67351:Q::ABCD::::
    (this is an example that doesn't point to a real live survey).
    http://178.110.201.231:7777/apex/f?p=105:Q::AAL8:::code:AQDQEIWJAUWVCGGZ
    did not work for me, maybe because of your specific IP:port in the URL. Sometimes the colons ::: create a problem when copying/pasting to email, so I use a service such as is.gd to transform it into a simpler URL like
    http://is.gd/B7hxIl
    Does that help?
    Ben

  • Survey Permissions - Not allowing submission

    I have created a survey that the Sharepoint Admin group can submit without any issues.
    Our "normal user" groups are all specifically set to "Contribute" for the survey (have "Read" on the remainder of the site). Using one of the "normal user" logins, the option for "Respond to this Survey" is available, and the users can actually get into and fill in all the fields. However, when clicking "Submit", they get an access denied message.
    From what I've been able to find in FAQs, online, etc, it seems the common mistake is putting normal users as "Read" and not "Contribute", but apparently I'm missing something else...any ideas?

    Hi,
    To submit a survey, the user should have at least the following permissions:
    - Add Items
    - Edit Items (for Branching Logic in the survey)
    - View Items
    - View Pages
    - Open
    If you set “None” under Edit access: Specify which responses users can edit, it would revoke “Edit Items” right for an user which in turn would result into error message.
    So please check the following settings:
    1.       Open the surveys, click settings-survey settings, click advanced settings,
    2.       Make sure Edit Access enable “Only their own” instead of “None”.
    3.       Check the effect.
    Hope this helps.
    Rock Wang
    Rock Wang– MSFT

  • CRM Survey in B2C Internet Sales Application

    We have CRM 2007 and are live with B2C Internet Sales Application (ISA). Now we want to make Customer Surveys accessible via B2C ISA.
    For security reasons, we do not want our B2C Internet Customers to have access to the CRM system. Therefore the BSP option is ruled out. I have seen some blogs on how to enhance security for BSP option but that is also not approved in our organization so BSP option is totally ruled out.
    SAP help documenation mentions following:
    http://help.sap.com/saphelp_crm70/helpdata/en/ee/eaf995082649c6a594511e1f48672d/frameset.htm
    Internet Scenarios
    Since Internet users cannot be allowed access to the CRM system for security reasons, surveys have to be made accessible in a different way. You can do this by downloading the required HTML survey to your PC. From here, you can:
    Copy the HTML survey into any Web site
    Send the HTML survey attached to an e-mail
    Internet Scenarios
    In Internet scenarios, results can be returned by the following methods:
    Mailto
    In this case, a mail client, for example, Microsoft Outlook, needs to be set up in advance on the client machine. Survey results are sent to a CRM Server Mail User, that is, a u201Cmachineu201D user. From here, the results are routed to the CRM system for further processing.
    http(s)
    Note
    The http(s) case is recommended, because the user does not have to have a personal e-mail account. Here, the survey results are first sent to a Survey Mailer. The Survey Mailer receives the http request and then mails the results to the CRM Server Mail User, where they can be processed. The Survey Mailer needs to be set up by the administrator at the customer.
    For presenting the Survey on ISA, we would like to take the option of Copy the HTML survey into any Web site as suggested in SAP help and would like to get back the results as per SAP help recommendation of https(s) above.
    We need guidance on follwing
    1. How to download and then copy the HTML surveys into any website (ISA)
    2. Detailed steps that are needed for gettting back the survey results.
    By the way...we do understand the survey functionality and have been successful in testing the BSP option so we are not looking for general information.
    Thanks
    Vijay

    Hello Vijay,
    Could you please share the information on solution steps used as per the requirement??
    I'm working on the similar one.
    Your earliest response would be greatly appreciated. Thank you Vijay.

  • CRM Survey Suite: Replace Text after submitting the survey

    Hi Experts,
    i have a question concering crm_survey_suite (I use surveys in web scenario). When I submit a survey I get a message like: "Your request is being processed". Actually I'd like to change this text, but I can't find the coding that is responsible for the message. Any ideas where to find it? Points will be rewarded!
    Thanks & Regards,
    Rainer

    Hi,
    The message -Your Request is being processed" is a standard SAP message and is not specific to Survey.
    As per standard behaviour everytime you save some data on WebIC or request for some data to be displayed on the UI, it displays this message and after the save is complete or the data is fetched , this messages is replaced by other suitable message.
    If you try to change this one it will be change at all places.
    Would you still like to proceed with this
    Hemant

  • Excel Survey in SharePoint: is the responses file open for everyone?

    If I make an Excel Survey in OneDrive for Business, is the Excel Workbook that contains the responses open for everybody? Because if it's not, are the users able to submit a survey?
    Is there another way of doing an Excel survey where the responses will remain visible only for the author?

    Hi,
    According to your description, my understanding is that you want to make the responses that remain visible only for the survey owner/author. If yes, please try this: we might create a survey that others fill out just by
    opening the link you provide. You’ll see everyone’s response compiled in one online spreadsheet.
    For more detailed steps, please see these links:
    https://support.office.com/en-us/article/Surveys-in-Excel-hosted-online-5fafd054-19f8-474c-97ec-b606fcda0ff9
    http://blogs.office.com/2012/11/16/excel-surveys/
    https://support.office.com/en-us/article/Manage-external-sharing-for-your-SharePoint-Online-environment-c8a462eb-0723-4b0b-8d0a-70feafe4be85?CorrelationId=9198bb1e-11ea-4728-a1ef-7cacb74597eb&ui=en-US&rs=en-US&ad=US
    If you have any further question about Excel Survey in OneDrive for Business, I recommend you post the question to Office 365 forum:
    http://community.office365.com/en-us/f/172.aspx
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • BUGREPORT: Appworld website

    Hi,
    BUG: No picture thumbnails currently displayed for "Top albums" section in Appworld.
    To reproduce:
    1. With your browser (I used Firefox 18.0.1 on Windows XP) go to http://appworld.blackberry.com/webstore/?
    Observe: "Top albums" section does not have thumbnails shown, neither on mouseOver or mouseOut
    Bug is reproducible, too obvious and stays the whole morning already. Please fix asap - not good for the BlackBerry brand.
    Just re-tested on IE7 - picture are just not loaded.
    I just clicked one album - after opening the page for the album there is no picture too. There is a place on the left just below the title where picture should be loaded, so either the path is wrong or the picture file is not there.
    Good luck.
    PS: I am frustrated: So I am a regular customer, software developer by profession. Tried to submit this to the official website bug email ([email protected]) with a screenshot and got my mail rejected. Why do you publish support emails when you reject the messages? Complete non-sense. Didn't expected it. If the attachment was the problem - just setup a simple page on the website for submiting website feedback with a text field for subject, text area for the actual text and a field for picture upload for screenshot. Simple - would take about 10-20 minutes to be created. Or in the automated response at least write "we don't accept email attachments". Anyway. Then called the corporate phone in Waterloo and spoke to some lady who had no idea what I am talking about and asked me some non-sense things about numbers I don't have. Guess she thought I am a corporate customer. When I laid it out clear saying "I am submiting you a website error report" she gave me some other email ([email protected]) to re-send my email, instead of contacting your support herself. I sent them the same email. Just in case decided to submit it here too. Guys why don't you have a website dedicated subforum for such things? The last thing I want to do is to send bugreports where I am not supposed to. Not mentioning that website users are not supposed to see such obvious things. Your QA guys should pay a bit more attention before something is released in a production environment.
    Anyway. Hope you fix it soon.

    Have you yet logged in to AppWorld ON your BlackBerry device?
    Do that.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for