File type for an attachment

I'm new at this. This may be a stupid question, but here goes.
ALL I need is to know what file form do I use to send an attachment to a Mac Pro.
I have some new software "VueScan" on a windows computer. It only makes attachments in the PDE format and only opens with Acrobat software. Does that work on a MAC????
Jim

Does that work on a MAC????
Of course it does.

Similar Messages

  • Changing default open with for file type for all users

    hello
    can I change the default app to open a specific file type for all users and not juist for my user?
    i am admin for my mac mini.
    tnx
    gil

    What applications are offered for open with depends on the application itself informing the system it can open certain files, plus your own custom selections for opening files. Evidently the alternate app you want to use does not claim to be able to open the files you are assigning it. If you have a plist editor and know how to use it you could edit the info.plist file inside the application itself to add the file type you want to the application's declaration of file types it will open. Then restart so the system will read that declaration. I think it would be far easier to simply launch the application and then drop a file you want it to open onto its icon in the Dock.
    Francine
    Francine
    Schwieder

  • Passing the file name and file type for mime_download

    HI All,
    Can You Please let me know how to pass the parameters file name and file type for mime_download.
    Thanks in Advance.
    Regards,
    Haritha.

    Hello Haritha,
    Please see the SAP help:
    http://help.sap.com/saphelp_nw70/helpdata/en/46/9bd97240b81e5be10000000a1553f6/frameset.htm
    Edgar

  • Please can you tell me the default maximum file size for an attachment in Case Management v12 ?

    Hi,
    Please can you tell me the default maximum file size for an attachment in Case Management v12+? I am able to define a maximum attachment size but I am not able to see what the default is set to.
    Thank you
    Regards,
    Anthony

    Hi,
    The default max attachment size is 8MB.
    Regards.
    Mike

  • Can I change the default 'File Type' for PL/SQL Source File to '*.prc' ?

    Want to change the 'default' extension for PL/SQL source to '*.prc'
    When navigating 'File' / 'Save As', and selecting the 'File Type' list box,
    The default 'File Type' for PL/SQL Source File is '*.pls'.
    Can I change the default 'File Type' for PL/SQL Source File to '*.prc' ?
    I have followed , 'Tools', 'Preferences' , 'File Types' and added '.prc' as 'Sql Script' file type, because (PL/SQL Source) is not present in the list.

    You can certainly overwrite the 'Save As' extension as you are saving the file. I have added an ER for more control over this functionality.
    sue

  • How to setup a routing rule for a specific file type for the content organizer?

    Hello,
    how can I set a routing rule for a specific file type, for example for "pdf" or for "docx", for my content organizer?
    As standard I can only choose for the rules the content type, name and title of the file uploaded.
    Thank you in advance!
    JohnyG

    Hi Johny,
    Based on your description, my understanding is that you want to create a routing rule for a specific file type.
    I recommend to create rules with the conditions as the image below shows for the Document content type(for example: .docx files):
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Unable to change File Type for specific file extensions

    Under Preferences->File Types different file extensions are assigned a file type e.g. The file extension .pkb is assigned the file type of PL/SQL. The file type of PL/SQL then opens the Code editor.
    I have a user who would prefer to open .pkb files in the SQL Worksheet editor but I am unable to change the file type to SQL Script as the option is greyed out.
    How do I change the File Type for these extensions? Is there a preferences file I need to change?
    Version: 3.2.20.09
    Thanks for your help.

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

  • How to set default file type for Open dialog

    Dear my friends,
    I am using "At selection-screen ON VALUE-REQUEST FOR filepath" to display open dialog and i want to set default file type for open dialog = *.txt.
    Thank your times !

    Hello,
    U can make use of this code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR SP_FILE.
      PERFORM SAVE_DIALOG CHANGING SP_FILE G_F_RC.
    FORM SAVE_DIALOG CHANGING PO_FILE PO_RC.
      DATA: L_VA_BOXTITLE     TYPE STRING,
            L_VA_DEFAULTFILE  TYPE STRING,
            L_VA_DEFAULTNAME  TYPE STRING,
            L_VA_DEFAULTPATH  TYPE STRING,
            L_VA_DEFAULTFULL  TYPE STRING,
            L_VA_FILTERTEXT   TYPE STRING,
            L_VA_CODE         TYPE I.
      CLEAR: PO_RC, G_F_CONF.
      L_VA_BOXTITLE   = TEXT-B01.
      L_VA_FILTERTEXT = TEXT-B02.
      IF PO_FILE IS INITIAL.
        CLEAR L_VA_DEFAULTFILE.
      ELSE.
        L_VA_DEFAULTFILE = PO_FILE.
      ENDIF.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
        EXPORTING
          WINDOW_TITLE            = L_VA_BOXTITLE
          DEFAULT_EXTENSION       = 'TXT'
          DEFAULT_FILE_NAME       = L_VA_DEFAULTFILE
          FILE_FILTER             = L_VA_FILTERTEXT
          INITIAL_DIRECTORY       = 'C:SAPWorkdir'
        CHANGING
          FILENAME                = L_VA_DEFAULTNAME
          PATH                    = L_VA_DEFAULTPATH
          FULLPATH                = L_VA_DEFAULTFULL
          USER_ACTION             = L_VA_CODE
        EXCEPTIONS
          CNTL_ERROR              = 1
          ERROR_NO_GUI            = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        PERFORM CHECK_ERRORTYPE(Z48M_MATDATA_UP) CHANGING SY-MSGTY.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR PO_FILE.
        EXIT.
      ENDIF.
      IF L_VA_CODE NE 0.
        MESSAGE S818(3F) WITH TEXT-011.
        CLEAR: PO_FILE, PO_RC.
        EXIT.
      ELSE.
        WRITE L_VA_DEFAULTFULL TO PO_FILE.
        G_F_CONF = G_C_XFELD.
      ENDIF.
    ENDFORM.                    " save_dialog
    If useful reward.
    Vasanth

  • Best Video File Type For iTunes and Xbox360

    I have an extensive digital library and I am trying to have one file for all devices.
    What I am looking to do is to have one file that can be managed by iTunes, play on my iPhone and stream to my xbox360 via Connect360 and look good. File size is not a concern. I dont want to do multiple encodes.
    The important features are one file playable by iPhone and Xbox360 via Connect360 that can be managed by iTunes. I would like the video to be of very high visual / audio quality.
    I use handbrake to convert video files.
    My question is, what is the best file type for this scenario? I have used mv4 but more recently I am using MP4 with 264...
    Again, one file to rule them all....
    Thank you in advance!

    Old thread for others, but,,... It isnt necessary to convert a bunch of files, if you have Plex on your pc, and on your iphone/ipad.
    I would have spent a month converting the terra bytes of all the video files that I had but i just airplay and my Plex app to send nearly any type of file on my Imac directly to my Apple tv.
    It converts on the fly any file that isnt supported.

  • Default File Type for New Forms - How to change?

    Hi,
    How can I change propperty: Default File Type for New Forms?
    It is enabled! Do I have to be Administrator to change it? I have SAP ALL..
    SFP -> Layout -> Tools --> Options -> Document Handling
    tnx, Adibo.

    There is no authorisation required for changing the file type. You are saying its enabled, then you can change it.
    Edited by: Nikhil Poojari on Aug 28, 2009 6:50 AM

  • "Problem: Unable to play file type for...". Moderator please help

    When using the spotlfy app from squeeze box I get this message every time: "Problem: Unable to play file type for" then list the song name. I can pick the music and see the art but no play. This is when I am attempting to stream from spotlfy on squeeze box. Logitech customer service told me spotlfy has not been running on squeezebox for weeks. Please help or I'll have to cancel subscription.

    The 3rd party plug-in solved this problem for me, but only after I'd figured out a few other things, so I'm sharing them here: a) You have to have BOTH plug-ins running, both the v 1.0 "official Spotify plug-in "  *and*  the third party plug-in, which is on v2.3.8 as I write this. b) after you have activated the third party plug-in (and re-started the Squuezebox server)  You have to open up the settings for the plug-in ( link in the far right colum)  I don't think it matters how you choose to set these (I didn't mess with them.) The critical thing is that you must log into your Spotify account from within the this plug-in settings screen in order for the 3rd party plug-in to do its job.  (And maybe you'll have to re-start the Squeezebox server yet again.  I just do that without even thinking when trying to sort out these problems.) What makes this all challenging is that the symptoms change at each step:  At first, with just the official plug-in activated, I got the "can't read file format" error message.  After activating the 3rd party plug in (but before logging in from inside it)  Spotify appeared to be working perfectly on the screen of my Squeezbox controller, indicating that a song was playing (even the bright white light  that shows something is streaming was lit.) However. no sound was actually coming through.  After I logged in as above, I finally got music to match all the on-screen indications. No logic to this that I can figure out.  It just seems typical of life with Squeezebox.

  • How do I set the mime type for an attachment to "application/zip"

    I'm sending out an email with a zip file as an attachment. The following code works fine, but the Mimetype for the attachment is set to "application/octet-stream"
    FileDataSource fds = new FileDataSource(zipname);
    DataHandler dh = new DataHandler(fds);
    MimeBodyPart mbp2 = new MimeBodyPart();
    mbp2.setDataHandler(dh);
    mbp2.setFileName(fds.getName());
    I would like the mime type to be application/x-zip. Unfortunately I seem to need a data content handler for this mime type as I get this exception.
    javax.activation.UnsupportedDataTypeException: no object DCH for MIME type application/x-zip
    Building a date content handler in the activation framework seems like a lot of work to do a very simple thing. Am I missing something obvious? Is there a simple way to do this?

    I found the solution after much chasing around. The default mimetypes file that comes with the activation framework does not list zip.

  • Unknown File Type for Adobe Classroom in a Book Fireworks

    I am trying to open sand_river1.jpg cited on p. 74 of Adobe Fireworks Classroom in a Book and am getting a "Could not open file" and "unknown file type" despite the fact that the image is displaying as a thumbnail in the file browser.  I get the message on both Windows and Mac Fireworks CS6.  Is it possible these publication assets were not part of Adobe's QA regression?  Anyway:
    - I'd rather not try to fix this myself since it's an Adobe product and I can wait.
    - has this problem been corrected?
    - is there an errata site for the book?  When I search on Google I am just sent to Amazon and bittorrent.
    thanks

    A quick Google search for that file name confirmed the issue here, and a fixed version for chapter 4 can be downloaded at http://www.jimbabbage.ca/_files/ch4files.zip
    Source: http://blogs.adobe.com/edtechatadobe/2012/06/652.html

  • Default file type for photosmart 7525

    I am trying to find the default file type that is saved to a USB drive when scanning on the HP Photosmart 7525.  This is not my printer, I am just trying to help my sister who lives in another city and is not computer literate.  She scanned some pictures (or so she said, after I sent her the instructions from the manual after I downloaded it) to a memory card.  She is not sure what she is looking at from what she is telling me, it appears as the pictures were all saved to one PDF document. Does any one know if PDF is the default file type that scans are saved to on a memory card?  I cannot find the default file type mentioned in the manual.
    Thanks
    David

    Hi,
    You can check from its software on your computer. For documents it's pdf and for photos it's jpg. But you have to select first.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Premiere Elements file type for Elements Organiser

    I use PSE13 organiser ( for pictures and movies) and editor. I recently purchased Premiere Elements 13 and have just edited my first movie.
    I would like to only access Premiere Elements via the Photoshop Elements organiser, but I am unsure what file type to save my Premiere edited files, so that they can be imported and tagged in the Elements organiser, and also played via the elements organiser.
    I only want to run one organiser. Is this possible and what should I be saving my final Premiere files as after editing. ( in the same way that I save a PSD file to a JPG once editing is complete in elements editor.
    Thanks

    kel30
    Your choice of export to conform to the support of the Elements Organizer seems limiting to me. But....
    If I have a 1080p30 Timeline in Premiere Elements 13 Editor project and export it
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 H.264 1920 x 1080p30
    That file saved to the computer hard drive can be taken into the Elements Organizer 13
    a. displaying a thumbnail with an image from the video
    and
    b. can be played back in the Elements Organizer 13 player.
    I have not gone through all the export choices to sort out which formats will do likewise. But, this particular AVCHD.mp4 (1920 x 1080p30) result is
    as described.
    What is your export choice now and is the end product importing into the Elements Organizer 13, displaying there, and playing back from there?
    ATR

Maybe you are looking for

  • PO approval workflow customization

    we want to send email notification to supplier upon approval of PO approval. Is there any default functionality available or we have to customize a PO approval workflow.

  • Site can't be viewed with IE, works with Firefox and Chrome

    I have a family site that works fine with Firefox and Chrome, but with when we created a new page and uploaded it, it can't be viewed with IE. http://www.thetravelintexans.com/states.htm was modified to add the very last picture in the last row, it w

  • Multiple cursors opened when following BC4J Entity Association in a loop

    I am using BC4J in JDeveloper 9.0.4.1.1 Build 1436 against a 9.0.2 database. (Note the BC4J project was originally created in a 9.0.3 JDeveloper release) In the BC4J project, I have a "Contract" Entity that has a 1-to-1 Association with an "Estimate"

  • How do I pause a subvi from a mager program without stopping the mager program

    Hello to you all I am having a problem and i hope that you can help me, i am traying to make a sub vi to be paused (after it had started to run) at any time that the mager program neads to pause the sub vi. what i mean is that the mager program is ru

  • JCO reading abap RAW data type (truncating?)

    Does anyone have experience reading an Abap RAW data type using JCO?  I am trying to read a GUID (via RFC_READ_TABLE) that is defined as RAW length 16.  When I view this field in SAP GUI, I see 32 characters.  However, when I read this field using JC