SharePoint lists are not showing in SharePoint designer "Lists and Libraries" section

Hi , 
I using sharepoint 2010 and sharepoint designer 2010.
I created a custom list on the sharepoint , and i trying to open the list through designer, but in sharepoint designer under the "Lists and Libraries" section that created custom list is not showing.
But when i click on "AllFiles-->Lists -->MyCustomlist " (its present in the root folder's "Lists" folder)
can anyone help on this.
regards,
RK

Hi,
According to your description, there is a list appears in “All Files” section but not in "Lists and Libraries" section in SharePoint Designer.
What if you refresh(F5) the SharePoint Designer in the "Lists and Libraries" section? Will the issue list appears?
If the list still doesn’t show up, please clear the cache of the SharePoint Designer and reconnect your site for a test.
About how to clear the cache of SharePoint Designer:
http://www.c-sharpcorner.com/UploadFile/sagarp/how-to-clear-your-sharepoint-designer-20102013-cache/
Feel free to reply if there any progress.
Best regards,
Patrick
Patrick Liang
TechNet Community Support

Similar Messages

  • Several artists are not showing in the artist list on the Ipod.

    Ok. As the title implies on my Ipod there are several artists that are not showing in the artist list. However, in Itunes an artist is clearly defined. I even changed the artist name and still had no outcome. The album is there....but I have to sort through the artist list in order to listen to the music. Can someone help me figure this one out?

    The "missing" artists probably have their albums tagged as "Part of a Compilation" and you have the Compilation setting turned ON on your iPod. Either turn Compilations off (go to +Settings/Main Menu+ and +Settings/Music Menu+ and disable Compilation on both menus), or edit the tags to remove the Compilation option. Compilations are intended to be used for multi-artist albums, but often you'll get an album from a single artist tagged as a Compilation since the Gracenote database has an error in it.

  • SSRS subscriptions in default zone of sharepoint 2013 are not showing in intranet zone and vice versa.

    one of the Sharepoint 2013 site collection has alternate access mappings created. Default site is .com and intranet is .local.
    So when we add SSRS subscription in .com - they are not showing in .local and vice- versa. How do we fix this so the subscriptions are same in both .com and .local.

    Hi spanda,
    Per my understanding that you have configured the alternate access mappings which Default site is .com and intranet is .local. But the subscription in one of the site will not list in another mapped site, right?
    Actually, if you are on a different Alternate Access Mapping other than the Subscription was created on, we will get no subscriptions, Because we are using the method "Microsoft.ReportServices.SharePoint.UI.ManageSubscriptionPages"
    to deal with the logic by creating the value for "m_reportUrl" using the current context of the URL the user is using and passing that to the "SubscriptionListControl".  You can find the code in this article if you have some
    knowledge of development:
    SQL Server Reporting Services ignores Alternate Access Mappings When Checking for Report Subscriptions
    I recommand you to submit an feedback at
    https://connect.microsoft.com/SQLServer/
    If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the level of service
    provided.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Sharepoint Report Subscriptions not showing on sharepoint website, but are in the database

    Hi All,
    We have had an issue which sharepoint where our subscriptions for reports "disappear" from the website. This makes is a little hard to edit them if we need to adjust the subscription. The funny thing is the subscription is still working as it is
    generating emails.
    I was able to check SQL and look at the ReportingService Database and I can see all the subscriptions listed in SQL.
    So the subscriptions are there. The question is, why are they not showing on the website.
    Here is a query I used to show the subscriptions:
    SELECT
          UserName
          , Name
          ,[Locale]
          ,a.[ModifiedDate]
          ,a.[Description]
          ,[LastStatus]
          ,[EventType]
          ,[LastRunTime]
          ,[Parameters]
          ,[DataSettings]
          ,[DeliveryExtension]
          ,[Version]
          ,[ReportZone]
      FROM [ReportingService_SP].[dbo].[Subscriptions] as a
      inner join ReportingService_SP.dbo.users as b on b.UserID = a.OwnerID
      inner join ReportingService_SP.dbo.[Catalog] as c on c.ItemID = a.Report_OID
      order by Name
    Any ideas would be great

    Also I found the ReportZone Column had 2 results 0 or 3
    I noticed everything that had a 0 showed on the website where 3 did not.
    I also saw something saying this might have to do with the AAM and having different addresses, but we only have one address

  • Third party sales orders are not showing in Billing due list (VF04 )

    Hi,
    In Billing due list Third party sales orders are not appearing because VKDFS table those entries are there. How can we get Third party sales orders in VKDFS table as well as VF04 ?
    Please suggest me.
    Regards,
    KUR

    Hi Kur & Sandepp,
    Check this notes:A) Note 210500 - Billing status of a third-party item,B)2) Note 210561 - When is a third-party item displayed in VF04.
    Re
    Regards,
    Madhu.

  • User parameter are not show in database using Servlet and java Bean

    Hello Sir,
    when I insert the parameter in run time, weblogic server and JSP show that parameter are saved.
    Allthough row increment in database but they not show in database.
    Here My Code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>LoginServlet.java:import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String user=request.getParameter("user");
    String pass=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setuserName(user);
    st.setpassword(pass);
    request.setAttribute("user",st);
    request.setAttribute("pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:
    package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String user="";
    private String pass="";
    private String s="";
    public String getuserName() {
    return user;
    public void setuserName(String user) {
    this.user = user;
    public String getpassword() {
    return pass;
    public void setpassword(String Pass) {
    this.pass= pass ;
    public String issueData()
    try
    System.out.println("Printed*************************************************************");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Connection loaded");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@VijayKumar-PC:1521:XE","SYSTEM","SYSTEM");
    System.out.println("Connection created");
    PreparedStatement st=con.prepareStatement("insert into vij2 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String NAME=getuserName();
    st.setString(1,NAME);
    String PASSWORD=getpassword();
    st.setString(2,PASSWORD);
      st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:This is Submit page
    <jsp:useBean id="st" class="co.SimpleBean"/>
    <jsp:setProperty name="st" property="*" />
    <jsp:getProperty name="st" property="userName" /> <br>
    <jsp:getProperty name="st" property="password" /> <br>
    <% st.issueData();%>
    <%
    out.println("Ur data is saved in DB");
    %>Please Help me.
    Thanks.

    Ok, this seems to be a long and convoluted path to do absolutely nothing.
    You submit the form.
    You run a servlet that gets the parameters correctly (good), creates a SimpleBean (good) and then sets this into request attribute space under the names "user" and "pass" - (why?)
    You then forward to the jsp: submit.jsp.
    Submit.jsp creates a new SimpleBean, and attempts to populate it with <jsp:setProperty>. You then call the issueData method on it.
    Your complaint: Rows are being created in the database which have empty string values instead of the parameters you have passed.
    So, why are the values blank? Where do you think these values should be coming from?
    Looking at SimpleBean we find one mistake - you have mis-named your get/set methods.
    To properly follow java beans standards, you should use camel-case for your methods.
    Rather than getuserName() the method should be getUserName(). getpassword() should be getPassword() etc etc.
    The method getUserName() defines a property "userName" for the bean.
    Once that is fixed, lets go to submit.jsp. The <jsp:setProperty> statement will try and set all properties of the bean from the request parameters.
    There are no request parameters "userName" or "password" so those values don't get set in the bean, therefore it uses their default value of empty string - "".
    There ARE request parameters called "user" and "pass" but because they aren't properties of the bean, they get ignored.
    As a result, the values are empty string, and that is exactly what gets inserted into the database.
    Ways to fix this
    1 - rename your parameters on your form to be "userName" and "password" to match the bean. That way the <jsp:setProperty> tag will populate them properly.
    or
    2 - Call issueData() method from your servlet after you have created the SimpleBean. Better in my opinion as you then don't have any scriptlet code on a JSP page.
    Cheers,
    evnafets

  • I was loading photos off my camera and my I photo deleted all my photos, now they are not showing in my I photo and it wont open any photos , why can anyone help

    Does anyone know why my photos have all gone out of my I phots and when I try to open any I have found it wont even show/open them, or return them to my I photo album???
    I was uploading them off my camera's memory stick one worked perfect the next went barmy and deleted all my photos, it said there had been an error but ther was nothing I could do to save them.  How do I retrieve them and how do I make my I photo work again??  Please I have lost over a thousand photos of my brothers wedding.

    What version of iPhoto?

  • HT203164 I have purchased several books on tape via my computer and now want to sync them to my ipod....I can't find the appropriate buttons to do that.  Also though I have receipts for books purchased they are not showing up on my Itune purchased list. 

    I have purcase several audio books via Itunes and they are on my computer however I have been unable to figure out how to transfer (sync??) them to my Ipod.  Also I have receipts for several Itune audio books but they are not showing up on my purchased list. Help!!!

    lizdance40, audio books are NOT available for redownload. Books with words areavailable for redownload.
    See:
    http://www.tuaw.com/2013/04/03/audiobooks-are-not-backed-up-by-icloud-can-only-b e-downloaded-o/
    In the future please do not post incorrect information
    lizdance40 wrote:
    If iTunes still carries the books, they ARE available to download from the cloud, either to the computer or your iPod Touch directly.
    Open iBooks on the device and tap on 'purchased'. 
    download.
    iTunes does not garentee to carry a book forever, a serious flaw.  If you can't find the book in iTunes anymore and didn't keep it on the computer, or backed up, it may be gone.
    To add audio books to the iPod;
    you have to check the box at the bottom section of the Books screen that says, "sync audio books"

  • HT1711 My songs are not showing up in my wish list. How do I fix that?

    My songs are not showing up in my wish list so I can't download them. How do I fix this?

    Have you tried restarting your Macbook, I have a macbook also and when I had that problem I just restarted it and all my music was back. )

  • I live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    i live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    Doesn't matter.  That store is likely selling illegit iphones, brought oin from somewhere else.
    The fact remains the UAE government does not allow Facetime on iphones legitimately sold there.

  • Hi all. I recently restore my old iphone 5 on my new 6. I'm having problems with bluetooth devices. The ones that were already paired with the old one are not showing in the list, and most of them(not all) are not working or pairing. I already restod

    Hi all. I recently restore my old iphone 5 on my new 6. I'm having problems with bluetooth devices. The ones that were already paired with the old one are not showing in the list, and most of them(not all) are not working or pairing. I already restored network settings to no avail. Any ideas?

    What's more, they don't even show on the bluetooth devices list..

  • My designs are not showing, how long is the approval process

    My designed personas are not showing, how long is the approval process
    == This happened ==
    Not sure how often
    == Next day after uploading

    A few days to a week, give or take.

  • Facebook contackts are not showing in online list ...

    i have skype version 7.4.0.102
    i have update my skype to this version today after long time not use it.
    but after the update when i wane add my facebook contacts to my skype list again its showing this more that i most ask a request to add my facebook contacts again on my skype list and this was not the problem with the version before the update.
    this problem is also with the contacts i have that use messenger there are also not showing on the online list is there are online.

    Hi and welcome to the Skype Community,
    Please have a look here: http://community.skype.com/t5/News-and-Announcemen​ts/Important-notice-for-Facebook-users/ba-p/395181​...
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Created By and Created Date fields not showing up on Custom List form webpart

    Hi,
    I have added Custom Listform WebPart on "DispForm.aspx" of custom list. I need to display, out of box fields "Author" [Created By] and "Created" [Creation Date] on this custom list form webpart, I have added them on the webpart, following is the code behind of aspx page:
    <td width ="400px" valign= "top" class="ms-formbody">
    <xsl: value-of select = "@Author" disable-output-escaping = "yes"/>
    </td>
    However these fields are not showing/populating data on the form ?? Any inputs ???
    Regards

    Hi,
    I think that when you insert a custom list form web part you select “Item” content type, so custom list form is designed to display only the fields that are appropriate for that content type “Item”, but the item content type doesn’t contain the created and created by column, when you add the two columns, it will not find the field value. By default, the two columns will display at the foot of the list form using SharePoint:CreatedModifiedInfo.
    Hope it can help you.
    Xue-Mei Chang

  • Horizontal Spry Menus are not showing up in ANY browser HELP!

    www.tvnewsjunkie.com
    I am a novice web designer and I need help!
    The above site listed is the site I am currently working on. As you can see the menu bar...is not a menu bar at all but a long list of links along the left side.
    HOWEVER, when I click on LIVE VIEW in DreamWeaver everything looks fine.
    There should be 7 total menu bars with 7 Dropdown menu options each (except on the bottom menu bar which there will only be 4 I believe)
    What am I doing wrong??

    Thank you so much for your help!This matter is certainly closed.
    I just want to add, however, that somehow my Spry Assets folder was placed somewhere outside of the rest of my files! no wonder I was confused.
    Thank you again!
    Grant
    Date: Fri, 17 Dec 2010 23:43:25 -0700
    From: [email protected]
    To: [email protected]
    Subject: Horizontal Spry Menus are not showing up in ANY browser HELP!
    You have forgotten to upload the support files - SpryMenuBar.js and SpryMenuBarHorizontal.css - to the server.
    Gramps
    >

Maybe you are looking for

  • BAPI_PO_CHANGE - changing overall limits and expected value to 0.

    Hi, I created a normal purchase order with a service item is srm (the overall limit and the expected value are filled). In R/3 system the corresponding PO got created. After that, in SRM we change the overall limit and the expected value to zero. In

  • MDM Data model design for Main table visa vis lookup table

    Hi , I would like to know whether the legal entities or Address table which are common for all MDM main tables like Customer ,Vendor,Material,Business Partner etc can also become a main table when their attributes are around 30-40 range. Is it a soun

  • I am trying to produce a formula that would allow an IF / THEN condition.

    I am trying to produce a formula that would allow an IF / THEN condition. I would like to be able to say that the selected cell would equal a specific cell if another cell had specific text entered in it..... i.e. In a sheet that contains cell from A

  • I think my iPhone is falling apart.

    I've only had my iPhone for about 6 months, but for the last month I've noticed it feels very flimsy like the case is loose. The volume button feels very loose and so does the sim card part. Also, the part where the silver front part meets the black

  • Problems with axis example

    Hi I'm trying to run the example TestClient.java that comes with axis, but I get: java.net.ConnectException: Connection refused Does anyone know if this server is still running and on the same port (5049) or if there's just something wrong with me. T