Where is the "Add New Thread" link?

I want to add a new thread to the SAP Auto ID Infrastructure forum.  However, there is no "Post New Thread" link to select.  I am logged in.  The instructions say all you need to do is log in and start posting.  How do I find the Post new thread link?
John P

my first question how you posted here , the way you have to post the question in that forum also.
path is this
Expert Forums » SAP NetWeaver - Auto ID Infrastructure » SAP Auto ID Infrastructure
i think you already posted question there.

Similar Messages

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Edit Add New Item link in certain view of list in SharePoint Programmtically

    this is my requirements
    i have one list called List 1 and two content types on it
    CT 1 and
    CT 2 and create two views on the list
    View 1 to display items of CT 1 
    View 2 to display items of CT 2 
    the creation of list and views is done via XML 
    now i need to change the URL of add new item link in every view to open its content type, i.e. when i was on view 1 i click on add new item, it will open new item form of CT 1 and hen i was on view 2 and click on add new item, it will open new item form
    of CT 2 
    i do a lot of search on the internet but get the following code but it doesn't work for me, i already wrote it in event receiver
    SPSecurity.RunWithElevatedPrivileges(delegate()
    SPWeb web = properties.Feature.Parent as SPWeb;
    web.AllowUnsafeUpdates = true;
    SPList contractList = web.Lists.TryGetList("Contract");
    SPLimitedWebPartManager webpartManager = web.GetLimitedWebPartManager("Lists/ContractList/SICET%202A%20Contract.aspx", PersonalizationScope.Shared);
    foreach (System.Web.UI.WebControls.WebParts.WebPart item in webpartManager.WebParts)
    if (item.GetType().Name == "XsltListViewWebPart")
    XsltListViewWebPart listViewWebPart = (XsltListViewWebPart)item;
    Guid guid = new Guid(listViewWebPart.ViewGuid); // get the view details which is applied to web part
    SPView sicet2AView = contractList.Views[guid];
    sicet2AView.GetType().InvokeMember("EnsureFullBlownXmlDocument",
    System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.InvokeMethod,
    null,sicet2AView,null);
    PropertyInfo nodeProp = sicet2AView.GetType().GetProperty("Node", BindingFlags.NonPublic | BindingFlags.Instance);
    XmlNode node = nodeProp.GetValue(sicet2AView, null) as XmlNode;
    XmlNode toolbarNode = node.SelectSingleNode("Toolbar");
    //sicet2AView.ViewFields.DeleteAll();
    if (toolbarNode != null)
    string toolbarType = toolbarNode.Attributes["Type"].Value;
    string linkText = "abdeen";
    toolbarNode.Attributes["Type"].Value = "Freeform";
    XmlAttribute positionNode = toolbarNode.OwnerDocument.CreateAttribute("Position");
    positionNode.Value = "After";
    toolbarNode.Attributes.Append(positionNode);
    //toolbarNode.InnerXml = @"<IfHasRights><RightsChoices><RightsGroup PermAddListItems=""required"" /></RightsChoices><Then><HTML><![CDATA[ <table width=100% cellpadding=0 cellspacing=0 border=0 > <tr> <td colspan=""2"" class=""ms-partline""><IMG src=""/_layouts/images/blank.gif"" width=1 height=1 alt=""""></td> </tr> <tr> <td class=""ms-addnew"" style=""padding-bottom: 3px""> <img src=""/_layouts/images/rect.gif"" alt="""">&nbsp;<a class=""ms-addnew"" ID=""idAddNewItem"" href=""www.facebook.com""]]></HTML><URL Cmd=""New"" /><HTML><![CDATA["" ONCLICK=""javascript:NewItem(']]></HTML><URL Cmd=""New"" /><HTML><![CDATA[', true);javascript:return false;"" target=""_self"">]]></HTML><HTML>" + linkText + @"</HTML><HTML><![CDATA[</a> </td> </tr> <tr><td><IMG src=""/_layouts/images/blank.gif"" width=1 height=5 alt=""""></td></tr> </table>]]></HTML></Then></IfHasRights>";
    toolbarNode.InnerXml = @"<IfHasRights><RightsChoices><RightsGroup PermAddListItems=""required"" /></RightsChoices><Then><HTML><a class=""ms-addnew"" ID=""idAddNewItem"" href=""www.facebook.com"">Test</a></HTML></Then></IfHasRights>";
    sicet2AView.Update();
    //listViewWebPart.ViewGuid = sicet2AView.ID.ToString("B").ToUpper();
    //listViewWebPart.Visible = true;
    webpartManager.SaveChanges(listViewWebPart);
    web.Update();
    but it doesn't work, my first trail is changing the text of the link then go to change the link any help plz
    Mohamed Abdeen

    Hi,
    The “Add new item” button will redirect users to add new item with the default Content Type of the current list.
    So a workaround can be like this: We can change the default Content Type of this list every time when users open this list view page, then the “Add new item” button will work
    as you expected.
    Here is a link with code demo about how to programmatically set a content type as default content type in a SharePoint 2013 List:
    http://www.ashokraja.me/tips/How-to-programmatically-set-a-content-type-as-default-content-type-in-a-SharePoint-2013-List
    We can put the code into a Visual Web Part and add it into your two views, then when users open a list view page, the code will be executed to change the default Content Type
    of the current list.
    To develop a custom web part, you can take a look at the links below with steps in detail for a start:
    Creating Web Parts for SharePoint
    http://msdn.microsoft.com/en-us/library/ee231579.aspx
    SharePoint 2013 Create a Visual Web Part
    http://raquelalineblog.wordpress.com/2013/04/25/sharepoint-2013-create-a-visual-web-part/
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • HT1535 where is the add to button referred to in this article???

    where is the add to button referred to in this article???

    When you go to the iTunes Store and find an item of interest with a price listed, doesn't it look like this:
    And then if you click the down-facing arrow on the right, don't you see this?

  • Where is the OC4J 9i download link

    where is the OC4J 9i download link?

    What I meant was Version 9.0.4
    http://download.oracle.com/otn/java/oc4j/904/oc4j_extended.zip

  • Is the 'add new page' button working? (SG CC)

    Anyone else having issues with the add new page button under the look tab?  When I click it, instead of being able to add a new page with my custom looks or reopen any of the example folders, it makes a copy of whatever page happens to be selected.  I feel like I'm missing something because I don't remember encountering the problem with CS6.

    Answered my own question.  I was in "Quick View Mode" not "Look Management View Mode".  From the right view you can navigate to the folder you want displayed. /winning

  • TS1389 where is the "authorize your computer link" once you are in the apple store????????????

    where is the "authorize your computer link" once you are in the apple store????????????

    erinsawyer wrote:
    where is the "authorize your computer link" ...
    On your Computer...
    Open iTunes...  
    If you're using iTunes 11 click on the box icon in the top-left corner to see the " Show Menu Bar "  
    and from the Menu Bar select Store...
    From the Store menu, choose Authorize This Computer.
    (In earlier versions of iTunes, access this option from the Advanced menu).
    When prompted, enter your Apple ID and password, then click Authorize.
    See Here for full details...
    About authorization and deauthorization

  • Where is the 17" new macbook Pro

    Where is the 17" new macbook Pro??

    @kc1974,
    Yes, I understood that.  That is why I brought up the consideration of limited manufacturing capacity even before I questioned whether the sheer size of a 17" laptop like the new 15" MacBook Pro with Retina Display wouldn't pose challenges of its own.
    To reiterate:  Suppose you were manufacturing three models of a laptop and you wanted to upgrade the line, not with incremental modifications (like the ones that characterize the "new" 13" and 15" MacBook Pro's), but with something that would leave the competition eating your dust.  Suppose further that this "something" would make the laptops fairly expensive, something your fans won't expect.  They have been used to upgraded model s costing no more than the models that they replace, i.e., more performance for the same price.  So you test the market by giving it a choice between a normally upgraded version of one model, or a version of the same model with the technology that will enable you to leave the competition behind.  How do you propose to manufacture the "ground-breaking" version without having to increase your manufacturing capacity?  After all, you don't want the test to be more expensive than necessary!  You decide to devote the line that presently manufactures the least popular model to manufacturing the "ground-breaking" version of the one model.
    I think that make some sense, don't you?  Now suppose that the MBP 15" with Retina Display turns out to be a runaway success.  I doubt that Apple would continue to offer just the three MBP's that it is offering today.  It would make a lot of sense to consolidate around models with Retina displays, i.e., to replace the unibody MBP's by models with Retina displays (and without all the things that some of us which hadn't been sacrificed in the name of thinness).  That would be the time to introduce a 17" MBP with Retina Display.  Here's another "suppose".  Suppose Apple had introduced an upgrade to the 17" MBP along with the upgrades to the other two models.  Which segment of the customer base do you think would howl the loudest, becasue no sooner had they bought the upgrade, than the version with the Retina display was introduced?  Correct!  That segment that had always purchased the technologically most advanced model.
    I think I'm going to hang on to my MBP 17" until the verdict is in on the new Retina MBP.  Maybe by that time Apple will see fit to let us in on its plans for us.
    Regards,
    Richard

  • Where is the "add link" function in Mountain Lion release of PDF Preview

    Just installed ML. Opened a PDF using Preview 6.0 (765). Can't find the ADD LINK function. It is suposed to be in the Annotate menu, but I can't find it. Anyone know where it is/went?
    Should be:
    As-is (Preview 6.0):

    Good idea Matt on Pages.
    Yes, looks like someone left something out of Preview and the person doing the help didn't know they'd removed some of the core functionality. Seems like more dumbing down of the OSX apps to be more like iOS apps??? Too bad.
    Found an app on the app store called PDF-EDITOR that allows you to add URL hyper links to PDFs. Seems to work fine.
    neal
    Message was edited by: 3blackdogs Changed "PDF-EDITOR"

  • In the Organizer where the add new folders button?

    I want to create some new folders under the My folders section. In the Help section I see "click on the create new folder button." I can't find this button.

    Tommyvincent
    In the Elements Organizer 11, have you opened the Folder area to the location where you want to add the new folder, then right clicked and selected New Folder.
    Please refer to the screenshot representing the addition of a new folder to Documents in my Elements Organizer 11.
    I have still not found a specific New Folder button in Elements Organizer 11? New Album, yes. New Folder, no.
    ATR

  • Under Site Contents - Where is the add a Page or Web Part Page option.

    It seems the only way to add a page to a site is to create a document library first.

    Where is the SitePages Document Library.
    Up next to SkyDrive I click Sites. I select "My Child Site" It is a brand new site. Under the Cog there is Shared With, Edit Page, Add an app, view site contents and getting started. On the left I have Home, Site contents. If I go into Site contents I have
    the option of Lists, Libraries and other Apps or the option to create a new subsite. 
    Just to be sure I clicked Create a new Subsite". Once it is up I still don't have an option to create a page. And under the Cog I have the same settings as before.
    It seems like I have to create a document library app, create a page in the library, Add the app as a web part to the home page and then have a lot of clutter from the document library app. e.g. +new document or drag files here, current view... As opposed to
    a list of links to the pages. 
    It seems like a site should also be a document library or list to begin with. 
    I could swear in 2010 when you were in a new site you could could click create a page from the home page.

  • Cant locate the Authorize new computer link

    I recently purchased a new computer and it needs to be authorized.  After looking for it, it did not exist.  Where is the Authorize link at now?  Thanks!

    See this Discussion...
    https://discussions.apple.com/thread/4631735?tstart=0
    See Here for full details...
    About authorization and deauthorization

  • Changing the default "New Item" link url in SharePoint

    Is it possible to change the default url of the New Item button on a list.
    When i hover over or click on new item link it show the ......../15/listform.aspx?Page type=blah.....blah......
    I want it to be something like :/newform?source=xxxx
    Please help me !
    Thank you !

    Hi,
    The following code for your reference, please add the code into a Content Editor Web Part in the list view page.
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
    <script type="text/javascript">
    $(function () {
    $("#idHomePageNewItem").attr("href", "http://site/list/newform.aspx?source=http://...........");
    $("#idHomePageNewItem").attr("onclick", "");
    </script>
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Where are the 'Whats New' pdf's for Planning and Essbase for System 9.3

    Anyone know where the find the 'Whats New' pdf's they used to have on Hyperion.com? I can't seem to find anything on Oracle cluster f*** website :) Also does anyone know if there is any information available on 9.5 release for June?
    Thanks

    Heres a good link for 9.3.1 documents:
    http://download.oracle.com/docs/cd/E10530_01/doc/index.htm
    Thanks for all the replies..

  • Best way to add new post link

    What would be the best way to add a "new post" link on the main homepage that links to the appropriate blog page. Ideally, I'd like to put a small photo too.
    Is the only way to manually add it every time I update, or is there a better way?
    Thanks, Jill

    You can do it any number of ways. Link a shape, link text, or link a photo to the appropriate blog page, using the Inspector from the tool bar at the bottom of the iWeb window.
    You are correct that the only way is to manually update each time. I don't know of any method to get the blog entries to auto update an indicator on the Home page in iWeb.
    I have a site for a current project I'm on that has a "Shot of the Day" link on the Home page. As the site has gotten large, I have a duplicate of the Domain file for this site that contains nothing but this Home page. I update the page and then simply swap out the files on the server with the updated ones. Makes opening, editing, and saving the changes faster and easier than publishing the entire site each time. Here's an example of how I placed the link on the Home page...
    Mark

Maybe you are looking for