Create New Entry Points

Hi All,
I have a requirement to display a folder as an Entry Points in KM.
Same as displayed in the blog [https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/1027]
I have done the configuartion as mentioned the blog still I am not able to view the folder.
Request your support to achive the same.
regards,
SJ

Hi
Thanks for the link; still I am not able to view the new entry point for my folder.
My requirement is to have other folder displayed in SAP standard favorites.
Presently, below mentioned folders are displayed:
--> My Room Folders
--> Favorites
--> Personal Documents
--> Recently Used
--> Common folders
--> Public Documents
--> More...
I need to add a new folder
--> XYZ
I have followed the instruction mentioned in the wiki, but I am still not able to view a folder appearing in KM favorites.
Regards,
SJ

Similar Messages

  • New Entry Point in Cisco Interaction Manager

    I have created a new Entry Point in Cisco Interaction Manager for web chat. I used a new Queue and a new Script for the que script selector. I added a new ICM queue script for the chat, a new Dialed Number / Script Selector. When I test the new chat, the entry point works and shows the new entry point name in the CIM agent, but it still queues to the existing queue in ICM, not the new one. Anyone have any idea what I might have missed?
    Thanks - Keith                  

    Hey Lara, the emails are not getting queued because they are abnormally handled after success path of Queue to skill group.
    please add a wait node, after success path of queue to skill group. set time in wait node to max time you want emails to stay in queue. may be after this you can use another queue or send some label back to CIM, which matches to non IPTA group on CIM.
    the same is applicable for Chat as well.
    coming to the point at the subsequent chat not routing to the same agent, this one depends on max concurrent task you configure in CIM for Chat queue.
    there is config tab in each ICM integrated queue called "Concurrent task limit", this is the one deciding factor on how many concurrent task for each queue an agent can handle.
    please try and let me know if that works.
    regards
    Chintan

  • Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is:

    Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is: "Error creating EntityBean: Io exception: The Network Adapter could not establish the connection".
    while executing JSP:<%
    * add.jsp
    * Adds a new entry through EmployeeBean. This is a JSP that serves 2
    * functions. First of all, when called with no arguments, it will display a
    * table with a few input fields. The user should enter empNo, empName and
    * salary of the new record to be added. When she submits this
    * information, it is sent to this page again. If it is successful, then the
    * user can continue adding new entries. If it is not, then the old data will
    * be displayed, and a warning message will be shown to her.
    %>
    <%@ page import="com.webstore.*,java.io.*,java.util.*,javax.naming.*" %>
    <%
    // Make sure this page will not be cached by the browser
    response.addHeader("Pragma", "no-cache");
    response.addHeader("Cache-Control", "no-store");
    // We will send error messages to System.err, for verbosity. In a real
    // application you will probably not want this.
    PrintStream errorStream = System.err;
    // If we find any fatal error, we will store it in this variable.
    String error = null;
    // In a moment we will check if all columns were passed to this page
    String param_1 = "";
    String param_2 = "";
    String param_3 = "";
    long dptNo = 0;
    String dptName = null;
    // This variable indicates what function of this page is currently used. If
    // this page is called with parameters, then a new entry should be
    // added. In that case this variable is true.
    boolean submitting = false;
    // We will first attempt to get the reference to EmployeeHome from the
    // session. The "list.jsp" page sets this attribute in the session.
    DepartmentHome home = (DepartmentHome) session.getAttribute("DepartmentHome");
    if (home == null) {
    error = "No previous connection to DepartmentBean.";
    } else {
    // Attempt to get all 3 parameters from the session
    param_1 = request.getParameter("DPTNO");
    param_2 = request.getParameter("DPTNAME");
    // If all 3 parameters are specified, then this is probably a submission by
    // this very page. Note that if the user left one of the fields blank, then
    // the corresponding parameter will be "", not null.
    if (param_1 != null && param_2 != null) {
    param_1 = param_1.trim();
    param_2 = param_2.trim();
    submitting = true;
    // In the following variable we will store a (non-fatal) warning message. This
    // message will be displayed in the page, but so will the submission form.
    String warning = null;
    if (submitting) {
    warning = "";
    // If there is an empty param_1, param_2 and/or param_3, then this will be noted
    // in the warning message.
    if ("".equals(param_1)) {
    warning = "Null param_1 specified. ";
    if ("".equals(param_2)) {
    warning += "Null param_2 specified. ";
    // If we don't have a warning message yet, then we will attempt to create
    // a new record.
    if ("".equals(warning)) {
    try {
    dptNo = (long)Long.parseLong(param_1);
    dptName = new String(param_2);
    Department rec = (Department) home.create(dptNo);
    rec.setDptname(dptName);
    // empty columns after insert for effect
    param_1 = "";
    param_2 = "";
    // If we got this far, then there was no problem detected.
    warning = null;
    } catch (Exception e) {
    // Set the warning variable to indicate a problem.
    warning = "Unable to create new entry, caught: \"" +
    e.getClass().getName() + "\", message is: \"" +
    e.getMessage() + "\".";
    // Decide what the title will be.
    String title;
    if (error != null) {
    title = "Error";
    } else {
    title = "com.webstore | Add entry";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
    <HTML>
    <HEAD>
    <TITLE><%= title %></TITLE>
    </HEAD>
    <BODY bgcolor="#FFFFFF">
    <H1><%= title %></H1>
    <%
    // If there was a fatal error, then display the error message
    if (error != null) {
    %>
    <P><BLOCKQUOTE><%= error %></BLOCKQUOTE>
    <%
    // Otherwise display a table with fields to be filled in.
    } else {
    // If there was a warning, then display it.
    if (warning != null) {
    %>
    <TABLE border="1" bgcolor="#FF2222">
    <TR><TD><FONT color="#FFFFFF"><STRONG>Warning: <%= warning %></STRONG></FONT></TD></TR>
    </TABLE>
    <%
    } /* if */
    // Display the table with fields. There are two columns. The left column
    // contains the names of the fields, while the right column contains the
    // fields.
    %>
    <FORM action="dptadd.jsp" method="GET">
    <P><TABLE border="1">
    <TR>
    <TD><STRONG>DptNo:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNO" value="<%= param_1 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD><STRONG>DptName:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNAME" value="<%= param_2 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD colspan="3" align="center"><INPUT type="submit" value="Add this entry"></INPUT></TD>
    </TR>
    </TABLE>
    </FORM>
    <%
    } /* else */
    %>
    <P><TABLE border="1">
    <TR><TD>Back to list</TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    Please guide me..

    Rajive,
    This is the same problem as in your other post:
    sql is running very slow
    So please refer to my answer there.
    Good Luck,
    Avi.

  • Not able to create new entry in RSADMIN Table

    Hi All,
            I am going thru the OSS note 1275837  (Note 1275837 - PrecServer: process based load distribution (ABAP part)), as it recommends
            add the entry "BWPREC_USE_NEW_LOAD" with value "X" in table "RSADMIN"
          When I check in SE11 and SE16 there is no option to create button for above entry in table RSADMIN.
          Please advise for any help to create above entry.
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 4:20 PM
       I got access key from our basis team. But still not able to create new entry as mentioned in OSS note. Any further help....
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 9:13 PM

    Hi
    Goto SM30 - Table Maintanance Generator and enter the table name and click on button maintain ,it will show the error message
    "The maintenance dialog for RSADMIN is incomplete or not defined" because the table maintenance is not allowed manually.
    First Option
    When you double click the error message  a performance assistant screen will open in that you can see Procedure
    "Generate the required maintenance dialog" click on that and try to maintain the table using Access Key, as i dont have access key i have not tried this option.
    Second Option
    You can write an SE38 program with an insert statement.
    TABLES rsadmin.
    DATA: wa TYPE rsadmin.
    wa-object = 'object name'.
    wa-value = 'X'.
    INSERT into rsadmin values wa.
    Thanks

  • Unable to create new entry in table that has no primary key

    Hi
       I have a table which is required to have no primary key (except mandt). After i generate table maintanance, when I go to create new entries, the table control to enter the new values does not appear. When I click on edit->new entries, it goes back to the fields tab of the table. Same when i check through SM30.
    If i maintain atleast one primary key, I am able to get the table control in new entries screen. However the requirement permits no primary keys except mandt. How can this be resolved?
    Thanks
    NM

    Hi,
    THE PROBLEM WITH UR TABLE IS
    YOU HAD DECLARED MANDT AS THE PRIMARY KEY AND THERE IS NO OTHER KEY IN UR TABLE
    iT'S NOT ALLOWING YOU TO ADD NEW ENTRIES BECAUSE MANDT IS THE ONLY PRIMARY KEY IN YOUR TABLE AND IT WILL HAVE A DEFAULT VALUE BASED ON THE CLIENT. SO  IT'S NOT SHOWING YOU THE CREATE NEW ENTRIES OPTION.
    SO TRY TO PUT ONE MORE FIELD AS THE PRIMARY KEY SO THAT YOUR PROBLEM WILL SOLVE VERY EASILY  ALSO MAKE SURE THAT TABLE IS ACTIVATED.
    REVERT IF U NEED SOME MORE HELP
    Thanks &Regards.
    Pavan.

  • Creating new mount points on pre installed Solaris 2.7

    Creating new mount points on pre installed Solaris 2.7

    Hi,
    Thanks for suggestion.
    I have checked note 1521371, so as per note I have to provide the locations as given below..
    For PI1 (i.e. PI Development)...............
    Oracle Base Location : /oracle/PI1
    Oracle Home Location : /oracle/PI1/112_64
    Inventory Directory : /oracle/PI1
    For PI2 (i.e. PI Production)...............
    Oracle Base Location : /oracle/PI2
    Oracle Home Location : /oracle/PI2/112_64
    Inventory Directory : /oracle/PI2
    Correct me if I am wrong..
    Could you please tell me, does we need to set the ORACLE environmental variables i.e. ORACLE_BASE, ORACLE_HOME and ORACLE_STAGE before start the ORACLE database installation?
    Kindly suggest,
    Thanks and regards,
    Amit....

  • Can not edit or create new power points since installing Yosemite.

    I can not edit or create new power points since installing Yosemite.  I can open and run the power points I have previously created but every time I try and edit or create a new power point it simple comes up with this
    Also when I open the font drop down menu all the font names are in Chinese

    Have you run all the office updates? We have to assume this is a proper copy of Office 11 of course and not one 'from Hxxx-Kxxx'. I  would also consider re-installing Yosemite-something is screwy on your installation of something if its picking up China..unless of course it is true that the Chinese have been hacking into iTunes and are secretly trying to make you into an agent of the state..you will speak Mandarin..you will speak Mandarin  

  • How to Create new entry, while keeping CoS and nsRoles in tact...

    Hi,
    Here's the short version:
    How can one create a new entry/context in DS, copy the attributes from an existing entry (using JNDI) and save them in the new entry/context WITHOUT duplicating CoS or nsRole/DN info.
    Long version of the question:
    We are using DS 5.2 and Portal 6 (and messenger/calendar etc). We have our employees saved in DS. What I want to do is change a user's name/uid by copying the user's attributes (in JNDI) and create a New entry with the New uid, with all the other attributes the same. Then deleting the original entry.
    This is what I have done...
    1. Get all the employee's attributes... (abriviated)(ctx is the DirContext)
    NamingEnumeration answer = ctx.search(searchBase, filter, ctls);
    SearchResult sr = (SearchResult)answer.next();
    Attributes attrs = sr.getAttributes();
    2. Create a new employee with the same attributes (assume I use a different uid in the dn)
    ctx.createSubcontext(dn, attrs);
    This works...it copies all the attributes to the new entry -BUT- when you look at the LDIF file, it ADDS several more attributes to the new entry.
    Example: it adds the following...
    sunPortalNetletRules
    sunPortalGatewayEnableSSO
    sunPortalDesktopDpDocument
    sunPortalDesktopDpLastModifiedUser
    iplanet-am-user-auth-modules
    And about 20 others...
    Now if I am not mistaken, these are the CoS and roles that the DS uses and propagates down to the entry. But when I copy the attributes over, (using JNDI) I get these attributes too but I want to copy only the attributes that are unique and have DS handle the roles and CoS like it does for the original entry.
    Is there a way to tell the DS to just use the CoS or roles instead of duplicating all these attributes in this individual entry??? (and do it using JNDI)
    (sorry this question is sooooo long.)
    Thanks!
    Eric

    Hello Viji,
    I am extremely thank ful for the document.
    Kindly help me with below points of possible
    1)     if it is standard table (LFBK) , even then shall we will need to do the generate program 
    step in SCDO ?
    2)     does it generate Z-function module ?
    3)     do we need to call this function module at appropriate places to update the CDPOS and CDHDR 
    for changes in the standard table ?
    4)     I have already created custom business object for LFBK so that Iu2019ll be able to create entry 
    in SWEC (fyi)
    5)     how and when are the method used in the table maintenance generator called ?
    6)     Page 14 point 3 says that "Add a new entry to link the Change Document Object ZPRPS_CD and 
    table ZPRPS so that changes are recorded when table entries change."
    Does this mean that once we create SCDO and generate program, these two steps are  enough 
    for the SWED entry to create change log in CDPOS and CDHDR ?
    7)     It is understood that it is necessary that the change object in SWEC should be logged in 
    CDPOS and CDHDR only then the event would be created for the SWEC entry. is this correct ?
    in order to create change log for the change object in CDHDR and CDPOS, is the SCDO entry 
    and generate program steps enough or the methods of table  maintenance generator are also 
    required ?
    thank you very much for your time
    B

  • Error in creating New Entry from the Client in NW Mobile 7.1

    Hi All,
    I have created a mobile application for Laptops in NW Mobile 7.1.
    I have a requirement to create an entry from the client, i.e., I need to create a PR in the client. The model bindind, the backend adapters, bapi wrappers are in place.
    I have used the standard create BAPI for PR and wrapped it in a BAPI wrapper. I just have to give the PR details and save the entry in the client. The BAPI wrapper has the logic for generating the new PR number.
    My problem here is, when I try to create a new PR, give the details and save, the entry is not getting updated in the backend and the sync state is '201'.
    I checked the "Message Monitoring" in the NW Mobile Administrator for the particular SWCV.
    For this create PR transaction, the particulars are as below
    Message State: Error - Stop Flow
    Message Type: Transaction
    Error: "Error occurred while fetching synckeys from table ZDOE01700000SL"
    "ZDOE01700000SL" is the Sync key look up table for PR(my data object).
    Please let me know where I have gone wrong and guide me in rectifying this problem.
    Thanks and Regards,
    Sunil

    Hi Sunil,
    From my understanding, looks like you are not filling synckey when you are creating a PR in your client. Synckey is a unique key on the DOE using which you can uniquely identify any node.
    There are two scenario's atleast as I know, where this error would have come.
    Case 1. If you are modifying something on client, which has been send by DOE, then you are not supposed to change synckey because it is a primary key. Now if we assume that you are not modifying synckey but when you are sending an update, check if by any chance the synckey is not going to DOE which is one case, and the second one is, after DOE has end that record to client, someone has cleaned up all the tables on DOE for that dataobject or someone has deleted that entry on the backend because of which the entry has been deleted on DOE. In either case, you are modifying something on client which is actually not present on DOE because of which when the DOE tries to look up based on synckey it doesn't find the needed record.
    Case 2. If you are creating something on client, then you are supposed to create a synckey which is a 32 bit character GUID. I think in your case, you are missing the synckey when you are sending it to DOE. Check if there is any API for doing that or you have manually create a GUID and send it.
    Hope it works out.
    Best Regards,
    Siva.
    PS: Reward with points if you find the post useful.

  • Searching SAP Report to create new entries in IT 1001

    hello,
    due to some changes in our FI / CO system we have to create new relationships between cost centers and org. units.
    Does anyone know a sap report which could help here?
    I only knew reports to delimit relationships and / or objetcs but i found nothing to create!
    Thanks
    Walter
    Message was edited by:
            Walter Furitsch

    Hi
    Not come across any such report that creates the OM relationship in Infotype 1001. If its a big number of entries, it would be worth writing a bespoke upload program for table HRP1001.
    Regards
    UR

  • How to make the fields of the table mandatory while creating new entries..?

    Hi,
    I have created a new Z table which has 6 fields. All the 6 fields are KEY fields and all are of CHAR type. I have generated the table maintenance generator for the same. My requirement is all the fields should be MANDATORY while creating the entries. No field should be BLANK.
    When creating the new entries in the table, even if I don't give any values to some of the fields, it is saving the entry. But, it shouldn't happen like that. If any of the field is kept blank, it should not allow the user to save the entry. Can someone tell me how to approach this. Will there be any settings while creating the table which takes care of this.
    I read somewhere that this can be done using the Table EVENTS. Can someone tell me what is the code that we should write there in the Events which prevents the user from saving the blank fields. While writing the logic in the events, how to check whether the particular field is BLANK or not. Will the values be stored in any internal table kind of thing..?
    My table name is ZCRF_TAB and the fields are FLD!, FLD2, FLD3, FLD4, FLD5 & FLD6. Can someone provide me sample code for my requirement. Thanks in advance.
    Best regards,
    Paddu.

    Hi,I think u have generated Table Maintainance Generator, goto Environment->Modifications->Events
    Select appropriate option by using F4,I think value 05 is appropriate for u r requirement.Enter From routine name.Dbl click on the routine.
    Write the appropriate code like:
    If ZTABLE-FIELD1 is initial.
    Message (E000) with "Fill all the manadatory fields".
    Thats it.Just look at the following docu with screenshots,by this understand how u can use Table Events:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    Regards,
    Rock.

  • Service Entry - Final Entry set but still can create new entry sheet

    Hi gurus,
    got this problem, after I have set the final entry indicator, I am still able to create new service entry sheet... anyone know why?
    Note: I am currently on ECC5.
    Regards,
    Norman

    Hi,
    First check deletion flag is active in service entry sheet.
    If no then first set deletion flag to service entry sheet.
    Also check Material document is updated with movement type 102 in purchase order history.
    If yes then no problem is exists.
    For your verification please create new service entry sheet for same line item. If system give not any error so no any problem.
    Regards,
    Mahesh Wagh

  • Create new backup point

    How do you create a new individual/independent backup in iTunes for the iPhone, so that that specific backup never gets updated again? When I click on the "Restore from backup" by right clicking on my iPhone in iTunes I have about 5 backups in there from different dates. For example, I have a backup dated Jan 14 2009 that never gets updated anymore, but I know I can revert back to that date if I need to. For the past few months, no new backups have been created, and instead I have regular iPhone backup that gets updated every day. I'm worried that if I have to restore my iPhone, and then I accidentally sync my empty iPhone, I'll have lost all my data because it will just replace the default backup. Is there a way to manually create a new backup that will then never get updated again, for archival purposes? I've tried the "Back Up" option, but that doesn't seem to create a new backup point.
    Thanks in advance!

    For some reason iTunes seems to overwrite the existing backup with a new one, unless (as has been noted) there is a firmware upgrade. It is possible to keep some old ones and force a new backup file....
    Go to the backup location (mac is similar):
    C:\Documents and Settings\<name>\Application Data\Apple Computer\MobileSync\Backup
    And notice the folder names - Noticing the naming convention.... The folder without a numeric ending is current. It is possible to give it a time/date ending and then it will not get overwritten. So if you have a bunch of folders, take the one without a numeric ending, copy it and just add "-20090321-091358" to the end of the copy. To the system it is no longer the current backup, but it was made on date-time.
    I have done this successfully quite a few times - I usually do it before a firmware upgrade, just to make sure.
    Before you backup again, look at the backup list in iTunes and you should see an "old" backup with whatever date and time you gave it. Your next backup should be the same alpha-numeric string and no date-time.
    Message was edited by: tokatta

  • How do I create new mount point

    Hello,
    I'd like to create a new mount point. The Admin guide says to click the Create button on the toolbar but I don't see anything that says Create (I have New, Edit, Upload,...).
    Searching here I've seen references to some code snippets that purport to do it but I'd rather use a GUI.
    Thanks for any help

    You have to use iFS Manager, not the WebUI.

  • How to create new entry in SAP easy menu ?

    Hi gurus,
    In the project I need to create a new tree like a tree in the SAP easy menu , Is there any ways for doing this ?
    For example:
    I want to have a menu like this
    -Root menu
             - Branch text 1
                       Transaction 1
                       Transaction 2.
             - Branch text 2
                       Transaction 3
                       Transaction 4.
    Thanks in advance,
    Points rewarded immeadiately

    Hi,
    try TCODE SE43.
    Regards, Dieter

Maybe you are looking for