IFrame accessing the KM content documents

Hi Folks
I need a detail clarity on IFRAME
i am trying to access my KM documents residing at KM Content via my IFRAME.
//PATHFILE = has my document Path
<IFRAME SRC='/irj/go/km/docs<%=PATHFILE%>'    WIDTH='100%' HEIGHT='100%' frameborder='0' scrolling='no' >
I developed a PDK application , Using  IFRAME i am able to access the document of type txt , pdf and all image files
But i am not able to access the Microsoft documents (like MS word , MS PPT, MS Excel)
The thing i am looking is, i want to open all the microsoft documents in the same window (i dont want the OPEN ,SAVE , CANCE popup window)
Can any one throw some pointer over this...........
Thanks
Kumar T

Closing the thread as I didnt find any reply on it.

Similar Messages

  • Accessing the xml content

    can any one help me to access the xml contents using a servlet or a java code.
    eg: there are some tags in xml and i want to access those contents from those tags and display it..
    if u can please mail me to:
    [email protected]

    Hi Suresh
    I need the same one for my requirement if u have please post to this site or send me an email .
    [email protected]
    I can able to parsed one structured XML file using SAX
    Sample code :
    // ===========================================================
         // SAX DocumentHandler methods
         // ===========================================================
         public void startDocument() throws SAXException {
              logger.info("Start of document");
         public void endDocument() throws SAXException {
              logger.info("End of document");
         public void startElement(String namespaceURI, String localName, // local
                   // name
                   String qualName, // qualified name
                   Attributes attrs) throws SAXException {
              elemName = new String(localName); // element name
              if (elemName.equals(""))
                   elemName = new String(qualName); // namespaceAware = false
              tagPosition = TAG_START;
              // Set the string for accumulating the text in a tag to empty
              elemChars = "";
              // If the element name is "row", create a new row instance
              // If the element is "indexxid", "ModelPrice", or "ModelSpread",
              // the value will be read in the method "characters" and stored.
              if (elemName.equals("row")) {
                   row = new IndexRow();
                   numRows++;
              // logger.info("Number of numRow:"+numRows);
         } // end method startElement
         public void endElement(String namespaceURI, String simpleName, // simple
                   // name
                   String qualName // qualified name
         ) throws SAXException {
              elemName = new String(simpleName);
              if (elemName.equals(""))
                   elemName = new String(qualName); // namespaceAware = false
              tagPosition = TAG_END;
              String indexId = new String();
              Double dblVal = new Double(0);
              // If element name is "row", put the current row in the map for row
              // instances
              if (elemName.equals("row")) {
                   if (numRows <= 5) { logger.info("Row is: " + row.toString()); }
                   //ABX
                   //indexRows.put(row.getIndexxId(), row);
                   if (family.equals("ABX.HE")){
                   indexRows.put(row.getIndexREDId(), row);
                   else {
                        //CDX ITRXX
                             indexRows.put(row.getIndexxId(), row);
              } else if (elemName.equals("IndexID")) {
                   row.setIndexxId(elemChars);
              else if (elemName.equals("ModelPrice")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setModelPrice(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("ModelSpread")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setModelSpread(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("CompositePrice")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setCompositePrice(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("CompositeSpread")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setCompositeSpread(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("REDCode")) {
                   row.setRedCode(elemChars);
              else if (elemName.equals("Name")) {
                   row.setRowName(elemChars);
              } else if (elemName.equals("Series")) {
                   row.setSeries(elemChars);
              } else if (elemName.equals("Version")) {
                   row.setVersion(elemChars);
              } else if (elemName.equals("Term")) {
                   row.setTerm(elemChars);
              } else if (elemName.equals("Maturity")) {
                   row.setMaturity(elemChars);
              } else if (elemName.equals("OnTheRun")) {
                   row.setOnTheRun(elemChars);
              } else if (elemName.equals("Date")) {
                   row.setRowDate(elemChars);
              } else if (elemName.equals("Depth")) {
                   row.setDepth(elemChars);
              else if (elemName.equals("Heat")) {
                   // logger.info("Chars for element " + elemName + " are '" +
                   // elemChars + "'");
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setHeat(dblVal);
                        indexId = row.getIndexxId();
    //          ABX.HE
              else if (elemName.equals("IndexREDId")){
                   row.setIndexREDId(elemChars);
              else if (elemName.equals("Coupon")){
                   row.setCoupon(elemChars);
              if (elemName.equals("Ontherun")) {
                   row.setOnTheRun(elemChars);
         } // end method endElement
         public void characters(char buf[], int offset, int len) throws SAXException {
              // If at end of element, there will be no characters
              if (tagPosition == TAG_END) {
                   return;
              // The characteres method may be called more than once
              // for an element if the internal buffer fills up.
              // Append the characters until the end of the element.
              String strVal = new String(buf, offset, len);
              elemChars = elemChars + strVal;
         } // end method characters
    } // end class MarkItIndexLoader
    but the problem is i want to parse any XML file means any Elemets would be change any time using SAX .In the above example
    else if (elemName.equals("Heat")) {
    else if (elemName.equals("IndexREDId")){
    } else if (elemName.equals("Maturity")) {
    like above I am doing hard code so i don't want hard coding the elements names I want to read any element name and value dynamically.
    Dynamically i want to read the root and child elements
    EX: I can give any XML file like
    Student.XML: <root>..</StName>..</StAge>...</root>
    Employee.XML: <root>..</EmpName>..</EmpAge>...</root>
    CdCatalog.XML: <root>..</Cdtitle>...</CdNumber>...</root>
    I need one java program can ready any type of XML file elements and send to the Database table.
    Please any one done like this task please suggest some reference links or books or sample snippet which can help me to develop program in my requirement.

  • Which cable (original apple usb or bmw y) shall i use to connect my 4th gen iPod photo 60 gb to bmw f10 (with com box) is it going to work with the apple usb cable and how long does it take till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

  • My macbook pro crashed after installing maverick. I lost all my photos however the iPhone iPhoto app still has these photos so how can i access the package contents to recover these photos?

    My macbook pro crashed after installing maverick. I lost all my photos however the iPhone iPhoto app still has these photos so how can i access the package contents to recover these photos?

    We'll need to know more to beable to help. Do you want to try to restore your photos from your iPhone to your Mac, or try to recover the photos from the old iPhoto Library on your Mac?
    What is the situation of your Mac now? In hat way did it crash? A hardware problem with the drive? Does the system not start properly? Does iPhoto not launch? Do you still have the iPhoto Library on your mac or a backup, so we could try to rescue the photos there?
    What versions of iPhoto are on your iPhone and your Mac?
    however the iPhone iPhoto app still has these photos so how can i access the package contents to recover these photos?
    On the iPhone you cannot access the "package contents" - IOS hides the file system from the users. To restore photos from your phone share all iPhoto photos to your Camera Roll, that are not already in the Camera Roll,  and then connect the iPhone via USB and import the Camera Roll to iPhoto or Image Capture. Or use any of the other sharing methods described on thos manual page: see:  Ways to share photos http://help.apple.com/iphoto/iphone/2.0/?handbuch#blnk7d8f763e
    To retrieve photos from a corruptrd iPhoto Library on your Mac we need to know the version number and more about the "crash" you experienced, the state of your mac, the system, the data. Please post back with more details.
    -- Léonie

  • Not able to access the floating content from UCM into WLP using VCR

    Hi,
    I am facing an issue while accessing the content ( floating content i.e CSS,content,javascript) from UCM 11g into WLP 10.3.2 using VCR. But at the sametime, i am able to access the content once its moved to contribution folder.
    Please let me know is there any limitation in VCR i.e VCR can read the content from UCM once its moved to Contribution folder.
    Thanks a lot,
    Suresh

    Hi
    Do you have sample code , how to refer css stored in UCM. If you have please share it

  • Accessing the newly created document number

    Hi,
    I was able to create an invoice successfully.
    I am using the ICOMPANY object to capture the newly created document number as comp.getnewobjectkey().
    But the number i get is different from what is created in the system.
    For example. i receive the number as 28590 from method comp.getnewobjectkey() but the actual invoice number in the system is 28587.
    Any ideas on why this is happening?
    Thanks
    Ramakanth

    Hi Ramakanth,
    GetNewObjectKey will return you the DocEntry value not the Docnumber.
    If you need the docnumber, run a query. "SELECT DocNum FROM OINV WHERE DocEntry = 28590
    Regards
    Edy

  • HT1539 why does the download only show in shared content on my ipad? and can i access the shared content without wifi ( example driving in car?)

    I am using the icloud from a pc, and sharing with my ipad ( 1st generation) new to this. I have downloaded some digital copies into my itunes account. On my Ipad one shows under movies and 2 show under shared. Y is this and can shared content be accessed without being contected to my home wifi?

    I did a little bit more research, and if I go into iTunes and choose to display TV Shows and Movies as a List, I get a nice, sortable list of movies and shows to which I can add columns. A column that you can add is called "iCloud Status."
    This column shows either Purchased or Ineligible for all of the titles. And this is where things get really confusing.
    Sure enough, the items that are "missing" from the iPads, iPhone, Apple TV, etc. are the Ineligible items, but that's not the confusing part. What IS confusing is which items are Ineligible.
    A good example is my Deadliest Catch collection -- I own the entire season 3 and 4 of DC; season 3 is Purchased and Season 4 is Ineligible. Back to the Big Bang Theory, I have five episodes from Season 4 -- 3 are Ineligible and 2 are Purchased.
    It makes absolutely no sense that episodes from the same season of the same show would be a mix of Purchased and Ineligible!

  • Attach a selection screen to a Tcode before accessing the table Contents

    Hi All,
         I have a requirement where when we access table from se16 we get a default selection screen...So the same selection screen should b displayed when that table is accessed directly with a transaction code attached to it..i mean the path is Tcode -->selection screen --> table/view contents.

    Hi srinivas,
    first let us discuss about your requirement.when you go to transaction se16 and enter a table name and then when you press enter you will get a selection screen to cretae or view contents of that table.you want to get that selection screen by entering any tcode in command bar.
    if this is your requirement please follow these steps.
    1)go to se16
    2)enter the table name and then press enter.you will get a selection screen for that table as we discussed
    3)in the selection screen go to menu item
      System->Status...
    you will get another screen
    4)in that screen you will see
    in SAP data->in Repository data->Program(Screen)
    note that program name
    5)go to se93(to create a transaction)
    6)enter a tcode which you like and press create
    7)  you will get another screen and in that screen select the radio button
       Program and selectio screen(Report Transaction)
    8)you will get create report transaction screen
    9)in that screen in program text box enter the program name that you noted earlier
    10)check all the checkboxes in GUI support
    11)save,check and execute the transaction.you will get the selection screen that you get when you use se16 for that table.
    please check the screen by entering the tcode that you created in teh command bar.
    please reward points if useful.

  • How can I access the full content of a stored email?

    A friend sent me a recipe and I saved the email but now can't open it - or even find the specific message, which is a part of a string.

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    * [[Troubleshooting extensions and themes]]
    Check and tell if its working.

  • Set up Exchange Hybrid - Unable to access the Federation Metadata document from the federation partner

    Hi,..
    I am configuring Exchange Hybrid deployment with Office 365. On step Set up Exchange Hybrid wizard, I get an error message as bellow :
    Need help please :)
    Thanks,
    IH

    Hi,
    Please make sure a federation trust is established. Creating a federation trust is one of several steps in setting up federated delegation in your Exchange organization.
    And please use the MetadataURL parameter to specify the URL where WS-FederationMetadata is published by the Microsoft Federation Gateway to check result.
    Besides, here is a related thread for your reference.
    http://social.technet.microsoft.com/Forums/exchange/en-US/70baa989-87c2-4d3e-990a-0ff37a05c746/newfederationtrust-not-connecting
    Hope this is helpful for you.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Accessing the content of the MediaPlayer for filtering purposes

    Am I correct in assuming that you can access the content of an element in the MediaPlayer so that you can apply a filter directly to it? If this is possible how can this be done? So far all my attempts to access the media content directly have failed. Help needed, Please.

    The framework has a useful utility class (called ListenerProxyElement) which manages the registration of trait add/remove events that Ryan alludes to.  You could subclass ListenerProxyElement and override the processViewChange method, which exposes the DisplayObject as a parameter, to apply your filter.  The ExamplePlayer sample app has a number of examples that use ListenerProxyElement for similar cases (i.e. to non-invasively alter the behavior of a MediaElement).

  • Is there a way to access the "Creative Cloud Clipboard" repository outside Adobe Line/Sketch Apps?

    Is there a way to access the "Creative Cloud Clipboard" repository outside Adobe Line/Sketch Apps?
    For instance via (macbookpro) web, local directory (CC desktop), or mobile web? As opposed to Utilizing the feature purely in Adobe line/sketch?
    I mean... I know i could just take screen shots... via the iPad's protocol. However, that would defeat the purpose of creative cloud.
    The point of accessing the creative cloud clipboard, is so that I can create Time-Lapse .GIF's of my drawings, Using the "timeline" feature (undo)....which is amazing feature btw.
    Honestly the solution for me... would be to have an option to export a .GIF (animated), .tiff sequence, or video file (m4a mov). I would say export options would be 1. File Size & Type (Context...) 2. Detail, # of Slides (How long is your timeline, what do you want to show, what level of detail?) 3. Share (Behance, Creative Cloud Files, MMS, iMessage, etc... 4. Open in... Photoshop, Aftereffects etc...
    I think this would be great for..tutorials, multi-media, prototyping (wireframes, character design, etc). So, i'm not saying this should be a heavy set...focal point of the application, after all an animation app all itself would be nice. However, I think a feature like an "interactive timeline" would push users to be even more creative, by hacking, creating ghetto rigged *** backwards ways of prototyping that...actually might be more convenient. This is the story Adobe is trying to tell, the story of process, whats in your head... in the moment. Thats why behance is integrated, because process & feedback + exposure are essential to developing as a creative, so Adobe has put together a great platform...for its users. So, yeah...Adobe.. here's your chance to gain a greater insight into creative process, and integrate it directly into the creative cloud platform. I think it would be huge for Ink & Slide , Behance, and Student-Teacher / Designer- Company relationship.
    "Share | Project Timeline "  "Intervals | # of images"   "Crop | Length (time)"   "Crop | Project Area (artboard?)"
    Yeah this question took a left turn...but hey.... either or.
    EDITS............
    ***You can copy images to creative cloud files....via the share function in ADOBE SKETCH... thats how I made the .gifs im going to attach.***
    ***However, in ADOBE LINE, if you try to copy multiple images of the same project, they do not receive unique filenames, thus replacing all images in the saved sequence****

    First, to answer your initial question - no there is no way to access the clipboard content outside of the apps at this time.
    The idea of exporting a timelapse is very interesting, and something we have been thinking about, but there are already some decent ways to do this. Check out this video of a drawing in Line created by Brian Yap Adobe Ink and Adobe Line Illustration - YouTube
    You can create this kind of video using several of the available apps that let you display your iPad screen on your computer using Airple. Some examples are Reflector http://www.airsquirrels.com/reflector/ and AirServer http://www.airserver.com/

  • Accessing the 'text' in a TextFlow instance?

    How do I actually access the textual content of a TextFlow object?
    When there is a single SpanElement in the TextFlow then I am able to use ...
    mySpan.text
    But if I have added multiple SpanElements to the ParagraphElement then how do I get the entire textual content so that I can store it in a String variable.
    I am also having problems accessing the entire text when the user has pasted in to an editable field, I presume this is because of multiple SpanElements being created.
    Is there anything that is the equivalent to the old ...
    myTextField.text
    Thanks in advance,
    Adrian

    Hi Alan,
    Thank you so much for your help!!!
    Just for the record, here is a working example ...
    import flashx.textLayout.container.*;
    import flashx.textLayout.elements.*;
    import flashx.textLayout.edit.*;
    var config:Configuration = new Configuration();
    config.manageEnterKey = false;
    var textFlow:TextFlow = new TextFlow(config);
    var para:ParagraphElement = new ParagraphElement();
    var span1:SpanElement = new SpanElement();
    span1.text = "Hello ";
    span1.fontSize = 12;
    var span2:SpanElement = new SpanElement();
    span2.text = "World";
    span2.fontSize = 16;
    para.addChild(span1);
    para.addChild(span2);
    textFlow.addChild(para);
    var cc:ContainerController = new ContainerController(this, 550, 400);
    textFlow.flowComposer.addController(cc);
    textFlow.flowComposer.updateAllControllers();
    trace("textFlow.numChildren:"+textFlow.numChildren);
    // OUTPUT: 1
    trace("para.numChildren:"+para.numChildren);
    // OUTPUT: 2
    trace("textFlow.getText():"+textFlow.getText());
    // OUTPUT: Hello World

  • Https access to Sap Content Server 620 with R/3 46C

    We are trying to access the Sap Content Server 620 via Https.
    We do not want to administer it via HTTPS, (as we know CSADMIN doesn't support Https in rel. 46C as for note 712332). We want to do in way that the users when do check-in/out of originals these go across the
    network using Https instead Http.
    According note 712330 it should be possible.
    Anyone already did it ?
    Any suggestions ?
    NOte 506314 is not clear. We are in doubt how we applyed it.
    What we did:
    0)activate the SSL on the Sap COntent Server Web Site, requiring and installing a CA certificate.
    1)On the R/3 server in tx OAC0 with %HTTPS filled up the
    two boxes with "%HHTPS
    required"                                           
    1)unpacked the Sap criptolibrary and copied all the files (including those in ntintel subdirectory created during the unpacking) under c:\Programmi\Sap\Frontend\Sapgui on a frontend PC.                                                                               
    2)set the env. variable SAPHTTP=c:\Programmi\Sap\Frontend\Sapgui on 
    Frontend PC                                                                               
    3) from c:\Programmi\Sap\Frontend\Sapgui we created both the SAPSSLC.pse and the SAPSSLS.pse file with the command  :            
    3) from c:\Programmi\Sap\Frontend\Sapgui we created both the          
    SAPSSLC.pse and the SAPSSLS.pse file with the command  :              
    sapgenpse get_pse -noreq -p C:\Programmi\SAP\FrontEnd\SAPgui\<PSE-NAME>
    CN=localhost                                                                               
    4) we run the test: saphttp https://itmif069
    from the frontend to the server where the Content Server is (itmif069). We recive the error:
    trc file: "dev_http", trc level: 2, release: "620"
    Fri Oct 08 12:26:46 2004
    [2256] sccsid: @(#) $Id: //bas/620/src/krn/ftp/http.c#26 $ SAP
    [2256] HTTP Start : argc - 2 a0 - saphttp
    [2256] https//itmif069
    [2256] SECUDIR=C:\Programmi\SAP\FrontEnd\SAPgui
    <<- SapSSLSetTraceFile()==SAP_O_K
    =================================================
    = SSL Initialization
      SapISSLComposeFilename(ssl_lib): using default "sapcrypto.dll"
      SapISSLComposeFilename(server_pse): using default "SAPSSLS.pse"
      SapISSLComposeFilename(client_pse): using default "SAPSSLC.pse"
      SapISSLComposeFilename(anon_pse): using default "SAPSSLA.pse"
    = found SAPCRYPTOLIB  5.5.5C pl16  (Jun 10 2004) MT-safe
    = found SECUDIR environment variable
    = using SECUDIR=C:\Programmi\SAP\FrontEnd\SAPgui
    =  secudessl_Create_SSL_CTX():  PSE "SAPSSLA.pse" not found,
    =      using PSE "SAPSSLC.pse" as fallback
    = The Server SSL_CTX
    =    provides this ordered list of 9 ciphersuites:
    =       1.  SSL_RSA_WITH_RC4_128_SHA
    =       2.  SSL_RSA_WITH_RC4_128_MD5
    =       3.  SSL_RSA_WITH_3DES_EDE_CBC_SHA
    =       4.  SSL_RSA_WITH_DES_CBC_SHA
    =       5.  SSL_RSA_EXPORT_WITH_DES40_CBC_SHA
    =       6.  SSL_RSA_EXPORT_WITH_RC2_CBC_40_MD5
    =       7.  SSL_RSA_EXPORT_WITH_RC4_40_MD5
    =       8.  SSL_RSA_WITH_NULL_SHA
    =       9.  SSL_RSA_WITH_NULL_MD5
    = Success -- SapCryptoLib SSL ready!
    =================================================
    <<- SapSSLInit(, read_profile=0)==SAP_O_K
    ERROR => [2256] URI https//itmif069 [http.c       774]
    ERROR => [2256] Connect to Host  Port 443 error: NIECONN_REFUSED
    [http.c       777]
    We do not know if the criptolibrary ha to be instyalled to the R/3 server to.
    We do not know if the CA certificate instalelled on the Sap COntent Server web site has to be installed on the R/3 server too.
    Any suggestion ?
    Regards

    Caro Mauro,
    I'm more or less in the same situation right now.
    Taking into account that you ask for help on this subject last 2004 Oct. I suppose that you have probably solved the problem.
    Please can you help me with the solution implemented.
    Find below my current work e-mail adress
    [email protected]
    Thanks in advance,
    Best regards, Xavier Grau.

  • Problem in loading the Portal Content Directory Structure & Detailed Naviga

    Hi
    we have installed EP6 SP16.When we are opening any tab detailed navigation is not loading.Some java sript errors are coming.Here iam pasting those errors.
    Please suggest asolution.logged in as super admin
    java script errors
    access denied.
    null or not an object.
    object required.

    Hi Gopi,
    A. <b>Pls check your browser settings</b>.
    We did face similar problems like Java script errors throwing msg's
    " null or not an object.
    object required"
    Hope you are using IE. If so,
    1. Go to  Tools - > Internet Options - > Advanced .
    Enable " http1.1 through Proxy Connections".
    2. Increase the Cache.
    B. <b>Check whether the user has permissions to access the portal content</b>
    Go to Content Administration - > Portal Content.
    Select Portal Content and right click. Select Permissions and check out.
    Regards,
    Venkat.
    [Pls reward points if useful]<b></b>
    Message was edited by: venkat

Maybe you are looking for