Why 2 file formats iwork08 and iwork09?

Why do we need to save in a different format keynote files from keynote 08?
Are the differences so big in between keynote 09 and keynote 08, to require a new file format?

There are some new transitions, especially the Magic Move transitions, that won't work in '08. In addition, there is the Reduce File Size option, which may be problematic for '08, since that version relies on having the original images for a presentation. There may also be issues with file format regarding sharing over iWork.com.

Similar Messages

  • ABAP to XML file - Formatting problem and UTF-8 requirement

    Hi Everyone,
    Could you please guide us on the ABAP coding required to get the proper XML file format. We have prepared the code for downloading SAP transaction data into an XML file format. However, we are stuck with an improper format as per Example 1.
    The file format we get is this:
    Example 1:
    <?xml version="1.0"?><FDXLMDOrd><FXNHdrLp><CrtDtTm>20070613094517</CrtDtTm><MsgID>319304155</MsgID><MsgTyp>850</MsgTyp><MsgSubTyp>SALES_A</MsgSubTyp><Pr
    <RcvTP>FSCS</RcvTP><SndSrc>FXN</SndSrc><RcvSrc>EIB</RcvSrc><UsrID>VAR</UsrID></FXNHdrLp><OrdHdrLp><OrdNbr>319304155</OrdNbr><OrdActnCD>9</OrdActnCD><Ord
    teCarrReq>FDE</RteCarrReq><RteTptSvcReq>FEIP</RteTptSvcReq></DprtRteLp><SpecInstrLp><SpecInstrTyp>SHIP</SpecInstrTyp><SpecInstr>Example Packing Instruct
    les Order</RefDesc></RefLp><RefLp><RefIDQual>CPO</RefIDQual><RefID>test 1 line 1 pc - s</RefID><RefDesc>Customers Customer Purchase Order</RefDesc></Ref
    Typ><EntIDQual>91</EntIDQual><EntID>H00092</EntID><EntNm>VLAD BOBES</EntNm><Cty>MONTREAL</Cty><PstlCD>H3X 2N5</PstlCD><RgnalCD>QC</RgnalCD><CtryISOCD>CA
    ></AdrLnLp><ConLp><ConTypCD>IC</ConTypCD><ConNm>VLAD BOBES</ConNm><CommLp><CommNbrQual>TE</CommNbrQual><CommNbr>514-731-8361</CommNbr></CommLp></ConLp><
    <Cty>MONTREAL</Cty><PstlCD>H3X 2N5</PstlCD><RgnalCD>QC</RgnalCD><CtryISOCD>CA</CtryISOCD><AddlNmLp><AddlNm1>VLAD BOBES</AddlNm1></AddlNmLp><AdrLnLp><Str
    However, the format need to look like this as in Example 2 below.
    We also need help in how to get  " encoding="UTF-8"?> " as part of the file format.
    Example 2:
    <?xml version="1.0" encoding="UTF-8"?>                
    <FDXLMDProdRcpt>                                      
        <FXNHdrLp>                                        
            <CrtDtTm>20070612151817</CrtDtTm>             
            <SessID>26796</SessID>                        
            <MsgTyp>861</MsgTyp>                          
            <MsgSubTyp>WRE_A</MsgSubTyp>                  
            <PrcsingPrty>5</PrcsingPrty>                  
            <SndTPQualCD>ZZ</SndTPQualCD>                 
            <SndTP>FSCS</SndTP>                           
            <RcvTPQualCD>ZZ</RcvTPQualCD>                 
            <RcvTP>EIB</RcvTP>                            
            <SndSrc>YANTRA</SndSrc>                       
            <RcvSrc>EIB</RcvSrc>                          
            <UsrID>VAR</UsrID>                            
        </FXNHdrLp>                                       
        <ProdRcptHdrLp>                                   
            <ShpID>VAR20070612NCHIC1</ShpID>              
            <ShpTyp> </ShpTyp>                            
            <ShpActnCD>00</ShpActnCD>                     
            <InTransMrgTyp> </InTransMrgTyp>              
            <ShpVolUOM>CI</ShpVolUOM>                     
            <ShpWgtUOM>LB</ShpWgtUOM>                     
            <ShpTotVol>310022.00</ShpTotVol>              
            <ShpTotWgt>861.00</ShpTotWgt>                 
            <DtTmLp>                                      
                <DtTyp>050</DtTyp>                        
                <DtTmQual>501</DtTmQual>                  
                <DtTm>2007-06-12T15:07:41-04:00</DtTm>    
            </DtTmLp>                                     
            <AdrLp>                                       
                <EntTyp>RC</EntTyp>                       
                <EntIDQual>93</EntIDQual>                 
                <EntID>NCHIC</EntID>                      
                <EntNm>NCHIC</EntNm>                      
                <AutoCrtTrdPar>0</AutoCrtTrdPar>          
                <AutoCrtTrdParRole>0</AutoCrtTrdParRole>  
                <AutoUpdtTrdPar>0</AutoUpdtTrdPar>        
            </AdrLp>                                      
            <ProdRcptTptLp>                               
                <TptIDQual>BOL</TptIDQual>                
                <TptSCAC> </TptSCAC>                      
                <TptID> </TptID>   
    Thanks and Best Regards
    Sitaraman

    You could try to use the following coding:
    *& Report  ZUS_SDN_UC_XML_TO_UTF8_TRANSF
    REPORT  zus_sdn_uc_xml_to_utf8_transf.
    define local data
    CONSTANTS:
      gc_encoding           TYPE string VALUE 'UTF-8'.
    DATA:
      gd_result             type string,
      go_ixml               TYPE REF TO if_ixml,
      go_stream_factory     TYPE REF TO if_ixml_stream_factory,
      go_encoding           TYPE REF TO if_ixml_encoding,
      go_resstream          TYPE REF TO if_ixml_ostream.
    DATA:
      gt_knb1    TYPE STANDARD TABLE OF knb1,
    gd_xml     TYPE string,
      gt_xml     TYPE TABLE OF string.
    START-OF-SELECTION.
      SELECT * FROM knb1 INTO TABLE gt_knb1 UP TO 10 ROWS
          WHERE bukrs = '1000'.
      go_ixml = cl_ixml=>create( ).
      go_stream_factory = go_ixml->create_stream_factory( ).
      go_encoding = go_ixml->create_encoding( character_set = gc_encoding
                                            byte_order = 0 ).
      go_resstream =
                  go_stream_factory->create_ostream_cstring( gd_result ).
      CALL METHOD go_resstream->set_encoding
        EXPORTING
          encoding = go_encoding.
    XML Transformieren
      CALL TRANSFORMATION id_indent
        SOURCE     itab = gt_knb1
        RESULT XML go_resstream.
      APPEND gd_result TO gt_xml.
      CALL METHOD cl_gui_frontend_services=>gui_download
        EXPORTING
         BIN_FILESIZE              =
          filename                  = 'C:\temp\xml_to_utf8.txt'
         FILETYPE                  = 'ASC'
         APPEND                    = SPACE
         WRITE_FIELD_SEPARATOR     = SPACE
         HEADER                    = '00'
         TRUNC_TRAILING_BLANKS     = SPACE
         WRITE_LF                  = 'X'
         COL_SELECT                = SPACE
         COL_SELECT_MASK           = SPACE
         DAT_MODE                  = SPACE
         CONFIRM_OVERWRITE         = SPACE
         NO_AUTH_CHECK             = SPACE
         CODEPAGE                  = SPACE
         IGNORE_CERR               = ABAP_TRUE
         REPLACEMENT               = '#'
         WRITE_BOM                 = SPACE
         TRUNC_TRAILING_BLANKS_EOL = 'X'
       IMPORTING
         FILELENGTH                =
        CHANGING
          data_tab                  = gt_xml
        EXCEPTIONS
          file_write_error          = 1
          no_batch                  = 2
          gui_refuse_filetransfer   = 3
          invalid_type              = 4
          no_authority              = 5
          unknown_error             = 6
          header_not_allowed        = 7
          separator_not_allowed     = 8
          filesize_not_allowed      = 9
          header_too_long           = 10
          dp_error_create           = 11
          dp_error_send             = 12
          dp_error_write            = 13
          unknown_dp_error          = 14
          access_denied             = 15
          dp_out_of_memory          = 16
          disk_full                 = 17
          dp_timeout                = 18
          file_not_found            = 19
          dataprovider_exception    = 20
          control_flush_error       = 21
          not_supported_by_gui      = 22
          error_no_gui              = 23
          OTHERS                    = 24.
      IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    END-OF-SELECTION.
    However, I like to mention that the file created from out ECC 5.0 (6.40, non-Unicode) contains a special character between the XML header and the data part (when displayed using NotePad Editor):
    ...xml version="1.0" encoding="utf-8"?>[special character]<asx:abap xmlns:asx="http://www.sap.com/a...
    Using a HexEditor the special character (0x0A) is displayed as a dot.
    Also Check with FM - TREX_TEXT_TO_UTF8
    Reward Points if it is helpful
    Thanks
    Seshu

  • How to examine pdf for image file formats, OCR, and layers

    Hi,
    I have a question about how to find out specific features of a pdf.  I am using Adobe Acrobat 9 Pro for windows.
    With any given PDF, I am looking to find out:
    a]  The specs of any image files used  to create the pdf (i.e., if the pdf is made up of text pages with image objects on top of them, are those image objects JPGs?  TIFFS?  What resolution are they? Are they compressed?)
    b]  Does this PDF have OCR already embedded in it?
    c]  Does this PDF have multiple layers?
    with a] -- file format is perhaps the most important, resolution and compression being second most
    with c] -- is there an easy way to see the layers, visually, on the page images?
    What is a smiple way to find out this information?
    I've poked around a bit in the "Examine Document" function, and various checks in "Preflight," as well as the help manual, and have found bits and pieces that look like some of what I'm looking for, but nothing simple or conclusive yet.
    Any help or advice would be wonderful!  I just want a simple way to be able to see what my PDF is made out of, in terms of image files, OCR, and layers.
    Thanks,
    Andrew

    Preflight is inded the best way to do this operation. You may have to read a bit to figure out what you are looking at, but that is the right route to take.

  • Payment file formats CDFF and DFT russia   in 4.6c

    We are trying to implement APP for our russian client.
    Our client uses CITIBANK formats DFT and CDFF.
    These are not supported by the standard system.
    We use R/3 4.6C.
    Thier is one note: 1093165 which implements above requirement in ECC6.0 but  the same can't be implemented in 4.6c.if thier is any method through which we can create it please help.
    Regards
    MNGowda

    Hi,
    Im looking for the same thing in Sweden.
    Did you find any solution ?
    Please advise
    Yossi

  • Payment file formats CDFF and DFT russia

    Hi All,
    We are trying to implement APP for oru russian client. Our  client uses CITIBANK formats DFT and CDFF.
    These are not supported by the standard system.
    We use R/3 4.6C
    Any ideas about this??
    Thanks, Ashok
    Edited by: Ashok Palla on Mar 28, 2008 11:40 AM

    Hi,
    Im looking for the same thing in Sweden.
    Did you find any solution ?
    Please advise
    Yossi

  • Why XML file for DD and other things

    According to me XML is used for servers b/c :
    **we can write our custom tags and give their meaning in form of DTD in the beginning of that XML file.
    Plz tell me if their is any other reason to use xml files.

    Plz tell me if their is any other reason to use xml files.
    hi :-)
    i dont get your question that much but their
    are lot of reason's why to use xml
    but note that "don't use XML for XML's sake"
    it's not only "why" but also "when" to use XML
    regards,

  • EDI File formats EANCOM2002 and UN 96A are same??

    Hello Evyone,
    The partner system wants the DESADV EDI file in EANCOM2002 format.
    Iam having the XSD's for for the following formats.
    DESADV_UN_D96A
    DESADV_UN_D97A
    DESADV_UN_D97B
    DESADV_UN_D99B.
    Does any of the above formats is equal to EANCOM2002??
    PS: If i use any of the above XSD and the seeburger mapping name as "See_X2E_DESADV_UN_D96A".
    Will it reach to partner system in EANCOM2002 format.
    Let me know if it works??
    Thanks & Regards
    Seema.

    Hi chirag,
    I too observe the same.
    Now im doing the development by using File adapter.
    So i can finish off the development by using UN96A..
    But when it goes live..we are going to replace it with AS2 adpter. Iam worrying of it may fail at the partner system because of wrong format??
    Any idea any impact will happen??
    Regards
    Seema.

  • How to convert text file into xml file format with and check that with DTD

    I have an text file with | seperator . I have to convert this to an xml file and check with DTD present with me..
    plz help me out

    can i get some code that how to compare the xml with dtd or just give the DTD name with an XML

  • HELP PLEASE Acrobat Pro 8 for MAC PDF files printing all black pages (other file formats JPG and TIFF and XLS etc are fine)

    Pages print blackout  or black washout fuzzy when using scanned image to PDF creation or "Save As" PDF from JPG or other.  All other documents print perfectly.  Just not PDF's.  Worked fine up until today.  If I open JPG, print to PDF and try to print that PDF file, page is all black.  Any ideas on how to resolve?  Thanks!!

    Pages print blackout  or black washout fuzzy when using scanned image to PDF creation or "Save As" PDF from JPG or other.  All other documents print perfectly.  Just not PDF's.  Worked fine up until today.  If I open JPG, print to PDF and try to print that PDF file, page is all black.  Any ideas on how to resolve?  Thanks!!

  • Why XMP Files on Capture and Export

    Just curious to know what is the purpose of the 'xmp' and 'xmpses' files that are created when I export from Premiere for DVD encoding.
    And I might as well ask the same for the xmp created from captured video files. Are they necessary for editing? Can I put them somewhere else or delete them?

    From the new user reference:
    Media preferences
    Indeterminate Media Timebase Specifies the framerate for imported still-image sequences.
    Timecode Specifies whether Premiere Pro shows the original timecode imported clips, or assigns new timecode to them, starting at 00:00:00.
    Frame Count Specifies whether Premiere Pro assigns a 0, or a 1 to the first frame of an imported clip, or assigns a number by timecode
    conversion.
    Write XMP ID To Files On Import Check this box to write ID information into XMP metadata fields.
    Enable Clip And XMP Metadata Linking Check this box to link clip metadata to XMP metadata, so that changing one changes the other.
    Growing Files (CS6) Premiere Pro CS6 supports growing files for OP1A MXF files. The preference allows users to opt whether Premiere
    automatically refreshes as they grow, and if so, how frequently. This preference allows you to with these files in your project immediately.

  • Why unsupported file format on some 7D photos?

    Some of my photos are coming up as unupported image format.  The shots were all taken RAW using a Canon 7D at the same time.  They were broght into Aperture prior to Lion without any issues.  Now I can not read my Senior Photos.  Any ideas?

    Some of my photos are coming up as unupported image format.  The shots were all taken RAW using a Canon 7D at the same time.  They were broght into Aperture prior to Lion without any issues.  Now I can not read my Senior Photos.  Any ideas?

  • The file should be in XML-BURSTING-FILE format.

    I'm gettting an error when I try to upload my xml bursting control file for my oracle report that has an rtf template defined.
    The error message says"The uploaded file MT_RAXINV.xml is invalid. The file should be in XML-BURSTING-FILE format."
    and my code is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" >
    <xapi:globalData location="stream">
    </xapi:globalData >
    <xapi:request select="/ZRAXINV/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
    <xapi:delivery>
    <xapi:email server="mailhost.microtune.com" port="25" from="[email protected]"
    reply-to ="[email protected]" >
    <! - filter=".//G_INVOICE[BILL_TO_EMAIL IS NOT NULL]"- >
    <xapi:message id="${TRX_NUMBER}" to="[email protected]" cc="[email protected]" attachment="true"
    subject="Microtune Inc - Receivables Statement for payment due from ${BILL_CUST_NAME}">
    Please find attached Receivables Statement for payment due of ${TOTAL_AMOUNT_DUE}.
    Regards,
    The Receivables Team
    Microtune Inc
    </xapi:message>
    </xapi:email>
    <xapi:print id="printer_tune"
    printer="ipp:\\congo\sunset" filter=".//G_INVOICE[BILL_TO_EMAIL=NULL]" copies="1" />
    <xapi:filesystem output="\\astro\erp\Oracle\${TRX_NUMBER}.pdf"/>
    <! - Add an id for this delivery method i.e. printer1 - >
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="printer_tune,${TRX_NUMBER}">
    <! - Deliver to printer and email - >
    <xapi:template type="rtf" location="xdo://SQLAR.ARInvoice.en.US/"?getSource=true" filter="">
    <! - Specify template to be used for Receivables Statements- >
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Any help would be much appreciated.
    Thanks,
    Leo

    Thanks, for the update. Sorry I did not update this entry, I had actually figured that out but still my problem is that my email is sending without an attachment. I'm not getting any error and the email is sending fine but without the attachment.
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/ZRAXINV/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
    <xapi:delivery>
    <xapi:email server="mailhost.microtune.com" port="25" from="[email protected]" reply-to ="[email protected]">
    <xapi:message id="${TRX_NUMBER}" to="[email protected]" cc="[email protected]" attachment="true"
    subject="Microtune Inc - Receivables Statement for payment due from ${BILL_CUST_NAME}">
    Please find attached Receivables Statement for payment due of ${TOTAL_AMOUNT_DUE}.
    Regards,
    The Receivables Team
    Microtune Inc.
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="Invoice_${TRX_NUMBER}" output-type="pdf" delivery="${TRX_NUMBER}">
    <xapi:template type="rtf" location="xdo://SQLAR.ZRAXINV.en.US/?getSource=true"></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>

  • Embedding video file format in Edge, auto play video

    When embedding video in Edge, does it need to be mp4 file format? And once video is embedded, how do you get it to play automatically?

    Use mp4 and ogg.
    Ogg or ogv is for Firefox
    mp4 for other browsers
    You can convert to ogg on the FF site here: Firefogg - video and audio encoding for Firefox

  • List of file format (banking)

    Hi,
    To make an incoming payment with cheque i realize the followings steps:
    i open incoming payment window,i select business partner,i select invoices,i click on payment Means and in the cheque tab i select Contry ,the Bankname,however when i click on Branch or account a new windows named List of file format appears and is empty.
    my question is how to make the data appear in List of file format (Branch column and Account column)?
    Thanks

    Hi Avi........
           List of file formats is the window name which is coming while entering the bank details. But you should first define the complete bank set up which will be then display in this window at the time of incoming payment. You just define the banks in administrantion --> bank set up. its branch and account no......
    Regards,
    Rahul

  • .Folio File Format

    Hi DPS Community,
    I need some clarification on the titled.
    A couple of years ago, Adobe announced that they were going to offer the .Folio file format for free. Off the back of the news that Adobe are doing away with Single Edition via Creative Cloud, my mind has taken me back to this announcement.
    What exactly does this mean? Can one join forces with a developer and carry on making Single Edition and, maybe, Newsstand apps?
    Hopefully this all made sense? I'm just trying to find the next best alternative to Single Edition that doesn't resort to me paying a Billion bucks for another DPS service. Do you know what I mean?
    Thanks in advance :-)

    In theory you could take the .folio file format specification and build a viewer to render that content. Once you actually see how much engineering time and expense that will take I suspect you will decide not to do it
    There are plenty of other threads in this forum about alternatives to DPS Single Edition. A quick search should turn them up, including discussions of the pros and cons of those solutions.
    Neil

Maybe you are looking for

  • Pass a parameter in a Web Dynpro Application

    Hi, I have a Web Dynpro that Calls a RFC. This RFC needs a parameter (user ID from portal) in order to obtain Info. from the R/3 System. I do it with based on the article which calls a bapi "BAPI_FLIGHTLIST". The application runs OK when I type the p

  • Find and remove files

    Hi, I was given a task to do some housekeeping of users directory Basically, the structure is of below. /User DIR ---UserA ---UserB ---UserC ---UserD ---UserE Each user contain several type of files. I wan to do a housekeep of the directories to remo

  • Granting table privileges on another users tables

    Can anyone tell me what privilege needs to be granted to a user to be able to grant insert/update/select/delete/execute on another users tables/packages? I had thought that 'grant any privilege' was the one to have... and - the user I am trying to us

  • How to remove service names

    One thing about oracle that I am unable to understand is that when we uninstall oracle, all the service names for its different services stay there in the services section in WindowsXP. I know how to remove the instance name services, but I am unable

  • How to view hidden files OS X Lion 10.7.3

    Cannot find some files (my templates folder in Microsoft Word, I know the location of the folder but it will not show in Finder), tried holding down option key when selecting folders to show hidden folders but it did not work. Does anyone have any su