DMS File Upload of Any Extension and DMS File View

Hi,
I want to upload files in DMS and I have written FM for that. It's working fine with txt files but if I upload image file or pdf
files then at the time of view only text files shows.
In case of PDF File is corrupt message comes and In case of Image Popup is coming and automatically close.
In case of image when I upload jpg image, at the time of view extension is coming in form of LML.
Please solve this...
It's urgent.
Thanks and Regards,
Amit

Hi Arivazhagan Sivasamy  ,
I have used this but problem is still same.
thanks..

Similar Messages

  • Activity Report download is saved without extension and unreadable

    Hello,
    The Portal Activity Report iView has a button which enables the user to download the report to his PC.
    The problem is that when the user clicks on that button and saves the file it is being saved by this default name: com.sap.portal.activityreport.frontend.DownloadableActivityReport
    The main problem is that it is being saved by default without any extension and after saving the user needs to manually add the .xls suffix.
    Another problem is that once I open the report with Excel The Object Name column is unreadable.
    Is there any way to resolve these issues?
    Roy

    Hi Roy,
    > if it wasn't supported there
    > or you would still consider it as a bug?
    The feature in general of course was supported, but what I cannot say is if it was a known issue that it didn't work correctly. As I dont't use the ActivityReport, I also have no experience if it didn't work at some time and maybe now is working.
    The wrong filename I don't expect to be corrected in the meanwhile, as said, that's a problem in some places. So at least for this you could open an OSS message. And maybe combine this with the problematic column issue.
    But if upgrading to SP18 would be an option for you, maybe you could first test that.
    Hope it helps
    Detlev

  • Can't install any extensions

    Has anyone had this problem? I try to install an extension
    (any extension) and I get the following error pop up:
    EXTENSION MANAGER
    Can't find installer file ...............then here it lists
    where my extension is located.
    I have Dreamweaver CS3 for the MAC
    Has anyone else had this problem? I've tried re-installing
    the software, but it doens't help. I've tried just re-installing
    the extension manager, from a file found on the ADOBE website, but
    it won't let me - it says - user original installer.
    HELP!

    Never Mind - I figured out the problem

  • Hi, I have recently updated my iMac from OS x mountain lion to OS X Mavericks. After that I can't upload any video and some files to my personal email account. Can anyone please help me to sort this problem.

    Hi,
    I have recently updated my iMac from OS x mountain lion to OS X Mavericks.
    After that I can't upload any video and some files to my personal email account.
    I have tried to send a small video clip to the sender as attachment. i have done this before
    with the same video same and same email account. This problem found just after installed the
    OS X Movericks. Can anyone please help me to sort this problem.
    Thanks.
    Roman

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in earlier versions there is only one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • File Upload in BSP Applications and store in Application server

    Hi we have requirement to store the attachments from BSP application into the external/internal storage space connected to application server.
    I search for weblogs and all talking about <a href="http://help.sap.com/saphelp_me21sp2/helpdata/en/eb/8c683c8de8a969e10000000a114084/content.htm">File Upload in BSP Applications and store in MIME Repository</a>.
    But our requirement is upload and store(no need to read the file content) attachments from BSP page into file server, and then make a link back in BSP page to open.
    I know we can handle documnets in R/3 using DMS, but our system is SRM.
    Please give a suggestion and solution.
    Thanks,
    Giri

    Hi,
    I faced a similar problem some time ago (uploading a file via BSP, storing it to the application server and then linking the archived document to a business object.
    Here is the coding I used:
    when 'SubmitUploadFile'. "OnInputProcessing
        DATA: data_fileupload TYPE REF TO CL_HTMLB_FILEUPLOAD,
              l_filename type string,
              l_archiv_doc_id type SAPB-SAPADOKID,
              l_content type string,
              l_file_ixos(100) type c value '/transfer/PV2/aus/IXOS/',
              l_file(200) type c,
              tbl_bin TYPE STANDARD TABLE OF tbl1024,
              wa_bin type TBL1024,
              l_xstring type xstring,
              l_arc_doc_id type SAPB-SAPADOKID,
              l_doctype type TOADD-DOC_TYPE,
              l_filename_e type DRAW-FILEP.
    upload the file from the BSP web interface (e.g. file C:TempSUTestPDF_SU.pdf)
        data_fileupload ?= CL_HTMLB_MANAGER=>GET_DATA(
                                           request = runtime->server->request 
                                           name    = 'fileUpload'
                                           id      = ‘InputFieldFileUpload’
        IF NOT data_fileupload IS INITIAL.
          l_filename         = data_fileupload->file_name.
          l_content      = data_fileupload->file_content.
          l_content_type = data_fileupload->file_content_type.
        ENDIF.
    The uploaded file is returned as XSTRING, so we have to convert it to BINARY
    (or STRING alternatively)!
        l_xstring = l_content.
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            BUFFER          = l_xstring
            APPEND_TO_TABLE = 'X'
          TABLES
            BINARY_TAB      = tbl_bin.
    split path for storing the file to the application server
        l_filename_c = l_filename.
        CALL FUNCTION 'CV120_SPLIT_PATH'
          EXPORTING
            PF_PATH  = l_filename_c
          IMPORTING
            PFX_FILE = l_filename_e.
    write the uploaded file to the application server
        l_filename = l_filename_e.
        concatenate l_file_ixos l_filename into l_file.
        open dataset l_file for output IN LEGACY BINARY MODE.
        loop at tbl_bin into wa_bin.
          transfer wa_bin-line to l_file.
        endloop.
        close dataset l_file.
    store the uploaded file on the IXOS-archive
        l_doctype = l_content_type.
        CALL FUNCTION 'ARCHIVOBJECT_CREATE_FILE'
          EXPORTING
            ARCHIV_ID                = '2T'
            DOCUMENT_TYPE            = l_doctype
            PATH                     = l_file_arc
          IMPORTING
            ARCHIV_DOC_ID            = l_arc_doc_id
          EXCEPTIONS
            ERROR_ARCHIV             = 1
            ERROR_COMMUNICATIONTABLE = 2
            ERROR_UPLOAD             = 3
            ERROR_KERNEL             = 4
            OTHERS                   = 5.
    link the archived document to the business object ‘DRAW’
        CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
          EXPORTING
            ARCHIV_ID                   = '2T'
            ARC_DOC_ID                  = l_arc_doc_id
            AR_OBJECT                   = 'DRW'
            OBJECT_ID                   = g_object_id_arc
            SAP_OBJECT                  = 'DRAW'
           DOC_TYPE                    = l_extend
         EXCEPTIONS
           ERROR_CONNECTIONTABLE       = 1
           OTHERS                      = 2.
    Remark: It´s vital to convert the uploaded file from XSTRING to BINARY. Otherwise the file cannot be stored/archived properly.
    The archived document can then be displayed by inserting the (IXOS-web client-)link to the BSP page (e.g. http://193.228.208.78:4060/archive.dll/get?arc=2T&doc=44439F1B4F701E65E1000000C1E4D00A).
    Hope this helps!
    Regards,
    Ulli

  • I installed 4.0 and cannot print anything. I uninstalled and installed 3.6 and cannot print anything. Everything has a .tif extension and wants me to save the file and I just want to print a selection from my email!

    I have had nothing but grief since I upgraded to 4. It is hateful. I can't print anything. If I highlight something from a website or my email and tell the printer to just print the selection, it doesn't print. It wants me to save the the file and they all have a .tif extension and nothing will print. I have uninstalled 4 and gone back to 3.6 and the problem is still there. If I highlight the desired selection and copy it to Word 2003, it will print what I want, but I can't print anything from the browser itself. That is the only problem I'm aware of so far. I upgraded about a week ago at most, maybe less than that. I'm so sorry I did. Why can't I print anything? I don't want my selection to be a file, I just want it to print!

    Thank you, but it didn't work. My printer stays on away, independently of the PC. I can print from Chrome and IE7 with no problem but not Firefox. The .tif extension refers to a tagged image something. I went looking around in the control panel and I found that Microsoft Office has it's own Access Snapshot Viewer. My company installed Office 2003 on my PC but I only use Word in my work. This snapshot viewer was listed in the control panel under Printers and Faxes. It was not the default anything but for some reason, Firefox 4 installation must have kicked it into gear. I've had the Office software for several months with not one problem. I have Firefox4 for less than a week and everything becomes difficult. I deleted the Office snapshot viewer (hope I don't get fired for it) so my little HP printer is the only one listed and now things seem to be working okay. I have FF 3.6 back up and running. I didn't lose any data and I hope the support and security updates stay available for a long time because it seems like there are plenty of people who aren't in love with FF4. Thank you so much anyway for your help.

  • How to Capture the File Names of any extension using ssis

    Hello,
    Can you please let me know on how to Capture the File Names of any extension(EG : xls,text,.csv etc) at a time  and stores in excel file  using SSIS?
    Any help would be appreciated.
    Thanks,
    Vinay s

    If you need to act differently on each file type separately or if not all types of files are wanted, i.e. the Filespecifier cannot be *.* in the Foreach loop:
    In the ssis package
    make 3 variables:
    to store the file extension, e.g. User::CurrentExtension of type string
    to store the filename found in the directory: @CurrentFilename
    to store the name of the directory where the files reside e.g. User::CurrentDirectory
    make a foreach loop of type Foreach Item enumerator:
    in the items list you add each file extension that you need
    txt
    csv
    xls
    xlsx
    As Variable mappings map the CurrentExtension to Index 0
    Inside this foreach loop add another foreach loop of type Foreach File enumerator, in the collection Expressions
    add Expression Directory , set to @[User::CurrentDirecotry]
    add Expression FileSpec, set to "*." + @[User::CurrentFileExtension]
    In the Variable mappings, map Variable user::CurrentFilename to Index 0
    Inside this loop use Execute SQL Task to insert the filename in a Excel connection.
    Jan D'Hondt - SQL server BI development

  • How do I import any extension file within project in netbeans ?

    Can anybody tell that how can I add any text file or any extension file in netbeans project as I can import image within project and I can use that image when I run jar file..I do not have to move that image where I run my jar file..It will automatically take that image file from jar file...I want this thing same for files...In which I can read and write within project....(I m using netbeans 6.0 and jdk 1.6)
    Thanks...

    Thank you for yr prompt reply.
    May i try to explain once again.. I want a way to store a file (*.txt) in a package called "files" within my project. Now after compiling and making an executable jar of this project i wish to read and write to this *.txt file lying within files package. Though I m able to read this *.txt file ( with the help of getClass().getResourceAsStream() ) but i m unable to make any changes to this file within xxx.jar.
    ex:
    FileWriter fw = new FileWriter("c:/xxx.jar!/files/xyz.txt");
    Do u have ny idea? how can i do this ?
    can u plz suggest the correct forum for netbeans. Thanks once again.

  • Can't install any extensions.  "Installing Extension" dialogue just spins away and nothing happens.

    I can't install any extensions at all after installing CC 2014.  All I get is the Installing Extensions dialogue box with the loading bar stuck about 1/4 of the way.

    Would you send the log to us?
    1.  Create a file called exmancoreliblog.yes and copy it to
    Mac: /Users/<name>/Library/Application Support/Adobe/Extension Manager CC/Log/
    Windows: C:\Users\<name>\AppData\Roaming\Adobe\Extension Manager CC\Log
    2. Restart Extension Manager and reproduce your issue
    3. Send us ExManCoreLibrary.log file in that log folder to [email protected]

  • What extensions accept the iPad and iPhone movies? Can I put any film of any length and with subtitles?

    What extensions accept the iPad and iPhone movies? Can I put any film of any length and with subtitles?

    This is from the developer website (I feel like this is old, since it doesn't say anything about HD resolutions):
    iOS supports many industry-standard video formats and compression standards, including the following:
    H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats
    H.264 video, up to 768 Kbps, 320 by 240 pixels, 30 frames per second, Baseline Profile up to Level 1.3 with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in.m4v, .mp4, and .mov file formats
    Also, there is a great app called VLC which supports almost any format under the sun! You can put media in it through iTunes.
    https://itunes.apple.com/us/app/vlc-for-ios/id650377962?mt=8

  • Any comprehensive STEP-BY-STEP for uploading my ORIGINAL albums and singles to iTunes?

    Any comprehensive STEP-BY-STEP for uploading my ORIGINAL albums and singles to SELL over iTunes?
    This are all original (C)All rights reserved music, and I want it to be available over iTunes to sell as tracks or full album.
    Thanks!

    HelliXSystems wrote:
    But this are companies.
    Yes, they will do everything needed to get your music into iTunes. It is far easier to do it this way.
    Most simply charge a small flat rate (~$10 a song, $40 an album).
    If you want to do it yourself, you will need to register with Apple.
    You will need to have at least 20 albums in yoru catalog.
    See this -> https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wo/2.0.0.9.7.3.1.1
    (emphasis mine)
    The requirements to work directly with Apple are listed below. If you do not meet all of these requirements, you can work with an Apple-approved aggregator instead. Aggregators are third parties that can help you meet technical requirements, deliver and manage your content, and assist with marketing efforts.
    Technical Requirements:
    A Mac running OS X 10.5.8 or later
    At least 512 MB RAM
    QuickTime 7.0.3 or later. This is so you can encode and deliver content using our dedicated software.
    For optimal performance, use an Intel-based Mac running Mac OS X 10.5 or later. However, PowerPC G4 and G5 are also supported.
    At least 20 GB of available hard drive space (more for larger catalogs) is recommended.
    A broadband internet connection with an upload rate of 1 MB/sec or faster is recommended.
    To deliver music video or concert film content to the iTunes Store, you must use an Apple-approved encoding house. Encoding houses typically charge fees for their services. Learn more about the differences between encoding houses and aggregators.
    Content Requirements:
    At least 20 albums in your catalog
    UPCs/EANs/JANs for all products you intend to distribute
    ISRCs for all tracks you intend to distribute
    Financial Requirements:
    A U.S. Tax ID
    A valid iTunes Store account, with a credit card on file
    Apple does not pay partners until they meet payment requirements and earning thresholds in each territory. (This means you will not get paid until you sell a certain minimum amount of content) You should consider this before applying to work directly with Apple as you may receive payments faster by working with an Apple-approved aggregator.
    If you meet these requirements and wish to apply, click Continue.
    Note: Meeting these requirements and submitting an application does not guarantee that Apple will work directly with you. You may still be referred to an Apple-approved aggregator.
    Interested in working through a third party to sell content on the iTunes Store? Contact an Apple-approved aggregator.

  • How to create new file extension and associate an application with it?

    Hi,
    I want to create a new file extension named ".emsof" and
    associate any text editor with it like notepad++ in windows 8.1
    Moreover all of these files should be searched by having filter of "*.emsof" like any other ordinary files.
    Please guide me about hoe to do it?
    Thanks.

    Hi BurrWalnut,
    Thanks for the help.
    Will this command also allow me create and save file with .emsof extension and  to filter files through .emsof extension (Like we can filter through .doc or .txt extension)???
    1. I don’t know what you mean by ‘filter’. In your initial post you mentioned searching, if that’s what you mean, you can search for any extension.
    2. An easy to understand example of the assoc and ftype commands is a .txt file, which we all use in Notepad:
    Typing assoc .txt in a cmd prompt will return txtfile (the file type).
    Typing ftype txtfile will return %SystemRoot%\System32\notepad.exe %1 (the full path of the program and %1 representing a passed parameter).
    Alternatively, look in the registry hive HKEY_CLASSES_ROOT for .txt and further down for txtfile.
    3. If you add an entry that is later unwanted, you can easily delete it by typing assoc .emsof= and pressing Enter. Then delete the filetype by typing ftype myext= and pressing Enter. You can, of course, just delete the entries in the registry (nor recommended
    for beginners).
    4. Test it out now but be aware not to use extensions or filetypes that currently exist.
    5. Display all extensions and their associated file types by firstly copying the following 4 lines:
    assoc >"%userprofile%\desktop\assoc.txt
    start notepad "%userprofile%\desktop\assoc.txt
    exit
    cls
    Press the Windows Logo key+X (or right-click or press and hold the bottom left corner) and choose Command Prompt/Windows PowerShell (Admin). Using the mouse right-click, paste the 4 copied lines to the Command Prompt window. A .txt file is created on the Desktop
    and Notepad will open and display the list. The list represents the registry keys located in the merged HKEY_CLASSES_ROOT. In the left pane, look for the extension, for example .txt. The (Default) field in the right pane contains the file type, e.g. txtfile.
    6. Now display all file types and their associated programs by substituting the above 4 lines with these:
    ftype >"%userprofile%\desktop\ftype.txt
    start notepad "%userprofile%\desktop\ftype.txt
    exit
    cls
    Another .txt file is created on the Desktop and Notepad will open and display it. This list represents the registry keys in HKEY_CLASSES_ROOT further down beyond the extensions. Look for the file type, for example txtfile, then click or tap shell\open\command.
    In the right pane, the (Default) field shows the full path of the program that opens it, e.g. notepad.
    7. NOTE. In operation, any keys in HKEY_CURRENT_USER\Software\Classes (current user) take precedence over those in HKEY_LOCAL_MACHINE\Software\Classes (all users) and both keys appear as the merged HKEY_CLASSES_ROOT. Any changes should be made to HKCU and
    HKLM. The HKEY_CLASSES_ROOT keys are intended to be read from, not written to.

  • When I download word docs my MacBook is adding the flv extension onto the doc extension and I can't open the doc. Any ideas?

    When I download word docs my MacBook is adding the flv extension onto the doc extension and I can't open the doc. Any ideas?

    Go to the main Library folder and look for a folder called Application Support / Microsoft.
    There are a few folders in there, and you may have to do some digging. In one of them (mine is called MAU2.0), there should be a file called Microsoft Autoupdate. Open it.
    It looks like this:
    check the button for manual updates.
    That should let you open the apps without triggering an automatic update.

  • New problem printing from financial websites - print button sends file to a "cgi" extension and adobe cannot open and print.

    I used to be able to print my bank statements directly from the website to my printer. Now the print program sends the file to a file with a "cgi" extension and saves it on my desktop but as an Adobe file. When i open it to print, Adobe says it is not supported or corrupt. running windows 7 on PC.

    mmsteer,
    I think I may be able to help you with this problem, which I was having with CS4 when I first upgraded to Lion, and others were having with CS3. This fix is courtesy of Aisolve on these discussion boards:
    Remove the Adobe PDF PPDs from the following folders:
    OS/Library/Printers/PPDs/contents/Resources/en.lproj,
    OS/Library/Printers/PPDs/contents/Resources/Zh_CN.lproj,
    OS/Library/Printers/PPDs/contents/Resources/Ja.lproj,
    OS/Library/Printers/PPDs/contents/Resources/ko.lproj,
    OS/Library/Printers/PPDs/contents/Resources/Zh_TW.lproj,
    Be sure to go to your system Library, not your user Library.
    Also, regarding my current problem, I spoke with an Apple tech person and found that the 10.7.2 upgrade apparently is the culprit, and is incompatible with wireless printing to my Lanier printer. I CAN print connected through USB. That's a work-around for now, but I'll need to contact Lanier about upgrading their driver for OS X 10.7.2.
    Aisolve was helping me with this issue, too, and assures me that if I'm able to generate a postscript file (which I was), and able to generate a PDF by distlling it through Adobe Distiller (which I am), then I can safely assume that the problem lies with the hardware, in this case the printer driver. This lines up with what Apple told me.

  • Flash Player Installer downloads from the Adobe distribution site as a generic file without an extension and the file won't open.

    Hi, everyone.
    When I download Flash Player Installer from the Adobe distribution site Adobe Flash Player Distribution | Adobe the file downloads to my hard drive as a generic file with no extension, and Windows can't determine which program to use in order to open/play the file. I am using Windows 7 Professional 64 bit.
    Is there something wrong with the downloaded file? Or am I missing required software?
    Thank you for your time,
    -Brandon

    Yes, I've never had a problem before. I've even downloaded the Flash Player Install files from the Adobe distribution site on multiple occasions in the past without issue. The only thing I could think of is that perhaps the ".exe" extension was left off to avoid triggering security measures on a computer or private network that would prevent the download.
    Anyway, it worked after I added the ".exe" extension to the filename, so I have no complaints!

Maybe you are looking for

  • How do I delete an old Apple ID when I can't remember password nor have answers to recover questions?

    How do I delete and old Apple ID in iCloud when I cannot remember the password nor do I have answers to the recovery questions? Additionally, the old email address is no longer working.

  • Need help with multiple photographs in canvas- Hard Day's Night - Effect

    I'm working on a music video for my son's 6th grade band and have taken a serious of photographs of each of the 4 band members in rapid sequence ala George Harrison in Hard Days Night when he is being photographed by the press and he changes his expr

  • Feed Problems, in iTunes ONLY

    My podcast has 2 RSS feeds. They both take the same data and for the first few posts worked perfectly. Now the DivX feed doesn't update anymore in iTunes. However in other RSS readers (FeedBurner, Thunderbird, Safari and Firefox) the feed is bang up-

  • HeapSpace Error in JPA

    Hi, Exception : Out of Memory Error: Java Heap Space This is exception is occured when retrieving large amount of records from database through JPA.. How to solve this issue. Regards Sucharitha.

  • NTLM - anyway to force credential prompt ?

    Hi all, I am using NTLM auth on a website and an applet that is used needs to connect back and retrieve images and issue commands at the users discretion. I am finding that in some instances, when the applet initializes (and fetches the first images)