Survey lists List

i have approx 40 survey list created by many user. No i want to display all user specific survey lists list name in a table view. 
like there are 5 survey list  survey 1, survey 2....upto survey 5.
user 1 has created survey 2 and survey 3
whereas, user 2 has created survey 1,4,5
now i need a list something list that:
For User 1
Name|Created on|Created by
Survey2(hyper-link, will redirect to this survey list)|<date>|user1
Survey3(hyper-link, will redirect to this survey list)|<date>|user1
Same as For USer 2
Name|Created on|Created by
Survey1(hyper-link, will redirect to this survey list)|<date>|user2
Survey4(hyper-link, will redirect to this survey list)|<date>|user2
Survey5(hyper-link, will redirect to this survey list)|<date>|user2
Please help me how to Create the above list in "O365" either by using custom app or anything that can suffice my requirement.

Hi,
According to your description, my understanding is that you want to get the list url, list created date and created by field value from suvery lists based on specific user and display these information in a list.
You can create an Office 365provider hosted app with Client Object Model and query the list field using caml query and filter the date with the condition “Created by”= some user to achieve it.
Here are some detailed articles for your reference:
https://msdn.microsoft.com/en-us/library/office/fp142381(v=office.15).aspx
https://msdn.microsoft.com/en-us/library/office/ee534956(v=office.14).aspx
Best Regards
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Jerry Guo
TechNet Community Support

Similar Messages

  • I have a survey sharepoint list, now i want to create a webpart using this list.

    Hi All,
    i have a survey sharepoint list, now i want to create a webpart using this list.
    webpart is to "display one question from survey sharepoint list(latest question)" and enduser participate on the survey when enduser submits the question(survey), save the result in to the list and result will display as graphical representation.
    How can i do this requirement, any help?

    You do not need to create a custom web part if you need to show the latest question and then display result in graphical way. The Survey list gives that OOTB.
    If there is a specific requirement, you can use Server/Client Object Model and achieve it.

  • List List ? extends T cannot be assigned to List List T , why?

    Can someone help we with why this fails to compile?
         List<List<? extends DrawableTile>> tiles;
         public TilePanel() {
              // This fails to compile:
              tiles = loadTestTiles();
         private static List<List<DrawableTile>> loadTestTiles() {
         }I know that this (below) works, but why not for the nested generics case?
    List<? extends DrawableTile> tileList = new ArrayList<DrawableTile>();

    List<DrawableTile> is a different type than List<? extends DrawableTile>. List of one type parameter cannot be assigned to List of another type parameter.
    Suppose you try to add a List<SubTypeOfDrawableTile> to tiles; it would work. But then suppose that the reference returned by loadTestTiles() was stored somewhere else as a List<List<DrawableTile>>. Then you would expect to be able to retrieve List<DrawableTile> out of it. Well now suppose you try to add a DrawableTile to that sublist. See the problem?
    You probably meant to do this
    List<? extends List<? extends DrawableTile>> tiles;Edited by: spoon_ on Dec 10, 2007 5:02 PM

  • Traversing var of type List List String

    hello all,
    i hope someone can help me with this little problem.
    im still a newbie on java devt.
    the problem is, i have retrieved some records from a database
    and i am trying to display it on a table. but i am having some issues
    with traversing the info returned to me, which is of type List<List<String>>.
    im using SWT by the way.
    here is the code snippet of my function:
    ================================
    * Displays the search result on the table
    * @param searchResult - search result returned after db query
    public void populateTable (List<List<String>> searchResult) {
    logger_.debug("===SearchView::populateTable()=== - START");
    logger_.debug("searchResult received: " + searchResult.toString());
    //traverse rows
    List <String> row = new ArrayList<String>();
    for (int i = 0; i < searchResult.size(); ++i) {
    row = searchResult.get(i);
    logger_.debug("row value: " + row);
    if ( (row != null) && (!row.isEmpty()) ) {
    //get row attribs
    String custId = row.get(0);
    String custName = row.get(1);
    String custAdd = row.get(2);
    String custContact = row.get(10);
    String custPhone = row.get(11);
    TableItem tableItem = new TableItem(searchTable_, SWT.NONE);
    tableItem.setText( new String[] { custId, custName, custAdd, custContact, custPhone } );
    logger_.debug("===SearchView::populateTable()=== - END");
    ================================
    thanks,
    doods

         * Displays the search result on the table
         * @param searchResult
        public void populateTable (List<List<String>> searchResult) {
            logger_.debug("===SearchView::populateTable()=== - START");
            logger_.debug("searchResult received " + searchResult.toString());
            logger_.debug("searchResult.size() = " + searchResult.size());
            //traverse rows
            List <String> row = new ArrayList<String>();
            for (int i = 0; i < searchResult.size(); ++i) {
                row = searchResult.get(i);
                logger_.debug("row value: " + row);
                if ( (row != null) && (!row.isEmpty()) ) {
                    //get row attribs
                    String custId = row.get(0);
                    String custName = row.get(1);
                    String custAdd = row.get(2);
                    String custContact = row.get(10);
                    String custPhone = row.get(11);
                    TableItem tableItem = new TableItem(searchTable_, SWT.NONE);
                    tableItem.setText( new String[] { custId, custName, custAdd, custContact, custPhone } );
    //        Iterator <List<String>> iter = searchResult.iterator();
    //        List <String> row = new ArrayList<String>();
    //        while (iter.hasNext()) {
    //            row = iter.next();
    //            String custId = row.get(0);
    //            String custName = row.get(1);
    //            String custAdd = row.get(2);
    //            String custContact = row.get(10);
    //            String custPhone = row.get(11);
    //            logger_.debug(row.toString());
    //            logger_.debug(row.size());
    //            TableItem tableItem = new TableItem(searchTable_, SWT.NONE);
    //            tableItem.setText( new String[] { custId, custName, custAdd, custContact, custPhone } );
            logger_.debug("===SearchView::populateTable()=== - END");
        }sorry bout the code formatting.
    i have already tried using the iterator but it doesn't work.
    is this the right way to use the iterator?
    i commented it out already.
    basically, the searchResult returns 3 rows,
    when i try to print the records on the table, it displays 3 rows
    but the info on those 3 rows are all from the first row.
    ex: row1 = doods, 123, aaa
    row2 = doodies, 333, bbb
    row3 = doodles, 444, ccc
    whats printed on the table:
    doods, 123, aaa
    doods, 123, aaa
    doods, 123, aaa

  • Surveys - dynamic list box option

    Hi,
    How can I control the entries for the answer category "Dynamic list box with single selection"?
    Thanks,
    Susana Messias

    Hello Susana,
    To maintain dynamic values for a specific answer, select your survey in the Survey Suite and go to the maintenance of survey attributes (CTRL+F12). Under the tab 'Technical settings', you can maintain the 'Callback to PBO' function module, which allows you to modify the survey at runtime. (The function module you specify here is called by the survey tool runtime environment at PBO.)
    As an example, you can have a look at the function module 'CRM_SVY_EXAMPLE_DYNAMIC_PBO', which contains a section to set answer options at runtime. Of course, you would have to program your own logic to meet your specific requirements for setting the values.
    I hope this helps.
    Kind regards,
    Kristoff

  • External List: List View Web Part query never returns

    I am experiencing an usual issue in our development SharePoint 2013 environment. I have been troubleshooting it for a couple hours, so thought it is time to post a message here.
    I have created a number of external content types and lists on our site. I have validated that the lists display the expected data.
    However, when I add a page to our site, and add a list view web part to the page, and point the list view web part at the external list, I get unexpected behavior.  While I am editing the page, the web part displays the expected data. However, after
    I publish the page, when you browse to the page, all you get is the rotating green arrow gif image, and no data. It displays the image forever. If you then attempt to edit the page, in the editor, you can then see the expected data.
    Any thoughts on what might be causing this issue? I have tried switching out web parts, both to the Business Data List and the Content Query web part. The Content Query web part throws an exception if you attempt to point it at any of the external lists,
    which after some reading I discovered that this is a known issue with that web part.
    The Business Data list web part shows the expected data, but I have been unable to get paging/grouping working with that web part yet.
    Greg Pierson

    I have recreated this issue on a clean site collection. I have also discovered this issue only occurs with publishing pages, not site pages. next step is to try to reproduce it on another share point 2013 install.
    Greg Pierson

  • Inserting integers in a Linked list/List in Java

    Please solve the following problem using Java.
    Problem: Write a program that inserts 25 random integers from 0 to 100 in order in a linked list object. The program should calculate the sum of the elements and the floating-point average of the elements.
    Thanks
    Ripon

    do the following 25 times
    . insert random value between x and y into my list
    All you have to do is replace x and y with your values and compile using the java -idiot option.

  • Purchase order list(list of all tables that efect when i entered a po)

    is there any script ,to know what all tables will effect when i entered po deatils
    and i approve that etc..
    if any list is there can any one tell me please.
    regards
    satish.

    Hi,
    when u go thru AP->Suppliers
    create suppliers with all the details.
    then query for the same supplier and go to its record history.
    U will get vieews.
    Go thru those views .so that u will get to know its altering tables.
    or else
    go thru po_vendors,
    po_vendor_sites_all
    po_vendor_contacts tales thru trms.
    go to its primary tables.
    u will get to know other tables which are altering.
    --Basava.S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • With multiple contact lists, list title not correct

    I have an original iPhone w/ 2.0 software, hooked up to my company's Exchange server. I created multiple contact folders on Exchange to categorize my contacts: Clients, Company, Friends, Family, etc.
    The multiple folders show up just fine as Groups on the iPhone. The problem is that when I select one of the individual lists (e.g. Friends), the title on the list reverts to "All Contacts". The list still contains just Friends, but the title has changed.
    Bug?

    I noticed a lot of people read this question and judging by how many similar questions appear on this and other forums, it appears there is a lot of interest in this topic
    I was finally able to resolve it by using a blackberry back up file (which contained all my contacts from the multiple address books on my device) and converting that data into outlook ready files. I had to use a third party tool to do this because you cannot directly import contacts to outlook from an .ipd file. I can provide the name of the tool if anyone wants but dont want it to look like I am spamming.
    Once everything was in my desktop outlook it was easy to synch with my my device to get everything into the desktop address book and then delete the entries in the other addres books All a bit fiddly, a little bit time consuming but it got the job done.
    Cheers.

  • List list list?????????!!!!!!!!!!!!!!!!

    I have 2 questions this time!!!!!
    1.     How do I make a new window (applet) popup when I double click on an item in a list?
    2.     How do I get an applet made in Visual caf� to run outside Visual caf�? I run the auto generated HTML script and then Explorer show the outline of the applet but the content is missing! And if you move your mouse over it the massage �Applet <Applet name> not found� and that doesn�t seem right because the applet is there an the same commands works fin whit some other applet located in the same source directory!
    Thank you???

    Using Swing or AWT?

  • How to get drop down list (list of values) in selection-screen

    Hi al,
       This is anilreddy. Please let me knew the solution
    How to get the drop down list for a fieldin selection-screen (not in dialog programming)
    (not as POV)
    Regards,
    anilreddy

    REPORT ZTESTPRG.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST.
    PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'PS_PARM'.
    VALUE-KEY = '1'.
    VALUE-TEXT = 'LINE 1'.
    APPEND VALUE TO LIST. VALUE-KEY = '2'.
    VALUE-TEXT = 'LINE 2'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    START-OF-SELECTION.
    WRITE: / 'PARAMETER:', PS_PARM.
    Thanks
    Mahesh

  • Passing database table values to drop down list list using "vrm_set_values"

    DEar Experts,
    How can we pass database travel to drop down list using vrm_set_value call function.
    Looking forward for advise from you experts .
    REgards
    CHandan

    Dear Anubhab,
    Thanks for your suggestion,
    Plz see my code:
    Type-pools: vrm.
    DATA: it_zlt_mita       TYPE STANDARD TABLE OF Zlt_mita,
               wa_zlt_mita    TYPE zlt_mita,
               it_vrm              TYPE vrm_values with header line .
    Selection-Screen: Begin of Block b1 With Frame Title text-001.
      Parameters:
        p_mitar            Type Zlt_mita-M1 as listbox visible length 20 user-command zcc01 obligatory,
        p_mitarn          Type Zlt_mita-M2.
    Selection-Screen : End of Block b1.
    AT SELECTION-SCREEN OUTPUT.
       Select * From ZLT_mita INTO CORRESPONDING FIELDS OF TABLE it_zlt_mita.
      LOOP at it_zlt_mita into wa_zlt_mita.
         it_vrm-key   = wa_zlt_mita-m2.
         it_vrm-text  = wa_zlt_mita-m1.
         APPEND it_vrm.
         Clear: it_vrm, wa_zlt_mita.
      ENDLOOP.
                     CALL FUNCTION 'VRM_SET_VALUES'
                       EXPORTING
                         id                    = 'P_mitar'
                         values                =  it_vrm[]
    *                  EXCEPTIONS
    *                    ID_ILLEGAL_NAME       = 1
    *                    OTHERS                = 2
                     IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                     ENDIF.
    Data: dynfields type table of dynpread with header line.
         dynfields-fieldname = 'p_mitar'.
          Append dynfields.
    CALL FUNCTION 'DYNP_VALUES_READ'
      EXPORTING
        dyname                               = sy-cprog
        dynumb                               = 1000    " can I use sy-dynnr here
    *   TRANSLATE_TO_UPPER                   = ' '
    *   REQUEST                              = ' '
    *   PERFORM_CONVERSION_EXITS             = ' '
    *   PERFORM_INPUT_CONVERSION             = ' '
    *   DETERMINE_LOOP_INDEX                 = ' '
    *   START_SEARCH_IN_CURRENT_SCREEN       = ' '
    *   START_SEARCH_IN_MAIN_SCREEN          = ' '
    *   START_SEARCH_IN_STACKED_SCREEN       = ' '
    *   START_SEARCH_ON_SCR_STACKPOS         = ' '
    *   SEARCH_OWN_SUBSCREENS_FIRST          = ' '
    *   SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '
      tables
        dynpfields                           =  dynfields
    * EXCEPTIONS
    *   INVALID_ABAPWORKAREA                 = 1
    *   INVALID_DYNPROFIELD                  = 2
    *   INVALID_DYNPRONAME                   = 3
    *   INVALID_DYNPRONUMMER                 = 4
    *   INVALID_REQUEST                      = 5
    *   NO_FIELDDESCRIPTION                  = 6
    *   INVALID_PARAMETER                    = 7
    *   UNDEFIND_ERROR                       = 8
    *   DOUBLE_CONVERSION                    = 9
    *   STEPL_NOT_FOUND                      = 10
    *   OTHERS                               = 11
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        dyname                     = sy-cprog
        dynumb                     = 1000
      tables
        dynpfields                 = dynfields
    * EXCEPTIONS
    *   INVALID_ABAPWORKAREA       = 1
    *   INVALID_DYNPROFIELD        = 2
    *   INVALID_DYNPRONAME         = 3
    *   INVALID_DYNPRONUMMER       = 4
    *   INVALID_REQUEST            = 5
    *   NO_FIELDDESCRIPTION        = 6
    *   UNDEFIND_ERROR             = 7
    *   OTHERS                     = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    PLZ SUGGEST ME IF ANYWHERE I WENT WRONG IN MY CONCEPT AS PER YOUR SUGGESTION.
    Looking forward for your further guidance.
    Regards
    Chandan

  • Best way to show data of multiple lists - List Dashboard

    Hi,
    I am using SP 2013. I have around 10 custom lists, in which users add items. When a item is added a custom Visual studio approval workflow is triggerred.
    I am trying to create a visual webpart (VS 2012) , which will show the items that the logged-in user has created under each of the list. I want to show the data in a list-by-list manner (kind of a dashboard). Each of the list has different kind of columns.
    Which would be ideal way to achieve this? Should it be a dynamic table or a dynamic SPGridView or is there any other way to achieve this?
    There would be multiple entries the user would have added under each list. So a paging would help.
    Thanks

    Hi,
    According to your post, my understanding is that you wanted to display all the items that the logged-in users had created under each of the list in the site.
    I don’t think it’s a good idea to display all the items that the logged-in users had created under each of the list in the site in a visual web part.
    As we all known, different list has different fields, it will be different to display different list fields in a visual web part.
    If you still want to use the visual web part, I recommend you use the common fields that all the lists contained, suach as the Title, Createdy by, etc.
    Then query all the lists in the site by the created by field to compare with the current user.
    As a workaround, I recommend you use a page to display all the items that the logged-in users had created in the site.
    You can create a custom view based on current user for the lists, then add the lists web part in a page with the custom view.
    Now the page would only show the current users items.
    http://go.limeleap.com/community/bid/297846/Custom-List-View-Based-on-Current-User-Using-SharePoint-Designer
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5e347dea-475e-4b95-8905-0f6e11bab7bf/sharepoint-list-filtering-by-current-user-or-group?forum=sharepointgeneralprevious
    What’s more, you can also use the target audience to achieve it.
    http://lixuan0125.wordpress.com/2012/06/18/audience-targeting-sharepoint-2010/
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Library icon changed to an "Export songs list" list named "live" ?

    I was converting a playlist named "LIVE" to MP3 and afterwards I found my Library was replaced by a export song list with a new icon named "live". This new folder still contains all the songs that were in my original "Library".
    What happended to Library in the source list and can it be corrected?
    Dell 8200   Windows XP Pro  
    Dell 8200   Windows XP Pro  
    Dell 8200   Windows XP Pro  
    Dell 8200   Windows XP Pro  

    First off, you say you purchased a 5th gen. iPod. Since the latest version is the clip-on 6th gen., I wonder if that's what you mean, or did you get a used (or old, but never used) 5th gen.? You might also check the OS requirements for the iPod you have, and see if the version of iTunes is compatible with your OS. I had to upgrade my OS to go from my old Classic 160 to a new Nano 6th gen.
    As you have guessed, the exclamation mark means that even though you have a particular song in your iTunes library, the file that it points to is no longer where iTunes thinks it should be. This may be because iTunes is confused (in which case you would resolve the confusion), or it's gone (in which case you need to get a new copy, or remove the song from iTunes if you don't want to keep it). I'm not a Windows guy, and I'm not at my home computer where I can try this out, but if I remember correctly, you can have iTunes gather all the music files on your computer and move them (or copy them) to the place where iTunes expects them to be. On a Mac, that's HD>Users>My User Name>Music>iTunes>iTunes Music. If you don't want to let iTunes do that, you can move all the music files you find to that folder yourself.
    Once all the music is there, you can delete the songs from iTunes and import them again (directing iTunes to the folder you just gathered. Make sure you are signed into your iTunes account (in the Store pull-down window—not the Store tab on the left). Songs from the iTunes store can be downloaded again (if you don't have them anymore), provided you are signed in. If a store purchase is on one of your iPods, but not in iTunes, iTunes can detect and download those again, but the limit for devices is 5, so don't waste them if you don't need to.
    More detailed info can be found in the manuals (download here).

  • Copy more than one selected lists Item To anothers List(List Style is Tlist

    Hi
    Im working on developer 6i and i have two dynamic lists , i fill one of them With the Availabble database Users , so i want when i select
    one item from this list it goes to the other list
    how can i do that ?

    i populate the first list as follow
    Declare
    Stm Varchar2(700);
    Begin
              Stm :='SELECT SUBSTR(USERNAME,8,LENGTH(USERNAME)),SUBSTR(USERNAME,8,LENGTH(USERNAME)) FROM ALL_USERS ';
    Dynamic_list(stm ,'block.users_list');
    End ;
    and this is the function
    PROCEDURE Dynamic_List(Select_stm in varchar2,Itm varchar2) is
              rg_id      recordgroup;
              rg_name     varchar2(40) := 'LST_GRP';
              query_ok      number;
              cnt                    number;
    Begin
              rg_id     := find_group(rg_name);
              If not Id_Null(rg_id) then
              Delete_group(rg_id);
              End If;
    rg_id := create_group_from_query(rg_name,select_stm);
              query_ok := populate_group(rg_id);
              clear_List(itm);
              populate_List(itm,rg_id);
    Exception when others then
    Copy(sqlerrm,'FTR.ERR');
    END;

Maybe you are looking for