How to add a list view from a parent site to a subsite

I have a custom list in a parent site, and I would like to display that same list (perhaps with a different view) on a page in a subsite.  Is there a straightforward way of doing this?

i think you might have a look at this post.
http://www.sjoukjezaal.com/blog/importing-content-query-web-part-office-365/
kind regards,
Paul Keijzers
Check my website http://www.kbworks.nl or follow me on
@KbWorks be sure to Check my
SharePoint-Specialist.nu for dutch information workers check
Wat Is microsoft SharePoint.nl for dutch readers who want to know what
microsoft office365 is. also interesting to follow is
microsoft office365 support

Similar Messages

  • How to add a list views web part to a page?

    Hello,
    I have web parts on a page that are "List Views".  The show links as menu from a custom list of links on a page.  However, I don't know how the developer added them to page and how they work.  I like to add other list views
    that list links from lists.
    Paul

    Hi,
    Your query is to configure a webpart in a page which will display all the links to lists (within the site)? If this is the requirement you can configure a dataformwebpart and configure the Data
    Source Mode as CrossList.
    Let me know if you have any further questions.
    Thanks!

  • How to add music to iPhone from computer?

    How to add music to iPhone from computer?

    fcolonna wrote:
    I have an iPhone 5 and my iTunes doesn't look like the screen shot above at all.
    All of the screenshots above are from iTunes 11
    fcolonna wrote:
    I find it extremely frustrating to build play lists now with the new iTunes 11.01
    This has nothing to do with the OP issue. Try starting a new thread in the appropriate forum...
    iTunes for Mac: iTunes: Apple Support Communities
    iTunes for Windows: iTunes: Apple Support Communities

  • How to add pdfs n movies from my PC without creating ne library

    How to add pdfs n movies from my PC without creating ne library... Does iTune has ne converter tht can convert movie into format that iphone can play..

    That's easy, while connecting the iPod to the computer on Windows with iTunes 7.3 installed hold down the Shift + Ctrl keys. This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer. If your iPod shows up ok in iTunes you can change it to manual from there.
    http://docs.info.apple.com/article.html?path=iTunesWin/7.3/en/keycuts.html
    (it's also in iTunes > Help if you forget)
    Message was edited by: Katrina S.

  • How to call a maintenance view  from a program

    Hello Abapers,
    Can anybody explain with some examples. How to call a mainetenance view from a program.
    Thanks
    Ranjith.

    Use FM 'VIEW_MAINTENANCE_CALL'.
    REPORT  zmaintaintest.
    VARIABLES / CONSTANTS                          
    CONSTANTS: 
                    c_action(1) TYPE c VALUE 'U',                                 "Update
              c_viewname TYPE tabname value 'ZEMP_EXAMPLE', "View Name
              c_field(6) TYPE c VALUE 'EMPNO'.                            "Field Name
    INTERNAL TABLES
    DATA: itab_rangetab TYPE STANDARD TABLE OF vimsellist,
              v_empno TYPE zempno,
              wa_rangetab TYPE vimsellist.
    SELECTION SCREEN
    PARAMETERS:     p_empno TYPE   zempno   OBLIGATORY.  "Emplyee ID
    AT SELECTION-SCREEN                                                 
    AT SELECTION-SCREEN.
    Chcking the existence of the user in EMPLOYEE table
      PERFORM validate_employee.
    START_OF_SELECTION                                                  
    START-OF-SELECTION.
    This will restrict the user view so that user can only view/change
    Table data corresponding to his/her Employee ID
      PERFORM define_limited_data_area.
    Displaying table maintenance view for a particular employee ID
      PERFORM call_view_maintenance.
    *&      Form validate_employee
    Validate plant entered in the selection screen
    FORM validate_employee.
      SELECT SINGLE empno     u201CEmployee ID
        FROM zemp_example     u201CEmployee Table
        INTO v_empno
        WHERE empno = p_empno.
      IF sy-subrc <> 0.
        MESSAGE 'Not an Valid User' TYPE 'I'.
      ENDIF.
    ENDFORM.                    "validate_employee
    *&      Form DEFINE_LIMITED_DATA_AREA
    To restrict the user view so that user can see/change table data
    corresponding to his employee ID. Here one internal table is
    getting populated with field name as u201CEMPNOu201D (Key field of the table)
    And value as given by user in Selection Screen and this is passed as
    Parameter in function module 'VIEW_MAINTENANCE_CALL'
    FORM define_limited_data_area.
      CLEAR wa_rangetab.
      wa_rangetab-viewfield  = c_field.
      wa_rangetab-operator  = 'EQ'.
      wa_rangetab-value       = p_empno.
      APPEND wa_rangetab TO itab_rangetab.
    ENDFORM.                    "define_limited_data_area
    *&      Form CALL_VIEW_MAINTENANCE.
    Displaying table maintenance view for a particular employee ID
    FORM call_view_maintenance.
      CALL FUNCTION 'VIEW_MAINTENANCE_CALL'      
        EXPORTING
          action           = c_action
          view_name   = c_viewname
        TABLES
          dba_sellist     = itab_rangetab.
    ENDFORM.                    "call_view_maintenance
    Regards,
    Joy.

  • How to add a Java file from ejbModule to EJBCandidates ?

    Hi,
    In my java client proxy project, I have got the EJBCandidates generated. But I need to add one more java source file from ejbModule to EJBCandidates.
    If I right click on the java file I need to add, am not getting that option for adding.
    <b>Please help me how to add java source file from ejbModule to the EJBCandidates.</b>
    Thank you.

    Great... :-)
    Thank you very very much xHacker :-)
    That what just what I needed.

  • How to call a Webdynpro view from BSP page (MVC) in a new window?

    Dear Experts,
    kindly advise how to call a webdynpro view from BSP application after performing an event (through button or hyper link).
    Regards,
    Sarat.

    Hi,
    This has been discussed many times in several forums.
    Please check the method CL_WD_UTILITIES=>CONSTRUCT_WD_URL, to create a runtime url for your WD Application and call this URL.
    Refer thread: Call Webdynpro Application from BSP Application
    Hope this will be useful!
    Regards,
    Meganadhan S

  • How to display a new view from a nib ?

    how to
    display a new view from a nib in the main window after clicking on a button.
    When I click a the button named for example "goToGokyo", the link to my procedure
    runs correctly because I see my NSLog message "goToGokyo button pressed".
    My nib, which name is "GokyoViewController" does exist.
    I did as follow for the moment but I'm stuck now, my nib  :
    - (IBAction)goToGokyo:(id)sender
        NSLog(@"goToGokyo button pressed");
      //[self stopSound];
      if (gokyoViewController == nil)
            GokyoViewController *aGokyoViewController = [[GokyoViewController alloc]
                                                         initWithNibName:@"GokyoViewController" bundle:nil];
            self.gokyoViewController = aGokyoViewController;
            //[aGokyoViewController release];
        [self GokyoView:gokyoViewController animated:YES completion: nil];
    Thanks in advance for your advice.
    Cheers

    I did that now :
    - (IBAction)btnLoadMyViewController:(id)sender
        NSViewController *viewController = [[NSViewController alloc] initWithNibName:@"MyView" bundle:nil];
        NSView *view = [viewController view];
        [_myWindowController.window setContentView:view];
        //view addSubview:view];
        //[self.myView addSubview:view];
    Using
    "_myWindowController.window setContentView:view];"
    or
    "[self.myView addSubview:view];"
    does not an error but does nothing !
    Would you help me one more times please ?
    Thanks in advance

  • How to add new lists in Reminders?

    I am using iOS 7 with my iPod Touch. In the Reminders, I have my own default list. When I try to add a new list by pressing the + button, it only shows some colors for me to select. After selecting the color, I click on the blank place of the list but nth happens, it doesn't let me to edit the list even the title. Could someone tell me how to add a list in Reminders? Thanks:)

    Do you have a + symbol on the top left side(next to the seraching bar)? I don't have it. It just shows two cards, which are my default list and "New List" with a + on the right side.

  • Print List View from pdf Portfolio

    I need to be able to print out the list view from a portfolio package to be used as an index or table of contents. Is there any way to print this out? It stuns me that its not right there in the print options. Any ideas?
    Thanks

    I am still in need of help figuring this out. Any ideas?

  • Can we set List View Lookup Threshold at site collection level ?

    Hello,
    Presently, we have requirement to set the List View Lookup Threshold  at Site Collection/Sub-Site level instead of web application level.
    Could you please let me know, are there any ways to set
    List View Lookup Threshold setting at Site Collection/Sub-Site level
    in SharePoint 2010 using Powershell/Object Model
    Also, it would be helpful if you colud let me know, upto what extent , we can drill down List View Lookup Threshold setting i.e. SubSite/List/Library-Folder.
    Thanks in advance !
    Regards,
    Sagar Acharya
    Email -  [email protected]

    Hi Sagar,
    We cannot set list view threshold value at sitecollection/subsite level. It can only be set at web application level.
    However we can bypass the 5000 limit using PowerShell command by setting “Enable Throttling”= false for particular list.
    Reference link:
    http://pravahaminfo.blogspot.in/2012/10/how-to-increase-list-view-threshold.html
    Thanks,
    Somnath Matere

  • How can I download a video from a trusted site two minutes in length ?

    How can I upload a video from a trusted site to an installed version of Adobe Flash Player ?
    What is involved in downloading a two minute government promotional video for a travel destination ?

    For YouTube videos
    http://www.any-video-converter.com/mac-tutorial/6-ways-to-download-youtube-video s.php
    For other sites it depends upon the site.

  • How to add a new view in Factsheet to collect data from R3

    Hi Experts,
    I need to add a new view in Account Factsheet called  'Open Delivery data'
    which will collect the delivery data from R3 system.
    As I know we have two Function Modules (at CRM) 'CRMT_ERP_FACT_SHEET_RETRIEVE'
    (at R3) 'CRM_CCKPT_EXPORTSUMMARY'
    All We need to do is create view which calls the data from R3 Via these modules.
    How should I proceed.
    Is this relevent steps :-
    http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock
    Regards,
    Ram

    Hi Sandeep,
    To add a new currency in Metadata, just add in Currencies dimension, and to add in Data form-just send the script what you are using as of now for rest of the currencies, or follow the same steps as specified above. or just add the script A#CLORATE.w#Periodic.C2#XYZ in rows of your data form (where XYZ- is the new currency).
    To add a new location in FDM login to FDM web client- click on Metadata--> locations and select the Controls review location where you want to add the data load location, right click and add the new location.

  • How to add "Weblogic Server Adapter" from "download additional server adapter" list.

    "Weblogic Server Adapter" is not shown in "download additional server adapter" list in STS 3.6. How to add It.

    George, What deployment do you have this associated with?
    - D.J.

  • How to add new source views for Bill Presentment Architecture (BPA)?

    Hi,
    Financials 11.5.10.2;
    I'm trying to add custom source views to be used with BPA.
    I go to configuration\data sources and click on the views buttons to see the available views.
    There I click on the register button. If I use the LOV button for view name, no views are available. I thought I would see the view in the APPS schema.
    How do I make my custom views available in the list of values?
    Thanks.

    It was easy for us. The guide suggests your view begin with the string "ARBPA". One might assume that if your view doesn't start with this, it won't be available from the list.

Maybe you are looking for

  • F4IF_INT_TABLE_VALUE_REQUEST value_tab cleared

    Hi all, i'm using the bapi in object. I use it in a table control. It runs well when i start it for the first time. If i open the match code for the second field the value_tab is displayed with initial values: 1st time:    SRVPOS         KTEXT1      

  • 10.1 and IE  wont install

    downloaded 10.1 and go through installation process and says I have to close Internet Explorer but there is no IE open that I can tell anywhere, even disconnected ethernet cable.  any suggestions?

  • Why does my coy

    so i know that i only have a one gig or ram in this mac min i but how come it seems to lag now.It never used to . Even when i go to ITUNES and go to "add to library" then choose my external hard drive it lieterally takes forever. I mean it doesnt rea

  • Queries with ":" failing in TimesTen 11.2.1  ..NodeId :NodeId

    After upgrading to TimesTen 11.2.1, we've notice that some of our current sql statements are failing.  These same instructions executes from the applications on TT6.0. This is once of the selects that is failing. select NodeId , Idx from Santera.eswi

  • Can i turn off icon labels in Symbian ^3 on my N8?

    just updated my N8 from anna to belle and my first inclination is to turn off what was originally called tool tips, or the superfluous labels underneath each icon in the GUI.  i mean isn't that what the G stands for - Graphical?  the Nokia representa