Images in a KM Document

I have created a KM document iview for a KM document which refers to an image within the same folder. The problem is that the image is not showing up in the iView. Though the image shows up if its a url iview. Does anyone know how I could acheive this without it being specific to the hostname as we would not like to modify these documents when we move to dev and production

I have pretty much tried the same thing. It works fine. I have created a test document into which I have inserted an image which exists in one of the KM folders. I have created a KM Document IView and works fine.
How is the image referenced in the document? When you create a KM document you can insert the image directly.
If it is referenced right, the image URL may look something similar to the following..
http://hostname:port/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/yourfolder/image.gif
You can transfer all the KM content using several methods.
One way is by using ICE.
Hope this helps..

Similar Messages

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • How do I hide the file names/path names of embedded images in a PDF document?

    I created a PDF document from a Word document, and the problem is that the PDF document shows the file names and path names for all of the embedded images in the PDF document. I don't want that information displayed. I don't want to send the PDF out to clients and have them read the names I've assigned to those images, plus it looks messy. And I've lost many of the original image files so they only exist in the Word document, thus I can't go back and rename them. I searched the internet for an answer but I couldn't find one anywhere.

    When you create a tagged (accessible) PDF file from Word, placed bitmap images will use their filename as the "ALT text" if you don't define something else for the text to say, because an image without any ALT text is a failure against the accessibility standards. You can't change that default action, so you should put your own meaningful text into the ALT field for each image - which is what you should be doing anyway if the PDF is standards-compliant.
    You can can set the text in Word, but it depends on your version as to where the dialogs are - Google for it - or you can change/delete it in Acrobat using the tags navigation pane on the left side of the window (right-click the sidebar if it's not visible). Drill down through the tags structure to find the "<Figure>" tag you want to change, right-click and choose Properties, then put something in the "Alternative text" field. This process isn't something you can easily automate, but if you don't need tags at all, you can save without tags (or print to PDF).

  • I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible?

    I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible? In a nutshell I want to point the link to an image in a directory that uses just part of the address.

    I know this is something you can do in Maya with linked files. I guess InDesign just isn't there yet.
    MW Design -  Yeah I think "Relative paths" is the right term! I want to create a Layout with an image in the center of the page - and then duplicate my folder structure with that file. With that, I want to replace the Linked image file with a diferent image file of the same name. In effect having multiple files of the same layout with different images.  I hope that made sense.  

  • Image resolution for converted documents and images

    We are converting documents from several different formats to PDF.  We have a requirement that the images must be 300 dpi when converted.  I turned off the down sampling option in PDF settings.  However, the images are all coming out at 72 dpi. So I have some questions.
    Is there a way to control the dpi of a converted image?
    How about an image embedded in a document?
    Is there any easy way to check the dpi of an image in a PDF?  The only way I've found to check the image dpi is use preflight in Acrobat.
    -Kelly

    No good.
    I've followed the instructions 3 times to the letter and it still opens without any mention of a password request. In fairness, its exactly the same process I followed with the Google instructions so I am at a complete loss with this one.
    Maybe my Macbook is configured wrong somewhere. I'll have to take it in to the Apple Store when I can get up there and see if they can work it out.
    Thanks for the assist anyway Allan, I'm sure I'll get it working one way or another
    Maffstar

  • Last image placed in the document comes up as being modified constantly

    I have an indesign issue.
    Running CS4 (6.06) and CS5 (7.0.4)
    On snow leopard  10.6.8
    On a Mac Pro Quad-Core Intel Xeon
    My problem is that when I have a document with images in for some reason it seems that the last image placed in the document comes up as being modified.
    I do the required update everything appears up to date save the job and the same link will again show as being modified, so I get in to an infinite loop.
    This happen with documents saved locally and on a server, with documents I created and documents I have picked up form other artworkers.
    It is not an issue with specific link as we have seen this in many linked images, I tried to identify a trigger for this problem.
    I took 4 images placed them into a document save locally in my desktop opened closed the document after each image was placed, it work fine for all 4 images on there own. I added a text box to my document saved and the last image placed then flagged are being modified in my links panel, I deleted the image that was flagged as modified from the document and saved, as soon as I saved the next image in placed order now came up as being modified (this image was not flagged and being modified when I have 4 images placed).
    If I remove the text box from this document at any point then no images are flagged as modified.
    Just to confirm. This in not based around one document, specific images or one mac. I didn’t have this issue with 10.5.8 and Older CS4 on the same machine.
    Please help??

    You said this is not an issue on just one machine. Does this mean that other machines are alos showing this behavior?
    The first thing to try for any flakiness like this is: Replace Your Preferences
    That said, this sounds like it coud be some sort of conflict. Are you running any third-party plugins?

  • Linked images in my Word document don't show up in RoboHelp

    I'm using RoboHelp 8 and Microsoft Word 2003 on Windows XP. I create a new WebHelp project. I added all the .png image files from my Microsoft Word directory to Baggage Files. I then used the Link>>Word Document function to add my Word document to the RoboHelp project. Set my preferences for style pagination, did a Force Update All. However, most of the images I inserted as links into my Word document don't come through into RoboHelp. Apparently I'm missing a setting somewhere but I can't figure out what it is. In addition, one of the images that did come through is horribly degraded.

    Still no joy. All of the images in my Word document are linked .png files.
    Here's the step-by-step of what I just did:
    Open Word document
    Tools>>Options>>General>>Web Options.
    Change setting. Click OK
    Click OK
    Change text on page one of document to make sure document is "dirty".
    File>>Save As.
    Increment number in file name.
    File>>Exit.
    Launch RoboHelp
    Start new project
    Add all .png files to baggage.
    File>>Link>>Word Document
    Select appropriate Word file.
    File>>Project Settings>>Import tab
    Edit Word conversion settings to set pagination for heading styles and set Convert Word list to RoboHelp list
    Click OK
    Click Apply
    Click OK
    Right-click Word document in HTML Files (Topics) and choose Update>>Force Update All
    no joy

  • Insert image file to word document using active X

    Hello,
    I would like to insert an image into my word document (at the end). The image is saved as a bmp file and I'm using LV 8.2.1.
    I would like to do this using Active X (without using report generation toolkit).
    Any idea please ? Thanks in advance.
    J.
    Solved!
    Go to Solution.

    Hi J.
    The method to use is Inline shapes (Add pictures). I have linked an example. You will have to configure it in order for it to be at the end of your document but that shouldn't be a problem for you.
    Best Regards,
    Charlotte F. | CLAD
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> "Du 11 octobre au 17 novembre, 2 sessions en parallèle : bien démarrer - approfondir vos connais...
    Attachments:
    activex image.vi ‏13 KB

  • Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Easiest way to find time machine files is to open up the folder or application(works for email and iphoto)  they were in - then click on time machine ICON or enter time machine from the time machine menu to go back through the files.

  • Working Backwards - is the image in any Indesign Documents?

    Hi guys
    Here at my place of work IT are continually trying to keep the amount of data on our network as low as possible.
    To do this they produce a large files report and a duplicate files report.
    Using indesign and packaging files as we do, we are quite often culprits of the large files or more often than not duplicate files.
    Because it isn't just us that has access to our images etc we feel we have to package our documents because of the risk of a file being moved or deleted and therefore losing its link to indesign.
    My question is this:  If we have an image, a jpg for example, is there a way of seeing any indesign files that that is linked to?  This way, if we have a large image file, we can see if it is connected to any of our indesign files and then if not, reduce / delete it without the fear of affecting any documents.
    Thanks
    Si

    The other way around, yes, you can find links to InDesign files through
    Bridge. This way, no.
    Bob
    SimonLaughton <mailto:[email protected]>
    Thursday, December 13, 2012 10:44 AM
    >
          Working Backwards - is the image in any Indesign Documents?
    created by SimonLaughton
    <http://forums.adobe.com/people/SimonLaughton> in /InDesign/ - View
    the full discussion <http://forums.adobe.com/message/4918461#4918461

  • I dragged a cut out image from one photoshop document into another and now it is blurry. What to do?

    I dragged a cut out image from one photoshop document into another and now it is blurry. What can I do to prevent this?

    What is the resolution of the image that you "dragged"? The resolution is the number in pixels per inch (ppi). If you dragged a significantly lower resolution file into a higher resolution file, it could result in a blurry image.
    see below:
    For further reading of Key Concepts:
    http://www.adobe.com/designcenter-archive/keyconcepts/articles/concept_resolution.html
    You can determine the image size by choosing Image > Image Size
    below you can see the pixel dimensions of my example image.
    Resolution Basics:
    Adobe TV- http://tv.adobe.com/watch/creative-sweet-tv/photoshop-resolution-basics/
    http://tv.adobe.com/watch/visual-design/getting-started-09-resizing-an-image/
    Adobe Help:
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7945a.h tml
    -janelle

  • Problems while accessing images outside the web document-root folder

    Our application runs on Oracle application server on Linux. Facing problems while accessing images outside the web document-root folder. This works with changes in global-web-application.xml by including the <virtual-directory> tag. The same change does not work when done on Linux machine. It is unable to find the image. Please help in resolving this issue.
    </locale-encoding-mapping>
    </locale-encoding-mapping-list>
    </web-app>
    <virtual-directory virtual-path="/img" real-path="/home/eposuat/" />
    </orion-web-app>
    Code in the jsp:
    <img width=700 height=700 src="/img/3.tif"></img>
    <img width=700 height=700 src="/img/WB.gif"></img>

    This is one of the least satisfactory aspects of site management in Dreamweaver, and several developers, including myself, have been pressuring the Dreamweaver team for some years to improve this. Who knows? They might eventually take notice.
    The only way to do this at the moment is to create two site definitions, one nested inside the other. Set up the site definition normally based on htdocs as your site root. Then create a new site definition based on site. Dreamweaver will nag you that it can cause problems, but it won't actually stop you from doing it. The only potential problem is with site synchronization.
    The problem with using site as the only basis for your site definition is that Dreamweaver automatically puts things like the Connections, Scripts, and other folders in the site root. So, everything ends up at the wrong level of the site hierarchy. Quite frankly, the whole thing is a bit of a pain. Dynamic site development was added to Dreamweaver only in version 6 (Dreamweaver MX), and no one had really thought through the need to store files outside the site root.

  • Since upgrade when I click on a image in my word documents they all select

    Hi There
    I didnt know if this is the correct forum for this, but please dont direct me over to microsoft since I get nowhere fast..
    My problem is this;
    I upgraded my Mac with some software updates, which probably have nothing to do with the problem, but since then when i click on a image in a word document and then go to click on another they both are highlighted (as though I am trying to group them) click on others and the same happens. If I go out of the word document and back in it seems to be fixed, but then it happens over.
    Didnt have the problem before, as I had to click the image and hold shift to click anything further.
    any ideas

    Hi baydreaner,
    Navigate to ~(yourHome)/Library/Preferences/Microsoft and drag that folder to the desktop. Then relaunch Word and test.
    -mj
    [email protected]

  • Why do I keep getting an error "insufficient data for an image" when opening a document

    why do I keep getting an error "insufficient data for an image" when opening a document in Adobe Reader XI 11.0.06

    I am also having this problem, especially with scanned documents. Since I need to download scanned documents in my work this is a big problem!Sometimes I can read but not save the document, sometimes one or two of the pages will be blank from the start. I have the latest version of Adobe Reader XI (11.0.10). I tried reducing the page zoom, a suggested workaround on this page: Acrobat: “Insufficient data for an image” error after updating to 10.1.4 or 9.5.2,  but that did not help at all. FWIW I use a Windows 8.1 PC with 4 GB RAM. I usually download PDFs from the internet using Firefox.

Maybe you are looking for

  • Sync with Itunes does not work

    Hi, I reinstalled latest Itunes completly but still sync with outlook 2007 does not work. Itunes says Sync finished, but nothing is synced. Here is the log: [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] =================== [3068 @ Wed Jun 09 10:45:52 2

  • Creative Suite 6 now asking for serial number after minor updates

    I bought the full version of Creative Suite 6 on release. Just recently after installing some (but in typical Adobe fashion not all) updates, apps from the suite start up by saying that I am in a 30 day trial! I have to then press the license button

  • Message Handling in HCM Process and Forms

    Hi, I have added own messages logic MESSAGE_HANDLER Type Ref To     IF_HRBAS_MESSAGE_HANDLER           message_handler->add_message( message = message ). in "DO_OPERATION" method of Generic Service in HCM process and Forms. Problem : We have handled

  • White screen when I turn on the computer

    My Macbook Pro would not let me click on anything so I restarted my computer by holding down the power button, but then it stayed at a white screen for awhile, then turned to a blue screen before my login screen poped up. It let me log in but then wo

  • VF01 & F-22

    Hi Experts , In SD Customer Invoice is VF01, and in FI Customer Invoice is F-22, what is difference between VF01 and F-22. Please help me out. With Regards! FICO Moderator: Please, avoid asking basic questions