Uploading of Documents into Portal through KM

Dear Experts.
I am New using KM. I need display a page HTML using a link in the portal of Employee Self-Service. My idea is upload a page in the KM and get a URL and with this create a service(link) in the portal for call this URL.
I never have used KM, please Can anyone help me with steps that I need for upload this page HTML through KM, So that I dont need to changein my setting URL differents for environments QA and PRD.
Thank in advance for your help,
Regards

Dear Expert.
I have the following doubt:
I want know What is the difference between  give relative url instead of absolute  url?
What are the steps for upload HTML in KM for get relative url,?
You know that in SAP we use 3 enviroments(DEV, QA, PRD) my question is:I Need I upload the file HTML in each enviroment
Thank in advance for your help.
Regards
consultor_ess_mss.

Similar Messages

  • Error in Uploading of Documents into Portal through KM

    Hi All,
          I Am new to KM, i am uploading the Word Documents into Portal through KM, this is the path : Content Administrator->KM Content->Documents--->
    here i am creating one folder after that i am uploading one Word Document into through Folder--->Upload, but when i am clicking on that uploaded document it shows Portal Runtime error....This is my problem....
    Could u please solve my problem....for me this is very urgent.....
    Thanks and Regards,
    Abhiram Choudary.

    Hi Abhiram,
    Please check it the link to the file uploaded file is ok, in order to make sure that there is a problem with the upload. The link should look like: <Protocol>://<Portal_Server_Name>:<Port>/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/<your_Folder>/<your_wordfile_name>.doc
    or
    <Protocol>://<Portal_Server_Name>:<Port>/irj/go/km/docs/documents/<your_Folder>/<your_wordfile_name>.doc
    If it's that's not the case you might need to change the configuration of the <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/7d/236cfa17034a37a439dc392ec59eb0/content.htm">URL Generator Service</a>. Perform the steps indicated under "Activities".
    Hope this helps,
    Robert

  • Uploading huge contents into portal

    Hi Experts..
    we hav a requirement of uploading huge data into portal thru KM.
    can anyone suggest best possible way, to make least use of resources?
    we have 8 gb of RAM for our server.
    regards
    JK

    Hi,
       U can check with these documents.
    http://help.sap.com/saphelp_nw70/helpdata/en/42/c99b91341a6bade10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/e6753939033ee5e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/bb1c34b68a3119e10000000a1553f7/frameset.htm
    Regards,
    Harini S

  • Upload of document in Portal

    Hi All,
    I have to upload a document in Portal.I tried the following methods but was unsuccessful.
    1) I selected a new iview and selected URL iview.I pasted the path of the file(location of file where it is saved) in the URL field of URL iView Editor.When i click on preview explorer opens showing a "page cannot be displayed".
    2)I'm unable to upload a document in Km content.I get a error showing "File does not exist" or "File is empty".
    I need this to be solved urgently.Appreciate a quick response
    Thanks and Regards,
    Pradeep

    Hi Pradeep ,
    The Process that you have to do is as follow.
    1) Creata KM NaVIGATION IVIEW but not URL iview
    2) In the property path to Initial
    displayed folder  of KM Navigation Iview specify the path of your folder in which
    you want to UPLOAD file
    and give read Write PERMISSION to the user with whose id you want to upload
    file
    This Will work
    Please Reward Points If Helpfull
    Regards .
    Vinit

  • Problems while uploading text documents into Unicode Database

    I just upgraded our database from 9iR1 to 9iR2 (9.2.0.1.0). The server
    character set is AL32UTF8. Now I'm facing a problem when
    uploading text documents into the database via a web frontend.
    I use the upload table defined for the PL/SQL Database Access Descriptor:
    create table TB_UPLOAD (
    NAME VARCHAR2(256) not null,
    MIME_TYPE VARCHAR2(128),
    DOC_SIZE NUMBER,
    DAD_CHARSET VARCHAR2(128),
    LAST_UPDATED DATE,
    CONTENT_TYPE VARCHAR2(128),
    BLOB_CONTENT BLOB);
    After uploading a text document containing the two words "hallo welt",
    the following statement returns not "hallo welt", but "68616C6C6F2077656C74":
    declare
    b_loc blob;
    v_amount integer := 100;
    v_buffer varchar2(100);
    v_offset integer := 1;
    begin
    select blob_content into b_loc from tb_upload where name like 'mydoc.txt';
    dbms_lob.read(b_loc, v_amount, v_offset, v_buffer);
    htp.prn(v_buffer);
    end;
    What is this? I studied the documentation, but didn't found a solution.
    When trying to use Oracle's built-in procedure wpg_docload.download_file,
    the content is shown the way it should be. Unfortunately, I can't use
    wpg_docload.download_file in order to copy the BLOB content to another table.
    Any hints would be appreciated!
    Thanks so much in advance!
    Roman
    E-Mail: [email protected]

    Hi Roman,
    the upload uses a BLOB (Binary Lob). Your Document is
    stored as is in the binary representation. If you
    use dbms_lob.read on a blob and your buffer is a varchar2 the binary representation is not translated!!!
    use a raw for the buffer and utl_raw.cast_to_varchar2
    to do the conversion to varchar.
    try this
    Procedure SHOW_DOC(p_name doc_test.name%TYPE)
    IS
    v_len number;
    v_mime_type tb_upload.mime_type%TYPE;
    v_offset integer := 1;
    v_Buf_size integer := 32767;
    v_buf raw(32767);
    v_blob blob;
    v_Doc_name varchar2(1000);
    BEGIN
    v_doc_name := url_Decode(p_name);
    select mime_type,doc_size,blob_content
    into v_mime_Type,v_len,v_blob
    from tb_upload
    where name = v_doc_name;
    OWA_UTIL.MIME_HEADER(v_Mime_Type);
    begin
    LOOP
    DBMS_LOB.READ(v_blob,v_buf_size,v_offset,v_buf);
    HTP.PRN(UTL_RAW.CAST_TO_VARCHAR2(v_buf));
    v_offset := v_offset + v_buf_size;
    END LOOP;
    exception
    when no_data_found then
    null;
    end;
    END;
    HTH
    detlev

  • Problems while uploading text documents into Database

    I just upgraded our database from 9iR1 to 9iR2 (9.2.0.1.0). The server
    character set is AL32UTF8. Now I'm facing a problem when
    uploading text documents into the database via a web frontend.
    I use the upload table defined for the PL/SQL Database Access Descriptor:
    create table TB_UPLOAD (
    NAME VARCHAR2(256) not null,
    MIME_TYPE VARCHAR2(128),
    DOC_SIZE NUMBER,
    DAD_CHARSET VARCHAR2(128),
    LAST_UPDATED DATE,
    CONTENT_TYPE VARCHAR2(128),
    BLOB_CONTENT BLOB);
    After uploading a text document containing the two words "hallo welt",
    the following statement returns not "hallo welt", but "68616C6C6F2077656C74":
    declare
    b_loc blob;
    v_amount integer := 100;
    v_buffer varchar2(100);
    v_offset integer := 1;
    begin
    select blob_content into b_loc from tb_upload where name like 'mydoc.txt';
    dbms_lob.read(b_loc, v_amount, v_offset, v_buffer);
    htp.prn(v_buffer);
    end;
    What is this? I studied the documentation, but didn't found a solution.
    When trying to use Oracle's built-in procedure wpg_docload.download_file,
    the content is shown the way it should be. Unfortunately, I can't use
    wpg_docload.download_file in order to copy the BLOB content to another table.
    Any hints would be appreciated!
    Thanks so much in advance!
    Roman
    E-Mail: [email protected]

    Hi Roman,
    the upload uses a BLOB (Binary Lob). Your Document is
    stored as is in the binary representation. If you
    use dbms_lob.read on a blob and your buffer is a varchar2 the binary representation is not translated!!!
    use a raw for the buffer and utl_raw.cast_to_varchar2
    to do the conversion to varchar.
    try this
    Procedure SHOW_DOC(p_name doc_test.name%TYPE)
    IS
    v_len number;
    v_mime_type tb_upload.mime_type%TYPE;
    v_offset integer := 1;
    v_Buf_size integer := 32767;
    v_buf raw(32767);
    v_blob blob;
    v_Doc_name varchar2(1000);
    BEGIN
    v_doc_name := url_Decode(p_name);
    select mime_type,doc_size,blob_content
    into v_mime_Type,v_len,v_blob
    from tb_upload
    where name = v_doc_name;
    OWA_UTIL.MIME_HEADER(v_Mime_Type);
    begin
    LOOP
    DBMS_LOB.READ(v_blob,v_buf_size,v_offset,v_buf);
    HTP.PRN(UTL_RAW.CAST_TO_VARCHAR2(v_buf));
    v_offset := v_offset + v_buf_size;
    END LOOP;
    exception
    when no_data_found then
    null;
    end;
    END;
    HTH
    detlev

  • Upload BI roles into Portal

    Hi Everybody,
    Cud i know how to upload BI roles into portal?
    Thanks in advance.
    Regards,
    lina

    Hi Lina,
    Checkout the below:
    1) Upload of Roles from ABAP-Based Systems
    http://help.sap.com/saphelp_nw04/helpdata/en/41/5e4d40ecf00272e10000000a155106/frameset.htm
    2) Integration Using Role Upload (You can integrate BI content into the portal using the role upload function.)
    http://help.sap.com/saphelp_nw04s/helpdata/en/9d/8c174082fe1961e10000000a155106/frameset.htm
    Hope that helps and award points for helpful suggestions.
    Ray

  • Uploading multiple documents into sharepoint list item with REST in sharepoint 2013 using content editor web part :

    hi ,
    i am trying to upload multiple document files into sharepoint list item. I followed below link for implementaion.
    http://techfindings-prem.blogspot.in/search/label/jquery.multifilejs
    It was working for sharepoint hosted app.
     This complete code is written within content edito web part.
    It was working when i was in root site collection with below change (hard coded the root level url) in code in "UploadFile" function.
    var scriptbase = "http://servername" + "/_layouts/15/";
                console.log(' File size:' + bytes.length);
                $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
                    var createitem = new SP.RequestExecutor("http://servername");
                    createitem.executeAsync({
                        url: "http://servername/sites/cpg/" + "/_api/web/lists/GetByTitle('SalesRecord')/items(" + attachmentitemid + ")/AttachmentFiles/add(FileName='"
    + fileName + "')",
                        method: "POST",
                        binaryStringRequestBody: true,
                        body: binary,
                        success: fsucc,
                        error: ferr,
                        state: "Update"
                    function fsucc(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(data + ' uploaded successfully');
                        deferred.resolve(data);
                    function ferr(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(fileName + "not uploaded error");
                        deferred.reject(data);
    But the issue came in picture when i was working with the other site collection instead of root one. The url was like below.
    "http://servername/sites/cpg/". This time i need to be there within "cpg" site collection. 
    Now if i hard code the url as i did above my code gets break here while come to below line
     $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
    I am getting error when i used below code:
    var scriptbase = "http://servername" + "/_layouts/15/";
     $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
                    var createitem = new SP.RequestExecutor("http://servername");
                    createitem.executeAsync({
                        url: "http://servername/sites/cpg/" + "/_api/web/lists/GetByTitle('SalesRecord')/items(" + attachmentitemid + ")/AttachmentFiles/add(FileName='"
    + fileName + "')",
                        method: "POST",
                        binaryStringRequestBody: true,
                        body: binary,
                        success: fsucc,
                        error: ferr,
                        state: "Update"
                    function fsucc(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(data + ' uploaded successfully');
                        deferred.resolve(data);
                    function ferr(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(fileName + "not uploaded error");
                        deferred.reject(data);
    Please hekp in this case. This complete code is written within content edito web part. 
    Regards:
    Sanjay Joshi

    Hi,
    According to your post, my understanding is that you have an issue about upload multiple documents files into library vai REST API.
    As you have said, you have used the hard code url in your code.
    How about use the _spPageContextInfo.webAbsoluteUrl method to get the url?
    I have used this method to get the url, then use the code in the article you have pasted within a content editor web part to upload the files.
    You can replace the hard code url with the _spPageContextInfo.webAbsoluteUrl method, then check whether it works.
    Thanks,
    Jason
    Jason Guo
    TechNet Community Support

  • Upload word document into SAP

    Is it possible to attach or upload MS Office Word documents into SAP?

    Hi,
    exactly what is your requriement?
    if you want to uplaod .doc into any particular transaction for particular ouccurence(say PO number) , then it depends on the options provided with in that transaction(ME21N for this Ex.)
    otherwise if you want to store some documents in general  then you can store it on Application server.
    Regards,
    Suresh

  • Unhandled exception for uploading BW roles into portal

    Hi experts:
    I  got the following warning in the log viewer when I uploade 2 BW roles, ZB_SAP_BW_DEVELOPER
    ZB_SAP_BW_WEB_ADMINISTRATOR, into portal (7.3). They are copies of the standard SAP roles.  I succcessfully uploaded other BI roles. These are the only ones that can not be uploaded. There is no error on the portal. Upload completed 100% but these 2 roles are not in the uploaded role list.  I checked sm12 and they are not locked. Wonder if anyone has had the same issue and solution?
    Log viewer warning:
    The following unhandled exception: [java.lang.NullPointerException: while trying to load from an object array loaded from local variable 'templateUrlArr'] was detected in [Thread[RoleUpload_1312911561066,5,Dedicated_Application_Thread]]
    Thanks

    Hi Tiberiu,
    I am also getting the same while uploading the BW 3.5 role to Portal 6.0, Role gets created but iviews throws the same error as you are getting.
    Please help if you have found the solution for the problem.
    Thanks in advance.
    Bhuvnesh Goel

  • How do I upload scanned documents into SharePoint?

    Is there a way to automatically upload scanned documents from a scanner into SharePoint without the use of a third party tool? I was just thinking about this, but then couldn't figure out how the metadata piece of the scanned document would work. Has anyone
    implemented anything like this? Or is there a blog that can be recommended? I have not been able to find anything that could point me in the right direction.

    Hello,
    Several MFP manufacturers are releasing solutions for this. You should see what your reseller has to offer.
    Personally, I'd recommend you try Udocx. It's designed to include metadata, OCR etc when scanning to SharePoint folders. There's more information on www.udocx.com/SharePoint
    Cheers,
    Iris
    Iris vH

  • Access denied error while uploading the document into document library which is associated with a content type

    hi,
     am trying to upload a document in a document library which is associated  with content types [ the content type contains 10 site columns and one of them is taxonomy field]. i added this content type in the document library.
    this document library is residing in a team site which is saved as a template and  based on this template i have created sub sites.
    and when i tried to upload a file to the doc lib, it throws me "access denied error".
    what may be went wrong .
    any help is  appreciated!

    Access denied indicates the user account uploading the file doesn't have access to the library, or sometimes it means there's already a document in the library with the same name that was never checked in. It's also possible that your template contains
    custom code that tries to do something that is not allowed.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Error during uploading a document into document library

    In SharePoint 2010, I am getting the following error when I try to upload a document in a Document Library. However, I can create a new document and upload multiple documents (drag and drop) successfully. Any ideas. Thanks so much
    Mayank
    Error
    Incorrect function. (Exception from
    HRESULT: 0x80070001)
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Correlation ID:
    00bd90a1-b4ee-4053-8ea0-9c62295efc3b

    see whether you can get the error description for the Correlation ID in in your ULS Log, tat should help you resolve this issue.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to integrate and index SAP R/3 Office documents into  resp. through KM

    Hi,
    Is there a way to integrate an existing store of SAPOffice documents on R/3, stored by default in the SAP R/3 table SOFFCONT1 (KPro repository SOFFDB), into the KM on the portal, so that these documents can be indexed and searched through TREX from the portal ?
    I know there is the SAP DMS KM Connector available right now, but apparently this connector only allows access to documents stored in DMS on R/3.
    What the best approach to this problem.
    Could a migration of these documents to SAP Content Server be a solution ?
    Thanks in advance for your input.
    Message was edited by: Theo Paesen

    Vishal,
    Thanks for your suggestions.
    I think building a custom connector (RM) is indeed the best option.
    I am not an ABAP developer, more familiar with KMC
    Could you point me to some more detailed information on the BDS/KPro APIs. Are these also available as BAPIs, callable from an external Java application.
    Something else, the SAP Office documents I am referring to are actually attachments to Notifications in R/3s QM module. So, the documents I want to build a RM for are   these QM notifications (the parent business documents) and their related attachments (the SOFFCONT1 stored docs).
    Could you point out which RFC modules I will need to get at both (bizdoc + attachments).
    Thanks in advance for your input

  • Converting microsoft sql server documents into portal items

    Our customer currently has a number of documents
    stored in a Microsoft SQL server database as an
    'image' datatype.
    They would like to programatically move all these documents from the sql server into the portal database and store them as portal items (we are using 9.0.2.6) Has anyone done something like this before?
    Any thoughts would be appreciated.
    Thanks,
    Suzanne

    The API documentation discusses the requirements for calling the APIs from an external environment. Assuming you will use a language like Java through JDBC, you just open connections to the two databases. The APIs are called just like any other stored procedure. You'll have to read the language-specific and database-specific documentation for instructions on handling LOBs e.g. the Oracle9i JDBC Developer's Guide and Reference.
    Regards,
    Jerry
    PortalPM

Maybe you are looking for