HTML document in portal

Dear friends,
I got an issue like, my client need to put their HTML document into the portal, its around 300 files. So how to put htis html document into portal. Is it possible to put the html document or not, If not how to make appear HTML document in portal.
Kindly help me
Regards
Suresh

hi
first you need upload the html files int oKM content then you need  to create a iviews  based on this content present in KM content
step 1: uploading the html files
go to content administration->KMcontent->at the right hand side select the document folder->
here u create a new folder by selecting folder menu->new->folder
then your folder will be created under documents folder
doble click on this (now you under documents/your folder path)
under you folder
select folder menu->new->upload
give  name(ex new.html ),description, and select browse to upload the file
follow the same procedure for all the html files
this indicates the u have uploaded all the files properly
now creating a ivews based on the html documents uploaded in KM content
content administration->portal content->select your folder->right click ->new->iview->select KM document iview template->give iview name &id etc
then open the iview for editing
there u can find a property called " path to document" give the value as " \document\<your folder name where u uploaded the html files under KM content>\file name(ex:new.html>
like that u can create all the iviews based on the html documents stored under km content
rgds
srinivas

Similar Messages

  • How to display word document as a HTML document in portal

    Hi
    I developed a portal application in that i am displaying word document using IFrames, from my application i am uploading word document and saving those document in KM
    Requirement is that i need to provide an option to show this word document in html.
    Thanks
    Rudradev.

    Hi Glenn Mendonca
    I thing it is possible
    Even in SDN search results page, we have option called "HTML version" link
    to see the search document in HTML
    see the below url
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fforums%2fsdn_forums%2fthread%7b74687265616449443d39313633%7d.jspa
    i hope passing doucment as a query parameter to com.sap.km.cm.highlightedcontent?DocumentUri=
    might solve this
    pls give your inputs
    Thanks

  • Problem With Creating a Huge HTML document In Portal

    Hallo,
    I am trying to insert a 735 lines long HTML into Portal. When I press the finish button I get the following error message:
    The requested URL /pls/portal30/PORTAL30.wwv_builder.accept was not found on this server.
    If I then go back and take out one of the forms I have in the HTML file and press the finish button, Portal accepts this.
    I am sure the problem is related to the size and not code because I have tested the form alone in Portal and it works.
    Would anyone know of a way around this problem?

    when i write the tow statements the first one didn't run but the second one run
    SQL> select to_timestamp('02/04/08 11:00:00.00 AM', 'DD/MM/RR HH12:MI:SS.FF PM') from dual;
    select to_timestamp('02/04/08 11:00:00.00 AM', 'DD/MM/RR HH12:MI:SS.FF PM') from dual
    ERROR at line 1:
    ORA-01855: AM/A.M. or PM/P.M. required
    SQL> select to_timestamp('02/04/08 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF') from dual;
    TO_TIMESTAMP('02/04/0811:00:00.00','DD/MM/RRHH24:MI:SS.FF')
    02/04/08 11:00:00.000000000 Õ
    when i used the second one in the job this error appear
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'first_job',
    job_type => 'executable',
    job_action => 'C:\Documents and Settings\mohamed.sallam\Desktop\Calculator.lnk',
    start_date => 'to_timestamp('02/04/08 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF')',
    repeat_interval => 'FREQ=HOURLY;INTERVAL=12',
    end_date => 'to_timestamp('02/04/09 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF')',
    comments => '-------');
    END;
    0552: Bind variable "MI" not declared.

  • Using .xsl in javascript for portal .html (document iview)

    Hi,
    I prepared .html document has javascript code in it.
    Javascript code uses activex object to process .xsl for xml operation.
    I used html document in document iview but problem occured.
    I think activex object cause the problem or i gave wrong address  for xsl document.
    If i place xsl document in same folder with html document, how can it be addressed (xsl path)?
    Is there sample html document using javascript code that uses xsl and activex object in it?
    And is it tested as document iview with no problem?
    Thanks.

    I just completed designing a website for my restaurant using Dreamweaver 8. I included my menu as part of the website and now wanted to print it for customer use in the restaurant. The document is in html format.
    You can only print your source code from Dreamweaver. I don't have DW8 installed anymore, but i think it's: File > Print (or Print Code).
    If you want to print how it looks with the HTML rendered, then print it from a browser.
    HTH,
    Randy

  • Print html document

    Hi, I'm trying to print a html document with this following java code but doesn't works:
      public void onActionPrintEncuestaPDF(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionPrintEncuestaPDF(ServerEvent)
         try{
              Robot robot = new Robot();
              // Ctrl+P
              robot.keyPress(KeyEvent.VK_CONTROL );          
              robot.keyPress(KeyEvent.VK_P );          
              robot.keyRelease(KeyEvent.VK_CONTROL);
              robot.keyRelease(KeyEvent.VK_P );
              Thread.sleep(500);
              //Alt+U
              robot.keyPress(KeyEvent.VK_ALT );
              robot.keyPress(KeyEvent.VK_U );
              robot.keyRelease(KeyEvent.VK_ALT );
              robot.keyRelease(KeyEvent.VK_U );
              Thread.sleep(500);
              //entrée
              robot.keyPress(KeyEvent.VK_ENTER);
              robot.keyRelease(KeyEvent.VK_ENTER );
              Thread.sleep(500);
         catch(Exception e){  }
        //@@end
    This is not working because java.awt.Robot is a part of AWT package and intended for the client site, how I can make an action that when the
    client push the print button. Print the html document automatly.
    Regards,
    Gabriel

    I create into KM Content on portal a file called print.html and I put the following code:
    &#65279;<html>
      <head />
      <body onLoad="window.parent.focus(); window.parent.print();">
      </body>
    </html>
    Because window.paren.print(); printed the code of actual iFrame. And into Web Dynpro I created a button that call the following function.
    public void onActionPrintEncuestaPDF(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionPrintEncuestaPDF(ServerEvent)     wdContext.currentPrintElement().setAtrURL("/irj/go/km/docs/documents/print/print.html");
       //@@end

  • Creating a new HTML document - removing "todos"

    When creating a new HTML document in a KM repository (i.e. Folder > New > HTML File...), I get a form where I name my HTML document and enter the content etc. I can also choose, from a dropdown box, the document type between a Normal document or a "todos". My questions are the following:
    1) What is "todos" in this case? (I don't think it means "To Do's".)
    2) As a portal admin, how can I remove "todos" from the dropdown box or disable the dropdown box completely.
    Thank you

    Hi Mick,
    sorry, quite late, but better than never
    > how can I remove "todos" from the dropdown box or
    > disable the dropdown box completely.
    System Administration - System Configuration - KM - Configuration - CM - Global Services - Resource Types - Delete "todos".
    > What is "todos" in this case?
    > (I don't think it means "To Do's".)
    I think that in fact some SAP developer wanted to mark this place that there would be more work to be done (Resource Types to be defined or so).
    Hope it helps
    Detlev

  • HTML Files in portal that access relative images

    We put html files on some of our pages. These open up and display their contents, which include images. These images we store on the same portal page (but hide them) so the html page has access to them in the same directory. So, we basically, use a portal page as a web server directory to put the html, css, images, etc.
    Is this going to break in a future version of portal?
    According to:
    http://download-west.oracle.com/docs/cd/B14099_19/portal.1014/b13809/apdxurls.htm
    "Following this release, path-based URLs that follow the following syntax will be obsolete"
    That sounds to me like my above scenario will break. Yes?
    Thanks.

    Why do you use html files exactly ? Because, we have legacy HTML documents that are from our pre-portal intranet days. We were able to just stick them into a portal page and they worked. And, the nice thing is that they can link to each other with relative links within the same directory/path. So, it's not just images. We really don't care that much about images, that was just an example that would be easy for people to understand. Using the /images folder does not solve most of problem. And, like I mentioned before, we also have PDFs with PDF-to-PDF web links where they all link to each other with relative links within the same directory. We also have some Flash (swf) files that take advantage of page-path URLs.
    It's not like our whole portal is made up of HTML documents. But, we used many of them instead of Word or PDF documents, because that's what we had from before. So, in most cases we can convert them to PDFs. But, there are some cases where we have mini websites made up of HTML files all stuck into a Portal page. These, and the PDF-to-PDF linked documents are a bigger problem.
    This is a major headache that we are not looking forward to.

  • How to Create HTML page from portal

    Hi
    I have a requirement to create html pages from portal.
    There will be an author who can choose document type as HTML
    and then he will write html codes on saving it should be saved as HTML doc in UCM.
    and publisher should be able to display it on portal(may be using content presenter).
    please help me in this. I know there is rich text editor task flow which can save a doc as doc file.
    and in spaces we have option of creating HTLM file but i don't know how to do it for my portal.
    Thanks

    A better way would be to create the page using approach in this blog:
    https://blogs.oracle.com/ATEAM_WEBCENTER/entry/content_presenter_cmis_complete
    That way the page can be edited inline and the html author need not upload html to ucm everytime.

  • XML forms show content of HTML document

    Hi all,
    I want to show the content of a html document stored on portal KM in the SHOW form. Can this be done? The user can browse in the EDIT form to this html document and store its path. By using a label I can only show the document path or make a link to the document. I'm unable to show the docs content.
    How can this be done?
    Thanks,
    Frederik

    I think this could be done by directly editing the XSL.  Unfortunately making changes this ways renders the forms unmanagable because you'll lose your changes when you try to use the forms builder after making your changes.
    As for how you can actually do this in XSL, you'll probably have to research that more to be sure.  I think you can use a document() function, but I'm not really an XSL pro. 

  • Upload HTML document...

    When I try to upload a HTML document into a folder using Upload iView everything works fine and the portal reports "... document uploaded", but the document does not appear inside the folder. I guess it gets deleted immediately. Strangely, this problem
    applies only  to  HTML documents. Is it because of some content translation malfunction?
    Thank you for your comments.

    The problem is solved. It was because of a repository service with the code
    if (resource.getContent().getContentLength() < 0)
      resource.delete();
    Somehow, this statement always returned -1 for HTML files (some filter probably is screwed up!)
    I changed it to:
    if (resource.getUnfilteredContent().getContentLength() <=0)  ....
    Regards.

  • WYSIWYG HTML Entry for Portal

    People,
    We have a requirement for a WYSIWYG HTML entry "widget" to enter in html data into portal rather than using the basic text entry field where you have to mark up the text yourself in pure html.
    Internet Explorer has a ActiveX control that can be accessed through JavaScript such that the data entry on screen is looks like an editor like FrontPage/DreamWeaver but underneath it stores the actual HTML code. I would like to use this editor instead of the built in basic HTML Form based textArea.
    Has anyone figured out a way to do this?
    null

    If you research DHTML components and MSHTML components, you'll find the information regarding the built in object (no cost, no product -- custom coding required to build out the interface and any custom menu requirements needed.)
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmshtml/html/mshtmleditplatf.asp
    http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/editing/activateeditor.asp
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcsample/html/vcsamHTMLEdSampleWrapsInternetExplorerMSHTMLEditingControl.asp
    http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/mshtml/tutorials/tutorials.asp
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcehtml/htm/ceconMSHTMLPrototypes.asp
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcehtml/htm/ceconMSHTMLFunctions.asp
    Here's a couple articles too:
    http://www.euromind.com/iedelphi/EditHTML.htm
    http://groups.yahoo.com/group/delphi-dhtmledit/
    http://www.byte.com/documents/s=1113/byt20010806s0004/20010806_udell.html
    http://activex.adsp.or.jp/english/specs/Sweeper_Object_Model.htm
    What I know is that you need to search for the menu bar icons to add to the content window. Some javascript required to bring it all together.
    ActiveEdit from cfdev also has promise, it deploys a JSP based HTML edition (With Source Code). Integrating it with Oracle Portal 3.0.9.n release might prove challenging as the content api is only published for PLSQL implementation.
    http://www.cfdev.com/activedit/jsp.cfm
    Any one interested in collaborating in building this solution let me know.

  • Preview of HTML document in KM Navigation iView

    Hi all!
    I need your help. I would like to create layout set which would be able to display tree on the left side and preview of HTML document on the right side of content area. If I click on HTML document in the tree I need to see his preview. I thought that I can resolve this by "Explorer and Preview" profile. But unfortunely it doesn't work. Has someone any experience with the profile? Or can someone advice to me how create new layout set?
    I found this links, but they didn't help me much.
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/02573d675e910fe10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/96/248cd68f23774fb74dfc18a2994d8f/frameset.htm
    Thank you in advance for any reply!
    Regards
    Zbynek

    Hi Saurabh,
    Using the presentation settings in Details can sometimes
    be tricky since it remembers the context of which iView
    called it. Make sure you open the details out of the iView
    in which you want the customizations to be in effect.
    Otherwise, changing it in the configuration is a
    bit more straightforward in its effects.
    Regards,
    Darin

  • Safari won't open webarchives or html documents stored on computer

    I occasionally save a webpage to my computer as a .webarchive for later usage, but anytime I try to open them safari takes me to a completely different page. It brings me to my Top Sites page that shows all of my most frequently visited pages. I don't understand why safari would do this since the way the document is created is by saving the page directly in safari (command + S). I noticed the problem initially when Safari wouldn't open an html document that I had created and stored on my computer. I used the page as my homepage because it had links to all of my most frequent websites and because I liked having my own creation as my home page (that doesn’t really matter, though) and then out of nowhere when I opened safari my homepage had been changed to Yahoo (my default engine) and the html document wouldn’t open at all. I thought that maybe the problem was due to a recent update because I noticed that two new tabs were added to the toolbar (ebay and amazon), but I don’t understand why an update would make it so that .webarchive files, created by safari, wont open. I checked my safari version, it is 7.0.3, and if it helps, the html documents that won't open were made with Adobe Dreamweaver. I would really appreciate if someone could tell me what is happening because I do need to be able to open the .webarchive files I have saved in the past. Thank you.

    Carolyn, I've told you repeatedly, that site's instructions are crap. They absolutely do not fully remove the Genieo adware. In fact, the uninstaller that site refers you to will actually install components of the adware that were not already present! For the same reason, it makes no sense to rely on Genieo's instructions. I am completely mystified as to why you continue to post these suggestions.
    To properly remove Genieo, see:
    http://www.thesafemac.com/arg-genieo/
    (Fair disclosure: The Safe Mac is my site, and contains a Donate button, so I may receive compensation for providing links to The Safe Mac. Donations are not required.)

  • Print only a specific control or indicator on a front panel to HTML document

    Is there any way to print a specific control or indicator (not the whole front panel) to HTML document? I am trying to print a report that has a graph and some indicator value on it.

    There is a VI called "Append Control Image to Report.vi" which will allow you to do this. It's located in the Functions>>Report Generation pallette. Take a look at this and see if it's what you're looking for.
    J.R. Allen

  • How can I embed a HTML document onto my webpage?

    What I am trying to do: I am trying to make an image that has links to urls from different parts of the image.
    What I have done so far: I have built a photoshop image to embed on my webpage, following the instructions offered by many online forums, but cannot actually embed it as it isn't a url.
    Firstly, I sliced up an image, adding url's and alt tage etc to each slice. Then I did:
    File > Save for web > (Prest: JPEG High) > Save > (entered my file name) Format: HTML and Iamges > Save
    When I locate my file where I saved it, it has been saved as a Chrome HTML Document, but I can't then embed this on my website, using the 'embed code' tool I normally use. I presume this is because it doesn't begin with http:// ?
    Here is the HTML document I have made: file:///C:/Users/Daniel/Desktop/UK%20map%20interactive/Afternoon/UK-map-locations.html
    (If you can see this) This is the image I want and the links are working too but it's getting this onto an existing webpage.
    Other pages I have seen have talked about iamge maps, but I take it using the slice tool is better for what I am trying to acheive?
    Any suggestions/help would be greatly appreciated.

    One: Users can't see links on your local desktop. You would have to upload the files somewhere. Two: Images generally don't contain links. URLs are meta information build around the image in HTML. Three: Because of the previous point, whether you use sliced images or an image map doesn't matter, if you have no way of inserting the information into the native HTML structure of the web pages. If at all, you would open the HTML file in a suitable editor like Dreamweaver (or even a basic text editor) and copy&paste it into the web page sourcve code, but you'd still have to upload the image(s). The rest we can't know. You have not provided any link to the web site or told us which hosting provider you use. From your description it sounds like one of those "free" providers that restrict user's options to customize to the bare minimum and the rest is based on templates and plastered with advertising. In any case, the solution is not in Photoshop and you would have to read up on web design basics, HTML, CSS and al lthat on a more general level or review your hosting provider's guides on how to set all this up.
    Mylenium

Maybe you are looking for

  • Extensions are all greyed out

    All extensions that I have are all greyed out.  I can navigate to them to install, but obviously I can't click on ANY of them.  Never had this before. Using all CC products on Mac ver 10.8.4 Thank you for any help!!!

  • Need info on FSB speeds

    I have the MS-6728.  The manual says "supports FSB 533 and 800 MHz"  The Bios setup says my speed is 133. Am I suppose to change that value in Setup to make the board run correctly? Is it suppose to say 533? I think I'm missing basic info and if you

  • How to Load SwingApplet in IE 5.0 Browser

    Hi, guys. I had a error that my SwingApplet cannot be instantiated. I found why this problems occurs and solved. MS IE 5.0 supports swing 1.1 so Applet compiled by Swing1.2 is not work properly. They have different swing mechanism, even you didn't us

  • Adobe Flash issues with camera

    I use several web site video chats usually.  Since installing Lion the Flash permissions screens are totally non-responsive.  I am even unable to clear out of them by selecting Deny.  Totally non-functional.  Tried to download a newer version of Flas

  • Support for Cascading Style Sheets?

    I've noticed Flex 2 beta 2 supports CSS 3 but not really very good. There are lot of problems with it, anyone knows more about this issue?