Image XObject in PDF - Part 2

Hi everyone,
With regard to the previous thread on "Image XObject in PDF", I posted a question on the retention of the image attribute saved on the PDF.
I understand from Irosenth that PDF only supports jpeg and "raw raster" images on storage. I also asked a question on libtiff and when does
Acrobat uses their own proprietiary tiff library. lrosenth highlighted that the library is only invoked when Acrobat saves and extracts images
from a PDF file and there is no other circumstances where the tiff library is used.
Question 1
How about PDF XFDF forms? I understand that in forms, we can specify a imagefield of contenttype:"Image/tif" with the base64 encoded
values of the tif image embedded in the form. In such case, will the tiff library be invoked by the Acrobat to parse and render the tif image?
Question 2
If the image libraries can be invoke in such a way, does this apply to other images such as JPEG. JPX, GIF and PNG?
Thanks

Hi Irosenth, thanks for the point.
However, I came across an xml-based form stored as a stream (flate-encoded)  in a PDF.
The decoded stream is as follows:
Isn't the self.tiff64 an base64-encoded form of a raw TIFF image (Not stored as an image XObject)?
<?xml version="1.0" encoding="UTF-8" ?>
<xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/">
<config xmlns="http://www.xfa.org/schema/xci/1.0/">
<present>
<pdf>
<version>1.65</version>
<interactive>1</interactive>
<linearized>1</linearized>
</pdf>
<xdp>
<packets>*</packets>
</xdp>
<destination>pdf</destination>
</present>
</config>
<template baseProfile="interactiveForms" xmlns="http://www.xfa.org/schema/xfa-template/2.4/">
<subform name="topmostSubform" layout="tb" locale="en_US">
<pageSet>
<pageArea id="PageArea1" name="PageArea1">
<contentArea name="ContentArea1" x="0pt" y="0pt" w="612pt" h="792pt" />
<medium short="612pt" long="792pt" stock="custom" />
</pageArea>
</pageSet>
<subform name="Page1" x="0pt" y="0pt" w="612pt" h="792pt">
<break before="pageArea" beforeTarget="#PageArea1" />
<bind match="none" />
<field name="ImageField1" w="28.575mm" h="1.39mm" x="37.883mm" y="29.25mm">
<ui>
<imageEdit />
</ui>
</field>
<?templateDesigner expand 1?>
</subform>
<?templateDesigner expand 1?>
</subform>
<?templateDesigner FormTargetVersion 24?>
<?templateDesigner Rulers horizontal:1, vertical:1, guidelines:1, crosshairs:0?>
<?templateDesigner Zoom 94?>
</template>
<xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
<xfa:data>
<topmostSubform>
<ImageField1 xfa:contentType="image/tif" href="">'''+self.tiff64 +'''</ImageField1>
</topmostSubform>
</xfa:data>
</xfa:datasets>
<PDFSecurity xmlns="http://ns.adobe.com/xtd/" print="1" printHighQuality="1" change="1" modifyAnnots="1" formFieldFilling="1" documentAssembly="1" contentCopy="1" accessibleContent="1" metadata="1" />
<form checksum="a5Mpguasoj4WsTUtgpdudlf4qd4=" xmlns="http://www.xfa.org/schema/xfa-form/2.8/">
<subform name="topmostSubform">
<instanceManager name="_Page1" />
<subform name="Page1">
<field name="ImageField1" />
</subform>
<pageSet>
<pageArea name="PageArea1" />
</pageSet>
</subform>
</form>
</xdp:xdp>

Similar Messages

  • Image XObject in PDF

    Good day everyone, I have a few questions with regard on the Image XObject and I hope u guys can help to clear my confusion.
    Say if i insert a tiff image (Using PDEImageCreate) into a blank pdf and save it, the image will be saved as a Image XObject stream in the pdf.
    Question 1
    Is the attribute/properties of the tiff image perserved in the XObject stream in the pdf? Or is it that only the raw pixel values of the tiff image got
    extracted and save into the pdf stream? No tiff image headers is saved?
    Question 2
    When the pdf file is opened later, is the Adobe reader aware that this image is a tiff image (the 1 that I have imported previously) and uses the libtiff to render and display the image? Or is it that it just extract the raw pixel values and display accordingly in the pdf page?
    Thanks for the time to answer my questions

    Correct.  Raster images are stored in PDF as image XObjects.
    PDF only supports two kinds of images - JPEG and "raw raster" (aka an array of bits in the colorspace), so
    1) the fact that it started life as a TIFF is NOT preserved.  It's just the raw pixels.  HOWEVER, you can use the plugin APIs to load an image's metadata into the PDF so that it can be read at some later date.
    2) No, because it's not a TIFF any longer.

  • What raw raster image format in pdf ?

    hello,
    I understood  from "image xobject in pdf" question from bokhandbok that  an xobject image can be either a jpeg  or a raw raster  format.
    But to me,  raw is not a standardized format like DNG or tiff/ep are.
    so, where can i find a description of the raw raster image format of the pdf ?
    is it related to any existing norms like iso 12234-2, dng, etc.
    if not, where can i find a description of this format ?
    thanks a lot,
    denis

    No, an image expects raw bitmap data in the format defined by the PDF Reference.
    However, an image is stored as a stream, and a stream can have a filter applied. There are many possible filters and one is DCTDecode, which roughly corresponds to a "JPEG file".
    So, an image with JPEG file data and the DCTDecode filter can work.
    "Raw" is a convenient way to talk about "uncompressed image data" but you are right that it is not a standard. Fortunately, PDF is well standardised and precisely described in ISO 32000-1.

  • How to insert an image in a pdf document

    I used the "Stamper" example and modified the fuction to insert image to my pdf doc.
    PDAnnot CreateStampAnnotationAt(AVPageView pageView, AVDevRect *rect)
    to add a picture Annotation into page.
    when system calling the callback function "AnnotDraw" to draw the Cos Object in that Annotation ,the function "AVPageViewDrawCosObj(pageView, coApp, &avdr)" doesn't work.Here is the code:
    ASFixedRect pdLocation;
    PDAnnot annot = {0,0};
    CosObj cAnnotObj, cIntObj, cStmObj, attributesDict, LengthEntry, cNullObj;
    CosObj cAPDictObj, cStmDictObj, cBBoxObj, cProcSetObj, cResObj;
    CosObj fontResObj, fontResObj2, cObj;
    CosDoc cdoc;
    ASStm stm;
    char buf[512];
    PDPage pdPage;
    ASUns32 s;
    ASFile picFile = NULL;
    DURING
            //handle clicks (with no drag, or only in one direction), by creating a default size annot
            if((rect->top == rect->bottom) || (rect->right == rect->left))
                    rect->top +=75;
                    rect->right += 150;
            pdPage = AVPageViewGetPage(pageView);
            AVDoc avDoc = AVPageViewGetAVDoc(pageView);
            AVPageViewDeviceRectToPage ( pageView, rect, &pdLocation);
            // Add the new annotation to the page.
            annot = PDPageAddNewAnnot(pdPage, -1, Stamper_K, &pdLocation);
            cAnnotObj = PDAnnotGetCosObj(annot);
            cdoc = PDDocGetCosDoc(PDPageGetDoc(pdPage));
            // See PDF Specification for more information on the Flags key.
            cIntObj = CosNewInteger (cdoc, false, 4L);
            CosDictPutKeyString(cAnnotObj, Flags_KStr, cIntObj);
            cAPDictObj = CosNewDict(cdoc, false, 1L);
            cNullObj = CosNewNull();
            ASFileSysOpenFile (ASGetDefaultFileSys (),ASPathFromPlatformPath("c:\\test.jpeg"), ASFILE_READ, &picFile);
            stm = ASFileStmRdOpen (picFile, 4096);
            attributesDict        = CosNewDict(cdoc, false, 5);
            LengthEntry = CosNewInteger(cdoc, false,11594 );
            CosDictPutKeyString(attributesDict, Length_KStr, LengthEntry);
            cStmObj = CosNewStream(cdoc, true, stm, 0, true, attributesDict, cNullObj, s);
            cStmDictObj = CosStreamDict(cStmObj);
            CosDictPutKeyString(cStmDictObj, "Type", CosNewNameFromString(cdoc, false, "XObject"));
            CosDictPutKeyString(cStmDictObj, "Subtype", CosNewNameFromString(cdoc, false, "Image"));
            CosDictPutKeyString(cStmDictObj, "Width", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "Height", CosNewInteger(cdoc, false , 151));
            CosDictPutKeyString(cStmDictObj, "ColorSpace", CosNewNameFromString(cdoc, false, "DeviceRGB"));
            CosDictPutKeyString(cStmDictObj, "BitsPerComponent", CosNewInteger(cdoc, false , 8));
            cBBoxObj = CosNewArray(cdoc, false, 4L);
            CosArrayInsert(cBBoxObj, 0L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 1L, CosNewInteger(cdoc, false, 0L));
            CosArrayInsert(cBBoxObj, 2L, CosNewInteger(cdoc, false, 100L));
            CosArrayInsert(cBBoxObj, 3L, CosNewInteger(cdoc, false, 100L));
            CosDictPutKeyString(cStmDictObj, "BBox", cBBoxObj);
            CosDictPut(cAPDictObj, FaceNormal_K, cStmObj);
            CosDictPutKeyString(cAnnotObj, Appearance_KStr, cAPDictObj);
    HANDLER
            AVAlertNote(ASGetErrorString(ERRORCODE, buf, sizeof(buf)));
    END_HANDLER
    Please help.

    BMP image?
    Or Is it possible to insert any text instead of image?
    But I need to work just like the stamper sample present in sdk. that is when i click on the pdf document any text has to be inserted instead of the image. I should not be to type the text in the pdf, but it should work exactly similiar to the stamper sample, but text has to be inserted instead of an image.
    How can this be done? Is it possible to do?
    Please help.

  • Figuring out how to extract images from a PDF file

    Hi,
    I'm trying to write a small app that extracts all images from a PDF file. I already wrote a nice parser and it works good but the only problem is that I can't quite figure out from the reference how to decode all images in a PDF file to normal files such as tiffs, jpegs, bmps etc. For now I'm focusing on XObject images and not dealing with inline images.
    From what I understand so far just by trying and looking at open sources I figured that if I see a XObject Image with a DCTDecode filter, taking the stream data without doing anything to it and saving it as a jpeg file works. But doing the same to FlateDecoded streams or CCITTFax didn't work.
    What is the right way to properly extract the images?

    In general you have to
    * decode the stream
    * extract the pixel data
    * use ColorSpace, BitsPerComponent, Decode and Width to unpack pixel
    values
    * reconstruct an image file format according to its specification
    There are no other shortcuts. The DCTDecode shortcut (which doesn't
    work for CMYK JPEG files) is just a piece of fantastic good luck.
    Aandi Inston

  • Javascript access to images in a PDF

    Hello,
    i'm a newbie to javascripting adobe apps, so i hope you'll excuse me if the question is just too stupid...
    I need to open in photoshop all the images in a pdf document. The pdf doc is singlepaged, usually with a single image (it's a adverting page in a magazine). When I have to do a quick retouch on a image, i choose Touchup Object, select the image, right click and choose Modify Image (actually I am using Acrobat in Italian: i hope the traslation makes sense) and Photoshop pops up. I modify the image and save it.
    Is it possible to script this process?
    My basic question actually is: how do i have access to the image in the pdf document? Exploring the contents of the pdf I see the image is in a XObject: can i get to it via javascript?
    any help is really appreciated! thanks
    Mauroo

    What you're trying to do requires a plug-in written in C/C++.  It cannot be accomplished with Acrobat JavaScript.

  • Image inside of PDF file?

    I am creating a .bmp file in Photoshop and inserting it into a word document. I then save that image as a .pdf. When viewing pdf and hovering your cursor over the image inside the .pdf, the name of the image file appears(like a text tool tip). Is there a way to prevent this from happening?
    Thanks

    PDF Optimizer - Perhaps not available in Standard.
    Look for it under the 'Advanced' menu drop-down.
    When Acrobat supported file formats are brought into PDF with Acrobat (PDFMaker) many have configuration options associated with their "Convert to PDF".
    A supported graphics file format, by itself or if in an authoring file (FM, DOC, etc.) will be 'touched' by these.
    Open Acrobat's Preferences. Select the Category "Convert To PDF".  Scroll down the center pane's listing of  file formats. Locate and select PNG. Click the 'Edit' button. Some configuration options for compression and color management are provided. You could play with these.
    HOWEVER -
    The Word to PDF process would have to be via PDFMaker (Convert... from the Acrobat Bar) and *not* via Save As PDF-XPS.  The MS Office routine does not provide the functionality described above for Acrobat. The Office process is completely separate from anything "Adobe" or "Acrobat".
    Also, something described often by Bill@VT -- Word, particular 2007, 2010 seems to do some 'odd' things to graphics in a Word file that is going to anything other than a piece of paper.
    Some folks seem to get satisfactory behavior by use of EPS.
    Also, it may be worth playing with a JPEG of the logo.
    About the PDF.
    From what you describe it seems that you have a web link, in the PDF, to the stand alone PNG. This would permit separate download of the PNG.
    I suspect that Acrobat Standard 9.x does not provide the tool set available in Pro or Pro Extended. So, you'd not be able to edit/delete the web link (or link) in the PDF.
    Perhaps, back in Word you have a 'Hyperlink' present that can be edited/removed?
    Also, in Word, try an "import" - browse to file - select - make it an integral part of the Word file. Then produce the PDF.
    Fundamentally, the PDF reflects the content mastered in the Word file. The Office Save As PDF-XPS or the Adobe PDFMaker merely process this out with whatever configuration option settings each provides.
    Be well...

  • Image XObject using /F file specification

    We are having a problem where instead of the stream data being on the Image XObject itself, we want to use a stream that is an attached file (we are manually writing the pdf file at this point using internal tools).  Inevitably, it keeps trying to get that file from the disk and failing. 
    This same file specification we are using as the /F property on the XObject dictionary is the same one in the as we have as an entry in the EmbeddedFiles name tree, and the file does appear appropriately in the attachments list.  The file spec includes all the correct /F filename and /EF<</F reference>> to the actual data stream. 
    The XObject dictionary still has a zero byte stream associated with it, and the /Length property set to 0.  And we're using raw RGB values, so no filter (/Filter or /FFilter) needs to be specified.
    The error we keep getting is "This file cannot be found" (fileErrFNF).  If we extract the file, then we get a different error of "You do not have access to this file" (fileErrPerm), unless supposedly, you are running Acrobat Pro, in which case it works as you would expect, but that doesn't solve the problem of us wanting to have it embedded as a file and be read internally, not from disk.
    So the file specification should be correct, since we can see the embedded file in the attachments and extract it correctly.  And the XObject dictionary should be set up correctly, since when the file is extracted, we can get it to render if running Pro.  It's just that for some reason, we can't get the XObject to look for the EmbeddedFile instead of an external file.
    We are using Acrobat Reader 9 for viewing and building this against the "PDF Reference, version 1.7" specifications.  This also fails when using AR8 as well.
    Options that we have tried varying are not including the EmbeddedFiles name tree entry (thus making it invisible), including or excluding the UF or DOS/Mac/Unix values on the file specification dictionary and /EF dictionary.  We've tried removing the base /F value entirely, and only had the /EF dictionary.  What else can we try to get this to work?

    Here are the objects as have I described above:
    63 0 obj
    <<
        /Type /Filespec
        /F (pic1.rawrgb)
        /UF (p i c 1 . r a w r g b )
        /Desc (embedded image)
        /EF
        <<
            /F 125 0 R
            /UF 125 0 R
        >>
    >>
    70 0 obj
    <<
        /Names [(pic1.rawrgb) 63 0 R]
    >>
    99 0 obj
    <<
        /BitsPerComponent 8
        /ColorSpace /DeviceRGB
        /Width 200
        /Height 200
        /Subtype /Image
        /Type /XObject
        /F 63 0 R
        /Length 0
    >>
    stream
    endstream
    125 0 obj
    <<
        /Type /EmbeddedFile
        /Length 120000
    >>
    stream
    % 120000 bytes of 8 bits per color RGB for a 200x200 pixel image without any filtering
    endstream

  • I deleted files coldnt open like .jpg,pdf.part

    file name unknown and couldn't open or (didnt realize they may have been important )so like a fool i deleted them .jpg,pdf.part,png,gif,ps exe and so forth now i am afraid these were part of the computers programming.. i am new and am so worried, thought i was cleaning junk what do i do now? trash emptied will i ever know what i deleted?

    Hi,
    Some Info.
    First click anywhere on the Desktop that might be visible around anything you have open.
    The word Finder should now appear in the menu bar.
    Click and hold this to see the menu and select Preferences.
    In the Preferences Window that shows up select Advanced.
    Select (Tick the check box) the option to Show All File Extensions.
    When this is done all the files on the computer will display their relevant .something ending (Extensions).
    So most things in the Application folder will now show ApplicationName.app
    In the Pictures Folder you will see different ones (if that is where your Picture files are)
    .jpg .tif, .png .gif
    Some of these such as .jpg or .gif and .tif are fairly universal meaning many apps can open them
    .pdf files can be opened by Preview and Adobe Reader as they are Portable Document Files (PDF) and needs a PDF reader. (they can be a mixture of Picture and Text like a word processing cocument)
    You will notice in my Pic I have ones ending in .psd
    These are saved from the Photoshop Graphics app.
    This leads on to the next point.
    Most apps will save Files with an ending that in most cases only they can open.
    For instance iChat can be set to Save Transcripts.
    these are stored in your Home Folder/Documents/iChats in dated sub folders.
    You will find they end in .ichat
    TextEdit  can save in two formats (file Extensions)
    .rtf (Rich Text File) or .txt (Plain Text FIle)
    Ususally in a file name there is only one . (dot) before the end.
    So the way you wrote .jpg.pdf etc. would not exist  (there are of course exceptions)
    Double Clicking a file will normally get the App that created it or the nearest thing you have that can open it to Launch and then show you the file.  (There are ways to Control which app opens which files but that is another lesson)
    If this does not work you can go to the Finder's File Menu and use Open With - which will present you with a list of apps that can open a file.  (Often this will include Browsers as they often have Plug-ins that deal with the Pics on web sites - Safari for instance includes a PDF reader)
    .js does stand for Javacsript.
    This is used on Web sites to help with functionality. 
    It would be unusual to download this unless you were downloading something for a web site about building web sites.
    On most web sites the Javascript is a separate file that the page accesses when needed to do a specific thing. Sometimes though small short exerts of javascript may actually appear on the page (When looked at in Source view).
    It is similar with .css (Cascading Style Sheets) that many web sites use to change basic HTML into the layout and colours you want.   (Again it would be unusual to download such a file)
    If you want to know what created or might open a file search here (Common File Extensions)
    I would be cautious about deleting anything that you don't know what it is.
    The exception to that would be anything that is in your Downloads Folder or has been placed on the Desktop.
    Anything that is in Your Home Folder (the Little House icon) is yours.
    However deleting stuff in the Library that is inside there may cause problems with apps running properly.
    In may cases the Preferences you set are stored there. In some cases the results of you choices cause other things to be stored that are needed when the app runs.
    Deleting things in Documents, Pictures, Movies only deletes things you might want to Keep.
    I would also leave iTunes and iPhoto files alone in their relevant places.
    If in doubt post and ask.  Be clear about where the file is located and what you know about  how it got there.
    10:50 PM      Saturday; May 21, 2011
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Why do images within a PDF look jagged when viewed in Acrobat Pro 10.1.6?

    Using a MacBook Pro running Mac OS version 10.7.5 with NVIDIA GeForce GT 650M 1024 MB graphics card. High-resolution source images look fine in other software, and embedded images in a PDF look fine when viewed on Google Drive, but curves and diagonal lines look jagged when viewed in Acrobat Pro 10.1.6. Checking smoothing options in Preferences only adjusts the position of the jagged edges; it neither enhances nor ameliorates them.
    I created a sample PDF to illustrate the problem I'm having. Created in illustrator, exported to PNG and converted to PDF. Here is a screenshot of the source PNG side-by-side with the PDF I created from it:
    Please note that when I preview the PDF in Finder, and when I view the PDF in Chrome using Google Drive, the image looks fine. Here's a link to the sample PDF:
    http://www.sendspace.com/file/77f5m6
    Any assistance is appreciated. Thanks!

    Unfortunately, as I mentioned in my original post, I've already tried toggling smoothing options. They don't make the jagged edges go away—they just change them slightly. In some cases, as with the sample file provided, it does help smooth the art out, but it never looks as good as it did going in, in a recent project, toggling smoothing options didn't affect the appearance of the image at all. Zoom does not appear to relieve the artifacting.
    A little clarification: this PDF was created from a flat PNG, but I have had this issue with PNGs and TIFFs as well, generated by both Photoshop and Illustrator. To reiterate, the PDFs display fine in other software—Finder preview looks great, and the same file viewed in my browser via Google Drive looks as intended as well. A colleague was able to replicate this issue in Acrobat on his Windows machine. This appears to be a rendering issue specific to Acrobat with regards to the files I use it to create.

  • I need help dividing an image into two equal parts in Adobe Illustrator CC--ASAP!!!

    I need help dividing a single, already created image into 2 equal parts...Am getting nowhere so far

    Hi Willi, thanks so much for responding! Below is the image I need to divide in half. The left half where it says "Click here for the definition" links to a landing page where people can read the definition of the Hebrew Word. The right half links to an audio recording of the Hebrew word being spoken aloud. I am trying to figure out how to use the scissors or knife tool in Adobe Illustrator and am having no luck. Plus I believe there's a way to include URLs on each separated part, but I can't get past figuring out how to cut it. My background is not graphic design

  • How can I create an iBook using iBooks Author using images from a PDF?

    I have a complex book with custom fonts and lots of images, and the client wants it on the iPad. So my most reasonable option seems to be to take images from a PDF and use them for the pages. However, images in iBook Author don't get "laid out" as expected in Portrait mode. How can I  create a layout that is essentially one image per page in portrait mode, and then convert that to landscape mode? Or is there an easier way to go about this?

    tk0us wrote:
    Make sure you have disabled portrait in the Inspector.
    I don't understand why portrait mode defaults images and other "widgets" to thumbnails. The original format of the book (and of 99% of all books I'm guessing) is in portrait format. By forcing the book to work only in landscape mode it's forcing the page image to be half the size, and that makes using this book particularly difficult. Is there no way to force the pages to be full-size in portrait mode?

  • Saving multiple images from a PDF to use later

    How can I save individual images from a PDF to use later?  I would like to be able to save them in a separate folder?

    When you open the pdf, you'll see the import pdf window. Just click the Images radio button, then select the images you want to open in PSE, and then save them in the editor:

  • I get the following error when trying to open a pdf file... '*pdf.part could not be saved, because the source file could not be read"

    I get the following error when trying to open a pdf file... '*pdf.part could not be saved, because the source file could not be read". I am able to open pdf files in IE and other programs.

    I am encountering the same problem -- though with .qfx files from my bank. This worked fine in Firefox 31 ESR, but since upgrading to Firefox 33.0, I get the "<name>.qfx.part could not be saved, because the source file could not be read" when I attempt to download. (I should add that downloading PDF statements from the same site works fine, and that the qfx downloads work fine in IE and Chrome.)
    I tried safe mode, it is still broken. Tried v34 beta, no luck. I reverted to version 31, it works again.
    I guess I will stick with the older version until a solution is found...or just use an alternate browser to download my financial data.

  • When I try to print an jpeg or png from Photoshop all it does is convert the image to a PDF & plop it on my desktop- it won't print the image. Any suggestions as to how to fix this?

    When I try to print an jpeg or png from Photoshop all it does is convert the image to a PDF & plop it on my desktop- it won't print the image. Any suggestions as to how to fix this?

    Yes, the printer is on, it’s selected in Printer Set-Up & I’ve never had this problem before. It’s definitely a Photoshop issue as every other type of file prints fine. I’ve uninstalled Pshop & am now reinstalling. Hope that will do the trick.

Maybe you are looking for

  • Changes are not reflected into SEM-BPS 1 layout.

    Hi, 1st, I've included code in SAPAfterDataPut that copies data from SEM-BPS 1 into New Sheet. Now, I've inserted a method in the sheet module of New Sheet. This method takes care of reflecting changes from New Sheet into SEM-BPS 1 layout. but, final

  • Joining multiple views from different HANA systems

    Hi We are on Business suite on HANA environment ;that means ECC , CRM , BW on different HANA DB / instances. For reporting ; i would like to combine calculation / analytical views from these different  systems. Any thoughts on approach? Thanks in adv

  • Install of PB 11 on win 7-64 bit fails

    Like everyone else, I'm being forced to upgrade my machine to Win 7. (because XP has been desupported) I tried to install PB 11 on the win 7 machine. It installs infomaker fine... but, when it gets to the end of the Pb install it crashes I was able t

  • PDE plug in error code cannot print in Mavericks os

    I get this error when trying to print from anyy app since I upgraded to mavericks. Missing PDE plug in....help! Process:         Preview [2309] Path:            /Applications/Preview.app/Contents/MacOS/Preview Identifier:      com.apple.Preview Versi

  • Someone stole my ipod in foods class. Should i give the office my serial number?

    should i give my serial number to the office