Default Entry for Folder & Entry Point

Hello,
What's the difference between the two options ?
Thanks for your help

Christophe,
Could you be more clear ?
Entry point for what ? roles, entrypoints repository so on.
Entry points allow you to navigate from an iView to various KM folders that may be located in different repositories. You use entry points in the following places:
Entry Points iView
Selection screen (for example, when copying or moving items in KM folders)
Go To menu in KM navigation iViews
Patricio.

Similar Messages

  • Default File for folder

    Hi everybody
    I have a KM Navigation iView which display the content of a folder.
    On the left I have the files in a layoutset of a Tree, and when choosing one of the files, its preview appears on the right.
    The problem is that by default, if you don't press any file the screen stays empty,
    and you have to choose one of the files to preview it. I want that by default one of the files will be shown in the preview. Is it possible?
    Can I display a document by default (like KM Document iView)and still navigate to other files in the KM?
    I hope the question was clear. If it wasn't you are welcome to ask me any question.
    Thanks in advance
             Omer

    hi
    KM Navigation Iview  you have to play arround <b>target path</b> to document  and layoutset just check applying layout of KM Document iview to KM navigation iview and vice versa.But in this context  You cannot have  both the functionality in one iview unless you use custom developed.
    Hope this helps you.please do not forget to give points
    With regards
    subrato

  • Changing the icon for Entry Points

    Hi Everybody,
    There are some default Entry Points for Pesonal Documents, Public documents, Recently used, Favourites etc.  All these Entry points are being displayed with the default icon image. I want to replace these default images with custom images but couldnt see any property where i can change the image path for these folders. I checked the details of all these folders and even went through the properties but there it shows only the default image name speciefied for that folder and no active settings where i can change the image path for custom icon. Kindly suggest how to implement custom image for KM folder icons.
    Regards,
    Venkatesh. K

    Hi Venkatesh,
    check out this SAP Help page that describes how to use a new symbol for an entry point:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/36/8b6b4066d9bf49e10000000a1550b0/content.htm
    Hope this helps,
    Robert

  • Entry Point Customization

    My requirement is to enable end user to choose any particular workset or page as the default entry point. In other words, that workset or page should be the first to focus when the user hits the portal. Can this functionality be made personalized?
    Thx for your help.
    Tridib

    Hi Tridib,
    I don't quite get what you are trying to do.
    If you set entry point to true for a workset, it won;t have any effect, since the role will still be the entry point (unless you change it).
    Entry points only determine if the current role appears in the user's initial nodes, and which of the nodes in the role is displayed as the root. It does not determine priority.
    If you have all the info you need, great. Forget about this post. If not, can you explain the functionality you want to provide?
    Daniel

  • Default entry for Folder property - Changed behavior in SP14???

    Hello,
    Has anyone run into changed behavior for this page property in SP14. It seems to be valid for pages in both folders and worksets.
    Ex. We have a workset that sits at 2nd level nav just below a 1st level entry point. So the workset is a 2nd level nav choice. The top page in that workset is the landing page for that nav and previously in SP9 the nav worked fine. We are finding now that in SP14 we have to set the Default Entry for Folder property to "yes" to make the 2nd level nav work. This could be another config issue in our environments but is following SP14 so far. Has anyone else sen this?
    Thanks,
    Doug Steckel
    Air Products & Chemicals

    Hi Daniel,
    NavStructure:
    ... -  Folder A
           - Page A <inv & defPage>
           - Page P1
           - Page P2
    If you click on folder A, you get the content of page A which for the end-user is not explicitely visible in navigation. So page A "is" the content of folder A.
    This is how web-like nav works, that you can click on a nav entry and that this entry has it's own content and not only the preset content of some sub entry.
    Hope it helps to understand what I meant
    Detlev

  • Doubt in configuring entry points for iviews

    Hi, I have followed the steps of the help about configuring entry points for iviews:
    1.-> in the pcd I have created a folder to store iviews for WPC.
    2.->I have gived read permission.
    3.->I have desactivated the hide root folder check por pcd repository.
    4.->I have created a folder in km.
    I am loosing in the step "Create a entry point for the folder that you created in step x".
    How link the pcd folder that store the iviews with the km folder?
    when I try to create a entry point I only can see km folders, How can I choose my pcd folder?
    Thanks.
    Regards.

    Try this:
    Procedure
    1. Choose System Administration &#8594; System Configuration &#8594; Knowledge Management &#8594; Content Management &#8594; User Interface &#8594; Mapping &#8594; Component.
    2. Edit the wpcDragExplorerEntryPoints configuration object.
    Use the following parameters:
    <u>Parameter: Description</u>
    displaymode:Specify <i>select</i>
    maxproviderprio: Highest priority number that standard entry points can have and still be displayed in the Web content browser
    entriesperrow: Number of entry points displayed in each row (default: 5)
    entrypointsprefix: Prefix of the entry point repository: If you specify a value for this parameter, standard KM entry points are also displayed in the Web content browser.
    Default: /entrypoints
    sharedcontent: Semicolon-separated list of paths to be displayed as global entry points for shared content
    Examples of parameter values (for sharedcontent param):
    displaymode=select,maxproviderprio=30,entriesperrow=5,entrypointsprefix=/entrypoints,sharedcontent=/wpccontent/Cross-Site Content;<b>/pcd</b>

  • Entry point not found for js32.dll

    Dear Friends,
    I am trying to connect to a Domino server using NRPC (Native call based) connection. I have added Notes Client path in PATH variable (double checked this). My machine is W2k and Java version 1.4.2.
    The following is the code which I am trying to run and getting erorr as,
    "The procedure entry point JS_NewStringCopyN could not be located in dynamic link library js32.dll". I've use Dependency walker tool to ensure that js32.dll contains the specified function. May I know what's going wrong here?
    Thanks,
    Ketan
    import java.util.List;
    import java.util.Vector;
    import lotus.domino.Database;
    import lotus.domino.Document;
    import lotus.domino.NotesError;
    import lotus.domino.NotesException;
    import lotus.domino.NotesFactory;
    import lotus.domino.NotesThread;
    import lotus.domino.Session;
    import lotus.domino.View;
    import lotus.domino.ViewEntry;
    import lotus.domino.ViewEntryCollection;
    public class TestNRPCConnection {
        //session variable
        protected Session session = null;
        //database variable
        protected Database dominodb = null;
         * Constructor which accepts all the parameters to create a non-DIIOP domino connection
         * @param serverName - name of domino server  
         * @param dbName - database name
         * @param userIdFileName - user id file path
         * @param userName -
         * @param password
        public TestNRPCConnection(String serverName, String dbName, String userIdFileName, String userName, String password)
          try
            NotesThread.sinitThread();
            this.session = NotesFactory.createSession();
            lotus.domino.Registration r = this.session.createRegistration();
            r.switchToID(userIdFileName, password);
            dominodb = session.getDatabase(serverName,dbName);
            if(dominodb == null)
              throw new Exception ("Couldn't create Domino Connection. Please check the parameters.");
            if( dominodb.isOpen() == false)
              this.close();
              throw new Exception("Couldn't create Domino Connection. Please check the parameters. " +
                  "  server=" + serverName
                  + ", user=" + userName
                  + ", user_ID_file=" + userIdFileName
                  + ", database_path=" + dbName
                  + ", password=" + ((password != null)? "<non-null>" : "<null>")
            else
              System.out.println("View Names are : " + dominodb.getViews());
              System.out.println(" Database is Open " + dominodb.getFileName());
          catch(NotesException e){
            String dominoErrorText = e.text;
            int dominoErrorID = e.id;
            switch (dominoErrorID) {
            case NotesError.NOTES_ERR_DOCNOTSAVED :
              System.out.println("NotesException - .  Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;     
            case NotesError.NOTES_ERR_VIEWOPEN_FAILED :
              System.out.println("Could not open the specified View <viewname>.  Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;     
            case NotesError.NOTES_ERR_DBNOACCESS :
              System.out.println("No access to the specified Database <dbname>.  Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;     
            case NotesError.NOTES_ERR_ILLEGAL_SERVER_NAME :
              System.out.println("The servername specified <servername> isn't correct.  Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;     
            case NotesError.NOTES_ERR_DBOPEN_FAILED :
              System.out.println("Could not open specified Database <dbname>.  Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;
            case NotesError.NOTES_ERR_SSOTOKEN_EXP:
              //Single Sign-on Token has expired.
              System.out.println("NotesException -   Domino Error Id = " + dominoErrorID + ", Domino Error Text = " + dominoErrorText);
              break;
            case NotesError.NOTES_ERR_SERVER_ACCESS_DENIED:
              //Access denied.
              System.out.println("This user is not authorized to open DIIOP connections with the Domino server.  Check your DIIOP configuration.  NotesException - " + dominoErrorID + " " + dominoErrorText);
              break;
            case NotesError.NOTES_ERR_GETIOR_FAILED:
              //Could not get IOR from Domino Server.
              System.out.println("Unable to open a DIIOP connection with " + serverName + ".  Make sure the DIIOP and HTTP tasks are running on the Domino server, and that ports are open.  NotesException - " + dominoErrorID + " " + dominoErrorText + ".");
              break;
            default:
              //Unexpected error.  Show detailed message.
              System.out.println("NotesException - " + dominoErrorID + " " + dominoErrorText);
            e.printStackTrace(System.out);
          catch(Exception ex)
            ex.printStackTrace();
            System.out.println("Error while creating Domino Connection. Details - " + ex + ". Parameters are, " +
                "  server=" + serverName
                + ", user=" + userName
                + ", user_ID_file=" + userIdFileName
                + ", database_path=" + dbName
                + ", password=" + ((password != null)? "<non-null>" : "<null>"));
        public synchronized void close()
          try
            this.dominodb = null;
            if(session != null)
              session.recycle();
            session = null;     
          catch(Exception ex)
            ex.printStackTrace();
          finally
            NotesThread.stermThread();
         * Gets documents by the specified view name
         * @param viewName - name of the domino view
         * @return
        public synchronized List getColumnNamesForView(String viewName)
          List columnNames = new Vector();
          List documentList = new Vector();
          try
            View view = (lotus.domino.local.View)this.dominodb.getView(viewName);
            ViewEntryCollection entryCollection = view.getAllEntries();
            if(entryCollection == null)
              return null;
            ViewEntry entry = entryCollection.getFirstEntry();
            int i = -1; //counter
            while (entry != null)
              if (entry.isDocument())
                Document doc = entry.getDocument();
                i++;
                //get the Column Names
                if(i == 0)
                  List items = doc.getItems();
                  String name = "";
                  for(int k=0; ((i==0) && (k<items.size())); k++)
                    name = ((lotus.domino.Item)items.get(k)).getName();
                    //skip column names starting with $ or ($
                    if(name != null)
                      columnNames.add(name);
                  if(doc == null)
                    continue;
                  else
                    //clean up task
                    doc.recycle();
                    doc = null;
                  //return columnNames;
                  documentList.add(0, columnNames);
              entry = entryCollection.getNextEntry();
            }//end of while
          catch(Exception e)
            e.printStackTrace();
          return documentList;
        public static void main(String[] args){
          TestNRPCConnection domino = null;
          try
            System.out.println("java.library.path = '" + System.getProperty("java.library.path") + "'");
             domino = new TestNRPCConnection(
                 "testservername",
                 "names.nsf",
                "c:/lotus/domino/data/admin.id",
                "UserName/domain",
                "somepassword");
             System.out.println("Column Names " + domino.getColumnNamesForView("Groups"));
          }catch(Exception e)
            e.printStackTrace();
          finally
            //if(domino != null)
              //domino.close();
    }

    Hi,
    Can you try with a Generic Wrapper like JNative (it contains a method to list all exported functions of a dll : even mangled ones) ?
    --Marc (http://jnative.sf.net)                                                                                                                                                                                                                                                                                                                                                   

  • Entry Point for internal KM links

    Hi,
    Using a KM Navigation iView (LinkListExplorer Layout Set) I want to add a link to an internal KM document using "Organize Entries" -> Context Menu -> New -> Link.  When I press browse I can start browsing from where the link will be inserted, but I want to start browsing for the target "higher" in the KM structure.  A shot in the dark was to set the Root Folder for Navigation parameter to where I wanted to start browsing (but this did not help).
    Someone got a solution for this, or can point me in the right direction?
    best,
    Bjorn

    Hi,
      In the KM Navigation iview you have two parameters:
    Path to Initially Displayed Folder: from where you want to navigate.
    Path to Root Folder for Navigation: you can leave in blank this field.
    When you press Organize Entries, you can only navigate from where you have defined in the iview.
    An approach is you can use entry point repositories, when you press browse link button, you are going to see these repositories. These entries are going to appear as Favorites, Personal Documents, Public Document so on.. in More link you see all your entry points.
    Patricio.

  • Does the default login entry point have to be on the leftmost tab?

    I have a page that is within the role at the rightmost position of my top-level navigation, and I want that page to be displayed first when a user logs into the portal.
    Is it posible to override the default landing page being the entry point of the leftmost tab?

    Hi John,
    Why cant a "quick link" be established.
    When logging into portal use the quick link to login. I think using this concept you role can be opened by default when logged in.
    Check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/97/b0ef8b24a64ae884f0ab246e54cae5/frameset.htm
    Search for quick link in help.sap.com
    Regards
    Arun

  • Creating second InfoView entry point for SAP users in XI 3.1

    Hi All,
    I have BOE XI 3.1 up and running with the Business Objects Integration kit SAP Solutions kit I would like to create a second infoview entry point for SAP users on the same physical box (single server) as regular InfoView. 
    I am trying to mock this up and have detailed the following steps below.  I suspect I am missing a few steps (for example, where do I specify the entry port?).  I am sure step 2 is wrong, as I the desktoplaunch no longer exists in Xi 3.1
    1.  Copy the InfoView.war file to a new directory ( Program Files/Business Objects/ Business Objects Enterprise 12.0/java/applications/sap).  I imagine I would need to rename the war file (say SAPInfoview.war)?
    2.  Create a xml file with the following logic (the part in bold I consider to be wrong...):
    <Context docBase="Program Files\Business Objects\Business Objects Enterprise 12.0\java\applications\sap\SAPInfoview.war" path="/
    businessobjects/enterprise115/desktoplaunch"
    crossContext="false" debug="0" reloadable="false"
    trusted="false"/>
    3.  Save the xml file (what name? does it matter) in Program Files\Business Objects\Tomcat55\conf\Catalina\localhost
    4.  Restart Tomcat
    5.  Change the web.xml to make SAP security the default.  But this should not be the regular infoview web.xml.  I'm not sure where this would reside.
    Thanks,
    Steve
    Edited by: Steve Bickerton on Jan 15, 2009 9:19 PM

    Hi Ingo,
    You've been working with Duncan and Sartaj on this.  The client has two set of users:  non HR which has no BW or R/3 authorization restrictions, and HR, which has authorization restrictions.
    They have deployed SSO using AD for the non HR users.  They also want to leverage InfoView rather than the SAP portal.  For the HR users, we therefore need to capture the SAP id and password at login time to enforce security at the BW and R/3 levels.  We could use the existing Infoview entry point (SSO will fail and they will be prompted for a SAP login).  I do remember that we offered a second InfoView entry point for SAP users in XIR2.  I thought this may be more elegant.
    Thanks,
    Steve

  • Transport KM rooms as entry point for broadcasting from Portal 7.01 to Portal 7.4 possible?

    Hallo together,
    is it possible to transport entry points (for broadcasting) from one portal to another?
    For our upgrade BW 7.01 to BW 7.4 we want to transport the KM Content (including the rooms).
    Transporting the rooms and room structures is no problem, but the transported rooms are not visible in ENTRY POINTS -> My Room Folders.
    Only rooms that are newly created in the 7.4 Portal are visible in that folder.
    Is there are way to make the transported rooms also visible there?
    Thanks and best regards!
    Christian

    Hi Ramakrishna!
    I know that WP-PI 6.00 will work fine with R/3 4.6C but my doubt is if I can use WP-PI 6.00 (which is
    EP 6.00 plug-in) to connect the R/3 4.6c with an EP 7.00. 
    I didn´t find anything like WP-PI 7.00 in SAP Marketplace. I´ve already read the note you pointed out but it refers to EP 6.00. It also says you can use WP-PI 6.00 por EP 5.0 or Sap Workplace. But can I also use it with EP 7.00?
    Thanks for your help.
    Fernando

  • Entry point for copying room content

    Hi ,
      We are having a lot of collaboration rooms ,and am thinking if there is
    an easy way of transferring content from one room document folder to another
    room's document folder. Copying shows some entry points like public documents,
    personal documents etc but copying to any of these is not what I need.
    Afterwards how can I  copy to the respective room document folder which is
    identifiable only by a long roomid in KM Content ?It s a long list .
    So is it possible to add an entrypoint for our rooms in entrypoint
    providers? If so what entry can i have for the provider class?
    Thanks in advance
    Regards
    Vineeth

    Hello,
    If you want to make a extra entrypoint read the following.
    in the help link they describe how you can add one using the entry points provider etc...
    http://help.sap.com/saphelp_nw04/helpdata/en/54/3d754067025537e10000000a1550b0/frameset.htm
    Another entry point like solution for your problem could be to make a folder with links to all KM folders you need to link to. You can add a picture to each of these links by picking the properties > settings > rendering tab.
    If you change the layoutset of this folder to the entrypoints layoutsset. you have a screen that looks like entry points.
    Best

  • Web Page Composer: Problems creating entry points for iViews

    Hi experts, i´ve been trying to add an iView to a page. I know i have to create an entry point to a folder created on the PCD.
    I followed instructions on help link http://help.sap.com/saphelp_nw70/helpdata/EN/06/4776399abf4b73945acb8fb4f41473/content.htm
    Now, when i try to create a new entry point link to the pcd folder i don´t see any navigation that can get me to the pcd.
    Actually When i click the browse button it opens the Web Content folder where i can see 2 subfolders
    - Cross-Site Content
    - Sites
    I also have this options:
    - Favorites
    - Personal Documents
    - Recently used
    - Common folders
    - Public Documents
    None of it seems to be the access to the PCD.
    I´ll appreciate any help
    Thanks in advance

    Hi Sandeep,
    i don't know if your problem was solved already.
    Here a quick overview of all steps, that you need to perform.
    1. Make your PCD available in the KM.( See Link below for details) Your folders need to have 'Read'-Permission for the Everyone-group!
    2. Search your iView-folder now in the KM. Look at Details -> Properties -> Access Links -> ID
    3. Provide this ID in the wpcDragExplorerEntryPoints . (Should be sharedcontent=/wpccontent/Cross-Site Content;/documents/MyFolder; /pcd)
    Link to SAP Help Documentation
    Best Regards,
    Marcus
    Edited by: Marcus Böhm on Jul 3, 2008 12:11 PM
    Edited by: Marcus Böhm on Jul 3, 2008 12:13 PM

  • Define suitable labels and descriptions for an entry point.

    Hi All,
          I have tried to define suitable labels and descriptions for an entry point. I am following the documentation:
    http://help.sap.com/saphelp_nw04/helpdata/en/36/8b6b4066d9bf49e10000000a1550b0/content.htm
    I have done all those steps as per the documentation. But it is not working. I am not getting any display change for my entry point folder.
    Any idea of what to do?
    Please help me out.
    **Points will be rewarded for a suitable answer.
    Regards,
    Uttam.

    Hi,
    in side project folder src.api:
    package: com.XXX (Created File Label.properties)
    =_d=Description
    package:  com.sap.netweaver.rf.wrapper
    Class: IRFServiceWrapper.java
    import com.sapportals.portal.prt.service.IService;
    public interface IRFServiceWrapper extends IService{
        public static final String KEY = "com.XXX";
    Class: RFServiceWrapper
    package com.sap.netweaver.rf.wrapper;
    import com.sapportals.portal.prt.service.IServiceConfiguration;
    import com.sapportals.portal.prt.service.IServiceContext;
    import com.sapportals.wcm.crt.CrtClassLoaderRegistry;
    public class RFServiceWrapper implements IRFServiceWrapper{
    private IServiceContext mm_serviceContext;
    Generic init method of the service. Will be called by the portal runtime.
    @param serviceContext
    public void init(IServiceContext serviceContext){
      mm_serviceContext = serviceContext;
      // only NW04: CrtClassLoaderRegistry.addClassLoader(this.getKey(), this.getClass().getClassLoader());
      CrtClassLoaderRegistry.addClassLoader(this.getClass().getClassLoader());
    This method is called after all services in the portal runtime have already been initialized.
    public void afterInit(){
    configure the service : @param configuration
    public void configure(IServiceConfiguration configuration){
    This method is called by the portal runtime when the service is destroyed.
    public void destroy(){
    This method is called by the portal runtime when the service is released.
    public void release(){
    @return the context of the service, which was previously set by the portal runtime
    public IServiceContext getContext(){
      return mm_serviceContext;
    This method should return a string that is unique to this service amongst all
    other services deployed in the portal runtime.
    @return a unique key of the service
    public String getKey(){
      return KEY;
    Config file portalpp.xml
    Bundle File : com.XXX.Labels
    I hope that it works to you
    Greeting Toni Guzmá

  • Projectname.exe' does not contain a static 'Main' method suitable for an entry point .

    Hi,
    I'm developing a blog reader for windows 8 store app. It was perfectly worked before. But because of some miss behave my coding i get below error. No other errors there.
    Error    1    Program 'c:\Users\.........\Desktop\Blog_Reader\Blog_Reader\obj\Release\intermediatexaml\Blog_Reader.exe' does not contain a static 'Main' method suitable for an entry point    C:\Users\..........\Desktop\Blog_Reader\Blog_Reader\CSC  
     Blog_Reader
    Please help me to figure this.
    Thank You!

    Go to your App.Xaml and R-Click Go to Properties
    Check whether the Build Action is ApplicationDefinition
    If not change it to ApplicationDefinition. Clean the code (solution ) and Deploy..
    Chears....

Maybe you are looking for

  • Major problem

    Thanx... I import those... now the error is not shown in tomcat server.... All the values fetched from database and shown on page, but after clicking the update button it does not update the values and sometimes it shows error.. the error is as follo

  • Will apex_application.stop_apex_engine affect other users to use that APEX?

    Hi, guys: I wonder if I call apex_application.stop_apex_engine to execute wpg_docload.download_file in order to download RTF file, would it affect other users to use that APEX application at the same time? I checked the article and did experiment, I

  • Xsql-query Attributes Bug

    Some of the xsql-query tag attributes in an XSQL page are only available in the XSQL page, not in the Query tag from the component palette. 1. Create a XSQL page. 2. Add a Query (xsql-query) tag from the Component Palette. The Query lists some xsql-q

  • Macbook pro will not save what I was working on when in sleep mode

    Everytime my computer goes into sleep mode or battery dies, it does not remember what I was last working on. It starts all over again

  • Error with NetBeans JAR file

    I wrote a program using the NetBeans IDE, the program runs fine with no errors with tested in the actual environment. However when I build the project and create a JAR file I am unable to run it. Double-clicking the file brings up this error: Java Vi