KM Repository

Hi all,
  I have installed the following components of SAP Netweaver Stack.
MSSQL Server 2000 (Evaluation version)
SAP WebAS 6.40 Java (Sneak preview , J2EE Engine Only)
SAP Netweaver Developer Studio 2.0.4
SAP Enterprise Portal 6.0 SP4
SAP KMC 6.0
I've installed this as a centralized system (single host). I've been working in WebDynpro applications involving web services and all other topics.Now i would like to know how to create and access KM repository objects and use them in SAP Enterprise Portal IViews.Are there any tutorials to work on KMC.Help me in this regard.Where can i find materials to work KMC.
regards
Gopinath

Hi Gopinath,
you can find a lot of documentation under Knowledge management section here in SDN, but a very good starting point should be this link:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/knowledge management and collaboration developers guide.html
instead if you want to know how to access to KM framework from a webDynpro a good starting point shoulb be the dynpro tutorial named "Using Knowledge Management Functionality in Web Dynpro Applications.pdf" you can find here:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/using knowledge management functionality in web dynpro applications.pdf
hope this help
Ciao
Roberto

Similar Messages

  • Can Multiple users work on the same work Repository ?

    I have master repository and work repository on one machine, can multiple developers connect andwork on the same work repository? how?

    oh Yes!
    it is v simple.
    follow the steps:-
    once master and work repository has been created on a system.U just need to know all the information supplied wen creating a login to designer.
    like user name and password of database,url,driver as well as master's repository uname and password.
    if u have the following information with you,then u can create a new login with designer provided all the above information and u will have full access to designer
    in work repository u want to connect

  • How can I move the ODI Work Repository from one server to another server?

    How can I move the ODI Work Repository from one server to another server?

    Hi,
    If you would like to move your source models, target models and project contents from Work repository 1 to another work repository.
    I.e. Dev. server to Prod Server.
    1. Firstly, replicate the master repository connections i.e. with same naming conventions manually
    2. Go to Dev. Server work repository -> File Tab -> Click on Export work repository (save it in a folder)
    3. After exporting, you can view the xml files in the folders.
    4. Now, Open the Prod. server and make sure you already replicated mas. rep. details.
    5. Now, right click on model and import source model in synonym mode insert_update (select source model from the folder where your xml file located)
    6. Similarily, import again target then Project.
    Now, check. It should work.
    Thank you.

  • Is there a way to create a local package repository

    Is there a way to create a local package repository without technically being a mirror.  For example, setting up multiple AL box's on my network and having them grab all the latest packages from one AL box?
    Thanks,
    Craig

    What you most likely want is an ABS tree of your own, containing only the PKGBUILDs of those packages which you want to be included in your repository.
    You should already have heard of the gensync program. In short, the parameters are the root of PKGBUILDs, sorted in subdirectories (ie. like the ABS tree), the intented name and location of the repository database file, and the directory containing the binary packages.
    Let's assume you downloaded the current ABS tree to your hard drive, as well as all matching (same version as in the PKGBUILDs!) packages from a mirror, but you don't want the reiserfsprogs package in your repository. To achieve that, you must remove the /var/abs/base/reiserfsprogs directory, and may optionally remove the binary package, too. Since gensync analyzes the ABS tree you supplied as a parameter, removing the subdirectory of a specific package will cause this very package to not be included in the generated database. Assuming your packages lie in /home/arch/i686/current, your gensync call would look like this:
    gensync /var/abs /home/arch/i686/current/current.db.tar.gz /home/arch/i686/current
    If there are any discrepancies like
      - PKGBUILD, but no matching binary package found
      - PKGBUILD and binary package versions do not match
      - permission problems (writing the db file must be possible)
    gensync will gladly complain.
    Otherwise you should find the db file in the place you specified. Keep in mind that the name of the db.tar.gz file must be equal to the repository tag in the pacman.conf to use the repo.
    To make sure the db contains the right packages; use
    tar -tzf current.db.tar.gz | less
    to list the contents. Every package has it's own subdirectory including the metadata, which is rather obvious considering the file's generated from such a structure in the first place.
    The binary packages along with a correctly generated db file are all you need. Make the repository directory containing these files available through FTP if local availability doesn't cut it for you, edit your pacman.conf if needed, and use it!
    Adding packages works similar; All you need to have is the PKGBUILD in an ABS-like tree (it doesn't have to be the official tree; gensync doesn't care where the files come from. Just stick to one subdirectory per PKGBUILD, and you'll be fine), and the matching packages somewhere else, run gensync with the appropriate directories, and cackle with glee.
    HTH.

  • How to create a repository(not just custom) using your hard drive

    I don't know if many people know about this, so I am giving this a shot. There are three major articles on wiki.archlinux.org: Custom local repository,
    Using a CD-ROM as a repository, and Offline Installation of Packages. These are available online through the WIKIs at archlinux.org.
    I was first confused because when I was reading "Offline installation of packages", I didn't know what these ".db.tar.gz" files where. I came mainly from a Debian / Ubuntu
    background (I actually tried many distros before this), so getting used to the way the repository works and no graphical install manager for it. However, I enjoyed a challenge and
    I found out that these are database packages that contain descriptions and locations on where these files are located. The ones on the ftp server are already compiled. I don't know if,
    however they are compiled with the most recent versions.
       With all that said, I thought you had to have it all in one directory in order for this to work, but as it turns out, location is not really an issue. I decided to have a directory reside on the root.
    I chose root because it's only for the install of my own packages. I could have done it as a seperate user account, such as "repos" in PCLinuxOS (another distro I tried). I didn't want to have a seperate account for this. Therefore, I created "/root/repository". Within this directory I created directories for all repository archives. I basically did a "cd /mnt/dvd" and migrated to the particular repository directories. I would copy all the "pkg.tar.gz" files into their respective directories with "cp * ~/repository/<name-of-dir>". For intance, I started with the "core" directory, because there was some things I didn't install in the core directory during installation and if the packages needed it, it was there. This follows for the rest of the directories, such as "community", "testing", and "unstable", etc.You can go to the ftp mirrors to find out what directories are available. The main point is that your files should be in the format ".pkg.tar.gz". These are package files that get converted into a sort of database format that as I mentioned, informs the system the description and where the files are located, and so on.
       The command to perform this, is "tar -xvf /root/repository/core/core.db.tar.gz *.pkg.tar.gz". You can replace core with whatever repository you are adding. So, for example, "extra.db.tar.gz" would be in the "extra" directory. This information is located in the "Offline installation of packages".  The command to create this database is called, "repo-add".
    The format for this command is "repo-add /path/to/dir.db.tar.gz *.pkg.tar.gz". So, if it's the core packages you would "cd ~/repository/core" and "repo-add core.db.tar.gz *.pkg.tar.gz".
      Then, you need to edit the "/etc/pacman.conf" configuration file for pacman. I basically would comment all out except for the repositories I need. So, for example "[core]" and "/etc/pacman.d/core" would tell where normally the servers are located for these files. This information is located int the "Custom local repository" article.using the "repo-add" command.
       Furthermore, I edited each server file located in "/etc/pacman.d/<repository>" where repository is core, extra, etc. I would perform,  "nano /etc/pacman.d/core" for example and comment out all servers. I then add a "local repository" by typing in "file:///root/repository/core", saved it, and then did a "pacman -Sy" to update the repository database. Now, I can do "pacman -S <package-name>" where package-name is whatever I wanted to install. Voila! Please let me know of any suggestions, questions, insights, or comments. I hope I'm not missing anything in this article. I do remember using "rm -rf * in the "/var/lib/pacman/<repository>"directories and using "tar xvf <repository>.db.tar.gz". I don't if that something to do with it, though. Be careful with the "rm -rf *" command, because you can erase your hard drive if you are not careful, for those who aren't informed.
    P.S. Please note all these are done with the root user.

    pressh wrote:
    gradgrind wrote:
    smitty wrote:pressh, I understand and appreciate your point of view... well taken! Are you implying that I should have written in steps, such as 1, 2, and 3? Also, should I have got ridden of the redundant information if it is contained in the Wiki article and / or  taken out the commands on how to apply them and left only with the explanation? Is this what you imply? Sorry if I seem redundant with these questions, but I'm curious so I can improve for the future. I am new to this and open to any suggestion and comments.
    Maybe you could either edit the existing wiki pages where they were not clear to you, or else add a new wiki page, or both. Certainly give the whole a clearer (visual) structure, and (if they don't already exist) add links between the connected wiki pages.
    Yes that is partly what I mean. Further you could get rid of the information that is not really needed to follow the guide (for example what the command 'repo-add' does. People could if they are interested look it up in the script itself, or you could add it here and link to it).
    And yes a bit of structure would be nice. You don't have to nessesarily call it 1,2,3, as long as it has some kind of structure in it (the visual point is very important here). You could take a look at existing wiki pages on the web and see how most of them (not all of them are good of course) are structured.
    That's a good point, too. How do I found out what articles are more effective? I am doing research on this particular matter at the moment and came across articles that have tips on technical writing. Could this help in the long run? Or, is it better to get feedback from other users and improve that way? In other words, do first, and ask later, as one user point out?

  • Error in installing a new Repository in OWB 10g Release 2

    Hi,
    I am facing a consistent problem in creating a new repository, even after uninstalling and re-installing the OWB client many times. While creating a repository, I get the following three errors, after which the Repository Assistant automaticlly shuts down:
    1. The wizard noticed that the installation parameter 'enqueue_resources' of the database GRUSIT is set to 968. The recommended value for Warehouse Builder is 3000.
    2.The Warehouse Builder repository owner installation failed on user REPOWNER.
    java.sql.SQLException: ORA-04031: unable to allocate 4080 bytes of shared memory ("shared pool", "BEGIN
    DECLARE
    PROCEDURE brow...", "PL/SQL MPCODE", "pl/sql DS pg")
    3.INS0029: Error occured during installation. Check the log file
    F:\OraHome_1\owb\UnifiedRepos\log_070504_115828.000.log
    for details.
    Could you pls help me in resolving this issue?
    Thanks in advance,
    Tanvi

    Does this mean, ... we have to install the OWB 64 bit and install a new repository in the 64 bit server?In my opinion you don't need to create new repository.
    After migrating database to 64bit perform steps from Metalink note 434272.1 "How To Update Warehouse Builder 10.2 After A Database Cloning".
    It is better to save the same path for new OWB 64bit software. If you install OWB into different path you need to update OWBRTPS table with new path to OWB software (look at metalink note 550271.1).
    Regards,
    Oleg

  • Error while registering a new repository on Data Services 4.0

    Hi all,
    I've a BO Enterprise Platform 4.0 + Data Services 4.0 installation, and I'm trying to register a new local repository in addition to the installation default one. I followed these steps:
    1) Create a new database schema for the repository
    2) Created the local repository with repository manager
    3) Created a new job server associated with the new repository through the server manager
    4) Tried to register the new repository in the CMC
    I wasn't able to complete the step 4 since i got the following error "unable to connect to profile server".
    Any clue?
    Thank you very much
    Pietro
    Edited by: Pietro Castelli on Jan 30, 2012 12:03 PM

    what is the complete version of DS 4.0 ? also check the REPO_TYPE in AL_VERSION table, for local repo this will be NULL

  • Error while generating DDL commands using startSQLRepository for a new Repository

    Hi,
    I am trying to generate DDL Commands using startSQLRepository for my new repository SubashRepository so that I can use them to create new table structure.
    All the repository related changes looks good. i can see my repository in ACC
    When I run the command:
    startSQLRepository -m SupremeATG –repository /com/supreme/SubashRepository /com/supreme/subashRepository.xml -outputSQLFile C:/ATG/ATG9.3/SupremeATG/config/com/supreme/subashRepositoryDDL.txt
    I get following error:
    Table 'SUBASH_MEMBER' in item-descriptor: 'member' does not exist in a table space accessible by the data source.  DatabaseMetaData.getColumns returns no columns
    Note:
    * errors related to definition file were cleared as the same command threw relevant exception while trying to store a array property with out creating a multi table.
    * Now this is the only exception i see
    * Some DDL are getting generated in the output file, but those are related to inventory repository (I am not sure why this is happening as I have specifically gave the path to my definition file).
    Any help in resolving this is highly appreciated.

    Pl post in the ATG forum

  • Message Interface no longer exist in Integartion Repository

    Hi,
         I am working on a IDOC to file case, in which I want to determine the receiver at runtime using a value in IDOC, with the help of Context objects/ XPATH. In Receiver determination of ID, after selecting Sender and Sender Interface, when I try to select Receiver, it's giving message "Message Interface no longer exist in Integration Repository" and I am not able to see the Sender IDOC in the conditions field before the Receiver selection. Anybody having any idea why I am getting that error message.

    hi,
    check if the system that you're using has this message interfaces in sender/receiver tab (double click on the
    system in directory)
    if not maybe the you need to add dependencies
    to the software object (product/software component) which has this message interface - this idoc
    (if you do remember to refresh sld cache) 
    /people/michal.krawczyk2/blog/2005/08/26/xi-are-you-independentfrom-your-dependencies
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Error when starting the Integration Repository/Directory

    When starting the Integration Repository or Directory I get the following error message when the Java Web Start is launched:
    <i>JAR resources in JNLP file are not signed by same certificate</i>
    I am running on XI3.0 SP15
    Any idea?
    Thanks in advance.
    Kind regards,
    Dave Arends

    Solved this issue.
    Go to Administration - Java Web Start Administration.
    Click on 'Re-initialization and force signings' and start the Repository or Directory again.

  • Error in starting OWB repository browser listener

    Hi,
    I got the following error when starting owb repository browser listener on Solaris with startOwbbInst.sh
    Exception in thread "main" java.lang.NoClassDefFoundError: javax.servlet.Servlet
    at com.evermind.server.ApplicationServer.class$(ApplicationServer.java:297)
    at com.evermind.server.ApplicationServer.checkDependencies(ApplicationServer.java:297)
    at com.evermind.server.ApplicationServer.launchCommandline(ApplicationServer.java:498)
    at com.evermind.server.OC4JServer.launchOC4JCommandline(OC4JServer.java:171)
    at com.evermind.server.OC4JServer.main(OC4JServer.java:306)
    Is this caused by something with the configuration?
    Jeffrey

    Hi ,
    What is your OWB version ?
    If it is 10.2 then read the following
    With Warehouse Builder 10.2.0.X, the Repository Browser Listener is only supported on Windows x86-32bit and linux x86-32bit client machine.
    So start the Warehouse Builder Repository Browser Listener on Windows/Linux x86-32bit client machine
    For 11g refer MOS Note 469422.1
    Thanks,
    Sutirtha

  • Install Software HANA unable to read repository

    Hello,
    I'm new to Eclipse. I'm trying to get up the trial Cloud environment for SAP HANA. I have Eclipse Juno installed. When I attempt to do an install of the HANA software on top of Eclipse I receive error "Unable to read Repository".
    We do not use a proxy, so network was set to "DIRECT". I can get to the SAP site from the browser tools.hana.ondemand.com/luna. I downloaded the certificate for that site and added it to the cacerts file for JDK1.6.0_45.
    The error message in full says:
    Unable to read repository at tools.hana.ondemand.com/luna/content.xml.
    Using the browser, tools.hana.ondemand.com/luna/content.xml returns a 404 error. If I change it to tools.hana.ondemand.com/luna/content.jar, it gives me a download.
    As far as I can tell, there's no way to make Eclipse point to content.jar. Can someone tell me where this is going wrong?
    Thanks.
    Danny Hearn

    On 06/26/2015 08:52 AM, Danny Hearn wrote:
    > Hello,
    >
    > I'm new to Eclipse. I'm trying to get up the trial Cloud environment
    > for SAP HANA. I have Eclipse Juno installed. When I attempt to do an
    > install of the HANA software on top of Eclipse I receive error "Unable
    > to read Repository".
    > We do not use a proxy, so network was set to "DIRECT". I can get to the
    > SAP site from the browser tools.hana.ondemand.com/luna. I downloaded
    > the certificate for that site and added it to the cacerts file for
    > JDK1.6.0_45.
    >
    > The error message in full says:
    > Unable to read repository at tools.hana.ondemand.com/luna/content.xml.
    >
    > Using the browser, tools.hana.ondemand.com/luna/content.xml returns a
    > 404 error. If I change it to tools.hana.ondemand.com/luna/content.jar,
    > it gives me a download.
    > As far as I can tell, there's no way to make Eclipse point to
    > content.jar. Can someone tell me where this is going wrong?
    >
    > Thanks.
    >
    > Danny Hearn
    Likely the best support for SAP/HANA would come from SAP/HANA.

  • Can not create the node in Repository

    Hi,<br>
    I am trying to create a content node in BEA repository. But BEA is throwing following error:
    <i><b>Error creating Node: NODE NAME. Please verify the Node name size is within the Repository limits</b>.</i>
    <br>
    I have no idea why I am getting this error. I am creating node whose name is well under the size which is allowed by CM_NODE's node_name column. Have any one come across these kind of errors? Is there any place in portal administration where I can check for minimum/ maximum limits?
    <br>
    I really appreciate your help.
    <br>
    Thanks<br>
    Sanjay

    Hi All,
    After wasting significant amount of time, I finally found the real cause of the problem. In our application, we have some indexes on CM_NODE table. Those indexes were in unusable state. So instead of giving that error, weblogic server was giving some other error as mentioned in the previous post which resulted in lot of wastage of time. But after looking at jdbc.log file, things got cleared up. So once we fix the indexes, every thing worked fine. Too bad that portal administartion tool could not throw that exact error in debugging console.
    <BR>
    Thanks
    <BR>
    Sanjay

  • Connected to repository but can't view data in CRXI - requests DSN instead

    Post Author: matthewh
    CA Forum: Integrated Solutions
    Hi - not sure if this is the right forum but here goes:Trying to get a report designed on my desktop PC with Crystal XI  connecting to my remote server running Crystal Server XI R2 & MySQL 5.  I have a business view created and I can access it fine, but when I go to create the report or browse the data in the fields I get the ODBC (RDO) dialogue box asking for a DSN!  Surely the point of the server is that it handles all the connectivity?  I have the password stored with the connection in the repository on the server - have I set up something incorrectly at the server end?  I've used all bog-standard settings, nothing fancy or different and using Enterprise authentication.  This is my first proper report against a data warehouse I'm building and my first use of Crystal Server in anger, so it's possible I've missed something.

    I too am currently having this problem. HELP.
    when I try to create a recordset to an ACCESS database, i get
    the same error...
    error calling getTables; an unidentifed error has occurred.
    I dont handle the server...I am just a lonely servant. the
    admin is telling me nothing has occured on his end....so Im
    thinking it has to be a macromedia issue.
    now Im finding others with the same problem.
    but is there a fix.

  • Can not Upload PDF in MDM data repository

    Hi, expert,
    when I upload the PDF in MDM data manager, the system error log is :
    Unable to open Adobe Acrobat.
    See your administrator about installing Adobe Acrobat.
    But, when I upload the image, the status is success..
    I do not know if it is Adobe Acrobat installing problem or I miss some configuration or it can not upload the PDF into MDM repository..
    Your help would be really appreciated.
    thanks & Best Regards,

    Hi,
    Can you open the PDF without any error? Is Adobe Acrobat installed on the server where the repository is loaded?
    Regards,
    jason

  • Crystal Reports 2008 Repository Explorer

    Hi,
    I am new to Crystal Reports 2008. I want to use Crystal Reports 2008 Repository.  My question is as it was done in Crystal Report 9 Professional edition that a crystal report developer can create a Repository while using Crystal Report 9 Professional edition without Crystal report Server, Is this also possible with Crystal Report 2008. If we only have Crystal Report 2008 designer or developer edition, can we create Repository's i.e.  Text Objects,  Images,  Custom Functions,  SQL  Commands etc without having Crystal Report 2008 Server, if yes please let me know the method.
    Thanks in advance
    Thanks
    Vipin

    Hi,
    I was on web found this link
    http://www.crystalkeen.com/articles/crystalreports/repository.htm
    which says that:
    Crystal Reports: Repository
    A solid understanding of the repository can really improve the the efficiency, accuracy, and cost-effectiveness of your reports. Hammerman and Associates offers classes on this very subject. We aren't going to cover all of it here, but will provide some highlights.
    Use the CR9 Repository for those commonly used objects
    The Crystal Reports 9.0 repository is a great place to store some commonly used items in your report. This includes text strings, images, SQL Commands (see next item) and Custom Formulas.
    The Repository is initially stored in an Access database and has an ODBC connection with the System DSN of u201CCrystal Repository.u201D But you can use any ODBC data source including a database in your network so you can all share the same common objects.
    Create a new database for the repository. We recommend you copy the existing MS-Access database, but you can start with an empty database. (The initial repository is Repository_en.mdb, stored in C:\Program Files\Common Files\Crystal Decisions\2.0\bin).
    Create an ODBC connection to the new database. The new database does not have to be an Access database. If you use your SQL Server or Oracle server then, by using server security you can control who can view and who can edit items in the repository.
    You next need to set Crystal Reports 9.0 to use this new Database connection. This control information is stored in an INI file and can be edited with any text editor such as NotePad. The INI file is at C:\Program Files\Common Files\Crystal Decisions\2.0\bin\orMap.ini .
    There is a line in this file that saysu2026 Crystal Repository=Crystal Repository .
    Edit this to say Crystal Repository=New ODBC DSN.
    Is this also possible with Crystal Report 2008 designer/developer edition.
    Thanks
    Vipin

Maybe you are looking for

  • Third Party Component Vendors

    Hello, Can anyone tell me if there are any big companies that specialise in third party components for Oracle. I am most specifically after components for data loading.

  • Why am I asked for authorization

    While syncing my Mini today I got a notice that one song wouldn't be downloaded because the computer I was on was not authorized to play the song. I bought the album with that song on the very computer I was using! What's going on? Thanks Sheldon

  • Installing ilife 09 on a dual 1.8Ghz

    If I update to 10.5.6 can I then install ilife 09 or should I get ilife 06? The system requirements seem to be dual 2 Ghz for ilife 08 or 09.

  • Backup Assistant  issue

    Yes,Yes,Yes Please see my posts under the user name T2G3 I have been given many different answers by Verizon online support, verbally by customer service, and by my local store... none of which have fixed the issue. 1) I was told to uninstall then re

  • I can´t connect to iMessage in my iPhone

    I can´t connect to iMessage in my iPhone. When I try to connect via Settings/Messages/iMessage, it informs "An error ocurred during activation. Try again" If I try to connect using my Apple ID after some seconds displays a message that says "iMessage