Multiple choices in droplist?

For as much as I know, a droplist cannot have multiple selected items when using normal javascript in Designer 7.1. Has this changed with Designer 8 / ES and if so, is there any special limitation in version of the Reader to use? 8.0 or 8.1?
If no on the above questions, does anybody know of any workaround so that it is possible with multiple choices although it is a droplist or is it completely impossible with PDF?

In Designer ES I know that it should be possible to use multiple selections in lists but it doesn't seem to be possible in dropdown lists. At least that is what I get out of Stefan's blog below. If anyone has any other experience, please let me know.
http://forms.stefcameron.com/2007/02/01/new-list-object-properties-and-methods/

Similar Messages

  • Best app to import and study multiple choice questions.

    Hi,
    I'm searching for an app to help study for an exam.
    Part of the studying strategy is to study by the previous exams questions. I have those (a lot of them) in text format.
    The app would need to have:
    - Support for multiple-choice questions;
    - Easy, fast and automated way of importing the questions;
    Would be nice to have:
    - Ability to include a rich-text comment along with the right/wrong answer;
    - Support for tagging each questions.
    I've used the search function and found this:http://forums.macrumors.com/showthread.php?t=1041085 but it's been a while since then.
    thanks in advance

    Hi Konrad;
    What approach would you recommend to import and export EBS data? Open Interfaces, PL/SQL, web services or anything else?For your question please check below notes:
    Export/import process for R12 using 11gR1 [ID 741818.1]
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    General Notes For E-Business Suite Release 12 [ID 986673.1]
    Please also check below thread:
    how to export data from ebs
    how to export data from ebs??
    Also check below search which could help you about your issue:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=import+export+&objID=c3&dateRange=all&userID=&numResults=15
    http://forums.oracle.com/forums/search.jspa?threadID=&q=export+data&objID=f475&dateRange=all&userID=&numResults=15&rankBy=10001
    Hope it helps
    Regard
    Helios

  • Grey box over multiple choice options in quiz (Captivate 5.5)

    I created several quiz slides - all multiple choice.  When the mouse is moved over the answer options a grey box highlights the radio button and text of the option.  I'd rather not have this grey box displayed.  Any ideas on how I turn off this "feature"?

    Interesting.  Can you upload screenshots of a question with the grey rollover and a question that does not have it, each with a mouse cursor over an answer item, so that we can see?
    Is this a project that has been upgraded from an older version of Captivate or was it built from scratch in Captivate 5.5?

  • Highlighting text box for multiple choice presentation.

    I'm making a multiple choice presentation and need help highlighting the correct answers.
    I'm using Keynote v5.3 and here is the format of my slides:
    Text box - Question
    Text box - (A) Answer A
    Text box - (B) Answer B
    Text box - (C) Answer C
    Text box - (D) Answer D
    When I click to advance, the desired effect I'd like is for the correct answer to turn red in order to let the class know that it's the correct answer.
    I looked on the Build Inspector tool but the only Effects that appear in the Action section are Move, Opacity, Rotate and Scale. None which I don't want.
    Is there a way to animate the correct answer/text box to change color?
    Please help. Thanks!

    builds only work in  linear order ( 1, then 2, then 3,  then 4 ) they don't run in a random access selection,
    ( 4, 1, 2, 3 ) which is what would be required in the method you describe.
    the  way to do this is to use hyperlinks from the first slide to four other slides
    on slide 1:
    type the question and  the multiple choice statements
    draw a shape beside each statement and use this as a hyperlink button to the  respective slide number
    select each shape in turn:
    inspector > hyperlink > enable hyperlink > link to slide and select the respective slide number
    when you click on   button A, it will display the the responce to choice d
    by the way, viewers have been taught that colours have  certain associations ( country dependant of course)
    such as red for danger so
    the traditional colour to use for a correct answer is GREEN
    the traditional colour to use for an incorrect answer is RED

  • Keynote and multiple choice quizes

    Does anyone know of a way to create a multiple-choice quiz with Keynote?
    What I mean is, can you create links from a question page (with video and text) with 4 options and then create pages responding to the users' choice...correct or incorrect... then move onto the next question page etc...?
    Is there a way to use the Hyperlinks function in Keynote for this purpose?
    I plan to export to iDVD and have an interactive quiz DVD...
    I remember doing something similar a while back with Powerpoint.
    I like to push the boundaries and see what can be squeezed out of a piece of software...

    Sorry for the late response...
    What do you mean by "I'm just saving them on my computer". Do you open the PDF with some application (which one?) and then do a save from that application?
    You can send your PDF (with the missing border) to [email protected] with a reference to this post and I can have a look at it.
    Gen

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left.

    This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left of each drop down.

    See McAfee support to find out how to disable that McAfee feature - that isn't part of the normal Firefox installation.

  • Multiple Choice Question Issues

    I am embedding a quiz within my presentation with individual
    question slides interspersed throughout the presentation. These
    questions are pulled from a couple of different question pools. I
    want to use a multiple choice question that branches to different
    parts of the presentation depending on the correct or incorrect
    answer. If the user answers the question incorrectly, I send them
    to the next slide which has two click boxes. On this slide, they
    can either click one box to move back in the presentation and
    review the material or click another box to move them forward to
    another multiple choice question. If they go back and review the
    information, they would eventually return to the same multiple
    choice question to try it again. (This is the desired navigation,
    anyway.)
    What actually happens is that when the user goes back to
    review the information and then finally returns to the question,
    the question has not been reset and still shows the incorrect
    answer marked with no way to clear it.
    I have used this same navigation on a drag-and-drop type
    question and it works fine. All the settings for the
    multiple-choice questions are set the same as in the drag-and-drop
    question.
    Any help in making this work correctly would be greatly
    appreciated.

    I can't see where that error might arise except possibly for a case where an AS2 radio is used since it appears they don't have a group property, but an AS3 radio button does.  Check to be sure that your Flash Publish Settings are set to use AS3.  AS3 errors normally have error numbers which also makes the error you quoted ring of an AS2 scenario.
    Here's a link to the file I made based on your code that works fine and doesn't display the errors you mention.  It is a CS3 file.
    http://www.nedwebs.com/Flash/AS3_Radios.fla

  • Multiple Choice Quiz issues

    Hello
    I just build a multiple choice quiz using Captivate 3. The
    quiz have3 right answers. I set it up so that the user has infinite
    number of attempts. However after the first try I can try the quiz
    again.
    Has anyone experienced this problem. If it's not fixable, my
    project is doomed.

    Can you restate the problem you're having? Is it that you can
    NOT try the quiz again?
    Otherwise, from what you wrote, it doesn't sound like there's
    a problem...

  • Multiple Choice in Pages 5

    I want to make a multiple choice exam in Pages 5 that looks like:
    1. The sky is
         a. blue
         b. green
         c. yellow
         d. striped
    Instead I get:
    1. The sky is
         1. blue
         2. green
         3. yellow
         4. striped
    I can go through and highlight the choices converting them from numbers to letters manually, but that is such a pain. In pages 8 the program autoformatted just fine.  Now I can't seem to figure out how to make it do this one simple task.  HELP!!

    It actually was an upgrade in version number only. Pages v5+ was an entire new design/rewrite, and Apple released it far before it reached parity with existing features in Pages ’09. Who in their right mind, releases an entirely new and incompatible document architecture, with the same filename extension (.pages), into a user community containing many thousands of older Pages documents. And doesn't warn them.
    In another post, I applied the term Pandora's box to Pages v5+. Subtle me.

  • Why is the placeholder Q&A for multiple choice not visible on screen?

    After inserting 6 Multiple choice quiz slides in Captivate 7, the placeholder Q&A text is not visible, so there's no way for me to modify them with my Q&A's. However, they are visble in Preview mode. Any suggestions?
    This is happeneing in a project that someone else created & I am editing. I made a new version & copy/pasted the quiz slides into a new file. Ever since then I've had this problem. When I open the original file, it's now doing the same thing there as well. What gives??
    Below is what I'm seeing. If you look at the slides on the filmstrip on the left, you can see that there is nothing there, however in the Preview, you can see the placeholder text.

    Hi Rod & Lily! Thanks so much for replying.
    OK - the screen shot below is what I see when I am in edit mode. Completly blank except for the "Multiple Choice" heading at the top. I've highlighted in red on the Properties & Filmstrip, which Master slide I'm using. Hopefully you can see that on the Master Slide the placeholder text is there, but not in the edit view.
    Lily - below is a screen shot of the Quiz Properties. Hopefully you can see it.

  • PDF Form: Multiple Choice sheet that displays a percentage based on answers provided

    Hello,
    Im trying to create a form that has 4 multiple choice questions, the answers to each being the values 0,1,2,3,4, 5 or N/A.
    Once answers are given, I'd like the percentage to appear on the form.
    I can't figure out how to do this, as the total fluctuates depending on if the response to one or more questions is "N/A".
    I.e. if the answers were as follows: 4,4,4,4, the percentage would be 80% (16/20).
    However, if the answers were: 4,4,4,N/A, the percentage would also be 80% (12/15) and NOT 60% (12/20).
    I figure its a javascript thing - but alas I do not know Java.
    Help Please!

    So you want to compute the percentage of the non-"N/A" selections using the count of selected items * 5 as the denominator and then use that value to divide the sum of the values for the non-"N/A" selections.
    Has a default checked value been selected.
    Since the averaging is not just computation of the mean based on the item count, you to create a custom JavaScript calculation.
    var aNames = new Array("Radio Button.0", "Radio Button.1", "Radio Button.2", "Radio Button.3"); // array of field names
    var aValues = new Array();
    var sum = 0;
    var count = 0;
    var oField;
    event.value = "";
    for(i = 0; i < aNames.length; i++) {
    // get values of fields into array;
    oField = this.getField(aNames[i]);
    if(oField ==  null) app.alert("Error getting " + aNames[i] + " field!", 0, 1);
    else aValues[aValues.length] = oField.value;
    if(aValues.length != 0) {
    // sum the non-N/A vlaues in the array;
    for(i = 0; i < aValues.length; i++) {
    if(String(aValues[i]).toUpperCase() != "N/A") {
    sum += Number(aValues[i]); // sum the non-N/A values;
    count++; // count the non-N/a values;
    // compute average if count not zero;
    if(count != 0) event.value = sum / (count * 5);

  • Multiple choice with multiple answers

    Hello,
    I was wondering if someone can help me out.  I'm creating a series of tutorials useing Captivate and at the end of each one I want a slide that has the options
    a) re-run tutorial (jump back about 100 slides)
    b)go to next tutorial (next slide)
    c)return to start (jump to slide 1)
    I've had a look at the multiple choice questions in Captivate but they only seem to alow you to make one movement with a "correct" answer and I'm looking for more of a navigational tool.  Would this functionality be stored under the 'Quiz' section or somewhere else or is this function just not available in this tool?
    Thank you very much for your help,
    Michelle

    Hi there
    Notice that with the Multiple Choice question type, when you select one of the possible answers you have an Advanced button that may be clicked. You may then assign a different action for each answer selected. So answer a could jump back 100 slides, answer b could open another project and answer c could perhaps open Google.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • RE: Multiple-Choice Format of Review Questions in i Books

    Greetings Developers of the i Books Author App,
    When will a widget be developed for i Books that allows users of i books to type their answers to review questions in a 'text field' so that users are required to logically demonstrate deep conceptual understanding in science instead of merely guessing a simple multiple-choice answer, either A, B,C, D, or E to a simple, trivial factual recall 'intellectually shallow' question in secondary high school science?
    Thanks and Best Wishes,
    BabyBoomer44

    You should send feedback to Apple directly as your target audience doesn't review the public discussion forums.

  • Adding multiple choice to an email form

    One or more of the fields has to contain multiple choices. EG: How did you hear about us? the filed would expnd to expose the chices like, Website, Friend, Newspaper Ad, Magazine Ad and Other for example?

    Hi
    Please refer to this thread :
    http://forums.adobe.com/message/6100050#6100050
    Thanks,
    Sanjit

Maybe you are looking for

  • After firmware upgrade problem CP1025NW

    I am trying to upgrade the firmware on my CP1025NW printer.  I downloaded and ran the firmware updater and it runs for a bit and then reports that it "Could not find appropriate firmware file". I have tried running the updater both through a USB conn

  • OWB Validation error

    While validating a column in expression operator in a mapping, I am getting the following error message: java.lang.Exception:ValidationError?? java.lang.Exception.API8532:Internal Error:Language Validation can’t create a unique type name when attempt

  • Whats wrong with the battery meter?

    The battery sometimes goes up and the goes down Example: The battery is on 86% then it lowers down to 80% and then goes back to 84%

  • Silent Client installation 10g

    Hello, Is it possible to run a silent installation for oracle 10g CLIENT INSTALLATION ? Thanks

  • Ps query results to xml using xml link function registry

    In People tools version 8.46 we need something like where the ps query result output is in the form of XML so that it can be used for external system. The catch I cannot use webservices. It is something like opening peoplesoft queires form excel usin