DMS Original Attachment Display Error - 26172

Hello Expert,
While retrieving DMS Orignal file , receiving following error message
"File C:\DOCUME1\ADMINI1\LOCALS~1\Temp\_SAMAS91_1SAP01 cannot be created
Message no. 26172
I have checked OSS note,
Note 880532 - DMS:File Checkout for display includes the whole path and Note 910973 - Unable to display/checkout document layer,
But we are at already higher version so no need to apply these OSS notes.
Appreciate your quick help.
Thanks,
SamirV.

Hello All,
Thanks a lots for providing information,
But, I have already configured
- DC20-->for PC or front end maintain the path for ex c:\TMP\
- I can access tmp path on local machine and create files in the folder
- I have logged in to system with Admin rights
- PC has also default entry exits.
We have stored the document in the OpenText Archive server.
Appreciate if you can provide if anything is missing.
Thanks,
SamirV.

Similar Messages

  • DMS Original File Display issue

    Hello All,
    This is regarding Original File dispaly issue in DMS. User is using CV04N transaction to download the file. After going in the DMS screen user is selecting the file, Right Click & select the option "Copy to". Then user select the option to save the file on Desktop. If required user change the description of the file & save it on Desktop.
    But when he tries to open that file from the desktop, file is not diaplayed & does not give any error. In some cases file is taking more than 10 mins to open the file.
    This issue is faced by only two users whereas on my laptop file is displayed properly without any issue.
    What could be the reason behind this? Waiting for your valuable reply.
    Thanks
    Pravin

    Hi,
    As it happens after saving the file it si probably the local system issue.Please check if the application is not corrupt or you are using the latest version of the same.
    Thanks
    Amulya

  • DMS - Original file drawing

    When creating DIR in DMS i am attaching a Autocad drawing file. Some of the users who are viewer of this DIR have Autocad installed on their desktop while others do not have Autocad installed on their desktop. For users/viewers who have autocad installed they should be able to open the original/attached file in the native application i.e. autocad whereas for others the original/attached file should be opened through SAP viewer.
    In define workstation application,  if i put %AUTO% for display i.e. Application type. Will it work? If not what should be done.

    Dear
    For viewing autocad file in SAP ECL viewer you have to check setting in SPRO
    Steps:
    SPRO--->General Data >Define Workstation Application>Select ACD(Autocad file type)-->Clcik   Define workstation application in network --> Add new Entry -->
    Type    ||        Appl       ||       AT         ||        Description     ||            Application(path and program name)
    PC         ||     ACD       ||     1       ||     Autocad      ||       EAIWeb.webviewer2D.1 %SAP-CONTROL%
    PC         ||     ACD       ||     2       ||     Autocad      ||      %auto%
    PC         ||     ACD       ||     3       ||     Autocad      ||      %auto%
    This will solve your problem
    Regards
    Tushar Dave
    Edited by: Tushar Dave on Aug 3, 2009 1:08 PM

  • Getting a Page Cannot be Displayed error while uploading a Contract Document in SAP E-sourcing for size 500mb

    Hi Guys,
    I am getting a Page can not be displayed error while uploading a COntract Document in SAP-E-soucing 7.0.
    Maximum Size set in Our SYSTEM is :9765MB.
    Approx size of the Document tried is more then 300MB.
    Appreciate your help on this.
    Regards
    Tarun

    Hi Tarun,
    Please check the below system properties using system user login
    attachments.maxSizeKB.buyers - "Maximum size in KB of a employer-attached attachment file"
    attachments.upload.enable.buyers-  " Enable/Disable uploading of attachments by internal users"
    Also Please check with other attachment, contracts related properties in the System.
    Let me know if this helps.
    Thanks,
    Raj.

  • Email document distribution PDF attachment conversion error

    I have configured document distribution via emai with an attachment. My DMS documents have a single PDF original attachment.
    The email transmits fine through SAPConnect, however when I open the attachment Adobe tells me the file cannot be opened, and is corrupt.
    The issue seems to be in SAPConnect conversion, converting BIN to PDF. Any suggestions on the conversion function module or sample code for a fm to do the conversion are appreciated.

    Hi,
    regarding the information with the BIN extension I would kindly ask you
    to implement the SAP note 873597.                                                                               
    Further please check the following settings which helped to solve      
    such issue in the past successfully:                                                                               
    1. Go to transaction : FILE                                            
    2. Select DOCUMENT_DISTRIBUTION                                        
    3. Double click on "Syntax group definition"                           
    4. You will find the file length defined for "WINDOWS NT               
    5. Change the length value to 70.                                      
    6. Also for As/400 change the length to 40.                                                                               
    Best regards,
    Christoph

  • How to display error message in abap

    How to dispaly error message in report?
    i have to check the range bewteen two days and if it is not in range have to display error message only once.
    next time if i press the execute button report will get executed without showing the warning message.
    i am calculating the days between two dates, i am displaying the error message but if i press the execute button i will not allow me to execute the report.it again shows me the error message.i have to skip this in 2nd time.
    can any one  suggest what to do with this?

    hello suman,
    i am using select-option in my report. And i have to check the difference between two dates in select option input box( low-value and high-value). if it is greater then suppose 10 then i have to display warning message at once and then if click on execute button , the report should get executed without showing any warning messages in report.
    here i am attaching my source code.please take a close look and tell me where should i have to make change.
    SELECT-OPTIONS :s_bedat FOR ekko-bedat.
    AT SELECTION-SCREEN ON s_bedat.
      IF NOT s_bedat IS INITIAL.
        PERFORM bedat_validate.                       " Perform for Purchasing Document Date Validation
      ENDIF.
    FORM bedat_validate .                        " Form for Purchasing Document Date Validation
      DATA  : diffr TYPE i.
      CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
        EXPORTING
          i_datum_bis                   = s_bedat-high
          i_datum_von                   = s_bedat-low
      I_KZ_EXCL_VON                 = '0'
      I_KZ_INCL_BIS                 = '0'
      I_KZ_ULT_BIS                  = ' '
      I_KZ_ULT_VON                  = ' '
      I_STGMETH                     = '0'
      I_SZBMETH                     = '1'
       IMPORTING
         e_tage                        =  diffr
    EXCEPTIONS
      DAYS_METHOD_NOT_DEFINED       = 1
      OTHERS                        = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        IF diffr GT 31.
          MESSAGE s009(zerrormsg) WITH text-000 DISPLAY LIKE 'W'.
          LEAVE TO LIST-PROCESSING.
        ENDIF.
      ENDIF.
    ENDFORM.                    " BEDAT_VALIDATE

  • Soap Attachment Stream Error

    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Error streaming an attachment [8911]
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Error streaming an attachment [8911]
    What are these?

    Originally Posted by swishewk
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Error streaming an attachment [8911]
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Error streaming an attachment [8911]
    What are these?
    I believe the lines with the file size/written size are files in excess of the limit set in Data Synchronizer.

  • How can I fix display errors of the flash player concerning accents of the font Klavika?

    I've got an display error concerning accents of the font Klavika (see images attached). Instead of "é" "È" is displayed in the flash player. Helvetica works fine.

    Maybe the font has a problem, what you would do is find the character that corresponds to that maybe é É are invested and be wrong and replace the character with the correct
    str.replace ('é', 'É');
    where str is your string

  • DMS file attachment in ML81N

    Hi,
    I'm using service entry sheet workflow for approval process. We have customized Tab in the tcode ML81N which contains DMS attachement. The DMS will be attached after the document has been approved. But, after approval the document opens in Display mode. As of now, we are reversing acceptance and attaching DMS file  and again approving it.
    Is there any way to attach DMS file without reversing the approval ?
    Regards,
    JMB

    Hi Martin,
    I've used the method Edit. In that method, we can able to accept the SES. But, my req is after approving SES, it will go to DMS file attachment. Here, the person getting in display mode, so that he is not able to attach the document. What we are doing now is, he will reverse the acceptance and attach the document and he himself approve again. This should not be the case. Is it possible to attach the document without reversing the acceptance ?
    Regards,
    JMB

  • Netflix display error with Safari 8/OSX 10.10 Yosemite

    I am having an issue with playing Netflix content through Safari since upgrading to Yosemite. Specifically, Netflix will start to play the content and then display an error after a few seconds. The error reads "Whoops, something went wrong... display error. There appears to be a display problem. Please ensure your monitor is HDCP compliant and is not mirror using airplay."
    My monitor is HDCP compliant (HP ZR30W) and it's the only monitor connected to my 2014 MacPro. I presume this is an issue with the latest version of Safari and all the next extensions Apple added to support Netflix streaming without the Silverlight plugin.
    Anyone have a solution for this or seen the same problem? The new Safari is crazy-fast and I'd prefer to use it with Netflix. Hate bailing to Chrome.

    I just got it to work, and I think I may know why, just in case it helps anyone.
    My setup: 
    Mac Mini (late 2012), with two monitors connected:
         One dell HDMI monitor, hdcp compliant, plugged into the Mac Mini HDMI port.
         One dell monitor plugged into thunderbolt via thunderbolt-VGA adaptor.
    Unplugging the second monitor from the thunderbolt-VGA adaptor fixed the issue, and now Netflix plays with the HTML5 setting turned on!  So it would appear that the second monitor was the problem.  Which would track with what this page says:
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    The page states that a Thunderbolt-DVI connector should work.  Luckily this monitor has both, so the next thing I will try is to buy a Thunderbolt-DVI adaptor and retest with both monitors attached (I don't have one at the moment).  If that works, I'll post the results, maybe next week.
    This kind of stinks because I've always been  two-monitor dude, I like having a movie playing on one monitor while I work on the other for example.  For now, until I get the adaptor, I'll switch netflix back to using silverlight, which seems to still work with both monitors attached.

  • How can i check the original led display parts serial number on my macbook white

    How can i check the original led display parts serial number on my macbook white based on my mabook serial number?
    and if i have defective lcd (no display and lcd flex removed) How can i use an external Monitor using display port, What is the possible problem that even i connect my Monitor using mini display port to vga adaptor it has no display.

    Have tried 3 new dvd's same responce. On the MacBook, when new DVD was put in the drive, it showed in on the desktop so files could be moved across by right click and move, now its a file DVD.fpbf and after I moved a movie to burn I got error code 0x80020063?

  • Display error message in batch job log

    Hello
    I have a batch job running and I have an error coming during some validation logic.
    The problem is I need to continue the batch job when this error message comes and it should not cancel the batch job as it is doing currently but display that error message in batch job log, there are more similar error messages coming in job log and job gets finished, but when my error message comes job gets cancelled.
    I cannot give it as info message as it will give wrong idea about message type.
    Is there any FM by which we can add message in job log?

    Sanjeev I have done that but problem is I do not want to give that as Information message but Error message only and continue processing.
    If you see in screenshot 3rd message is given by me as information and you can see error messages also 6th and 7th and job continued till it is finished
    Basically I want that 'I' to be displayed as 'E'.
    Display error message in batch job log 

  • Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."

    Hi,
    Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."
    DC:windows Server 2008 R2
    Domain functional level:Windows Server 2003
    When Winxp join domain, have no this error message.
    I checked http://support.microsoft.com/kb/2018583?wa=wsignin1.0 does't work.
    There have 3 suggestion in this article:
    1.The "Disable NetBIOS over TCP/IP" checkbox has been disabled in the IPv4 properties of the computer being joined.
    Doesnt's work.
    2.Connectivity over UDP port 137 is blocked between client and the helper DC servicing the join operation in the target domain.
    On my DC, I run netstat -an, reslut as below:
     UDP    192.168.20.3:137       *:*
    3.The TCP/IPv4 protocol has been disabled so that the client being joined or the DC in the destination domain targeted by the LDAP BIND is running TCP/IPv6 only.
    We are not using IPV6.
    This server recently updated from Windows Server 2003 to Windows Server 2008 R2. Before upgrade, when Win7 and Win2008 join this domain, also have the same error message.
    Please help to check this issue.
    Thank you very much.
    BR
    Guo YingHui 

    Hi Guo Ying,
    I have faced this critical error which makes over-writes the host names in the domain when you join.
    For example: Already you had a host name called as PC.domain.com in the domain.com Domain.
    When you try to add the another host name called as PC in the domain.com Domain, it doesn't give you the duplicate name error on the network it does over-write the existing host name called as PC.domain.com & it will add the new host name into the domain.
    Host name which got over-written will get removed from the domain. I faced this issue in my project. My DPM host name got removed from the Domain & new host name got joined into the domain which halted my backups for one day.
    Final Resolution is as follows:
    You need to start the dns console on the DC & drop down the domain name.
    Select the _msdcs when you click on _msdcs it will show the Name Server's list on the right hand side.
    You need to add the Domain Naming Master under the _msdcs or add all the domain controllers which you had.
    After you add the Name server's try joining the PC OR Laptop to the domain which is successfully joins it.
    Regards
    Anand S
    Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

  • "XML page cannot be displayed" error

    Using XML output on a table with more than a few rows falls over with a "XML page cannot be displayed" error. Sometimes only the error is displayed, sometimes some rows are displayed with this error at the end of the page (eg the DEMO_STATES table)
    Can anyone advise if there is some sort of limiter at work here?
    Thanks,
    Barry

    i'm pretty sure that error comes up when your browser (ie, specifically, i believe) can't render the xml data it's received. i'm also pretty sure, as the full message implies, it's because it doesn't know what style sheet to use when you go to that page. in short, it's a browser config issue. one way to bypass it (to at least prove that it's a browser issue) would be to create a link to your page, right click the link, and do a "Save Target As...". the resulting file will be your valid XML one. fwiw, i've had better luck controlling the manner in which my xml data is received when i use mozilla or netscape (but i'd imagine there's just some setting you'd toggle in IE to avoid your issue).
    hope this helps,
    raj

  • Editable alv: add custom validation and display "errors" in protocol list

    Hi,
    What I want to do:
    PAI validation of editable alv with displaying error's in the protocol list by adding custom entries to the existing protocol object.
    What is my problem:
    After registering "data_changed event", the protocol list don't appear.
    My understanding is, that the object "er_data_changed" is passed by the event "data_changed"
    an so I thought I can add some more entries to the protocol list.
    After "de-registering" the "data_changed" event, the protocol appears with the standard errros messages (e.g. "input to numeric" by enter charachters)
    One more hint:
    By creating a new object "er_data_changed" in the handler method the protocol list works, but I would like to append entries to the object that was passed with the event.
    Probably I've misunderstand something, please help !
    My coding:
    PAI:
    trigger event "data_changed" -> calls handler method
      CALL METHOD r_myalv->check_changed_data
        IMPORTING
          e_valid = is_valid.
    stop processing
      IF is_valid NE 'X'.
        MESSAGE 'invalid input' TYPE 'E' .
      ENDIF.
    handler method:
    handle_data_changed FOR EVENT data_changed  OF cl_gui_alv_grid  IMPORTING e_ucomm
                                                                                    er_data_changed.
    METHOD handle_data_changed.
        data: ls_mod_cell type lvc_s_modi.
         CALL METHOD er_data_changed->add_protocol_entry
                    EXPORTING
                           i_msgid     = 'SU'
                           i_msgty     = 'E'
                           i_msgno     = '000'
                           i_msgv1     = 'This is a test !'
                           i_fieldname = ls_mod_cell-fieldname.
         er_data_changed->refresh_protocol( ).
         er_data_changed->DISPLAY_PROTOCOL( ).
    ENDMETHOD.                    "handle_data_changed

    Dear Olaf,
        If understood correctly, you want to Edit an ALV and do some data validations when some data is changed in an ALV.   To do this follow the following steps:
    1.   Before displaying ALV, Register the edit event.
    * Set cell modified to trigger data_changed
    CALL METHOD go_alv_grid->register_edit_event
    EXPORTING
    i_event_id = cl_gui_alv_grid=>mc_evt_modified.
    2.  Register the event DATA_CHANGED of class CL_GUI_ALV_GRID & handle the event.
    SET HANDLER lo_event_receiver->handle_data_changed FOR go_alv_grid.
    The event DATA_CHANGED of class CL_GUI_ALV_GRID has a parameter ER_DATA_CHANGED which is of type CL_ALV_CHANGED_DATA_PROTOCOL.
    This er_data_changed has internal table MT_MOD_CELLS(contains index of records changed ) & MP_MOD_ROWS(contains the changed row), using these update your internal table accordingly.
    DATA : wa_mod_cell TYPE lvc_s_modi.
    FIELD-SYMBOLS: <fs> TYPE table.
    LOOP AT er_data_changed->mt_mod_cells INTO wa_mod_cell.
    ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
    READ TABLE <fs> INTO wa_output INDEX wa_mod_cell-tabix.
    MODIFY lt_output FROM wa_output INDEX wa_mod_cell-row_id.
    ENDLOOP.
    3.   Here it self you can do the required data validations(No need of any PAI modules) as below.
    IF wa_orders-zfstfirmtyp = c_9.
    MESSAGE s288(zcsp).
    DELETE er_data_changed->mt_mod_cells.
    EXIT.
    ENDIF.
    Regards
    Kesava

Maybe you are looking for

  • SMS_MP_CONTROL_MANAGER Failed to create the CCM_Incoming Virtual Directory

    Hello - I'm hoping someone could help me with this problem. I've searched so many websites trying to resolve this issue and it seems no matter what I try I keep getting the same error message. I've followed the steps in setting up SCCM 07 from this w

  • Printing to a shared printer

    Hello i have a printer connected to windows machine that i can connect to over the wireless, is it possible that i can print to that printer? if so how would i go about do so? thanks

  • File Type Association is grayed out

    For some reason when I create RemoteApp program file type associations are grayed out even though uTorrent is associated with files on operating system level. Why entire list is grayed out?

  • Battery drain after last update (5.4.0.4165)

    After last update battery consumption went up to 40%, reinnstalled and it dropped to 26%. But that is still way too high. Especially since I barely use it on my phone.. Sony Xperia Z3 D6603 Stock Android 5.0.2 Mobile 3/4g and WiFi Skype v. 5.4.0.4165

  • JTable - getValueAt Problem

    I am new to Java and am having a problem with a JTable. I want the user to enter 12 months of rain that will go into an array list. The input sreen is O.K., but I cant retrieve the data or clear the cells. Any suggestings would be appreciated. Here i