Different user options with different sets of questions

Is there a way I can have two different options and when the user clicks on option A a whole set of questions/form fields appear. Or if they select option B a whole different set of questions/form fields appear?
How would I go about programming something like that?
Hopefully I was clear enough. Thanks so much! :)

Hi Arnold,
SAP Logon Tickets issued by the Portal contain two user ids, basically one for Java Systems and one for ABAP systems. See also note 843061 for details.
You do not need passwords for the reference system, if the user mapping is maintained by the user administrator, and the UM property ume.usermapping
.admin.pwdprotection is set to false, see http://help.sap.com/saphelp_nw04/helpdata/en/fe/d22a41b108f523e10000000a155106/frameset.htm. If you set the mapped user id programmatically, or if you retrieve it from an LDAP server, you also do not need to verify the ABAP password of the user (see https://media.sdn.sap.com/javadocs/NW04/SP12/ume/index.html and http://help.sap.com/saphelp_nw04/helpdata/en/0b/d82c4142aef623e10000000a155106/frameset.htm).
Best regards,
Joerg

Similar Messages

  • How to personalize the content users see with a set of questions/answers?

    Hi
    I have built my website using dreamweaver CS5.5 and would like users to be able to personalize the content that is displayed. Users will first see a page with three questions. Once they have answered the questions, they should then click 'submit' and be transferred to the site with the information most relevant to them, depending on the answers they gave to the questions.
    I know how to create froms and the questions with radio buttons, but I cannot figure out how to make the 'Submit' button link to different sites depending on the answers that users have given.I guess this will need some kind of if/then rule in JavaScript that is then linked to the 'Submit' button? I am really not sure how to best do this.
    (Note: there is no need for the answers to the survey to be saved as data anywhere if that makes life easier)
    Any advice would be greatly appreciated!

    Right, here we go, this is the code for the question form (currently still with spry validation):
    <form id="Personalize_OvDex" name="Personalize OvDex" method="post" action="">
    <p>Question 1: Do you have a faulty gene or a family history of Lynch Syndrome?</p>
    <p><span id="spryradio1">
      <label>
        <input type="radio" name="Question1" value="BRCA1" id="Q1_BRCA1" />
        Yes, I have a BRCA1 faulty gene</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="BRCA2" id="Q1_BRCA2" />
        Yes, I have a BRCA2 faulty gene</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="Lynch" id="Q1_Lynch" />
        Yes, I am from a Lynch Syndrome family</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="unclear" id="Q1_unclear" />
        Don’t know, I have not been tested for a faulty gene or my genetic test </label>
      <br />
      <label>
        <input type="radio" name="Question1" value="negative" id="Q1_negative" />
        No, I have been tested and no faulty gene was identified</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
    <p>Question 2: Have  you ever had breast cancer? </p>
    <p><span id="spryradio2">
      <label>
        <input type="radio" name="Question2" value="noBC" id="Q2_noBC" />
        No, I have never had breast cancer</label>
      <br />
      <label>
        <input type="radio" name="Question2" value="BC" id="Q2_BC" />
        Yes, I have had breast cancer</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
      <p>Question 3: How  old are you?</p>
    <p><span id="spryradio3">
      <label>
        <input type="radio" name="Question3" value="u35" id="Q3_u35" />
        under 35</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="35to39" id="Q3_35to39" />
        35 to 39</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="40to49" id="Q3_40to49" />
        40 to 49</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="o50" id="Q3_o50" />
        50 or over</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
      <input name="" type="submit" value="Submit now" formaction="home.html" />
    </form>
    The sets of answers that correspond to a page is made up of "home_" and then the 'value' of the answers divided by underscores. So for example if someone answers Q1 with BRCA1, Q2 with noBC and Q3 with u35, the page that would link to is called home_BRCA1_noBC_u35.html
    Here's a list of the pages for which that above logic works perfectly:
    home_BRCA1_noBC_u35.html
    home_BRCA1_noBC_35to39.html
    home_BRCA1_noBC_40to49.html
    home_BRCA1_BC_u35.html
    home_BRCA1_BC_35to39.html
    home_BRCA1_BC_40to49.html
    home_BRCA2_noBC_u35.html
    home_BRCA2_noBC_35to39.html
    home_BRCA2_noBC_40to49.html
    home_BRCA2_BC_u35.html
    home_BRCA2_BC_35to39.html
    home_BRCA2_BC_40to49.html
    home_Lynch_noBC_u35.html
    home_Lynch_noBC_35to39.html
    home_Lynch_noBC_40to49.html
    home_Lynch_BC_u35.html
    home_Lynch_BC_35to39.html
    home_Lynch_BC_40to49.html
    There are just a few exceptions in which it doesn't matter for one or more questions what people answer (then the page name doesn't include the value for that answer). These are:
    home_BRCA1_o50.html (This page will appear for those answering Q1 with BRCA1, Q2 with either noBC or BC, and Q3 with o50)
    home_BRCA2_o50.html (This page will appear for those answering Q1 with BRCA2, Q2 with either noBC or BC, and Q3 with o50)
    home_Lynch_o50.html (This page will appear for those answering Q1 with Lynch, Q2 with either noBC or BC, and Q3 with o50)
    home_unclear_noBC (This page will appear for those answering Q1 with unclear, Q2 with noBC, and Q3 with any answer)
    home_unclear_BC (This page will appear for those answering Q1 with unclear, Q2 with BC, and Q3 with any answer)
    home_negative (This page will appear for those answering Q1 with negative, Q2 with either noBC or BC, and Q3 with any answer)
    Hope this includes all the info you wanted. I know it's quite complicated.

  • How do I set up different network locations with different wifi?

    I am having an issue setting up different network locations with different wifi profiles on each. I want to do this to enable fast switching of wireless networks. In my house I have two wireless networks, my own personal one and one that is created by using a wifi modem supplied by my company. If I use the company wifi network then I can get into all my work applications without having to enable VPN access separately. It is also faster. However, they also block many applications including sending email from my personal email account, dropbox, etc. So throughout the day I need to switch wireless networks back and forth.
    I was looking for a faster way to switch and thought I would try network locations. Was able to set up a new network location without issue. However it seems that whatever wireless preferences, changes, or wifi network order I put into my "Work" location it carries over to my other location which is the standard "Automatic".
    What I would like it to have my "Work" location only to be able to connect to my work wifi and my other network (Automatic) to just connect to my home wifi only. That way I can enable faster wifi switching and can even use my launcher program (Alfred) to provide shortcuts.
    Anyway to do this?
    Thanks in advance for any help or advice.

    Just thought I would bump this up in the conversation. Doing a further search I came across this discussion which is similar: Connecting to a wireless network via applescript?
    However, I tried to build the Automator application as discussed and cannot get it to work. Very much a novice at Applescript and Shell Script but have created customized Automator services before. All I get now is "Shell Script command encountered an error". No more detail. I copied and pasted the script as shown in the email thread. Is there any other line or command I need to place in front of it?
    Thanks again for any help

  • How can I use different calendars associated with different emails to see appointmen​ts separately​?

    I have 3 emails accounts on my Blackberry curve. I want to use different calendars for different type of reminders/appointments. How can I do that? In calendar I pressed menu key and then clicked on select calendar, choose one email address (email 1) then entered an alarm but now if I go to a different calendar associated with different email ( email 2), it also shows me that alarm which I entered in email 1 calendar. Thanks for help

    Don't have LV handy to open the old code, but I did read through the thread you referenced.  It sounds like the example configured 2 counters to create the variable-freq finite pulse train and configured a 3rd counter to count the # steps generated as verification.   That 3rd counter would be a problem for you as there is no internal timing signal connection between your 2 USB devices.  You would need to run a physical wire connection and change some of the config code to match.  Alternately, you could just delete all the code associated with the 3rd counter for now because it isn't strictly necessary.
    Further advice/questions:  Are you planning on a pure sine wave of frequency such that you oscillate with both positive and negative velocity (example: varying from -1000 to +1000 Hz clockwise)?  Or is there a nominal average frequency with a small sine wave superimposed (example: nominal of 1000 Hz clockwise, variation of +/- 50 Hz)?
    I *think* you may be dealing with more of a continuous pulsetrain situation, which is actually much simpler.  You would only need 1 counter/timer, though you would still perform the freq changes in a timed loop which uses the pulsetrain as its timing source.  You'd just need to keep track of your total elapsed time so you could figure out the right sinusoidal freq value at the moment you're ready to update it.
    Another subtlety to watch out for if you're oscillating about 0 velocity  -- don't try to create a frequency that is lower than the rate at which you need to update.  Also, with steppers you may have mechanical stability issues at low freqs like 10's to low 100's of Hz.    These kinds of things may need to be managed as special cases which force you to deviate from a "pure" sine wave.
    -Kevin P.

  • How to make different users to use different Plan_Tables?

    How to make different users to use different Plan_Tables?
    I want each user use his own's Plan_Table. How to achieve this goal?

    qkc wrote:
    How to make different users to use different Plan_Tables?
    I want each user use his own's Plan_Table. How to achieve this goal?Which version of Oracle - if you're on 10g or later you are already (effectively) doing this.
    If not, then copy the 10g strategy back to your version; in outline:
    <ul>
    drop all existing plan tables
    create a table (but call it plan_table$) in the SYS schema (you may prefer to use SYSTEM) as a global temporary table on commit preserve rows
    create a public synonym plan_table for plan_table$
    grant select insert update delete on plan_table to public
    </ul>
    Look in $ORACLE_HOME/rdbms/admin/catplan.sql in a 10g version of Oracle to check how it's done.
    Each user gets a private (temporary) table in their temporary tablespace whenever they use the plan_table
    Their private data disappears when there session ends.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    There is a +"Preview"+ tab at the top of the text entry panel. Use this to check what your message will look like before you post the message. If it looks a complete mess you're unlikely to get a response. (Click on the +"Plain text"+ tab if you want to edit the text to tidy it up.)
    "Science is more than a body of knowledge; it is a way of thinking"
    Carl Sagan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Me and my wife have two different iTunes accounts with different music, how can we syncronice this to our Ipad?

    Me and my wife have two different iTunes accounts with different music, how can we syncronice both our accounts to our Ipad?

    I'd like to know the same thing...

  • HT4528 Can I put the same information on two different i-phones with different numbers and different ID's?

    Can I put the same information on two different i-phones with different numbers and different ID's?

    Yes and no it really depends on what information you are putting on the devices.

  • Printing different/selective files with different copies

    Hi everyone,
    I've been working on finding a solution, on how to print different pdf files with different copies, without opening the pdf-files.
    Task:
    I have a folder, with 25 pdf files
    I want to make a php overview, of the folder
    At the end of each line/file - i would like to add a number for the copies
    In the end, I would like to simply press print - and every document ive added a number/copies to - are being printet...
    I guess I need to use PrintPDF - but does anyone know any pre-made program/function - that could handle the "copies" part...?
    I hope someone can help me out,
    Thanks
    Jan

    Well, i had hoped that the acrobat could open silent - eventhough they've removed that feature in the newer versions.
    Even though the program would open - if the amount of copies was added - and i just hat to press print - it would ease the job alot.

  • Can i share live documents in pages between different apple devices with different owners

    Can i share live documents in pages between different apple devices with different owners

    iTunes: How to share music between different ... - Apple - Support

  • How to Generate 997 for different trading partner with different Interchang

    How to Generate 997 for different trading partner with different InterchangIDS
    We are planning to use same working “ABC -> XYZ (Host)” 850 “ecs” file even for “EFG -> XYZ (Host)” 850 Transaction. And we have successfully implemented without any issues.
    We wanted to send 997 Acknowledgement in case of “EFG -> XYZ (Host)” 850 transaction.
    In this case also we would like to use same “ecs” file which has been used for “XYZ (Host) -> ABC”.
    After adding the 997 capabilities to Stanley I don’t see any extra capability added to “XYZ (Host)” trading partner.
    The generated 997 for Stanely EDI file doesn’t reflect the “XYZ (Host)” trading partner Interchange ID. It is getting reflected the previous 997 Transaction “XYZ (Host)” Intercahnge ID.
    We use following Interchange ID’s
    ABC = 005381447
    XYZ (Host) = 049894764
    EFZ = SWEOT30013
    XYZ (Host) = 5273851T
    The 997 which is generated has the InterchangeID as this “049894764” instead of “5273851T”
    Regards
    Ravi

    Hi Ravi,
    You have to have the two Delivery Channels under Host TP's communication capability. One host delivery channel should be used with one TP only and will have specific values to that TP.
    Go to the Exchange Protocol Parameters of Host TP (XYZ) delivery channel (which you are using in the agreement with EFZ) and provide the required values here. Revalidate and redeploy the agreements and run a test. Let us know if you still face issue.
    Regards,
    Anuj

  • Option with barrier - set up in MRA

    Hi to everyone!
    I have many doubts about options set up and I hope you can help me, actually I donu2019t know how to do itu2026
    Iu2019m setting up option with barrier: up&in, up&out, down&in and down&out. First of all, can you tell me the main transaction that I have to set up? And the set ups tricks, I mean the filling fields that make the system work correctly.  Have you options with barrier set up documents to help me?
    The other doubt is how to check the option NPV, I know that the price model is Rubinstein and Reiner model, but I donu2019t know how to calculate it.
    Could you help me?
    Luci Maki

    Hi Luci,
    see online documentation on:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/4f/f11204628011d28739080009b423f4/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/0c/327416a3ba11d186b7080009b423f4/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/cd/17f2b2d52411d189f30000e829fbbd/frameset.htm
    BR, Tomislav

  • How to use logon ticket in case of different user id with SAP R3

    Hi.
    I try to login from EP to SAP R/3 using Logon Ticket but
    My problem is that EP, R/3 user id is different.
    Is there any method to login SAP R/3 using Logon
    Ticket in case of different user ID ?
    Regards, Arnold.

    Hi Arnold,
    SAP Logon Tickets issued by the Portal contain two user ids, basically one for Java Systems and one for ABAP systems. See also note 843061 for details.
    You do not need passwords for the reference system, if the user mapping is maintained by the user administrator, and the UM property ume.usermapping
    .admin.pwdprotection is set to false, see http://help.sap.com/saphelp_nw04/helpdata/en/fe/d22a41b108f523e10000000a155106/frameset.htm. If you set the mapped user id programmatically, or if you retrieve it from an LDAP server, you also do not need to verify the ABAP password of the user (see https://media.sdn.sap.com/javadocs/NW04/SP12/ume/index.html and http://help.sap.com/saphelp_nw04/helpdata/en/0b/d82c4142aef623e10000000a155106/frameset.htm).
    Best regards,
    Joerg

  • User Account with different languages

    Dear Friends,
    I need to have one user account with a different langauge, i.e. I need that when a partucular user log-in, the system swithch to spanish, and when one other user log-in the system goes back to english.
    Is ti possible? and How?
    Thanks for your help.
    Federico.

    is GREEK just not a supported language
    You can see exactly what languages are supported in the OS X tech specs:
    http://www.apple.com/macosx/techspecs/
    In addition, the Tiger that comes with Intel Macs has Russian.
    A Greek add-on is only available via Rainbow and 3rd party patches. One is mentioned here, I don't know if it works right or causes problems.
    http://betabug.ch/blogs/ch-athens/124

  • OIM - Users provisioned with different resource form versions

    Hi !!
    we are having some problems with different resource form versions and maybe you can help us.
    We have two different versions of one resource form. One of them has 2 extra fields.
    Some users were provisioned with that resource with the previous form version (no extra fields) and some with the new one (extra fields).
    The problem is that now, if we try to edit that resource for the users with the old version, we are not able to edit or even see the information for those extra fields.
    It seems that they have been associated with the old version and we need to change it in order to make them use the new one. Is that possible? How can we fix that?
    Thanks in advance.

    Alternatively you can manually update the form version in the OIM database.
    If it is a small number of forms it might be easier to do that then to bother with fvc.
    Best regards
    /Martin

  • Different migration options with OWB.

    Hi there,
    We are very new to Oracle Warehouse Builder (OWB) version 10.2.0.3. We are Oracle E-Business Suite users. We will be loading data into 10gOLAP cubes via Analytical Workspace Manager and will be using Discoverer for OLAP for reporting.
    We are considering various options with OWB migration from DEV -> UAT -> PROD.
    Our current thinking is to install OWB in our DEV environment only. PL/SQL packages that are generated in DEV and tested will be migrated to UAT for execution.
    Results of the execution of the PL/SQL packages in UAT will be subjected to users testing. Upon successful UAT testing by the users, we then migrate the PL/SQL code to PROD for execution.
    What are the short comings of the above arrangement as compare to installing OWB on all three environments.
    Also what are the benefits of using Workflow Manager as compared to using concurrent manager to submit our OWB PL/SQL packages?
    Please share your thoughts on the above.
    Thank you in advance

    Sorry, but as you deduced, you cannot use branching in tests.
    A test is expected to be a linear progression of slides,
    where all scored slides have answers. If the user never sees some
    questions, they cannot get 100%.
    You might want to submit a feature request to specify that
    only answered questions be evaluated when determining quiz passing
    (or whatever terminology best fits what you'd like to see).
    You can so so here:
    Link
    to Adobe Captivate Feature Request Form

Maybe you are looking for