Content Administration - KM Content workset direct url access

Hi,
As we know we have KM Content workset under Content Administration. When I right click and select "Open in new Window" for "KM Content" again Home page is opening.
How can I get the url to access directly "KM Content" page?
Please let me know if any body has an idea to get this.
Thanks

KM Content is a workset under Content Administration role
You can directly acess the workset using Quick Links.
Navigate to  content admin->portal content. in that pcdcontent->content provided by SAP->Admin content-> conent administrator->worksets.
There you find the KM content. dupicate that in to your folder and open as object
and Set the  'quick links' property as km_content
then  below url  will directly access the KM content (provided you are having conent admin role).
http://<FQDN>:<port number>/irj/portal/km_content
Raghu

Similar Messages

  • Browse/Capture on Content Administration/Portal Content -EP6

    We're having problems trying to capture live (external) internet content from the portal when we create
    URL iViews.
    In EP5 the tool used to be called iView catcher and it allows you to get a portion of content from the web like a table (stock/weather). This functionality is not working in the portal and I am not sure if this is due to the privacy/partnership issues, but at the same rate, i see the functionality exists on EP 6.0 via
    Content Administration/Portal Content. Right click on the folder and select New -> iView and from the list of templates select URL iView, enter name and id on the next screen. On the following screen you can enter a URL and we tested www.bbc.co.uk and then press the Browse/Capture button and the pop up window is not able to access this website. 
    The website does not appear in the Browse tab but if you save it does work when previewing the iView (example is iView url_test). However we just want to capture a part of the website and under the Capture tab it just says 'null' instead of the website(url) appearing.
    Is this a known problem with EP(SP7), and perhaps fixed with SP9?
    Any help would be appreciated.
    Thanks.
    James

    Hi,
    The iView catcher is available in EP6 start from SP9 and on (NW04).
    If you select to create new iView - URL iView and then you choose browse / capture.
    If it doesn't work well, you probably have problems with either proxy settings or your windows domain authentication.
    Good luck,
    Tuval

  • I accessed the page protected by ADF security using direct url access attac

    hi,
    I played with my application which is based on SRDemo code (with added ADF security handling protection of resources) using direct url access scenarios. I was able to access a protected page as authenticated but not authorized user. I'll try to explain what I did.
    There are two folders/web resources in my application, faces/folderA/* and faces/folderB/*.
    roleA only is configured to access first web resource and the roleB is configured to access the second resource.
    I used ADF security to authorize only roleA for page in folderA and to authorize only roleB for page in folderB.
    I configured error pages in web.xml:
    <error-page>
    <error-code>400</error-code>
    <location>faces/error/error400.jspx</location>
    </error-page>
    <error-page>
    <error-code>401</error-code>
    <location>faces/error/error401.jspx</location>
    </error-page>
    <error-page>
    <error-code>403</error-code>
    <location>faces/error/error403.jspx</location>
    </error-page>
    <error-page>
    <error-code>404</error-code>
    <location>faces/error/error404.jspx</location>
    </error-page>
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>faces/error/error500.jspx</location>
    </error-page>
    Other config params are:
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>infrastructure/ABLogin.jspx</form-login-page>
    <form-error-page>faces/error/error401.jspx</form-error-page>
    </form-login-config>
    </login-config>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AB Prototype</web-resource-name>
    <url-pattern>faces/ABAbout.jspx</url-pattern>
    <url-pattern>faces/ABHelp.jspx</url-pattern>
    <url-pattern>faces/ABLogout.jspx</url-pattern>
    <url-pattern>faces/ABWelcome.jspx</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AZone</web-resource-name>
    <url-pattern>faces/folderA/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>BZone</web-resource-name>
    <url-pattern>faces/folderB/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    <init-param>
    <param-name>unauthorizedErrorPage</param-name>
    <param-value>faces/error/error401.jspx</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jsp</url-pattern>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>ERROR</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jspx</url-pattern>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>ERROR</dispatcher>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    Once I authenticated as user in roleA I was trying to directly access URLs accessible only by users in roleB. In the beginning everything worked OK: I was dispatched to error401.jspx page with message Not authorized... etc.
    But I kept trying to access different URLs, like http://localhost:8988/AB/faces, http://localhost:8988/AB/faces/folderB, http://localhost:8988/AB/faces/folderB/pageB.jspx, http://localhost:8988/AB
    (not necessarily in that order, I played for a couple of minutes and the system would always dispatch to error401.jspx page if unauthorized attempt. But all of sudden, to my surprise, I got the pageB.jspx page while logged in as user belonging to roleA!)
    Not sure how that happened but the connectedUser on pageB (#{userInfo.authenticated}) shows that I am logged in as user whose role is A.
    I checked Authorization in ADF security and it is still correct: pageB is only accessible to roleB and pageA is only accessible to roleA.
    I hope I made some stupid mistake in my configuration?

    Hi,
    ADF Security is JAAS permission based and not container managed. Note that unless you explicitly configured ADF Security you don't use ADF Security but container managed security, which is all that I can see in your configurations.
    Not sure which version fo JDeveloper you use, but if you could change the following setting
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AZone</web-resource-name>
    <url-pattern>faces/folderA/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>BZone</web-resource-name>
    <url-pattern>faces/folderB/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    to contain jspx file references instead of wildcards like in faces/folderB/* then what you see should no longer be possible. There was a known issue with the security settings in SRDemo that was caused by a defect in OC4J container managed security. I would expect this issue to be fixed in a more recent version of OC4J.
    However, the work around until then is to protect all JSPX files in a directory instead of using wild card matches
    Frank

  • SRM 7.0 business object / individual procurement document direct URL access

    Hello,
    While our Basis team is configuring the Portal integration with our newly upgraded SRM 7.0 system, I am wondering if it's possible to take a sneak peak at the business object on the WebDynpro screen, for example, via SICF webdynpro service, such as
    /default_host/sap/bc/webdynpro/sapsrm/wdcc_v_rfq_puchaser
    After activating all relevant services (as far as I understand), I tried to access the following URL directly on the browser:
    https://<server;domain>:<port>/sap/bc/webdynpro/sapsrm/wdcc_v_rfq_purchaser?sap-client=010&sap-language=EN?
    I encountered the "Access via 'NULL' object reference not possible" exception on the web page. I think it's due to the missing object type and object id reference on the HTTP parameters. But what are the parameter name(s) that are required on the URL? Does anybody have the experience in accessing an individual document through direct URL?
    Thanks,

    This question has been answered by the following blog:
    /people/ulli.hoffmann2/blog/2009/10/07/srm-70-running-it-without-the-portal

  • JSF restricting direct URL access

    I have created a servlet that checks to see if the user is logged in and hidden it in a .jspf and included that fragment into each page. It seems to work ok in most pages but.....
    If I have a page that contains selectOne lists that are populated via another managed bean. The program seems to be trying to process out the entire page before the redirect occurs, and if the list is based on a logged in user I of course am getting a nullpointer exception.
    My question is: Is there a way to short-curcuit the JSF lifecycle based on the fragment. If the user is not logged in I do not want the lifecycle to continue but to redirect to the logon screen.
    Any ideas will be appreciated. If anyone knows of a better way by all means let me know. This is the first major JSF project I have been involved with.
    Thanks,
    Thom

    Hi Suvidha,
    thanks for your reply. Indeed I tried using this technique already. On our project we are using this to send links in Emails. This way the user can directly access all information in CRM.
    For the interested reader: SAP has at least some documentation on this one. It is freely available form the [Service Market Place|https://websmp203.sap-ag.de/crm-inst]. [DirectLink|https://websmp203.sap-ag.de/~sapdownload/011000358700001715762008E/Cookbook_Ex_Comp_CRM2007.pdf]
    Anyhow, the result for me can be described as rather odd:
    - WebClient opens in a new session. --> Logon necessary
    - WebClient opens not just the single component, but the whole UI Frame. Meaning: NavBar, WorkArea, Header, BreadCrumbs, MessageArea
    - As I tried to put the result into a DIV, it rendered not as 800*600 as statically specified but as some thumbnail
    What I do need is just the component as the test in the component workbench does open it. It has to be same session.
    I got a little spare time today so I guess I will start fiddling around again. My best guess is, that I can somehow initialize a component usage and then open it via a bsp call an a page with flow logic. For this it is no problem to get a URL
    cheers Carsten

  • Looking for some best practice regarding Content Administrator access

    Hi. I am looking for some best practice or rule of thumb from SAP or from different companies how they address Portal Content Administrator access in Production environment. Basically, our company is implementing portal to work with SAP BW.  We are on SP 9. Basically, I am trying to determine if we should have 1-2 Portal Content Administrator in Production with 24/7 access or we should limit them from NOT having this.  Can you share with me some ideas of what is right? and what is not?
    Should we have access in Production? Or Should we have this access but limited? By the way, our users are allow to Publish BI reports/queries into Production.

    Hello Michael,
    Refer to this guide about managing initial content in portal.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00bfbf7c-7aa1-2910-6b9e-94f4b1d320e1
    Regards
    Deb
    [Reward Points for helpful answers]

  • Role contentmanagement vs content administration

    HI,
    We have Enterprise portal installed along with KM and colloboration. Now I see that the KM content is distrubuted in many worksets.. I just want to make clear why it is done so?
    There are three places where we deal with KM content
    1. System Administration --> System Configuration --> Knowledge Management
    2. Content Administration --> KM Content
    3. Content Management.
    why didnt workset "KM content" be included in Content Management Workset, becuase all the things taht we can do in KM content workset can be done in Content Management Explorer workset, although all the repositories are not defined here.
    why didnt they move this KM content stuff to content management?
    could someone please explain me?

    Hi Shiva,
    here a brief explanation:
    1. System Administration --> System Configuration --> Knowledge Management
    Here you do the KM Configuration, so set up repositories, repository services, etc.
    2. Content Administration --> KM Content
    This is the place where you can see all KM repositories (depending on permissions of course) and perform administrative tasks, like setting up permissions, run reports, etc.
    3. Content Management
    This is the place for content manager to manage and structure information and provides the folder structures that end users and authors need to find.
    The important difference here is that two different user groups are provided with different worksets. KM Content is intended for Content Administrators who create the iViews in which users access KM folders and can set initial permissions. Only after that is done, the content managers take the responsibility for the KM content of an entire organization or only for a part of an organization, such as a department.
    Hope that clarify things,
    Robert

  • Webdynpro content administrator

    Hi All,
    I am able to access Webdynpro content administrator  & webdynpro content through the 50000 port only. but we have IIS sitting infront of it on port 80. when i try to access the webdynpro content or content administrator through http://host/<webdynrocontent admin content URL>  it gives page connot be displayed page. is there anyway to access webdynpro content OR webdynpro content adminstrator the with no port specified in the URL.

    First thank you very much for help. Yes. we found that IIS is not allowing /webdynpro and blocking this URL's. we got it working after configuring the IIS.
    From this it is clear that all webdynpro Iviews are URL iviews? Am i correct in understanding this?

  • ACCESSIBLE CONTENT ADMINISTRATION Role

    Hello,
    Can anyone tell me the difference between " Content Administration " and "Accessible Content Administration" Roles.
    Thank You
    Avik

    Accessible Content Administration
    The portal provides a set of interfaces that can be used by administrators who need to create and administrate portal content within an accessible environment.
    This accessible Portal Content Studio does not duplicate all the functionality of the Application Designer, but it does provide sufficient functionality for creating and editing selected objects, and it enables the basic flows required by the administrator.
    Content Administration
    The content administrator is responsible for all tasks that are relevant to content creation and maintenance directly in the portal.
    More Details - http://help.sap.com/saphelp_nw04s/helpdata/en/a9/fe602e5a214237a0cd27111873505c/frameset.htm
    Thanks,
    GLM

  • Help in content administration

    Hi,
    I would like to know why nothing came out when i click on the "browse" tab under the content portal which is under the content administration.

    Hi Joshua Tan ,
    if your user is having only Content Administrator role then check the URL First like
    http://host:port/irj/portal dont use IP Address add the ip address in the host file.
    if the setting is perfect then problem in the setting
    logon the portal through the Super Admin user id
    Click System Administrator->Permission
    Right click on the portal Content Folder and open Permission
    Search for your user and click add set Owen the Permission level and also select ENd User check box.
    Click Save.
    After that logon though your user id defenatly your problem will resolved ,
    please give some points for me.
    thanks
    Chitta

  • Error when expanding 'Wen Dynpro Application' in 'Content Administration'

    Hi All,
    I m using CE 7.1 portal.
    In my Content Administration -> Portal Content, when im trying to expand Web Dynpro Applications,
    its throwing null pointer exception. Giving following error:
    java.lang.NullPointerException
        at com.sap.tc.webdynpro.serverimpl.core.deployment.DeploymentXMLParser.processXML(DeploymentXMLParser.java:186)
        at com.sap.tc.webdynpro.serverimpl.core.deployment.DeploymentXMLParser.<init>(DeploymentXMLParser.java:140)
        at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractWebModule.initializeDeployableObjectParts(AbstractWebModule.java:304)
        at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractWebModule.getParts(AbstractWebModule.java:132)
        at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractDeployableObject.getParts(AbstractDeployableObject.java:115)
        ... 78 more
    What could be the reason for the same?
    How can i mend it?
    Thanks and Regards,
    Sakshi

    Thanks Santhosh for prompt reply.... i restarted the server and after that its working fine....
    In case, if i ll face some issue again will get back to you.... thanks
    Sakshi

  • Javascript error in Content Admin- Portal Content- iview Navigation window

    Hi friends,
    We are in the process of portal migration and as a part of this, we installed NW04 SPS 14 using Rapid Installer and then upgraded it to SPS 18. The components we upgraded are:
    Java component
    Portal Platform
    Knowledge Management and Collaboration
    Adobe Document Services
    BI UDI
    BI MMR
    After upgradation, when we logged in to portal, we were not able to see/browse Portal pages/Roles/Iviews/Worksets (PCD Contents) under Content Administration->Portal Content.
    Again, whichever window is there for navigation of PCD, we are not able to see the contents of PCD.For e.g. System Administration -> System Configuration.
    Does anyone know how to solve this issue?
    Regards,
    Nilz

    Hi nilz,
       See this thread:
    Getting javascript error while logging in EP
    Javascript error when loading Portal Content
    Regards, Suresh KB

  • Javascript error in Content Admin- Portal Content

    Hi Experts,
    We have just installed SAP Netweaver Portal 7.0. We get an error of javascript when we navigate to Content Administration->Portal Content and due to this Portal Content Folder is not displayed. While through Super Admin role Portal Content is displayed with javascript error. Please guide us, its Urgent.
    Rewards to satisfactory answers.
    Regards,
    Bharat Mistry.

    Hi Bharat
    refer to this for the Log file
    Physical path of log files in EP server
    Portal Runtime Error - Where is the log file?
    For javscript problem refer  to
    Javascript error when loading Portal Content
    Portal Content Permissions
    Getting javascript error while logging in EP
    Thanx
    Pankaj

  • Access a JCo dest define in the Web Content Administrator

    I have got a J2EE application developed on NDS and i want to access and use a JCo destination defined in the Web Dynpro Content Administrator as a Web Dynpro application done.
    First: is it possible or not ?
    and if yes please tell me how ?
    Cheers,
    Eric Gourdou.

    Hi, we're trying the solution described above.
    The application cannot be deployed on the WAS due to the following call:
    WDJCOClientConnection client =
    WDSystemLandscape.getJCOClientConnection(“myJCOClient”);
    Here is the exception thrown by the deployment service:
    server ID 8240151:com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Application xxx cannot be started.
    Reason: it has hard reference to resource tcwdwebdynpro with type service, which is not active on the server.
    at com.sap.engine.services.deploy.server.ReferenceResolver.processReferenceToService(ReferenceResolver.java:458)
    at com.sap.engine.services.deploy.server.ReferenceResolver.processMakeReference(ReferenceResolver.java:396)
    at com.sap.engine.services.deploy.server.ReferenceResolver.beforeStartingApplication(ReferenceResolver.java:328)
    at com.sap.engine.services.deploy.server.application.StartTransaction.beginCommon(StartTransaction.java:178)
    at com.sap.engine.services.deploy.server.application.StartTransaction.beginLocal(StartTransaction.java:152)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:356)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.runMe(ParallelAdapter.java:80)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter$1.run(ParallelAdapter.java:218)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Do you have any information on how to activate the service or how to reference the jar in the J2EE application.
    By trying to define the service with a weak reference, the deployment works but a ClassNotFound exception is thrown.

  • URL to Content Administration

    Hi,
    I was editing some properties for the TLN.
    I set everything so that the tabs from the TLN would be displayed in DTN.
    The problem now is that i don't see my TLN roles in the DTN which means i can't get back to the Content Administration to reset the values of TLN.
    Does anyone know the URL to view the Content Administration? Or any other way to get my TLN back on the screen?
    Thanks,
    Jos van Hinsberg
    Message was edited by: Jos van Hinsberg

    Hi
    Url is given below.
    http://server:port/irj/portal?NavigationTarget=ROLES://portal_content/administrator/super_admin/super_admin_role/com.sap.portal.content_administration/com.sap.portal.portal_content
    You have to change the levels to display in the DLN to 1.
    Regards
    Geogi

Maybe you are looking for