KM Upload in Portal 7.3

Hello,
I found several tutorials online how to build an upload function to KM with a simple Java web project. However, all of them are based on the 7.0 KM API. Now Im having a hard time finding all the required JAR files, if I import the old ones, are they compatible? And if they arent, is there another method how to deal with this?
Many thanks

Hello,
you can download SP7 here: https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/730/doc/auto_latest_distributions.html
anyway, thanks for your suggestion. As I probably need to download the jar files, can you suggest where I find them in SWDC?
edit: oh I see, I might have to pull them from the portal server
Many thanks
Stefan
Edited by: Stefan Ernst on Mar 8, 2012 2:18 PM

Similar Messages

  • Uploading a Portal resource to Spaces

    Version: WebCenter 11g PS3 (Spaces)
    Hi,
    I have created a custom page template in JDeveloper using the DesignWebCenterSpaces.jws workspace. ( I am refering the Chapter 49 of WebCenter Developer Guide).
    In the page temaplate I have included some task flows and some images. Now to upload this page template to WebCenter Spaces, what should I do ?
    I could find that there is an option "Upload a Portal Resource". Can this option be used to upload the page template I have created (with task flows and images). I am wondering How will the images and TF's will be uploaded to Spaces ? Please can someone clarify my thoughts ?

    Hi,
    Beside 'Upload a Portal Resource' there is an option for Export Portal Resource, use that option and export the page template as an EAR file.
    Than take that EAR file and upload it under Resources > Page Template in Administration (Home Space), So that the template would be available to all Spaces.
    For Taskflows, you can do the same thing. Or we have used the SampleWebCenterExtensions project available from: http://www.oracle.com/technetwork/middleware/webcenter/white-papers-088385.html, and Desploy a Shared Library with our custom Taskflows so that all customizations will be deployed together.
    There is a public folder under SampleWebCenterExtensions > SourceFiles > public_html > web > oracle > webcenter > webcenterapp > view > templates > publichtml, in which you can save images and other custom jsp files and can call from the path: http://<domain-name>/webcenter/oracle/webcenter/webcenterapp/view/templates/publichtml/ ...
    Hopefully, it makes sense :)
    Best Regards.

  • Propagate Image Upload Across Portal Servers

    Hi,
    I'm trying to investigate the best way of propagating image uploads across portal landscape.
    We have a requirement where Partner's are able to upload their company logo, to be displayed in the masthead.
    I've managed to create an iview to upload and validate the image, but I need to find a mechanism to copy the image file to all portal servers.
    I have found other posts which recommend mapping a drive, but I don't want a single point of failure, also for performance reasons I don't really want to store images in database.
    Is there a mechanism to deploy to all servers?
    Thanks
    Jason.

    If you can make use of the Knowledge Management System to store your image, then you can set up Content Exchance using the ice_service to move images to different systems.
    Check out this link
    http://help.sap.com/saphelp_erp2005/helpdata/en/35/4cf72bfe18455e892fc53345f4f919/frameset.htm

  • What are the backend configuration required for photo upload from portal?

    Hi all,
    When i am trying to upload the photo from portal  it is giving error
    can not archive the photo
    we are using portal 7 and  ecc 6.0
    I want to know
    What are the backend configuration required for photo upload from portal
    Can any but help me out
    Rajendra

    Hi,
    Are you using the standard iview. If that's the case you need to configure in the backend. Meaning you need to store the photo in the Org management(HR) which the HR functional guys will do. You just need to add the iview to your role.
    Let me know if you require further informationn.
    Award points if helpful.
    Cheers,
    sathya

  • Conserving filename with upload via portal form into blob type

    Hi
    I have a little question. Is there any chance to conserve a filename, which was uploaded into blob column via portal form and then create link for this file with the same name?
    null

    Vlasta,
    You certanly can save the original filename in your form, to do that you will need to add a FILENAME varchar2 column to your table and write a simple Javascript (search this forum for examples) to copy the fileselect value with onChange event. So, when you submit the form with your file the original name will be stored in you table.
    Thanks,
    Dmitry

  • Document upload in portal

    Hi,
    We need to upload 2 documents in enterprise portal.
    The record in the document should be visible to only the specific users.
    eg: 5 documents for 5 different users .
    We need to display the documents thru an iview.
    Please suggest ASAP.
    Thanks in advance,
    Manu
    T

    Hi Manu,
    U can use KM Upload iview for this, just check this link....
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/2b/7a3be0e795664cb1d8cae68042ceb7/frameset.htm
    upload the documents using this iview to the target folder and specify the path of ur target folder in the property by name  target folder present in the iview properties of KM upload iview and give permissions for the folder to only the users who should  access them. 
    Regards,
    Tilak.
    Edited by: Tilak on Jul 4, 2008 6:17 AM

  • File Upload in Portal

    Hello;
    I have following code. and i can easily upload in apache tomcat server (it doesnt care about file size) but after i deploy portal i cannot upload if file size above 30kb. And i get this error:
    <b>Cannot read from InputStream. The buffer is null or the offset and length are incorrect</b>
    Is there any idea?
    <%@ page import="java.io.*" %>
    <%
        String contentType = request.getContentType();
        out.println("Content type is :: " +contentType);
        if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
            DataInputStream in = new DataInputStream(request.getInputStream());
            int formDataLength = request.getContentLength();
            byte dataBytes[] = new byte[formDataLength];
            int byteRead = 0;
            int totalBytesRead = 0;
            while (totalBytesRead < formDataLength) {
                byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                totalBytesRead += byteRead;
            String file = new String(dataBytes);
            String saveFile = file.substring(file.indexOf("filename="") + 10);
            saveFile = saveFile.substring(0, saveFile.indexOf("n"));
            saveFile = saveFile.substring(saveFile.lastIndexOf("\") + 1,saveFile.indexOf("""));
            //out.print(dataBytes);
            int lastIndex = contentType.lastIndexOf("=");
            String boundary = contentType.substring(lastIndex + 1,contentType.length());
            //out.println(boundary);
            int pos;
            pos = file.indexOf("filename="");
            pos = file.indexOf("n", pos) + 1;
            pos = file.indexOf("n", pos) + 1;
            pos = file.indexOf("n", pos) + 1;
            int boundaryLocation = file.indexOf(boundary, pos) - 4;
            int startPos = ((file.substring(0, pos)).getBytes()).length;
            int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
            saveFile="c:\"+saveFile;
            FileOutputStream fileOut = new FileOutputStream(saveFile);
            //fileOut.write(dataBytes);
            fileOut.write(dataBytes, startPos, (endPos - startPos));
            fileOut.flush();
            fileOut.close();
            out.println("File saved as " + saveFile);
    %>

    Hi Eray,
    I completely agree with Vivek. <a href="http://jakarta.apache.org/commons/fileupload/">Commons FileUpload</a> is very good. In case you don't want to use it, you could have a look at the source code.
    Note that Integer.MAX_VALUE == 2^31-1 == 2147483647. Since request.getContentLength() returns the number of bytes, the maximum value is almost 2 GB.
    Anyway, there's at least one bug in your code. It should be
    byteRead = in.read(dataBytes, totalBytesRead, formDataLength - totalBytesRead);
    Besides this, I'm wondering why you use a DataInputStream instead of just an InputStream (it's the responsability of the servlet container to provide an efficient implementation like a BufferedInputStream). I'm not sure what you're trying to do next, but it looks like you save the file locally. The implementation looks a bit buggy though...
    Kind regards,
    Sigiswald

  • File Upload in Portal Enviroment

    I have a web page with a File Upload tag, and a PageFlow with a Form Bean where
    it has a FormFile attributte. When i run this pageFlow, it run excelent, but when
    the pageFlow is in a porlet of the portal, never upload the file. What i have
    to do?? Please... help me!!!

    It's a patched version of netui-pageflow.jar that is going to be in the
    next sp. For now you have to get it directly from BEA support.
    /Steen
    Juvenal Guzman wrote:
    Steen,
    Which patch I have to get? Because only found Service Pack 1 for App Server 8.11
    and that's it..
    Regards
    Juvenal
    Steen Larsen <[email protected]> wrote:
    Hi,
    It's a bug. You can get a patch from BEA support.
    /Steen
    Daniel Montenegro wrote:
    I have a web page with a File Upload tag, and a PageFlow with a FormBean where
    it has a FormFile attributte. When i run this pageFlow, it run excelent,but when
    the pageFlow is in a porlet of the portal, never upload the file. Whati have
    to do?? Please... help me!!!

  • Employee photo upload in portal and to be saved in infotype 0002

    Hi Everyone,
           I got an requirement where in ESS Portal, through "Change Own Data" link, employee is uploading his photo and it has to be saved in infotype 0002. Below are the doubts i have,
    1. There is no field for photo in infotype 0002, so how it will be saved in 0002.
    2. After uploading and clicking preview button, error was raising saying 'Error when archiving the photo'.
    3. I seen in many forums that the employee photo is visible from PA30. how it will be visible in that tcode ?

    Hi  Chris McNarney,
          Sorry for long delay for replying.. According to you,
    1. I checked the service under /default_host/sap/bc/conentserver/ it was activated and moreover below is the logon data,
            Client           500
         User             XXXXXX
         Language
         Password Status  Set
    and what is the use of this logon data..
    2. According to your link [https://wiki.sdn.sap.com/wiki/display/ERPHCM/Add%20Employee%20Photo%20on%20Infotype%200002?showChildren=false|https://wiki.sdn.sap.com/wiki/display/ERPHCM/Add%20Employee%20Photo%20on%20Infotype%200002?showChildren=false],
    there it has  4.7 version in that they told to create A2 repository with Tcode: OAC0 with details,,
         While creating the repository, keep the Document Area blank, Storage type as R/3 database, Rep. Sub-type will appear as Normal by default, Version No. as 0046 and in Contents table put 'SDOKCONT1' as the table name.
        With that screen im am not able to find table name field to put 'SDOKCONT1' as input and moreover SAP system database is there instead of getting R/3 database for storage type. Screen detilas below,
    Content Rep.    A2                               Active
    Description
    Document Area
    Storage type
    Version no.     0046   Content Server version 4.6 as the table name.

  • Creating TXT file and upload to portal

    Hi All,
    I am working on creating a report which takes the balance sheet backfeed and creates a unix file in background and mails the spool file to particular user.
    I have developed this much. But now I have to extend this to reading that file and create a .txt or .csv  file and upload it to a portal.
    can anyone help me on how to  achieve this.
    Thanks,
    Shubham

    Hi Shubham,
    Download spool as .txt with FM RSPO_DOWNLOAD_SPOOLJOB.
    Mention file as .txt
    Thanks,
    Anil

  • Mass upload of Portal roles

    Hi,
    I need to upload ESS and MSS roles to all my uesrs at one go.
    I have created all the users but now wanna assign only roles and group.
    Please guide for template or where can i do this mass upload.
    Regards,
    Brijesh Kumar
    do not put email addresses in your posts*
    Edited by: Michael Nicholls on Mar 16, 2009 10:37 PM

    Hi,
    I want to upload Portal roles ess and mss to all my 150 user id's at one go. for that i need a way out, can it be possible through a BDC or any format so that can be impoerted directly.

  • Schedule Role Upload in portal

    Hi expert,
    Just receive a requirment to code an WD application in orde to trigger the Role Upload functionality in portal.
    Anyone has some idea's how to do this ? Is this possible ?
    An WD calling a HTMLB application? how ? any code snippets are welcome.
    you help will certain has point back.
    Ben.J.

    closed

  • BI Role upload to Portals got messy

    I posted same question on the PCD but got no response so I am reposting this here. we have a Role called Power User and inside there are 10 different folders for each plant and in turn each of these folders have some queries embedded in them. We uploaded this Role into Portals (Netweaver 2004s) and after that our portals page got messy, now it shows 11 tabs, one for the Main Role Power user and then followed by the 10 sub folders. We expected that there would only be one folder visible and then when we double click on it it should show all those sub folders in one window on the left hadn pane (Detailed navigation).
    One more thing we notice is that thought the role got uploaded all these tabs are blank when I click on any of them...
    Can someone guide what we are missing here....

    This is what I DId:
       1. System Admin -? Role Upload -> SAP ROle Upload
        Selected: Upload user mapping
        Selected: Upload Included Services
        Selected: Selecte First Level nag as Entry Point
    Overwrite Existing Role Selected..
    Actually I have not paid attention before but I have got some error messages that I missed earlier during Rle Upload:
    Severity: Red
    Check system configuration for alias: BFSBID100, system: pcd:portal_content/Systemlandscape/bfusa.com.isbid1_db - failed to retrieve logical system idSEVERE: getObject(portal_content/com.sap.portal.migrated/SAPComponentSystems/roles/BIDCLNT100/BSA_BW_CONTAINER_CONSUMER_FA), entry '[RoleMenu, 00000008, , , 00000003, BwReport, SAP_BW_QUERY, BFSBID100_BSA_BW_CONTAINER_CONSUMER_FA_00000008, , BFSBID100, 00000010, 00000002]'.
    Severity: Yellow:
    Menu definition missing for entry 00000008 in role portal_content/com.sap.portal.migrated/SAPComponentSystems/roles/BIDCLNT100/BSA_BW_CONTAINER_CONSUMER_FA: locale E - text CDS Tonnage Report MC01
    What does these messages infer ?

  • Error in Shopping Cart Upload from Portal Using Excel

    Dear All ,
                      I am facing problem when i try to upload excel file for creating Shopping cart from Portal . For doing this i have created a transaction from SRM r/3 and using Transaction i view i published the tcode on portal . But when i try to upload a excel file using the transaction i am getting a Exception UPLOAD_OLE . For uploading excel we copied the Fm ALSM_EXCEL_TO_INTERNAL_TABLE . Its working fine in SRM R/3 environment.but facing issue on portal . Please help us out on this .
    Regards
    Shankar

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Role upload from portal.

    hi,
    I am attempting to upload a sampling of R/3 ECC 6.0 roles into the portal (EP7.0). I have the system connection defined and testing successfully. I unfortunately can not execute the upload function. After defining the selections that I wish to upload, in this case a role, I receive the red exclamation mark followed by
    "Could not perform action. Check the role migration log for additional information"
    Please let me know how to upload sap roles from portal.
    thanks in advance.
    Mahee.
    Edited by: MaheeshReddY on Nov 6, 2010 12:10 PM

    Hi,
    Make sure  Portal System Landscape has correct valud in System Property tab (System Property,Connector).
    Below SAP help gives you all the informaton on role upload (Pre-requisites/the process flow).
    http://help.sap.com/saphelp_nw70/helpdata/en/43/0caa807dad6e72e10000000a422035/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/76/405640a2f78437e10000000a155106/frameset.htm
    Regards
    Nagaraju

Maybe you are looking for

  • USB audio input to voice-over tool not working

    with FCE-HD on iMac i have system preferences set to USB-122 Tascam box for audio input/output (works great with GB for instance) but when i try using it for audio input on FCE and the voice-over tool set to USB-122, i hear no audio, the level meter

  • Power Adapter flashes orange light and won't power on.

    I woke up this morning to find that my power adapter's light is off and it is still plugged into the surge protector. 1. When I push the button on the bottom, I get all 4 lights saying that it is charged. 2. When I plug the laptop with another adapte

  • What is the correct way to restore the catalog after a disk failure?

    I am running the latest Itunes on Vista. The disk failed on my old computer and I have a backup of the catalog file. The music files are on external storage (NAS). I've been searching for instructions on how to restore Itunes. The catalog is about 1

  • I cant install an app

    I cant install an app on my iphone cuz it says that its full of memory and its not. WHY???

  • Need help from experts with process of printing Payroll Checks in-House

    Appreciate any information on below issues please. We upgraded from 4.0 to 4.7 1. For some reason 10 Direct Deposit advises get destroyed and need to be reprint only those 10, instead of whole 2000 2. Is there a way to change payment method (T-C with