Upload Content Into KM

Hi,
I have a third party web editor where user can create news, announcement and web information in the browser and save it as a XML file.  What I wanted was to let the user upload the XML content into the KM folder.  There are quite a number of integration tools available for the thrid party web editor for example ASP, ASP.NET, Javascript, API, HTML.
Is this possible?
Thanks.
Regards,
Mike Lee

Hi Mike,
of course you can upload your created XML files to KM. You can do this manually using KM Explorer iView or by WebDAV protocol. I'd recommend Portal Drive. See:
<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c99b91341a6bade10000000a1553f6/frameset.htm">Portal Drive</a>
No matter how you upload your XML content, it will be displayed as XML. If you want to get it rendered as HTML you will need to configure XML/XSLT processor. See:
<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/55/921d87b0c611d5993800508b6b8b11/frameset.htm">XSLT Filter</a>
HTH,
Carsten

Similar Messages

  • Problem uploading content into repository over WebDAV

    Hi,
    Sorry if the questions is responsed yet, but I haven't found it.
    I am a new user in Oracle and Oracle XML DB. I have installed Oracle Database 10g Release 10.2.0.1. The dabase was created through the wizard and I have enabled 2100 and 8080 ports to work with FTP, HTTP and WebDAV. I have also created a new USER called DAVID with DBA permissions.
    With this user I can upload 'not xml-content based' resource over FTP with different sizes but when I try to upload it over WebDAV I receive a message windows error and the resource is partially uploaded always with less than 500 bytes.
    For example, I have upload a chm file with 19Mb. over FTP but I can't do the same over WebDAV.
    What is the problem???? What I can do???
    Thanks in advance,
    David

    OK!, I can't created a bigfile tablespace, I specified only 1024Mb. but oracle tries to create a tablespace with 192Gb.
    Finally, I have created a normal tablespace (initial size 500Mb), I have opened 2100 and 8080 ports to operate with FTP, WebDAV and HTTP.
    Transfer over FTP works well but WebDAV continues with problem.
    I have read the Bug 3703236 posted by mdrake, but I don't found any comment that helps me to solve the error.
    As it say if I rename any file to xml, I can uploading to the repository over WebDAV without problem, but this file can't be renamed. For instance, in repository file system, rename msmsgs.xml to msmsgs.exe returns an error.
    Also I have opened a TAR.
    Any Idea?.
    Thanks in advance,
    David.
    Mensaje editado por:
    David2005

  • Having changed my computer, how do I upload the ipod touch content into new itunes on new computer.

    Having changed my computer, how do I upload the ipod touch content into new itunes on my new computer? I do not have a backup of the previous itunes library.

    Transfer iTunes purchases by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    Transfer non-itunes purchased music by using one of the third-party programs discussed here:
    new PC: Apple Support Communities

  • HT1386 my old computer crashed so I used a program to download my ipod contents into itunes.  Now when I sync it only uploads @ 100 of my 8000 songs ?

    my old computer crashed so I used a program to download my ipod contents into itunes.  Now when I sync it only uploads @ 100 of my 8000 songs ?

    Any error messages when you sync the iPod? Do all of these tracks play okay in iTunes?
    How is your iPod configured to sync music from your iTunes library?  In other words, what options and configurations do you have in place from under the iPod's Summary and Music configuration tabs?
    B-rock

  • Error in uploading content of file int internal table

    I want to upload one file.Store the content into internall table.  i ahve written the the following code under input processing.
    event handler for checking and processing user input and
    for defining navigation
    file upload and echo
        data: entity         type ref to if_http_entity,
              file           type xstring,
              content_type   type string,
              LV_DELIMITER   type string VALUE '##',
              content_length        type string,
              num_multiparts type i,
              i              type i value 1,
              doEcho         type string value 'xyz',
              value          type string,
              conv   TYPE REF TO CL_ABAP_CONV_IN_CE,
              LV_DELIMITER1   type string VALUE ',',
              content1 type string value '22##11##35',
              content TYPE STRING.
        DATA: BEGIN OF t_temp,
              str(10) TYPE c,
        END OF t_temp.
        data : ty_temp type standard table of t_temp,
               wa_temp like line of ty_temp.
      find multipart containing file
        num_multiparts = request->num_multiparts( ).
        while i <= num_multiparts.
          entity = request->get_multipart( i ).
          value = entity->get_header_field( '~content_filename' ).
          if not value is initial.
          found a file!
            navigation->set_parameter( name  = 'content_filename'
                                       value = value ).
            content_type = entity->get_header_field( 'Content-Type' ).
            navigation->set_parameter( name  = 'content_type'
                value = content_type ).
          get file content
            __file = entity->get_data( ).__
            __conv = CL_ABAP_CONV_IN_CE=>CREATE( input = file ).__
            __conv->READ( importing data = content ).__
            __replace LV_DELIMITER with LV_DELIMITER1 into content1.__
            __SPLIT content AT LV_DELIMITER1 INTO TABLE Ty_temp.__
          get file size
            content_length = xstrlen( file ).
            navigation->set_parameter( name  = 'content_length'
                value = content_length ).
          echo/download the same file again?
           doEcho = request->get_form_field( 'doEcho' ).
            if doEcho is not initial.
            set response data to be the file content
              runtime->server->response->set_data( file ).
            set the mime-type and file size in the response
              runtime->server->response->set_header_field(
                name  = 'Content-Type'
                value = content_type ).
              runtime->server->response->set_header_field(
                name  = 'Content-Length'
                value = content_length ).
              runtime->server->response->delete_header_field(
                name = 'Cache-Control' ).
              runtime->server->response->delete_header_field(
                name = 'Expires' ).
            endif.
            exit.
          endif.
          i = i + 1.
        endwhile.
        if doEcho is not initial.
          signal to the BSP runtime that the response data is
          complete and no onLayout method should be called to
          create the response
          navigation->response_complete( ).
        else.
          navigation->goto_page( 'transition_parameter_upload.htm' ).
        endif.
    I AM FACING SOME ISSUES IN THE in the highlited portion. whan i am spliting the sting into sub string...it is not giving desired result. In Debuging mode it is showing ## at the delimeter but it is not spliting.

    No boss its not working....
    Its not spliting... its showing in debugging mode as ##...
    Example
    if my text fie is as
    11
    22
    33
    44
    Its uploaded convertedinto string as 11##22##33##44####
    this is waht i am able to see in debugging mode/

  • Can't play some uploaded content on other devices/mac's.

    I have an issue where iTunes refuses to play some uploaded content on my iPhone, iPad and other Mac's in iTunes. It's not purchased content, it's originally ripped. Even if it were purchased my authorized devices are under five total and I'm on authorized systems. Any thoughts? Is there a way to attempt to re-upload the affected tracks? Any root cause or way I can determine which to work on without stumbling across them during playback? 
    I'm up to date on all iOS versions, the Mac and Macbook are on OS X Lion with all software including iTunes up to date. Any thoughts are appreciated. This is annoying me and turning me off of Match.
    Thanks!
    Derek

    On the source iTunes Library enable the iCloud Download and iCloud Status fields in the Song view.  Sort on iCloud Status - by carefully scrolling through you can assess any patterns for the known missing Songs, this should allow you to identify any others 'yet to be discovered'.
    First make a secure backup of all of your Song files.
    Copy the 'problem' Songs into a playlist.
    Burn the playlist to audio CD.
    Delete the Songs from the Library & iCloud.
    Set the import from CD settings to 256k ACC.
    Sign out of the iTunes Store.
    Import the Songs from audio CD into the library.
    Sign in to the iTunes Store.
    Start iTunes Match and allow the 3-step process to complete.
    Confirm status of the Songs in the Song view, sorted on iCloud Status - provided they are matched or uploaded - for each computer sign-out of iTunes Store, restart, sign-in to iTunes Store and start iTunes Match - for each IOS device turn-off iTunes Match, select settings, general, music and swipe to delete all, restart the device, enable iTunes Match.
    Do let us know the result.

  • Error while uploading data into cube

    I am trying to upload data into my content cube but I got an error it says"
    "Time conversion from 0CALDAY to 0FISCPER (fiscal year S1 ) failed with value 20040303"     
    I checked the data in the PSA it's there but the first record is not green light it has red light. Could you please give me some idea how to solve this problems.
    Thank you in advance
    sajita

    If you don't know if you want to take over all settings (especially exchange rates may be critical) the problem is probably found in the fiscal year variant. So if you just take over the fiscal year variants.
    If the problem remains you could check the following things:
    In SPRO -> Global Settings -> Fiscal Year Variants (or similar) check:
    Does a fiscal year variant S1 exist?
    Is it time dependent? If yes, is it valid for Mar 3rd 2004?
    If it is a self defined variant check if there is a period defined for March 3rd 2004.
    Best regards
       Dirk

  • Ways to Upload data into Cube,

    1. What are the methods to upload data into cube, apart from flat file mode.(.csv)
    2. I  have some data in the Planning book in a  KF eg. Sales Order. , i need to upload this sales order data to another cube, say forecast cube. how can i do it???
    how to upload the data from Planning book to another cube.
    Thanks!.

    Please follow the steps:
    1.      If necessary, replicate the DataSource. To do so, you can use the following options in the Data Warehousing Workbench:
    ○     Select the source system in the source system overview and choose Replicate DataSources in the context menu. This replicates all data sources in the source system.
    ○     Select the data source in the DataSource overview and choose Replicate Metadata in the context menu. This replicates just the one DataSource.
      2.      Create an InfoSource and assign the data source to it. To do so, choose your application component on the InfoSource page of the Data Warehousing Workbench. In the context menu, choose Create InfoSource. On the next dialog box, select Transactional Data. Another dialog box appears. Enter a name and description for the new InfoSource and choose Enter. In the tree, select the new InfoSource. In the context menu, choose Assign DataSource. On the dialog box that appears, enter the source system. A list of DataSources appears. Select the required DataSource. Choose Enter.
    Alternatively you can remain in the DataSource overview. A  icon indicates that no InfoSource has been assigned yet. Either click the icon or choose Assign InfoSource in the context menu. On the dialog box that appears, enter a name for the InfoSource. Choose . On the next dialog box, enter a description and choose . Confirm the following dialog box. You can now maintain the InfoSource.
    You can assign a DataSource to one InfoSource only.
    3.      Create a DataStore object in the InfoProvider overview of the Data Warehousing Workbench.
    a.      Select the InfoArea and then choose Create DataStore Object in the context menu. The Edit DataStore Object dialog box appears.
      b.      Enter a name and a short description. If required, you can also specify a DataStore object to use as a template. Choose . The Edit DataStore Object dialog box appears.
       c.      On the left-hand side of the screen, you can select InfoObjects, for example, InfoCubes or InfoObjectCatalogs. You can copy characteristics or key figures from these InfoObjects to the DataStore object. We suggest that you select either the InfoCube to which you want to copy the data, or the InfoSource.
         d.      Copy the characteristics to the key fields in the right-hand tree in the DataStore object and copy the key figures to the data fields. In both cases, use drag and drop. You might have to transfer the 0RECORDMODE InfoObject from the Business Content.
         e.      In the Settings branch of the DataStore tree, set the following indicators:
    ■      Set quality status to 'OK' automatically
    ■      Activate DataStore object data automatically
    ■      Update data targets from DataStore object automatically
      f.      Activate the DataStore object.
    For more information, see DataStore Object.
           4.      Create update rules for the DataStore object.
    .a.      Select the DataStore object in the data targets page (Data Warehousing Workbench).
    b.      Choose Create update rules from the context menu. The Create Update Rules screen appears.
    c.      Enter the InfoSource that you created in step 2. Choose . Edit the update rules as necessary.
    d.      Activate the update rules by choosing .
           5.      Create update rules for the InfoCube as above, but with the DataStore object as the data source.
           6.      Create an InfoPackage for the InfoSource. In contrast to the normal procedure, on the Processing tab page, set the Only PSA and Update subsequently in data targetsindicators. Start or schedule the data load

  • Uploading data into 0CRM_CO1 cube

    Hi all,
    i'm trying to upload data into the above said CRM cube... its a content cube .. but when i'm trying to see what is the datasource in the content i dont see any datasource.
    The question is ... do i need to create a generic datasource or there is some other way. Can anyone, let me know the steps too that should be followed to get the data from R/3 to BW into this cube?
    Thanks in advance,
    Mav

    Hi Sajita,
    Thanks for the reply. I have checked it in the metedata repository, i doesnt show any datasources .. infact it shows all the multiproviders connected to the cube.... Any clue ....(Look at it in metadata repository, u'll know what i'm talking abt).
    Thanks,
    Mav

  • Uploading data into Time Infotypes

    Dear All,
    I have a requirement wherein I need to upload data into time infotypes from an external source(file). The data is required to be uploaded into the relevant infotypes based on the content(attendance, absence etc.)
    Can you please suggest a generic way of uploading data into time infotypes.
    Thanks in advance,
    Sujit.

    Hi Sujit
    You can either create a BDC report to upload the data or use FM HR_INFOTYPE_OPERATION to upload the infotype in your report

  • How to make the uploaded content available to learners.

    Dear Experts,
    I'm new to this area on SAP-LSO.
    With the help of some experts from this forum, I was able to successfully load a SCORM compliant learning content to the master repository through the authoring tool. The content is now visible in the KM directory in my portal.
    Now the problem is,
    How do I allow a learner to see/play this content ?
    i.e,
    a>How and what roles are to be provided for the user who is a learner?
    b>How will the learner be able to see/play the uploaded content?
    c>Is the content player to be accessed seperately to play the uploaded SCORM Content? If yes, how and where?
    Any help in this regard would be highly appreciated.
    Regds,
    Srini
    P.S : I tried using, the std BSP Application, HCM_LEARNING and previewd the page LESO.htm but I could'nt find the content which I had uploaded in KM folder through the authoring tool.

    How do I allow a learner to see/play this content ?
    i.e,
    a>How and what roles are to be provided for the user who is a learner?
    Give standard role:
    SAP_HR_LSO_LEARNER
    SAP_HR_LSO_COURSEPLAYER
    b>How will the learner be able to see/play the uploaded content?
    Link the uploaded content with a WBT course type. When you create course type WBT, there will be a mandatory field about course content.
    And put the WBT course type into a course catalog.
    You also already set SAP Portal. So, learner will login to SAP Portal and access Learner Tab. There, course catalog is stored, and learner can book the course type. After book, there is a button to access the material.
    c>Is the content player to be accessed seperately to play the uploaded SCORM Content? If yes, how and where?
    Content player is needed to play the uploaded SCORM content, especially when we create the material using Authoring Tools. But, if learner already in SAP Portal and access the content, Content Player doesn't need to be executed separately.

  • How to upload content?

    How can I upload content on Itunes U?

    Hi, just an update:
    I created the learning object and uploaded a file. I then got a message saying the file upload was successful.
    The upload has succeeded. If you uploaded a zip file, it has been unzipped into the specified directory.
    But when I look in the rootdir folder I created, nothing is there. Why does OLM say the upload is successful when there is nothing in the folder? Any thoughts on this?
    Thank you

  • How do I transfer the dvd content into iMovie?

    I have a family made dvd that I am trying to upload to iMovie so that I can edit it properly. How do I transfer the dvd content into iMovie?
    I originally had the video on tape and transfered the content to DVD. This was years ago and now I want to edit the video and make it better then just being cut and pasted together. I cannot find anything to help me in how to transfer or upload the video into iMovie so that I can edit it. Any help is greatly appreciated!

    put in the dvd go to moives in itunes drag the disk to the window make sure it is a .mov file

  • Guidelines to upload Assets into DAM

    Hi,
       We are in a process of uploading Assets into CQ DAM (AEM 5.6).
    Example folder struture is:
    /content/dam/exercises/test/
    What is the recommended Assets limit that we can upload in 'test' level dam folder.
       I've seen in the google groups that Adobe receomends don't use more than 200 to 250 assets at one level. But we are uploading around 5000 images in a single folder. If it is not recommended, can any one let me know the best practice.
    Thanks
    Siva

    Hello Siva,
    There are various way and completely depends on your project requirement. Offcourse it is not suggested to keep that huge number of file in a single folder. Here i can suggest one good approach which i normally used is as below.
    1. Categorized those assets if possbile lets say based upon your business areas or anything similar. Based on that create your high level of folders
    2. Now under all these folders create sub folders hierarchy like a, aa, ab ac... and b, ba, bb, bc ... and c, ca, cb, cc  and after some level of depth store your assets which makes each folder to have assets in between 100-200.
    I hope above will help you do make some decision.
    Thanks,
    Pawan

  • I'cant load SPRY content into a Frame

    HOw can i load spry content into a frame.. i wrote a code..
    and in the preview version works.. but when i upload to server..
    it's not working.. this my code.. thk
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- Copyright (c) 2006. Adobe Systems Incorporated. All
    rights reserved. -->
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Collapsible Panel Group Sample</title>
    <script language="JavaScript" type="text/javascript"
    src="widgets/collapsiblepanel/SpryCollapsiblePanel.js"></script>
    <script language="JavaScript" type="text/javascript">
    function load_content ()
    if (parent.document.getElementById('main_div')) {
    parent.document.getElementById('main_div').innerHTML=document.getElementById('inner_frame ').innerHTML;
    if (!parent.document.getElementById('main_div')) {
    window.location=('index.html') ;
    </script>
    <link
    href="widgets/collapsiblepanel/SpryCollapsiblePanel.css"
    rel="stylesheet" type="text/css" />
    <link href="css/samples.css" rel="stylesheet"
    type="text/css" />
    <style type="text/css">
    #cp1 .CollapsiblePanelContent {
    overflow: scroll;
    height: 300px;
    .CollapsiblePanel {
    width: 300px;
    .CollapsiblePanelTab {
    font-size: 1em;
    </style>
    </head>
    <body onload="load_content()">
    <h3>Collapsible Panel Group Sample</h3>
    <p>By default the panels in a collapsible panel group
    are open.</p>
    <div id="inner_frame">
    <div id="CollapsiblePanelGroup1"
    class="CollapsiblePanelGroup">
    <div class="CollapsiblePanel">
    <div class="CollapsiblePanelTab" tabindex="0">Panel
    23</div>
    <div class="CollapsiblePanelContent">
    <p>Test 1.</p>
    </div>
    </div>
    <div class="CollapsiblePanel">
    <div class="CollapsiblePanelTab" tabindex="0">Panel
    2</div>
    <div class="CollapsiblePanelContent">
    <p>test 2</p>
    </div>
    </div>
    <div class="CollapsiblePanel">
    <div class="CollapsiblePanelTab" tabindex="0">Panel
    3</div>
    <div class="CollapsiblePanelContent">
    <p>test 3</p>
    </div>
    </div>
    </div>
    </div>
    <script language="JavaScript" type="text/javascript">
    var cpg1 = new
    Spry.Widget.CollapsiblePanelGroup("CollapsiblePanelGroup1", {
    contentIsOpen: false });
    </script>
    </body>
    </html>

    Im not sure if i'm doing it right, but it wont work for me
    var scriptEle= document.createElement("script");
    scriptEle.text = s;
    ele.appendChild(scriptEle);
    is this the exact code witch i have to replace the old one
    with?
    i also added the
    Spry.Data.initRegions(ele);
    on the end of the Spry.Utils.setInnerHTML function
    i havent included the spry related javascripts in the main
    page could tha be a problem?
    actually i've tried to but it did'nt help
    really thanx tha you willing to help

Maybe you are looking for