To add new file type in SharePoint

Hi,
I am trying to add new file type for sharepoint site like MSWord, PDF etc.,
Are there any ways to create new file types in SharePoint? My requirement is to create a file type for AutoCAD drawings (.dwg format).
Please note, we are using SharePoint 2007 version!
Thanks

Browse to the Central Admin site
Select the Operations tab
Under the Security Configuration section, click the link for
Blocked file types
Select the Web Application that you would like to modify from the drop down list
Each blocked file extension displayed in the list is blocked by SharePoint.  To enable the blocked file extension, simply remove it from the list.
Check with your type and if its there unblock it.
Regards, Dharnendra Shah "strong belief is the only way to success"

Similar Messages

  • Add New File type to Symbian os 9.1 ?

    Hi all
    I wanna Know is there any way to add new file type (for example AVI Filetype) in S60v3
    - I know that Y-Task (Filetype) can modify File Association (But only for Known file types by Symbian os & cant add New file type)
    Is there another app or trick?
    Thanks in advance

    I don't think there is any trick yet available. But there are 2-3 applications that play AVI media files.

  • Possible? To add new file types to Bridge?

    When a file isn't listed in the file type list in the preferences, then Bridge (in Vista) doesn't allow me any changes for the "open with" function. It seems that I MUST live with Bridge's own handling for this file, even when it is false. (e.g. I already posted that Bridge falsely opens MindManager files using Safari)
    From other management software I know that it is sometimes possible, to manually add new file types to the preferences, e.g. editing an ASCII/txt file where they are listed. This is less elegant, but I would do it, if no other choice. Is there such a file in Bridge? Or do you know an other way to add new file types?
    Thanks, Michael

    Hi,
    You can not extend Oracle Data Mining to have your own algorithm.
    However, you can integrate mining implementations within the DB via SQL, PL/SQL among others.
    Thanks, Mark

  • How to add new file type in the xmp allowed files list

    I have to embed metadatas in files that are not listed in the xmp compatible format ( 3D files like dae or obj).
    Is it possible to describe metadatas in  a "sidecar" .xmp files and ask Bridge to embed this metadatas when uploading the files to a Dam ( e.g. Adobe CQ) like what is possible with Digital Photography raw formats, and is handled by Lightroom ?
    Thanks

    Hi,
    In general it is not possible to use Bridge to embed sidecar XMP information into files like Lightroom is doing it. And Bridge only supports metadata read/write in those formats and in those ways as are defined in the XMP specification.
    But you can use the latest XMP SDK to write your own handlers for file formats that are currently not supported. Those file handlers can then be used in either your own application that uses the XMP SDK or any Adobe Video application like Premiere or After Effects to read/write sidecar files or embed XMP metadata into the files. Currently it is not possible to use those file handler plug-ins in other Adobe image applications like Bridge or Photoshop.
    Please see the XMPFiles Custom File-Handler Plug-in SDK for more information.
    Please note that other applications (like CQ) might probably not automatically pick up the metadata you wrote into the file or in a sidecar file, as the other application might probably not have the "knowledge" or technical means to handle metadata in such file formats where you wrote the metadata in a custom way.
    Regards
    Jörg
    Adobe XMP

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • How can i add new files to my ipod from a different computer  without losing the added files on my ipod?

    how can i add new files to my ipod touch from a diferent computer without losing the added files already on my ipod?

    Email them? Use DropBox?  What type of files?

  • Ironport - new file type group

    Is it possible to create a new file type group on an Ironport c360?  Or is is possible to add a specific file type to an existing group?  I figure there is a config file somewhere with this data but, so far, I'm unable to find it.
    Thanks
    If this is the wrong location for this discussion please redirect me.  I have not been able to read any existing discussions on in the official ironport area.

    Kirk;
      You may want to move this thread to the IronPort > Email Security community to get better exposure.
    Scott

  • New file type for XCode

    Hi!
    I want the XCode to apply C syntax coloring to the .nc files, which are not recognized by it. There are settings to change coloring schemes for known types, but i couldn't find anything to add a new file type. Each time I open a .nc file, I need to select the syntax coloring scheme manually..
    Anybody has any idea on where to find settings for that?
    best,
    Onur.

    I ran into this same problem just yesterday and I was glad to even find out that I could temporarily fix the problem by relaunching the finder. It also happened to my while I was renaming files. It allowed it for a few files and then all of a sudden, nothing. I couldn't type, or do any key commands with anything related to the finder, although all of my application files were fine.
    I am clueless as to how to permanently fix this problem, although i am thankful to read on how to relaunch the finder to fix it for a bit.
    I'll keep checking back to see if some guru stops by with the answer.
    Thanks for posting!

  • How to add new data type

    I need to add new data type like SDO_GEOMETRY in spatial Oracle.
    I don't mean the User-Defined Datatype but new datatype imbed in the database.
    It might be written in C++ or Java but I do not know how.
    Any hints and help will be appreciated. Thanks,

    > It is not simply defining new VARCHAR3.
    I will compare embedded new built-in data type and UDT as part of my research.
    What I really meant was what do you want from your new type that a user-defined object can't give you? (Apart from the obvious shortcomings of Oracle object types being addressed, but that could take a while.) You specifically said "I don't mean the User-Defined Datatype but new datatype imbedded in the database" and I wondered what you meant by that.

  • How do i ADD a file type (such as Quicktime mov) that is NOT listed in the Content Type list?

    All the instructions I find when searching for how to ADD a file type just explain how to manage how Firefox handles that file type. And that is not possible when the file type is not in the list.

    Usually MOV is played by the QuickTime plugin. Some other plugins also may handle MOV. This is handled by entries in a hidden database, but you can view the contents if you type or paste about:plugins in the address bar and press Enter.
    In looking at your plugins list under "More System Details" I don't see QuickTime. Is it disabled (set to "never activate") on the Add-ons page? Missing?
    Tools menu > Add-ons > ''in the left column, click'' Plugins

  • Need to add new condition type using   BAPI_SALESORDER_CHANGE

    Hi all,
    I am using BAPI_SALESORDER_CHANGE to add new condition type for an order item.
    I am able to add it, but problem here is, that i want that condition type to be manually changable. Here, in BAPI, after execution, condition type field becomes disable.
    My code is as follows:
                    MOVE 'B' TO wa_logic-pricing.
                      MOVE 'X' TO wa_logic-cond_handl.
                      wa_cond-itm_number = wa_vbap-posnr.
    *                  wa_cond-cond_st_no = it_konv1-stunr.
    *                  wa_cond-cond_count = it_konv1-zaehk.
                      wa_cond-cond_type =  it_discount-kschl.
                      wa_cond-CONDORIGIN = 'C'.
                      APPEND wa_cond TO i_cond.
                      CLEAR: wa_cond.
                      wa_condx-itm_number = wa_vbap-posnr.
    *                  wa_condx-cond_st_no = it_konv1-stunr.
    *                  wa_condx-cond_count = it_konv1-zaehk.
                      wa_condx-cond_type =  it_discount-kschl.
                      wa_condx-updateflag = 'I'.
                      wa_condx-COND_VALUE = 'X'.
                      APPEND wa_condx TO i_condx.
                      CLEAR: wa_condx.
    FORM f_update_order .
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = salesdocument
          order_header_in  = wa_headerdata
          order_header_inx = wa_headerdatax
          logic_switch     = wa_logic
        TABLES
          return           = it_return
          order_item_in    = i_itemdata
          order_item_inx   = i_itemdatax
          conditions_in    = i_cond
          conditions_inx   = i_condx.
      IF NOT it_return[] IS INITIAL.
        PERFORM f_commit_or_rollback.
      ENDIF.
    ENDFORM.
    Please let me know, if it could be achievable.
    Best regards,
    Meena
    Moderator Message: Corrected the code tags. You need to use flower brackets.
    Edited by: kishan P on Aug 25, 2010 6:04 PM

    Hi,
    This is the demo code i am writing:
    Even Change manual entry field in BAPI did not helped me.
    [code]REPORT  ZTESTM1.
    data: l_knumv type knumv.
    DATA: it_return        TYPE STANDARD TABLE OF bapiret2,         "Internal table for t_txt_ret
           wa_return        type  bapiret2.
    data: begin of it_konv occurs 0.
           include structure konv.
           data: end of it_konv.
    data: logic_switch type standard table of    BAPISDLS,
          wa_logic type BAPISDLS.
    data:itemdata type STANDARD TABLE OF BAPISDITM,
          wa_item type   BAPISDITM.
    data : salesorder type BAPIVBELN-VBELN.
    data:itemdatax type STANDARD TABLE OF BAPISDITMx,
          wa_itemx type   BAPISDITMx.
    data: wa_header type BAPISDH1,
          wa_headerx type BAPISDH1X.
    data: i_cond type STANDARD TABLE OF BAPICOND,
          wa_cond type BAPICOND.
    data: i_condx type STANDARD TABLE OF BAPICONDX,
          wa_condx type BAPICONDX.
    move '0060008601' to salesorder.
    move '000010'  TO wa_item-itm_number.
    append wa_item to itemdata.
    move ' '  to wa_header-BILL_BLOCK.
    move   'U'  to wa_headerx-UPDATEFLAG.
    move  'X' to wa_headerx-BILL_BLOCK.
    MOVE: 'U'  to wa_itemx-UPDATEFLAG,
         '000010'  TO wa_itemx-itm_number.
         append wa_itemx to itemdatax.
    move 'B' to wa_logic-PRICING.
    move 'X' to wa_logic-COND_HANDL.
    select single knumv from vbak into l_knumv where vbeln = '0060008601'  .
    select * from konv into table it_konv where knumv = l_knumv  and kposn = '000010'.
          wa_cond-ITM_NUMBER = it_konv-kposn.
          wa_cond-cond_type = 'Z550'.
          wa_cond-CONDCHAMAN = 'X'.
           append wa_cond to i_cond.
           clear: wa_cond.
    wa_condx-ITM_NUMBER = it_konv-kposn.
    wa_condx-COND_TYPE = 'Z550'.
    wa_condx-UPDATEFLAG = 'L'.
    append wa_condx to i_condx.
    clear: wa_condx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = salesorder
       ORDER_HEADER_IN             = wa_header
        order_header_inx            = wa_headerx
       LOGIC_SWITCH                = wa_logic
      tables
        return                      = it_return
       ORDER_ITEM_IN               = itemdata
       ORDER_ITEM_INX              = itemdatax
       CONDITIONS_IN               =   i_cond
       CONDITIONS_INX              =   i_condx
      EXTENSIONIN                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.[code]
    Thank you.
    Meena

  • Add new font types to SAP GUI

    Hi,
    I'm trying to add new font types to SAP GUI to be available to edit smartforms and mail forms, but, after I do the upload in SAP system (by SE73 transaction)of ARIAL font, when I associate it to a smartstyle, what really appears with ARIAL name is a Times New Roman font example.
    Greetings,
    Nuno Moreira

    Hi Nuno,
      Maybe this question isnt corresponding with this forum. But I have a thread with the answer... look at
    Re: Adding a new font for SAPscript/SMARTFORM output
    Regards.
    Manuel

  • How to automatically add new files to external iTunes Media Library

    I have an external hard drive that I store all of my music on and have set as my iTunes media file location. When I connect it, I open iTunes and can play all of my songs off of the hard drive with no problem. But many times I do not have my external hard drive plugged in when I purchase and add new files onto iTunes. Because of this, even though I have my preferences set to automatically add new iTunes files to the external media folder, when I connect my hard drive, the files will not be on the hard drive's media folder and they will not immediately transfer over to the hard drive, and I will then have to add them manually. Is there a setting that I can use that will set all new or recently added files on my iTunes to be transferred over to my external hard drive once it is connected? Or maybe a command that compares my iTunes with my external media file folder and transfers all new media over to my external folder? Any help would be appreciated.

    Well I actually found something that was fairly close to what I was looking for. If you right click a file or selection of files then click the option 'consolidate files' you can copy them to the media library. I guess I'll just have to filter my recently added playlist by the right amount of time then use the consolidate option. I still think that making a feature that automatically copys newly added files to the external media folder once it is connected would be a very worthwile investment in Apple's time

  • Add new file properties @ knowledge management

    hi,
    i wanna add new file properties to knowledge management.
    but i cant find any source about it.
    thanks for replies.
    Orhan

    Hi
    Please follow below notes
    Note 739829 - Central Note for Performance of EP KMC
    regards
    nag

  • CustomEditor Extension - How to add support for a new file type...

    Folks,
    I'm trying to use the CustomEditor extension as a basis for a new editor that will work with an arbitrary extension (say ".foo").
    How do I tell JDeveloper that .foo files should be opened by my wonderful new extension?
    I've created a Node class called 'FooNode' to represent my .foo file. It extends DeployableTextNode and overrides the two public variables that appear to specifiy what file types this node represents:
        public static final java.lang.String EXT = ".foo";
        public static final java.lang.String EXT2 = ".bar";The relevent piece of code is in AnAddin.java and appears to be:
      public void initialize()
        EditorManager eMgr = EditorManager.getEditorManager();
        eMgr.register(this, new Class[] {/*XMLSourceNode.class,*/ FooNode.class });
      }This doesn't work - I can't get JDeveloper to recognize .foo files and bring up my editor. What am I doing wrong?
    David Rolfe

    From our development team:
    For the IDE to recognize a new file extension, it needs to be
    explicitly registered with the IDE framework. So the static
    final field named EXT isn't automatically detected. To
    register the extension (this is the JDev 10.1.3 API):
    import oracle.ide.model.Recognizer;
    Recognizer.mapExtensionToClass(".foo", FooNode.class);

Maybe you are looking for

  • Processing Inbound IDOC's from FTP.

    Hi,          I have an issue where IDOC's (WPUBON01 & DEBMAS01) are being saved in ftp folder and once these IDOC's are saved, we have to process it in SAP System, i would like to know the simple way of having these IDOC's processed in Unix based SAP

  • Tried to install OSX on my macbook pro but install failed, now it won't restart

    I Downloaded OSX onto my macbook pro and then I keep getting a message that installation failed. Now the machine is stuck in loop and won't go to my normal desktop screen.

  • Signed applet does not grant AudioPermission "record"

    From what I gather, if I have a trusted signed applet sitting on a webpage and the visitor accepts (runs) the applet, then they should not need to have: grant { permission javax.sound.sampled.AudioPermission "record"; in their java policy file. Well

  • Problems with a recursive stack

    Hello! I?ve got problems with a recursive stack. I?ve got a stack overflow error. Here is my push method. public void push(Object o)     StackRekursiv stack = new StackRekursiv();     stack.top = top;     stack.rest = rest;     if(top==null && rest==

  • Typekit fonts not available in Lightroom (and only in Lightroom)

    Hi, I have been a Creative Cloud member (full membership) for quite a while now and just this week I noticed that Typekit fonts I've synced to my computer are available on all the CC apps I use, except for Lightroom. The fonts are evidently synced co