Grant read permission on List for Anonymous user for public facing site in Sharepoint 2013 Online

I have a public facing SP site ( SP online 2013 with Office 365 ). There are certain app parts added to it which read data from a
custom list created on that site. By default anonymous users do not have read permissions list. I want users to see the list data without login in . I tried modifying the settings for anonymous users , however I am unable to do it as the "anonymous user"
permissions cannot be checked by me.
How do I provide read permissions to anonymous users?
Thanks in advance

once you make the web site online anonymous users get the read access to list.
You can add the list view webpart and show the details to anonymous users. In the below link i have added the announcement list view webpart to a page.
https://velegandla-public.sharepoint.com/Pages/Page.aspx
My Blog- http://www.sharepoint-journey.com|
If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

Similar Messages

  • "Property Mapping for Synchronization" User profile export to AD issue - Sharepoint 2013

    Trying to map user properties to AD Mapped Attributes.
    I map the property "SPS-JobTitle" to AD Attribute "title" with direction "export" click add and then ok to save and everything is fine, I then Map "WorkPhone" with Ad Property "telephoneNumber" with direction
    "Export" and click add then ok  and now property mapping on both "SPS-JobTitle" and "WorkPhone" show two mappings.
    If i go into the propertied it will show two mappings under "Property Mapping for Synchronization" both the title and work phone mappings.
    If i remove it from one it removes from both
    flavio

    It´s a bug in Sharpoint 2013, confirmed by MS.
    I reported it in January but its still not fixed :(
    The bug can be reproduced just as you mention by enabling export on several AD properties, the property will get duplicated on the previous propery you enabled export on.
    This makes it impossible to use the AD export functionality in Sharepoint 2013 until the bug is fixed.
    karl

  • Standard intranet requirement template for SharePoint 2013 online Site

    Hi, we are doing requirement gathering of one big markets operator company and planning to build one SharePoint
    site using SharePoint 2013 online technology.
    Now, we are looking for one standard document to showcase standard features should be in that portal based
    upon based on customer need, industry trends and practices for standard intranet build.
    Any similar template document will be helpful. Thanks!

    Hi Shailendra,
    Could you please tell me the detailed customer need ? As different customer need will have different industry trends and practices.
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Accessing xml forms for anonymous user

    Hi all,
    Is it possible in any way to use the "news" made with XML-Forms on an External Facing Portal?
    I have created one page in XML form builder and assigned that page for anonymous user. Initially that page is visible to anonymous user. If i click any rendered list item it's asking Authentication-Information. Isn't it possible to let them read the News without authentification?
    i have set all permissionsm for anonymous users?
    How can i solve that problem.
    Thanks& Regards
    Hemalatha J

    Hi,
    this is possible. Please have a look at note 837898 first. But this note doesn't solve it completly.
    By default the xmlformpreview-servlet which is used to display the news is not accessible for anonymous users. Try this:
    - Create an iview in the pcd (any locaation) from par com.sap.km.cm.par and component xmlformpreview
    - set the authentication scheme to anonymous
    - give anonymous users permissions in the permission configuration of the iView
    - open the iView in Preview Mode and copy the url of the iview from /irj on (something like /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fxmlformpreview)
    - Go to System Administration --> System Configuration --> Knowledge Management --> Content Mangagement --> Global Services (switch to advanced mode here) --> URL Generator service: set the iView-URL as the value of the "Preview Servlet" --> save
    - test it
    Regards,
    Norbert

  • Define resource for Anonymous user in OES

    Hi all,,
    I am using wls-ssm.
    By default, OES protect all resources from our application.
    how to define some resources for anonymous user?
    With Regards,
    WP

    You can either define an OES policy to GRANT allusers group which includes anonymous or you can look at deploying this custom authenticator which will exclude WLS resources that typically rely on anonymous user:
    https://oes-sspi-providers.samplecode.oracle.com/

  • RSS Feed not working in chrome browser for anonymous users but working fine in IE

    HI All,
    We are having public facing site for anonymous users. We have created links for OOTB RSS feed for lists and libraries. The link is working fine in IE, but for chrome it is asking for credentials. We are using publishing site. Any idea or pointers is much
    appreciated. We are in testing phase and this issue sticking us.
    Rohit Pasrija

    Hi,
    According to your description, my understanding is that you want anonymous user access RSS feed link without asking for credentials.
    I suggest you can check if you have deactived the “Limited-access user permission lockdown mode” feature in the site settings-> site collection features
    In my environment ,after disabling the feature, then the rss feed link will be accessed without credentials for anonymous users in Chrome.
    Thanks
    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

  • Add list item using anonymous user in public website of shareopint 2013 office 365

    Can any body know the solution to over come of following error while add list item using anonymous user using CSOM in shareopint 2013 office 365 public website.
    I have tried following solution to narrow down the error from "Access permission"
    http://sharepointtaproom.com/2014/08/28/anonymous-api-access-for-office-365-public-sites/#comment-2304

    Try below:
    http://www.codeproject.com/Articles/785099/Publish-a-Form-for-Anonymous-Users-on-a-Public-Sit
    http://blogs.technet.com/b/sharepointdevelopersupport/archive/2013/06/13/how-to-allow-anonymous-users-to-add-items-to-sharepoint-list-using-client-object-model.aspx
    // Allows AddItem operation using anonymous access
    private
    static voidAllowAnonAccess(){
    Console.WriteLine("Enabling Anonymous access....");
    SPWebApplication webApp =
    SPWebApplication.Lookup(new
    Uri(webAppUrl));
                webApp.ClientCallableSettings.AnonymousRestrictedTypes.Remove(typeof(Microsoft.SharePoint.SPList),
    "GetItems");
                webApp.ClientCallableSettings.AnonymousRestrictedTypes.Remove(typeof(Microsoft.SharePoint.SPList),
    "AddItem");
                webApp.Update();
    Console.WriteLine("Enabled Anonymous access!");  
    // Revokes Add/Get Item operation using anonymous access
    private static
    voidRemoveAnonAccess(){
    Console.WriteLine("Disabling Anonymous access....");
    SPWebApplication webApp =
    SPWebApplication.Lookup(new
    Uri(webAppUrl));
                webApp.ClientCallableSettings.AnonymousRestrictedTypes.Add(typeof(Microsoft.SharePoint.SPList),
    "GetItems");
                webApp.ClientCallableSettings.AnonymousRestrictedTypes.Add(typeof(Microsoft.SharePoint.SPList),
    "AddItem");
                webApp.Update();
    Console.WriteLine("Disabled Anonymous access!"); 
    http://www.fiechter.eu/Blog/Post/12/Create-a-survey-for-anonymous-users-on-Office-365
    If this helped you resolve your issue, please mark it Answered

  • How to use search REST api to get custom managed property data for anonymous user?

     
    I am trying build a public portal with anonymous access and i am trying to read some
    content from custom managed property using search REST api in sharepoint 2013. I have tried to enable all possible attributes of the managed prop. Like searchable,queryable,safe etc. also i am including queryparametertemplate in my REST api search query. But
    still i am not able to retrieve the managed prop. For an anonymous user. The same query returns the value if i am logged in.
    Any Help is greatly appreciated. 
    Thanks,
    Rakesh
    Thanks, Rakesh

    Hi Rakesh,
    To enable anonymous Search REST queries, we need to create queryparametertemplate.xml and upload it to the correct library in SharePoint.
    From your description I can know that you have created the file, then I recommend to check the things below:
    Please use “QueryTemplatePropertiesUrl” instead of “queryparametertemplate” in the Search REST API query as following: &QueryTemplatePropertiesUrl='spfile://webroot/queryparametertemplate.xml'.
    Make sure that the Query Properties you need have been added to the QueryProperties element in the queryparametertemplate.xml file.
    Make sure that the query parameters you need have been added to the WhiteList element in the
    queryparametertemplate.xml file. For example, if you want to use Refiners in the REST API, then the Refiners should be added to the
    WhiteList element in the queryparametertemplate.xml file as following:
    <a:string>Refiners</a:string>.
    You can also debug setting properties in anonymous Search Rest queries following the link below:
    http://www.mavention.com/blog/debugging-setting-properties-anonymous-search-rest-queries
    More references about anonymous Search REST:
    http://blog.mastykarz.nl/configuring-sharepoint-2013-search-rest-api-anonymous-users/
    http://msdn.microsoft.com/en-us/library/office/jj163876%28v=office.15%29.aspx#bk_AnonymousREST
    Thanks,
    Victoria
    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]
    Victoria Xia
    TechNet Community Support

  • Search suggestion not working for anonymous user in sharepoint 2013

    Hi ,
    Please help on this search suggestion not working for anonymous user in sharepoint 2013
    shaik

    You can create a search center site, and set the search center site to
    allow anonymous access.
    Also see this link - http://blog.mastykarz.nl/search-query-suggestions-anonymous-users-sharepoint-2013-mavention-query-suggestions/ 
     (As this is regarding a 3rd party tool, I suggest that you direct it to the  provider support.)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How the profile id has been created for anonymous user

    hi all,
    when i print the ShoppingCurrent.current the below line is displaying
    Order[type:default; id:o1030002; state:INCOMPLETE; transient:true; profileId:1310002; ]
    in that how the profile id has been created.
    thanks in advance
    shya

    User profile is created when a request is processed by the ProfileRequestServlet in the ATG servlet pipeline and is made available as session scoped Profile object for each user. Profile object has a dataSource property which points to the underlying RepositoryItem. For anonymous user, the underlying RepositoryItem created through ProfileRequestServlet remains transient by default. Therefore you won't find the item in the repository or database with that transient repository item's id. You can change this default behavior if you want by changing the persistentAnonymousProfiles property of the ProfileRequestServlet component to true which will create a new profile in the database for each anonymous visitor.

  • Where can I change desktop for anonymous user ?

    Hello.
    Where can I change desktop for anonymous user ? I'd like to change it in the same manner as sampleportal desktop (with amconsole) , but I did not found it in the amconsole.
    If you know, please, tell.

    The user "authlessanonymous" holds the information that people see if they are not signed on. It can be changed like any other user. It may have to be enabled under the Service Configuration tab -> portal desktop.

  • Disable rating service for anonymous user

    Hi,
    I'm trying to set permissions for anonymous users so they couldn't do anything else except displaying the documents in KM I want to disable their access to other services allowed for other users (e.g.. Subscription, Feedback, Discussion, Rating etc.).
    What I made so far: I've set permissions and service permissions to the Folders, created role with added Authentificated Users group and I added this role to property Roles with visibility in System administration/System configuration/Knowledge management/Content management/User interface/Commands/UI commands. This way, I set command permissions for every command I thought the anonymous user could see.
    Almost everything worked fine, i.e. anonymous user has disabled almost every unnecessary option, but he can still see Rating option in the context menu next to the file/folder. I set the permission to Rating UI command, but it didn't work.
    Can anyone suggest what else could be done so the anonymous user won't be able to rate documents?

    Thank you for your answer, but I know this note and I've done everything what's in it.
    I have functional anonymous login and anonymous user can only display documents, search them and RATE them. But I can't figure out how to disable the rating service just for anonymous user, not other users.
    That note won't help me with that.
    Marek

  • Welcomepage for anonymous user with KM elements

    Hi @all,
    maybe somebody can help us.
    We want to use a separate Welcomepage for anonymous user.
    Inside the element "welcomepage" (it is a page in pcd) we use a KM iview.
    The KM iview is link to a html-file in the KM directory. The html-file is designed with the standard portal html editor and contains text an some pictures. The pictures are also elements (gif-files) in the same folder like the html-file.
    The used KM iview has the property "auth.scheme = anonymous". That we have change.
    The problem ist, that when the anonymous start the weblink (https://domian.com:port/irj/portal/anonymous) he get a popup window to login with usernam and password. We try it with the km iview without pictures, than everything is ok an no username an password is required.
    But when we use the pictures inside the KM-document we have the problem with the authorization popup.
    The used KM iview has the property "auth.scheme = anonymous". That we have change.
    Have somedody a idea?
    Thank´s for your answers.
    Thomas

    Hi Thomas,
    You need to read SAP Note 837898.
    Specifically for your issue, the following may resolve it:
    u2022     Go to Content Administration > Portal Content > Portal Users > Standard Portal Users >Standard User Role > Open >Object
    Navigate to Home(the tooltip should state u2018Knowledge Management Homeu2019)>Hidden>URL Access
    u2022     Open the iView named KM Document iView
    u2022      Change the property "Authentication Scheme" to anonymous and save changes.
    Hope this helps,
    Harman

  • Content search webpart in sharepoint 2013 paging is not not working for anonymous users on IE9, IE10 and Firefox

    Dear All,
     Issue in CQWP paging on IE9, IE10 and Firefox
    We have created CQWP in SharePoint 2013 for images rollup and its paging perfectly working for authenticated users on all browsers but it’s not working on public facing site for specific browser
     while we are trying to click on paging getting 
    something went wrong and correlation  with correlation id
    We did log analysis and getting different kind of problem description on every click some time contents authentications error, sometime memory
    Once I put webpart inside the  <!--MS:<ZoneTemplate>--> its completely stop working
      so we placed webpart outside  <!--MS:<ZoneTemplate>--> currently
    Strange point is its working on IE11. Please help us its highly appreciated
    Code Details :
    <div data-name="WebPartZone">
    <!--CS: Start Web Part Zone Snippet-->
    <!--SPM:<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <div xmlns:ie="ie">
    <!--MS:<WebPartPages:WebPartZone runat="server" AllowPersonalization="false" ID="x5d2d1828b2b44612974f72caded2bcd3" FrameType="TitleBarOnly" Orientation="Vertical">-->
    <!--MS:<ZoneTemplate>-->
    <!--ME:</ZoneTemplate>-->
    <!--ME:</WebPartPages:WebPartZone>-->
    </div>
    <!--CE: End Web Part Zone Snippet-->
    <!--CS: Start Content Search Snippet-->
    <!--SPM:<%@Register Tagprefix="spsswc" 
    Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>-->
    <!--SPM:<%@Register Tagprefix="a2e8ead9d" 
    Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>-->
                            <!--MS:<spsswc:ContentBySearchWebPart runat="server" AlwaysRenderOnServer="False"
    ResultType="" NumberOfItems="12" DataProviderJSON="{&#34;QueryGroupName&#34;:&#34;Default&#34;,&#34;QueryPropertiesTemplateUrl&#34;:&#34;sitesearch://webroot&#34;,&#34;IgnoreQueryPropertiesTemplateUrl&#34;:false,&#34;SourceID&#34;:&#34;8413cd39-2156-4e00-b54d-11efd9abdb89&#34;,&#34;SourceName&#34;:&#34;Local
    SharePoint Results&#34;,&#34;SourceLevel&#34;:&#34;Ssa&#34;,&#34;CollapseSpecification&#34;:&#34;&#34;,&#34;QueryTemplate&#34;:&#34;path:\&#34;http://thepubauth.viacom.com/sites/vh1press/Shows/Show assets\&#34;
    PictureURL:\&#34;/sites/vh1press/Shows/Show assets/{Page.ID}/\&#34; (ContentTypeId:0x0101009148F5A04DDD49cbA7127AADA5FB792B00AADE34325A8B49cdA8BB4DB53328F214* OR ContentTypeId:0x010102*)&#34;,&#34;FallbackSort&#34;:[{&#34;p&#34;:&#34;LastModifiedTime&#34;,&#34;d&#34;:1},{&#34;p&#34;:&#34;Title&#34;,&#34;d&#34;:0}],&#34;FallbackSortJson&#34;:&#34;[{\&#34;p\&#34;:\&#34;LastModifiedTime\&#34;,\&#34;d\&#34;:1},{\&#34;p\&#34;:\&#34;Title\&#34;,\&#34;d\&#34;:0}]&#34;,&#34;RankRules&#34;:null,&#34;RankRulesJson&#34;:&#34;null&#34;,&#34;AsynchronousResultRetrieval&#34;:false,&#34;SendContentBeforeQuery&#34;:true,&#34;BatchClientQuery&#34;:true,&#34;FallbackLanguage&#34;:-1,&#34;FallbackRankingModelID&#34;:&#34;&#34;,&#34;EnableStemming&#34;:true,&#34;EnablePhonetic&#34;:false,&#34;EnableNicknames&#34;:false,&#34;EnableInterleaving&#34;:false,&#34;EnableQueryRules&#34;:true,&#34;EnableOrderingHitHighlightedProperty&#34;:false,&#34;HitHighlightedMultivaluePropertyLimit&#34;:-1,&#34;IgnoreContextualScope&#34;:true,&#34;ScopeResultsToCurrentSite&#34;:false,&#34;TrimDuplicates&#34;:false,&#34;Properties&#34;:{&#34;TryCache&#34;:true,&#34;Scope&#34;:&#34;{Site.URL}&#34;,&#34;ListId&#34;:&#34;00000000-0000-0000-0000-000000000000&#34;,&#34;UpdateLinksForCatalogItems&#34;:true,&#34;EnableStacking&#34;:true},&#34;PropertiesJson&#34;:&#34;{\&#34;TryCache\&#34;:true,\&#34;Scope\&#34;:\&#34;{Site.URL}\&#34;,\&#34;ListId\&#34;:\&#34;00000000-0000-0000-0000-000000000000\&#34;,\&#34;UpdateLinksForCatalogItems\&#34;:true,\&#34;EnableStacking\&#34;:true}&#34;,&#34;ClientType&#34;:&#34;ContentSearchRegular&#34;,&#34;UpdateAjaxNavigate&#34;:true,&#34;SummaryLength&#34;:180,&#34;DesiredSnippetLength&#34;:90,&#34;PersonalizedQuery&#34;:false,&#34;FallbackRefinementFilters&#34;:null,&#34;IgnoreStaleServerQuery&#34;:false,&#34;RenderTemplateId&#34;:&#34;DefaultDataProvider&#34;,&#34;AlternateErrorMessage&#34;:null,&#34;Title&#34;:&#34;&#34;}"
    BypassResultTypes="True" ItemTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/DT_Images.js" GroupTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/Group_Content.js"
    ResultsPerPage="9" SelectedPropertiesJson="[&#34;PublishingImage&#34;,&#34;PictureURL&#34;,&#34;PictureThumbnailURL&#34;,&#34;Path&#34;,&#34;Title&#34;,&#34;Description&#34;,&#34;SecondaryFileExtension&#34;,&#34;ContentTypeId&#34;]"
    HitHighlightedPropertiesJson="[&#34;Title&#34;,&#34;Path&#34;,&#34;Author&#34;,&#34;SectionNames&#34;,&#34;SiteDescription&#34;]" AvailableSortsJson="null" ShowBestBets="False" ShowPersonalFavorites="False"
    ShowDefinitions="False" ShowDidYouMean="False" PreloadedItemTemplateIdsJson="null" QueryGroupName="Default" RenderTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/Control_ListWithPaging.js"
    StatesJson="{}" ServerIncludeScriptsJson="null" Title="Content Search" FrameType="None" SuppressWebPartChrome="False" Description="&#60;%$Resources:Microsoft.Office.Server.Search,CBS_Description;%&#62;"
    IsIncluded="True" ZoneID="ImportedPartZone" PartOrder="0" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True" AllowEdit="True"
    AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="&#60;%$Resources:core,ImportErrorMessage;%&#62;"
    ImportErrorMessage="&#60;%$Resources:core,ImportErrorMessage;%&#62;" PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_9f61c988_228e_4f91_8d67_04314f144f48"
    ChromeType="None" ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{9f61c988-228e-4f91-8d67-04314f144f48}" WebPart="true" Height="" Width="">-->
    <!--ME:</spsswc:ContentBySearchWebPart>-->
    <!--PS: Start of READ-ONLY PREVIEW (do not modify)--><div ms-webpart-chrome-fullWidth "><div webpartid="00000000-0000-0000-0000-000000000000" haspers="true" id="WebPartWPQ1" width="100%" noindex
    " onlyformepart="true" allowdelete="false" ><div style="display: none;"></div><div componentid="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_csr"
    id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_csr" style="display: none;"></div><noscript>&lt;div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_noscript"&gt;It
    looks like your browser does not have JavaScript enabled. Please turn on JavaScript and try again.&lt;/div&gt;</noscript><div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48"><div><div
    id="WebPartWPQ2_ChromeTitle"><span title="" id="WebPartTitleWPQ2"><h2 style="text-align:justify;"><nobr><span></span><span id="WebPartCaptionWPQ2"></span></nobr></h2></span></div><div
    webpartid="00000000-0000-0000-0000-000000000000" haspers="true" id="WebPartWPQ2" width="100%" ms-WPBorder noindex ms-wpContentDivSpace " onlyformepart="true" allowdelete="false" ><div componentid="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_csr"
    id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_csr"><div id="DataProvider" name="Control"></div></div><noscript>&lt;div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_noscript"&gt;It
    looks like your browser does not have JavaScript enabled. Please turn on JavaScript and try again.&lt;/div&gt;</noscript><div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00"></div><div></div></div></div></div><div></div></div></div><!--PE:
    End of READ-ONLY PREVIEW-->
    <!--CE: End Content Search Snippet-->
          </div>

    Hi,
    In the “Property Mappings” of the Content Search Web Part, we can see that the Picture field will only display the value retrieved from “PublishingImage;PictureURL;PictureThumbnailURL”,
    because there is corresponding column in OOTB Document Library holds the valid value of a thumbnail image for a document, that’s why documents from Document Library display no thumbnail image in a Content Search Web part.
    If you want to display thumbnail images for documents of Document Library, you can add a custom Picture column to hold the thumbnail image of a document, set the “Property
    Mappings” to display this custom Picture column.
    By doing this, every time uploading a document to this library, setting a thumbnail image(provided by common users, not generated by SharePoint automatically) for
    that custom Picture column, in the Content Search Web Part, the thumbnail image will display.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • WPC content for anonymous user

    Dear SDNites
    We have recently started a project in which we are using Web Page Composer(WPC) for web content development. We have configured the WPC content for anonymous users. After the configurations, anonymous users could access this content without entering any user id and password. But after the restart of the portal, it started prompting login screens even for the anonymous users.We have checked all the required configurations and these seem fine to me. Can you please help me on how to resolve this issue?
    Best Regards
    Pavan

    Hi Pavan,
    Please refer to this thread.
    https://forums.sdn.sap.com/thread.jspa?threadID=948170&tstart=0
    https://www.sdn.sap.com/irj/sdn/thread?threadID=943740&tstart=150
    Hope this helps.
    Cheers,
    Sandeep Tudumu
    Edited by: Sandeep Tudumu on Jul 7, 2008 10:22 PM

Maybe you are looking for

  • Diff amount should go to Stock Account

    Hi,     I am adding some octroi amount in PO . The same is getting inventorised in MIGO.   But , The value will be different after getting invoice from Octroi dept. That value also should go to Inventory.    when i change the amount as per Vendor's i

  • Implement QBE case insensitive search using model layer?

    Using ADF 11.1.1.6.2 We know we can set filterFeatures='caseInsensitive' at UI layer to make QBE to search case insensitive. How can we push that behavior using model layer implementation? Thanks

  • Is it possible to put different movieclips in the same array?

    Hello. I have two different bullet movieclips. I would like to put them both into one bullet array, but it seems that all instances of the second movieclip are not controlled by bullet_ary[i]

  • Error 1603 attendant console install

    I am trying to install the attendant console on server 2008 standard and keep receiving afatal  error 1603 during the installation .I have tried the registry key fix and the services permissions but it will not install. Any advice much appreciated.

  • Multiple G/L or Cost centres in IDOC_INPUT_INVOIC_MRM

    HI All, We are creating the Invoices through idoc, while creating the invoice we are unable get the multiple G/L or Cost centers. This is FM ---IDOC_INPUT_INVOIC_MRM We contact the SAP for this problem they came up with  Customer exist EXIT_SAPLMRMH_