Archived document showing unknown file type

Dear all,
Im having a big issue here.
We are using Kofax to scan the document like expenses into the content server(maxdb)
Previously the system is R3 4.7 with EP6. We are able to open the attachment without any issue.
but recently the system has been upgraded to ECC6 7.01, and now the problem comes..
when we click the attachment list, a windows will pop out and we have to save the file with unknown file type to local drive.
Then we have to use the picture and fax viewer to open the saved attachment.
There is no changes on the Kofax bacause we have other systems which with R3 4.7,and ECC6 7.00 are using the the same content server but without any issue.
We usually saved the file with TIF.
We found that the image saved with wrong content type.in OAAD the  "Content-type" is saved with value "i" .
the correct value should be "Content-type" with value "image/tiff"
We have used OAWD to save the TIF file but also having the same issue..

Hi Jason,
Check for the workstation application in DC 30 and define the mime types for all applications like .tiff,.docx i.e. office 2007 files. and second suggestion is that install ECL viewer 6 with patch , it's free at sap marketplace and check these files are opening properly.
Hope this will resolve the query.
Regards,
Ravindra

Similar Messages

  • Dbms_comp_advisor shows unknown compression type for "ARCHIVE LOW"

    I am working on the compression advisor packages in exadata
    Sample:
    dbms_comp_advisor.getratio('TEST1','TEST2,'OLTP',10);
    The output of the code is
    Sampling table: TEST1.TEST2
    Sampling percentage: 10%
    Compression Type: OLTP
    Estimated Compression Ratio: 3.48
    But for Archive Low it says unknown compression type
    Sample:
    SQL> exec dbms_comp_advisor.getratio('TEST1','TEST2','ARCHIVE LOW',10);
    Unknown Compression type.

    I believe you need to use the DBMS_COMPRESSION package.
    http://download.oracle.com/docs/cd/E14072_01/appdev.112/e10577/d_compress.htm
    DBMS_COMP_ADVISOR only works for OLTP & DIRECT_LOAD per
    http://www.oracle.com/technetwork/database/options/compression/compression-advisor-095705.html
    Regards,
    Greg Rahn
    http://structureddata.org

  • XML file considered "Unknown File Type"

    Hi,
    I have XML files that lack an XML declaration. Part of the import process, though, is an XSLT stylesheet that adds one through standard XSLT output (ie, omit-xml-declaration="no"). However, Frame still decides that it is an unknown file type and forces me to select "XML" in that dialog box.
    When I run an XML file through the stylesheet manually (with another processor), I see the declaration added. Furthermore, the externally-transformed file imports without a hitch.
    Any ideas why the declaration is not recognized when added by XSLT during the import process? More importantly, any ideas how to get around this?
    Thanks,
    Russ

    Sylvia, I used the following function, which shows the parameters for F_ApiOpen(). Note that this worked for the one problem I was having with the "unknown file type" dialog box. There are a myriad of other XML errors that can occur which you may not be able to get around.
    Russ
    F_ObjHandleT ws_OpenFile_IgnoreErrors_HonorLock_Visible(StringT ofFilePath)
    F_PropValsT openScript, *returnp = NULL;
    UIntT sn;
    F_ObjHandleT ofDocId;
    openScript = F_ApiGetOpenDefaultParams();
    sn = F_ApiGetPropIndex(&openScript, FS_AlertUserAboutFailure);
    openScript.val[sn].propVal.u.ival = False;
    sn = F_ApiGetPropIndex(&openScript, FS_BookIsInUse);
    openScript.val[sn].propVal.u.ival = FV_DoCancel;
    sn = F_ApiGetPropIndex(&openScript, FS_DontNotifyAPIClients);
    openScript.val[sn].propVal.u.ival = True;
    sn = F_ApiGetPropIndex(&openScript, FS_FileIsInUse);
    openScript.val[sn].propVal.u.ival = FV_DoCancel;
    sn = F_ApiGetPropIndex(&openScript, FS_FontChangedMetric);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_FontChangedMetric);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_FontNotFoundInCatalog);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_FontNotFoundInDoc);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_LanguageNotAvailable);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_LockCantBeReset);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_MakeVisible);
    openScript.val[sn].propVal.u.ival = True;
    sn = F_ApiGetPropIndex(&openScript, FS_NewDoc);
    openScript.val[sn].propVal.u.ival = False;
    sn = F_ApiGetPropIndex(&openScript, FS_OpenBookViewOnly);
    openScript.val[sn].propVal.u.ival = False;
    sn = F_ApiGetPropIndex(&openScript, FS_OpenDocViewOnly);
    openScript.val[sn].propVal.u.ival = False;
    sn = F_ApiGetPropIndex(&openScript, FS_OpenFileNotWritable);
    openScript.val[sn].propVal.u.ival = FV_DoOK;
    sn = F_ApiGetPropIndex(&openScript, FS_RefFileNotFound);
    openScript.val[sn].propVal.u.ival = FV_AllowAllRefFilesUnFindable;
    sn = F_ApiGetPropIndex(&openScript, FS_UseAutoSaveFile);
    openScript.val[sn].propVal.u.ival = FV_DoNo;
    sn = F_ApiGetPropIndex(&openScript, FS_UpdateTextReferences);
    openScript.val[sn].propVal.u.ival = FV_DoNo;
    sn = F_ApiGetPropIndex(&openScript, FS_UpdateXRefs);
    openScript.val[sn].propVal.u.ival = FV_DoNo;
    sn = F_ApiGetPropIndex(&openScript, FS_UseRecoverFile);
    openScript.val[sn].propVal.u.ival = FV_DoNo;
    sn = F_ApiGetPropIndex(&openScript, FS_UseAutoSaveFile);
    openScript.val[sn].propVal.u.ival = FV_DoNo;
    //open the document
    ofDocId = F_ApiOpen(ofFilePath, &openScript, &returnp);
    //we are done with these structures, so deallocate
    F_ApiDeallocatePropVals(&openScript);
    F_ApiDeallocatePropVals(returnp);
    return ofDocId;

  • PS CS3 unknown file type (?)

    Hi
    I've been working in PS CS3 with some images and went to open them tonight and PS gives me an error 'unknown file types' these images were created in PS CS3 and are .jpg
    Any ideas?

    Do you have finder set to show file extensions?
    If you aren't careful when saving, and when you rename a file from untitled.psd (default for new files in PS) to (name).jpg the extension can drop if you switch the file type first and then change the name. It may appear to save it as a jpg, but if it dropped the extension, the Mac Kernel will tell PS that it is an unknown file type, or a generic document and you'll see the error. Without showing extensions in Finder, you're none the wiser when it happens.
    Finder>Preferences and Advanced. Check the box to show extensions. Then look at the files to see if the extension dropped when you saved them.

  • ~evbkreport~.PDF%20  Unknown File Type

    Using BPC 5.0.502
    Trying to save a document from BPC web.  I encuonter the the file extention PDF%20 instead of PDF.  I am able to save from BPC Web, and open using Acrobat.  I must manually resave document as .pdf.    Appset Parameters ALLOW_EXTENTIONS and DEFAULT_EXTENTIONS have PDF as a part of their respective settings.  Any ideasas how to fix?
    Thanks,
    Greg

    Looks like no one has the idea how pdf is showing pdf%20 instead. Maybe you need to convert the file to pdf using a pdf editing software. Read this article on [pdf unknown file type|http://www.pcperformancetools.com/how-to-repair-open-unknown-file-type-extensions.html] for more details, it also provides general insights on how to open unknown file types and repair file extension errors.

  • Adobe printer shows plt file type not pdf

    Just installed Adobe Acrobat XI on Win 7 workstation,
    text documents pdf okay,
    Printing 24 x 36 cad files only shows plt file type, fails to create pdf.
    Didn't have this problem with Acrobat 8 Pro and windows XP,
    what am I missing?

    Some pdf s may not be compatible with the Firefox pdf viewer. Almost all pdf s should display in either the standalone Adobe viewer or the Adobe plugin.
    The built-in Firefox pdf viewer is still undergoing development and improvements. Some of the problems with it will be forthcoming Firefox Releases. Some save file problems should be fixed in fx<s>21</s>fx'''22''' (Currently the Nightly version)
    * Bug 738952 - "Save as..." File menu entry or Ctrl+S produces unexpected results when having a PDF file opened within PDF Viewer
    Workarounds.<br/>Either view using the plugin, or download as is and edit the filetype.
    * see [[How to disable the built-in PDF viewer and use another viewer]]

  • Ld: fatal: file *.a unknown file type

    Hello
    I am using the Sun Forte 7 C compiler and have a strange linking error:
    Towards the end of the build script, the following compiler directive attempts to execute:
    -L/somepath -Bstatic -lnetsnmpmibs -lnetsnmpagent -lnetsnmphelpers
    I get the following error message:
    ld: fatal: file /emc/saffas/local/lib/libnetsnmpmibs.a: unknown file type
    ld: fatal: file /emc/saffas/local/lib/libnetsnmpagent.a: unknown file type
    ld: fatal: file /emc/saffas/local/lib/libnetsnmphelpers.a: unknown file type
    ld: fatal: file /emc/saffas/local/lib/libnetsnmp.a: unknown file type
    I looked at all of the compiler options as well as the READMEs for this compiler and have not been able to solve this problem. I thought this was the standard way to link static libraries. I added the -Bstatic option just in case and that didn't work.
    Any ideas on what I'm missing?
    Thank you,
    dedham_ma_man

    The option -lnetsnmpmibs (for example) tells cc to look for a library called netsnmpmibs. It finds netsnmpmibs.a, which it expects to be an archive library for the same computer architecture.
    The file is evidently something else. Run the "file" command to find out what the file is:
    % file /emc/saffas/local/lib/libnetsnmpmibs.a
    It should say that the file is an "ar archive". If not, that is your problem. Somehow the expected archives were overwritten or replaced by something else.
    You don't say what architecture you are using: 32-bit sparc, 64-bit sparc, or x86. Whatever you are compiling for, the components of the library must be compatible.
    Run the command
    % ar -t <archive>
    to get a list of the components of the archive. Let's suppose one of them is foo.o.
    Extract foo.o using the command
    % ar -x <archive> foo.o
    Run the command
    % file foo.o
    to find out whether the file is of the correct architecture. If not, you are looking in the wrong place for the library, or no library of the correct architecture is available.

  • My download was an unknown file type and cannot be opened

    my download was an unknown file type and cannot be opened

    Sounds like the file extension was dropped when you saved your converted document.  Make sure that the .docx (Word) or .xlsx (Excel) extension appears after your file name when saving your document.
    You should be able to rename the document you already converted by adding the appropriate extension.  The file should then open as expected.
    Let us know how it goes!
    -David

  • 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

  • Java.lang.UnsatisfiedLinkError - Unknown file type.

    Hi
    I am trying load a library file A.so using System.load function and I get the below error
    java.lang.UnsatisfiedLinkError: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: ld.so.1: java: fatal: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: unknown file type (Possible cause: endianness mismatch)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    Can some one please help.
    Also when I am using the libraries of next version,I get the below error
    java.lang.UnsatisfiedLinkError: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: ld.so.1: java: fatal: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: wrong ELFCLASS:ELFCLASS32(Possible cause: architecture word width mismatch)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    Thanks
    Phani

    phani_sridhar wrote:
    Hi
    I am trying load a library file A.so using System.load function and I get the below error
    java.lang.UnsatisfiedLinkError: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: ld.so.1: java: fatal: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: unknown file type (Possible cause: endianness mismatch)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    Can some one please help.
    Also when I am using the libraries of next version,I get the below error
    java.lang.UnsatisfiedLinkError: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: ld.so.1: java: fatal: /u1/weblogic/weblogic92/weblogic92/server/native
    /solaris/sparc/A.so: wrong ELFCLASS:ELFCLASS32(Possible cause: architecture word width mismatch)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    I see several possibilities.
    1. What you are trying to load is not a shared library.
    2. The shared library is compiled incorrectly to match the process space of the VM. There can be any number of causes for this.
    Note that the word width mismatch strongly suggests the second.
    You should start by forgetting weblogic entirely. Write a simple java app and using an explicit path in the load() method, not loadLibrary(), get it to load. Until it works there it you have no chance in weblogic.

  • Unknown file type

    I get an "unknown file type" message when I try to open photos someone emailed to me. I can open them with Windows Photo Viewer, but I cannot import them to my Photoshop Elements 13 organizer. Any ideas how I can get them to import? Thanks!

    Hi,
    What file type is it? - what is the extension?
    Are there any extra "." in the file name - Photoshop Elements tends to assume that the extension (=type) occurs after the first ".".
    this.that.jpg would be rejected
    this_that.jpg would be OK
    You may need to rename your files.
    Brian

  • Unknown File type for QFX with VMWare/Quicken

    I have quicken loaded in VMWare and want to open Quicken from my iMac when double clicking on the quicken QFX file.  I get an error msg "Unknown File type"

    actually, I was trying to open a Quicken for Windows file on my mac desktop.  I have quicken loaded on a Win7 virtual machine under VMWare Fusion.  I ended up solving the problem though, found a setting in the Win7 Default Applications to "Run Windows applications from your Mac's Applications folder".   Not sure why I didn't have this prob;em before my Mavericks upgrade, but all fixed now.  thanks for trying to help.

  • GuessNumber gives unknown file type in ie, firefox is ok

    The guessNumber tutorial greeting.jsp page will not display.
    This page loads fine in firefox, but in internet explorer, it fails to display the page, instead it produces a;
    File Download - Security Warning
    Do you want to save this file?
    Name: guessNumber
    Type: Unknown File Type
    From: localhost
    I Saved the file to disk, here is the contents;
    <!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <HEAD> <title>Hello</title> </HEAD>
    <body bgcolor="white">
    <form id="helloForm" name="helloForm" method="post" action="/guessNumber/guess/greeting.jsp;jsessionid=e8d1b4d483a5ffffffff926a34098a5cc22" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="helloForm" value="helloForm" />
    <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="j_id11:j_id12" />
    <h2>Hi. My name is Duke. I'm thinking of a number from
    <span xml:lang="en_US">0</span> to
    10. Can you guess
    it?</h2>
    <img id="helloForm:waveImg" src="/guessNumber/wave.med.gif;jsessionid=e8d1b4d483a5ffffffff926a34098a5cc22" alt="Duke waving" /><input id="helloForm:userNo" type="text" name="helloForm:userNo" /><input id="helloForm:submit" type="submit" name="helloForm:submit" value="Submit" />
    <p>
    </p>
    </form>
    </body>
    </HTML>
    I believe this to be a browser issue, but am not sure how to resolve it in ie. Any ideas?

    Hi,
    I had a similar problem. Tried as per your suggestion but no luck unfortunately. The content of the generated file is listed below. The strange thing is if you save the generated file with extension .html it renders fine in the browser. Could it be that IE has a problem with .jsp files? I'm running IE 6 as well.
    <HTML>
    <HEAD> <title>Hello</title> </HEAD>
    <body bgcolor="white">
    <form id="helloForm" name="helloForm" method="post" action="/guessNumber/guess/greeting.jsp" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="helloForm" value="helloForm" />
    <h2>Hi. My name is Duke. I'm thinking of a number from
    <span xml:lang="en_US">0</span> to
    10. Can you guess
    it?</h2>
    <img id="helloForm:waveImg" src="/guessNumber/wave.med.gif" alt="Duke waving" /><input id="helloForm:userNo" type="text" name="helloForm:userNo" /><input id="helloForm:submit" type="submit" name="helloForm:submit" value="Submit" />
    <p>
    </p>
    <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="j_id1:j_id2" />
    </form>
    </body>
    </HTML>

  • Numbers error msg: "Unable to open ' .' Unknown file type."

    I last updated this doc 4 days ago, saving it every time I update it. I use it to track my children's school hours throughout the year. I have since restarted my Mac. I went to open this file today, and am getting the error message, "Unable to open ' (name of file)' Unknown file type.
    When I search for the doc under the spotlight, the name of it appears & it is listed as a Numbers doc, but I can't open it.
    Any ideas for a work around? I haven't backed it up in several weeks, so I'll be very sad if I can't retrieve it at all!
    Thanks for your help.

    Have a look here http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache
    PS: Error 2 u 2

  • Safari won't start: WebCore: unknown file type

    Hi all
    Safari/Mail/Software Update etc won't start.
    All complain about WebCore - see crashlog below
    How do I fix or replace it.
    Can I copy from another machine? mine is 15G but my daughters is only 5G
    Host Name: G4Mac
    Date/Time: 2007-11-08 10:00:30.680 +1100
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [71]
    Version: 3.0.3 (522.12.1)
    PID: 456
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    Reason: no suitable image found. Did find:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore: unknown file type, first eight bytes: 0xCA 0xFE 0xBA 0xBE 0x00 0x00 0x00 0x02

    Use the uninstaller found on the Safari 3 Beta disk image to revert to Safari 2.0.4.

Maybe you are looking for