Base file type error on import

I created a bunch of custom item types in my dev environment.
then i decided to clean up the ones i wasn't using, so that I, and content owners wouldn't be tempted to use them.
one of the item types i deleted was the base file type.
all kinds of content items which had been loaded and tagged with properties dissappeared, many pages quit working, all kinds of problems.
I rebuilt the base file type
then repaired all the pages
then added all the content back
HOWEVER, now I am unable to import a transport set built from these "repaired" pages...because i get an error saying that the base file type does not match.
So...I exported and imported the shared items...thinking that my rebuilt base file type would now be in the target environment as well. Didn't work.
Any ideas how to fix my blunder? And oh by the way...NEVER DELETE A BASE FILE TYPE.
Thanks for any help.

hi dennis,
looking at your problem i suggest opening a service request with oracle support services. this looks like a severe problem that will be hard to diagnose in this forum.
regards,
christian

Similar Messages

  • Is 4/4 time the only time signiture available and what audio file type can will import using the media browser?

    Is 4/4 time the only time signiture available and what audio file type can will import using the media browser?

    latela33 wrote:
    Is 4/4 time the only time signiture available
    so far, yes, if you want more, be sure to let Apple know:
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    latela33 wrote:
    what audio file type can will import using the media browser?
    44.1k/16-bit AIFF, WAV, or Caf files

  • Unsupported File Type Error

    I received this error when trying to open a .psess file.  The error message:  When opening .psess file the files listed will not be imported as it is not a supported file type.  Please advise.

    You can’t open a project file from another PC because the pse file is only stored in the Elements data base on the PC on which it was created.
    You firstly need to output your slideshow to a CD or wmv file.
     

  • File type error

    hi,
        iam developing a program to download data from SAP table to  flat file using BAPI. when iam executing it is giving file type different error.
    pls help. this is code
    *& Report  Z_RTP_I_INTERNALORDER
    REPORT  Z_RTP_I_INTERNALORDER NO STANDARD PAGE HEADING.
       PROGRAM - ID              :
       MODULE                    :  MM
       DATE                      :
       PROGRAMMER                :
       PROGRAM DESCRIPTION       :
    ------------------ TABLE WORK AREA -----------------------------------
    TABLES: COAS. " ORDER MASTER FOR CONTROLLING
                 SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS: P_COMP TYPE COAS-BUKRS. " COMPANY CODE
    *PARAMETERS: P_FILE(30) TYPE C.
    PARAMETERS: P_FILE LIKE  RLGRAP-FILENAME OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    *DATA: P_FILE TYPE STRING.
    *P_FILE = 'C:\CHANDRA.TXT'.
    INTERNAL TABLE DECLARATION
    DATA BEGIN OF IT_COAS OCCURS 500.
         INCLUDE STRUCTURE ZCOAS. " STRUCTURE FOR COAS
    DATA END OF IT_COAS.
    BAPI FUNCTION MODULE -
    *ZBAPI_INTERNAL_ORDER_LIST   "BAPI FOR TO GET THE LIST OF INTERNAL ORDERS
    AT SELECTION-SCREEN ON VALUE-REQUEST for P_FILE.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
       DYNPRO_NUMBER       = SYST-DYNNR
       FIELD_NAME          = 'P_FILE '
    IMPORTING
       FILE_NAME           = P_FILE.
    START-OF-SELECTION.
    CALL FUNCTION 'ZBAPI_INTERNAL_ORDER_GETLIST'
      EXPORTING
        BUSINESSUNIT       = p_comp
    IMPORTING
      AUFNR              =
      KTEXT              =
    TABLES
      RETURN             =
    LIST               = IT_COAS.
    *--GUI_DOWNLOAD--
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
       BIN_FILESIZE                    =
         FILENAME                        = P_FILE
         FILETYPE                        = 'ASC'
       APPEND                          = ' '
       WRITE_FIELD_SEPARATOR           = ' '
       HEADER                          = '00'
       TRUNC_TRAILING_BLANKS           = ' '
       WRITE_LF                        = 'X'
       COL_SELECT                      = ' '
       COL_SELECT_MASK                 = ' '
       DAT_MODE                        = ' '
       CONFIRM_OVERWRITE               = ' '
       NO_AUTH_CHECK                   = ' '
       CODEPAGE                        = ' '
       IGNORE_CERR                     = ABAP_TRUE
       REPLACEMENT                     = '#'
       WRITE_BOM                       = ' '
       TRUNC_TRAILING_BLANKS_EOL       = 'X'
       WK1_N_FORMAT                    = ' '
       WK1_N_SIZE                      = ' '
       WK1_T_FORMAT                    = ' '
       WK1_T_SIZE                      = ' '
    IMPORTING
       FILELENGTH                      =
       TABLES
         DATA_TAB                        = IT_COAS
       FIELDNAMES                      =
    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
        OTHERS                          = 22.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    chandu

    Hi,
    Do this
    PARAMETERS       : p_sumfl TYPE char255.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_sumfl.
    *-File Path For Summary Report
      PERFORM f2000_filepath_f4 USING lc_s
                             CHANGING p_sumfl.
    *-------Form
    FORM f2000_filepath_f4  USING xv_indicator TYPE char1
                         CHANGING xyv_filepath TYPE char255.
    *---------------Popup for file name---------------------*
      CONSTANTS :
             lc_dft_ext    TYPE string VALUE 'XLS',
             lc_file_flt   TYPE string VALUE '*.xls',
             lc_int_drc    TYPE string VALUE 'C:'.
      DATA : lv_win_title  TYPE string,
             lv_file_name  TYPE string,
             lv_dft_fname  TYPE string,
             lv_fname      TYPE string,
             lv_path       TYPE string.
      CLEAR: lv_fname,
             lv_path,
             lv_file_name,
             lv_win_title,
             lv_dft_fname.
    *---------------Set File Details F4 Based on Report Type--------------*
      IF xv_indicator = lc_s.
        lv_win_title = text-045.
        lv_dft_fname = text-038.
      ELSE.
        lv_win_title = text-044.
        lv_dft_fname = text-033.
      ENDIF.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = lv_win_title
          default_extension    = lc_dft_ext
          default_file_name    = lv_dft_fname
          file_filter          = lc_file_flt
          initial_directory    = lc_int_drc
          prompt_on_overwrite  = lc_true
        CHANGING
          filename             = lv_fname
          path                 = lv_path
          fullpath             = lv_file_name
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0 OR lv_fname     IS INITIAL
                       OR lv_path      IS INITIAL
                       OR lv_file_name IS INITIAL.
        CLEAR xyv_filepath.
      ELSE.
    *---FilePath
        xyv_filepath = lv_file_name.
      ENDIF.
    ENDFORM.                    " f2000_filepath_f4
    *--------Gui Download
      PERFORM f9000_save_detail_report TABLES lit_det_report
                                        USING p_sumfl
                                              p_detfl.
    *--------Form------------------------------------------*
    FORM f9000_save_detail_report
                           TABLES xt_det_report  STRUCTURE ls_det_report
                            USING xv_sum_fp      TYPE      char255
                                  xv_det_fp      TYPE      char255.
    *---Load Header Data of Detail Report
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = lv_file_name
          filetype                = lc_file_type
          write_field_separator   = lc_true
          codepage                = '4103'
        TABLES
          data_tab                = lit_head_det
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5

  • Open Batch Multi Load file type error

    Hi,
    I have been trying to use Open Batch MultiLoad via FDM Workbench, but encountered error that it .csv file type is unknown at Import stage.
    A couple things that I have tried:
    - Using multiload via FDM Web Interface to load the .csv file: Success
    - Using open batch multiload via Workbench to load the .csv file: Failed
    - I tried to rename the .csv file itu .txt (without changing the content), tried to use open batch multiload via Workbench to load the .txt file: Success
    It seems that if I try to execute open batch multiload, FDM is able to read the CSV format but refuse the .csv file type to be processed.
    Do I miss something for using openbatch multiload to load .csv file?
    Thanks,
    Erico
    *[File Content]*
    LOC1
    Budget
    1/31/2008
    2
    R,M
    Center,Description,ACCouNT,UD1,UD3,UD4,DV,v,v,v,UD2
    Sunnyvale,Description,Sales,GolfBalls,,,Periodic,1001,2001,3000,Customer2
    Sunnyvale,Description,Purchases,GolfBalls,,,Periodic,2001,3001,4000,Customer2
    Sunnyvale,Description,OtherCosts,GolfBalls,,,Periodic,4001,5001,5000,Customer2*[Error Message Received]*
    Invalid object Node=ML40942.3981712963_P1?MULTILOADFILE.,CSV_UNKNOWN FILE TYPE IN MULTILOAD BATCH FOR FILE [MULTILOADFILE.CSV]! - 35610
    *[FDM Version]*
    FDM 11.1.2.1

    Kemp2 wrote:
    Hi Erico,
    What is the fix for this issue? I am having same issue.
    Thx
    KempHi Kemp,
    I didn't get the fix for this issue. Since we decided to not use the Open Batch Multi Load (not because this issue), I stopped researching on this issue.
    But some workaround that you might want to try:
    <li>Simply have the source file in .txt file type</li>
    or
    <li>Since open batch uses script, before executing the Multi Load script, change the file type from .csv to .txt using script</li>
    Hope this helps.
    -Regards

  • I can not select oracle forms file type on translationHub import file menu,why?

    I had Create New Project Base Translation project,than,i press "Import File" menu,press "select files" button,
    and i found the file type list had "oracle report file(*.rex)" and "ALLfile(*.*)",but no Oracle forms file type list,
    Why,and i can do it ?

    Read this document on metalink 1559704.1

  • Can I exclude files types (extensions) or Import only specific Types?

    Hello,
    I am trying to import thousands of pictures into Lightroom as I have a mess of pictures do to a long story...But basically I have probably 30,000 pictures in a bunch of folders that I want to import.
    One issue I have found is that I don't want to import TIFF, BMP, GIF, or things like PNG.  I really only want jpg files or jpeg files unless I stumble across others in another format I haven't found yet.
    Can I set something during the import?  I have searched the forums and internet, but haven't found anything that mentions this.
    Can someone please help?  Also does anyone have a good suggestion on how to clean up a mess like this where I have 30,000 pictures but probably only need 10,000 as there are duplicates upon duplicates due to having to move the pictures around in a hurry as I had a mess in my basement during a storm a couple years ago. 
    Thanks,
    Evee

    You can't do it at import, although LR will skip any unsupported file types (BMP, GIF, PNG).  Once you've imported though, you can easily filter for the TIFFs and remove those from the catalog without deleting from the hard drive.
    Are you wanting to move the LR photos into their own folder structure at the same time, or leave them where they are?

  • "Try Selecting a Different Printer or File Type" Error - iPad2 - Officejet Pro 8600 - ePrint error

    Greetings...
    I just got an Officejet Pro 8600 and I've been trying to get web pages to print using HP ePrint from my iPad 2 (iOS 7.0.6). I go into the ePrint app, go to web page of choice, and then click on my printer option to print. It renders on screen and then throws out the following error:
    "Try Selecting a Different Printer or File Type" "Officejet Pro 8600 [5124FC] doesn't support this file type."
    I can use ePrint from the iPad to print pictures from camera roll.
    This only is problematic when I try to print web pages (I tried amazon.com for test).
    I have no problems doing this from my iPhone...only the iPad.
    I've tried rebooting device and trying again....same thing.
    Anybody know how to fix this? I really want to be able to print web pages from my iPad.
    Thanks in advance...
    Possie

    Hello Possie,
    Thank you for the update.  I have to say I'm surprised and disappointed that the uninstall and reinstall did not resolve the issue, especially since you can print the page from your iPhone.
    I have spent some time researching this and working with my colleagues in HP's Cloud Services and we have a couple of suggestions/questions.
    Do you get the same error when you try to print the web page using Apple's AirPrint feature? 
    Please ensure the iPad is connect to your home wireless network and try to print again.
    Please try changing the settings in the ePrint app before printing the web page.  Please ensure that the paper quality is set to normal (see screen shot below) and that the paper size is set to letter (see 2nd screen shot below).
    Please let us know how it goes. 
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • "Unsupported file type" error Msg on received email - DX2

    I get an "Unsupported file type" message instead of the intended msg on some of my emails.  Just what does this mean and how do I fix it?

    JR39 wrote:
    I get an "Unsupported file type" message instead of the intended msg on some of my emails.  Just what does this mean and how do I fix it?
    Hi JR39,
    The error message outlined in your post indicates that your email message includes a file that is not compatible with any of the applications included in your phone. You may look for a compatible third party application that will allow you to read/access the files in question.
    Please note that Verizon Wireless does not recommend/support any 3rd party applications and if you encounter any issues with a 3rd party application you will need to contact the application's developer for assistance.

  • Podcast file type error?

    After updating to the latest version of iPod SW, my Podcast playlist disappeared and I get this error message when i try to update my podcasts
    "An error occurred while updating the default player for audio file types. You don not have enough access privileges for this operation."
    Any clue to why I get this and what happened to my podcasts?

    After updating to the latest version of iPod SW, my Podcast playlist disappeared and I get this error message when i try to update my podcasts
    "An error occurred while updating the default player for audio file types. You don not have enough access privileges for this operation."
    Any clue to why I get this and what happened to my podcasts?

  • Qucktime file type error in Firefox

    In Quicktime, the MIME types are not selected to play flash, yet in Firefox they continue to attempt to play flash (which they can't do). In IE they work fine, and it plays with Adobe Flash Player. But in Firefox, even when I change the file type specifications, Quicktime still tries to play the flash files. Is there a way to fix this? I have also gone into Firefox options and configured file types, but it still doesn't work. Someone help me!
    Custom Made PC   Windows XP  

    Open the Folder Options control panel click on File Types and check out how things are configured in there to open various file types with whatever application

  • FW MX, Mac OSX: "unknown file type" error

    Hi everyone,
    I'm having troubles opening a file created in FW MX.
    When I first tried saving it, I got a message that the "file
    could not
    be found". I figured that was due to the enclosing folders
    containing
    accented characters and I saved it to the HD's root instead.
    That seemed to work fine, however when trying to open the
    file, it now
    tells me "Could not complete your request. Unknown file
    type."
    Any ideas?
    Cheers Martin

    Hello Issebek1 and welcome to the Palm forums.
    The Voice Memo application on the Treo 755p is not compatible with the Voice Memo conduit that is available for Palm Dektop on the Mac and the PC.  If you need to sync voice memos, you may need to purchase a third-party application for voice memos that can sync them back to your Mac.  I would check with MotionApps' mVoice.
    As for the duplicate calendar records, the log indicates that you are making changes to the record on the Mac and on the Palm without first performing a HotSync after changing the appointment on either side.  I would clean up the records on the Mac, and then set the Calendar conduit to Desktop overwrites Handheld and then perform a sync.  Then switch the Calendar contact back to Synchronize.
    Alan G
    Post relates to: Treo 755p (Sprint)

  • What file types should I import?

    Hey Everyone.
    I've been using the same process for years to create my videos and burn them to DVD.
    I capture and edit with FCPro and Motion.
    I export out of FCPro with the
    File>export>Export using compressor from the final cut menu.
    This opens up compressor.
    I always set the compressor settings to DVD Best Quality 90 minutes.
    Then I import those MPEG2 files into DVDSP and continue the process from there.
    It dawned on me today that I may not be doing this in the correct way. I started thinking... an MPEG 2 file is a compressed file. Then I import that file in DVDSP... does it compress it again. Doesn't it recompress it into a VOB file... so in essence I'm compressing it twice.
    Can someone clarify this for me.... Thanks in advance.
    -Fraky

    It dawned on me today that I may not be doing this in the correct way. I started thinking... an MPEG 2 file is a compressed file. Then I import that file in DVDSP... does it compress it again. Doesn't it recompress it into a VOB file... so in essence I'm compressing it twice.
    Some things will be recompressed, mainly on menus if you make them a certain way,, but otherwise DVD SP will not recompress m2vs that are on tracks or otherwise...in other words encoding assets outside DVD SP with Compressor for m2v and AC3/Dolby is the way to go.
    The VOBS are not recompressed, they are muxed.
    In other words it sounds like you are generally doing things fine

  • File Uknown Error While Importing

    I'm trying to import some quicktime clips into final cut and I keep getting amessage saying "Error File Unknown." The file is .mov and I can't think of a reason why it won't import it.
    Any Suggestions?
    -Matt

    .mov can be anything, really.
    Try using Quicktime to EXPORT the mov to DV/NTSC or something like that.
    Also -- where did you get it from? Could it be from an AVID machine? You'll need the avid quicktime codecs if that's the case.
    CaptM

  • Changing iTunes File types once ALREADY imported!

    I have imported my whole cd collection as AAC files, and now that I want to copy these to my USB Flash Disk and play on my friends computer, I CANT! Is there any way I can change all the files in my library from the AAC to MP3 format? Without re-importing the whole cd collection again? (So you know: I've changed my preferences for future importing. Preferences > Advanced > Importing > Import Using: MP3 Encoder)
    Dell Dimension   Windows XP  
    Dell Dimension   Windows XP  

    hiya!
    (So you know: I've changed my preferences for future importing. Preferences > Advanced > Importing > Import Using: MP3 Encoder)
    you've done most of the set-up work for the technique already. see the information on the "Convert" function in this document:
    iTunes: About the Add to Library, Import, and Convert functions
    love, b

Maybe you are looking for

  • Reading an XML file stored in Oracle

    Is it possible to read an xml file stored in Oracle via Oracle methods?

  • Trigger Mail in BPM

    hi, Scenario. IDOC ->XI->HTTP. I am using BPM. There are 10 receivers. I have the following Steps: Start, Receive, Block, Switch (10 branches), each branch has the corresponding configuration for its receiver with Transformation and Send step. I have

  • Outlook 2010 Hyperlink not working

    Windows 7 machine with Office 2010. I just had to rework my computer because my HHD had a melt down. After buying a new HHD and reinstalling all of my software i am having issues with my Outlook Emails. When i open an email with a link, when i click

  • Exeuting a file in another forest

    Hello Community     Using Windows 2008 Server on a network there is a file that I am attemping to execute in another forest.     Lets call them Forest1/Domain1(trusted) and Forest2/Domain2(trusting) in a One-Way Trust Relationship.     Server1 is in

  • [SOLVED]USB stick shown twice in nautilus

    After I've accidently unsafely removed my usb stick, it is now displayed twice in nautilus: Every other usb stick, dvd or alternative media works as normal. It's this specific usb stick. Any ideas how to make things normal again? I already tryed remo