DMS Server Specs

Can anybody provide a doc with the correct server specs? I'm looking for the actual C210 server. Specifically, is it an M1 or M2? What amount of memory is installed in the DMM and SnS? What CPU? Heat? Power? Dimensions? Etc. Last document I saw on compatibility only show specs up through 5.1 (almost 2 years old!!)

If you bought your DMM recently you are probably running on a HP   MCS-7835 H3  previous versions were H1 and H2.
Cheers
C.O. Little

Similar Messages

  • SAP DMS server installation Query

    Guys,
    I would like to share my plans on DMS server installation under DEV,Quality,prod stage and requesting you all to validate and send me any comments if I am wrong anywhere.
    -        We have 1 external DMS server of (250Gb capacity)
    -     We are now in realization phase, As we know that we have 3 servers namly Development, quality and production server.
    -     In Development Server we do Baseline DMS customization
    -     In Quality server we do Integration testing
    -     There will be as external computer with harddisk capacity of 80 GB,I will Install Content server CD and make that 80GB hard disk as content server for storing the documents, create content repository and store the documents which are to be tested under both development and quality server stage(Note : we can use SAP database for both testing purpose but If we load huge data there,it will slowdown the server drastically)
    -     During the production server install the DMS server (250 gb) and define the content repository config under production server and start storing all the fresh document
    -     Note: Since the tested documents are stored in local PC we can avoid all the tested documents under quality stage only,once the DMS server is installaed in production server we can freshly load the documents.
    -     Note: I knew I have to install twice the Content server cd(once with 80 GB local hard disk and later with External DMS  server)
    This is how I planned, I request you to highlight the pain areas by this method else give me the confidence of how I planned?
    I appreciate for immediate solution; also how does Kpro comes into picture here.
    Points will be rewarded for sure.
    Regards,
    Murali.S
    DMS consultant

    Hi Murali,
    As per my understanding you want to keep a Temporary Content Server for your Dev & QA system but a full fledge 250GB Content server for Production.
    This is a Good method you are following, i.e. when you go for production you will not have any junk data, you will be loading only fresh data (originals) into it.
    There is nothing harm or pain in doing this, only thing is you have re-configure the Content Repository and Category in Production System (SAP).
    Your Basis person has to open Production System for doing this Settings (Defining Content Repository and Content Category with Port, HTTP, etc)
    Document Area to be ensured in each client at any point of time, Physical machine, IP address, Port etc.
    You can maintain a Excel sheet with a following Columns:
    <b>Client, Content Category, Content Repository, Document Area, Physical Machine, IP Address, Port.</b>
    For Transaction OACT & OAC0.
    Rest your method is fantastic.
    Best Regards
    Rehman
    Reward Your Points If satisfied.

  • Uploading & Downloading Files into DMS Server using Web Dynpro Java

    Hello Friends,
          I want to Upload a file from Portal to Document Management Server and to Download a file from Document Management Server to Portal,  In short, I want to give the user the facility to Upload a File into DMS Sever via Portal and also to download the file from DMS Sever via Portal.
      Can anybody give me a Input for the same from Both Java Development End as well as ABAP End, more inputs are required from ABAP end, since i have a very less ABAP Experience on working with DMS. Few Questions i have in my mind?
    1. How to actually access the file contents with the help of Document Number?
    2. With the help of Doc-Number we can extract the file from DMS sever but to provide a option for downloading in portal, the   RFC should convert the File Contents into X-String or is there some other way?
    +3. While Uploading the Data should be given in Which format to RFC? Are there any limitation with respect to size or formats. Is there any Standard RFC i can use directly in WD4 Java application to upload the file into DMS Server and which will return me the Document Number? +
    Please give me your valuable inputs.
    Thank You.
    Edited by: TusharShinde on Feb 21, 2011 11:13 AM
    Now, I am able to download the File in Portal via my WD4 Java Application from DMS Server by passing the Document Number, but I am facing the problem in downloading the PDF files, Its not working for PDF files. Please give me inputs for the same.
    Thank You.
    Edited by: TusharShinde on Feb 22, 2011 10:13 AM

    HI,
    Thanks for reply.
    I am able to download the file From DMS server but I am still not able to Upload the File to DMS Server via Portal. For Download also it is working for all file formats but not for PDF any specific reason for the same.
    function zhrf_rfc_dms_download_document.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(LV_DOCUMENT) TYPE  DOKNR
    *"  EXPORTING
    *"     VALUE(LV_FADA) TYPE  XSTRING
    *"  TABLES
    *"      LT_DOC STRUCTURE  BAPI_DOC_FILES2
    *"      LT_OUT STRUCTURE  ZST_DMS_FILE_XSTRING
    data: ls_docfiles type bapi_doc_files2,
             ls_dms type dms_doc_files,
             lt_docfiles type standard table of bapi_doc_files2.
    *      data: LT_OUT  type table of  ZST_DMS_FILE_XSTRING.
      data :wa_out like line of lt_out.
      select single * from dms_doc_files
        into ls_dms
        where doknr = lv_document."Retrieve file
      if sy-subrc = 0.
        ls_docfiles-documenttype = ls_dms-dokar.
        ls_docfiles-documentnumber = lv_document.
        ls_docfiles-documentpart = ls_dms-doktl.
        ls_docfiles-documentversion = ls_dms-dokvr.
    *    ls_docfiles-documenttype = '321'.
    *    ls_docfiles-documentnumber = LV_DOCUMENT.
    *    ls_docfiles-documentpart = '000'.
    *    ls_docfiles-documentversion = 'A0'.
      endif.
      call function 'BAPI_DOCUMENT_CHECKOUTVIEW2'
        exporting
          documenttype    = ls_docfiles-documenttype
          documentnumber  = ls_docfiles-documentnumber
          documentpart    = ls_docfiles-documentpart
          documentversion = ls_docfiles-documentversion
          documentfile    = ls_docfiles
          getstructure    = '1'
          getcomponents   = 'X'
          getheader       = 'X'
    *      pf_http_dest    = 'SAPHTTPA'
          pf_ftp_dest     = 'SAPFTPA'
        tables
          documentfiles   = lt_docfiles.
      data: i_bin type standard table of sdokcntbin,
            i_info type standard table of scms_acinf,
            v_info type scms_acinf,
            v_id type sdok_phid,
            v_cat type sdok_stcat.
      if sy-subrc = 0.
        loop at lt_docfiles into ls_docfiles.
          v_id = ls_docfiles-docfile.
          v_cat = ls_docfiles-storagecategory.
          call function 'SCMS_DOC_READ'
            exporting
              stor_cat              = v_cat
              doc_id                = v_id
              phio_id               = ls_docfiles-file_id
            tables
              access_info           = i_info
              content_bin           = i_bin
            exceptions
              bad_storage_type      = 1
              bad_request           = 2
              unauthorized          = 3
              comp_not_found        = 4
              not_found             = 5
              forbidden             = 6
              conflict              = 7
              internal_server_error = 8
              error_http            = 9
              error_signature       = 10
              error_config          = 11
              error_format          = 12
              error_parameter       = 13
              error                 = 14
              others                = 15.
        endloop.
        if sy-subrc <> 0.
        else.
          data: v_xstring type xstring.
          read table i_info into v_info index 1.
          call function 'SCMS_BINARY_TO_XSTRING'
            exporting
              input_length = v_info-comp_size
            importing
              buffer       = v_xstring
            tables
              binary_tab   = i_bin
            exceptions
              failed       = 1
              others       = 2.
          if sy-subrc <> 0.
          endif.
        endif.
        wa_out-file_name =  ls_docfiles-docfile.
        wa_out-binary = v_xstring.
        lv_fada = v_xstring.
        append wa_out to lt_out.
      endif.
    endfunction.
    The above is the RFC Code,  I am using in my WD4Java app for downloading the file From DMS Server, Is there any Improvement suggested for above RFC to make it work in more efficient way. Please give me input for my Upload RFC.
    Thank You.

  • Avoid storing shopping cart attachment in DMS server

    Hi Experts,
    I had an issue in SRM extended classic scenario.  When attaching a scanned copy of manual PR in the shopping cart stores the data in both DMS and filenet server.  Due to image file the DMS server gets hanged due to this overload..
    pls guide to to avoid this issue.
    Naveen

    Hi Atul
    Thanks for your input, but the client business process is different.  Archieving of file in the DMS is also done, but eventhough it occupies space in the server and getting down the process. 
    Is there any mandatory requirement for the set up, as all the attachments should go to the external data base (filenet) Via  DMS or can we skip the DMS and save the attachment in the external database server.
    Please give some light to proceed further.
    BR
    Naveen

  • E Business Suite 11i Server Spec for Linux?

    Does anyone know, or can suggest possibilities, of a server spec for 11i on Linux. This is for a small company installation of 11i.
    Where can I go to ansewer questions like this?
    What Linux distributions are supported for 11i?
    I was thinking of multiple CPU's, highpoint raid controllers to give RAID 0+1, and 1 or 2 Gb of memory.
    thanks
    Dave Darrall.

    Jimmy,
    Our E-business suite 11i has been running on the application tiers RHEL 4, due to the requirement to support large memory configurations on a 32-bit system.  Is it true that from RHEL 5, the “hugemem” kernel which achieves this 32-bit memory scalability has been deprecated in favour of the use of 64-bit kernels?
    Your 11i application tier will be limited to 32-bit even if you install 32-bit OS on x86-64 hardware.
    Our Oracle 11g database is running on RedHat Linux 5.8. Is E-Business suite 11i (application tiers) certified to run on RHEL 5.8?
    Yes.
    Also for future planning, is E-Business suite 12 (application tiers) certified to run on which versions of RedHat?
    Please see:
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (Doc ID 761566.1)
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Linux x86-64 (Doc ID 1330701.1)
    Thanks,
    Hussein

  • DMS document migration from Third Party DMS server(Omnidocs)

    HI guys,
    I would like to migrate document from Third party DMS server to  sap DMS server.
    What is the apporach.
    1. The thir party dms server is protected with login name and password.
    How i can extract data from the software.
    Please spread your thoughts on this.
    what is the function module to  download the contents of the server. by passing the url.
    with regards
    Giri

    use ALE scenario to send the documents

  • DMS server error

    Hi All,
    Iu2019m getting an error in Transaction OAC0 while clicking on the  Test Connection button. The message number is CMS025 (HTTP error: 401 Unauthorized).
    Pl. help us to resolve the issue as because of that we are not able to use DMS server for creating the document and checking-in the documents in the DMS server and also not able to view the documents that are already checked-in the DMS server.
    Thanks & Regards,
    Ashutosh

    Hi All,
    The issue was finally resolved.Steps I followed are as follows:
    Reason: One of the hard disc got accidentally disconnected and server went down.
    Solution: When hard disc was recovered our DMS server gets restarted but still it gave error "401: unauthorized" in tcode CSADMIN. Tried everything I know, searched in Google. Even run the below commands
    dbmcli db_enum
    dbmcli inst_enum
    xinstinfo
    sdbregview -l
    sdbverify
    And all shows DMS sever is fine. Then we raised an OSS to SAP and SAP gave us one program
    "Go to SE38: Report RSHTTP20"
    Give the values as below: In URI  Give the URL which you provided in your browser.
    http://192.168.10.XX:1090/contentServer/contentserver.dll?serverInfo
    RFC destination: SAPHTTPA
    and the rest of the values let them be the default values. Do not change. Execute."
    And then concluded the error response is from the IIS side and needs to be resolved by the vendor.We even checked the IIS service and there was no error.Finally we restarted all the Microsoft services again and it just started.
    Thanks to all those who has given their valuable time to help me.
    Thanks & Regards,
    Ashutosh

  • SAP DMS server installation

    Hi all,
    I am very new to DMS,seriously have no idea.I have to install SAP DMS server but have no idea from where to get the software.Can anyone help me please.
    Also if any one can provide me the configuration document i will be highly thankful
    Regards
    Praveen

    Praveen
    Go  to service.sap.com
    Under support portal heading
    Click on SAP Notes search
    It wil prompt for the user name/Password
    You have to give the OSS ID/Passwrd-Contact Basis consultant/client
    Regards,
    SVP

  • DMS Server Separate from R/3 server

    Dear all;
    Please tell me if we are using DMS server different from the R/3 server what configuration should be done .will it be done by ABAPer and or some additional configuration is required here?
    Thanking you;
    Regards;
    Joydeep Mukherjee

    Hi Joydeep,
    DMS solution is part of ECC4.6,5.0,6.0 offering. It only needs to be turned on/configured. You would need a content,cache server/s in DMS for parking your documents based on your requirements.DMS configuration is done by a Functional Consultant,Content Server setup is Basis associates' responsibility and enhancements are managed by an ABAPer.
    Regards,
    Pradeepkumar Haragoldavar

  • DMS Server storage sizing

    Hi All,
    We have configured a DMS server 2 years back for  test purpose which works fine.
    The free hard disk space on this server is only 4 GB and it is a windows based system.
    The RAM is 9 GB.
    We are planning to go for a full fledged DMS usage, I need your recommendation on the
    system sizing.
    Please share your expriences as I am too sure about the data growth.
    Regards,

    HI Ashutosh,
    Download  the  Content server Installation Guide and read the section
    Points to Consider Before Installation
    You will get idea of required DB space.
    Regards,

  • Hyperlink the word files on DMS server

    Hi ,
    I want to hyperlink the word files on DMS server, whenever I open the file in edit mode I am not able to find other file while doing hyper linking.
    Please help.
    Regards,
    Amarnath Dube

    Hi,
    As I know, You can't open the hyperlinks in DMS itself. This will work in front end PC only.
    But if you just want to link, you can do one thing, You can link your DIR/Document with another DIR/Document from the object link option.
    In object link tab of a DIR, there is option for link another DIR.
    Regards
    Shishir

  • Regarding uploadind file , pics , etc ,etc from desktop to DMS server.

    Hi friends ,
    I am a fresher and i dont know anything abt DMS .. I have given a task of uploading a file from desktop to DMS server ....Our requirement is not to use FTP server ......plzz guide me guys from very first step .... it wud b of gr8 help 2 me.........!
    Edited by: Chandra Shekhar Singh on Jul 26, 2011 3:23 PM

    hi,
    Please refer following links
    [Uploading of File in DMS using Webdynpro ABAP(|Uploading of File in DMS using Webdynpr(WDA- File containing garbage value;
    [DMS Application Server file Upload|DMS Application Server file Upload;
    [Uploading and Downloading SAP DMS applications|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/805b67bd-7e93-2e10-99b7-ebe8f3d359d3?quicklink=index&overridelayout=true]
    Hope this will helpful.
    Regards,
    Renuka S.

  • Reg archiving to the SAP DMS server

    Hi All
    I have a requirement, I am building an RFC for the PORTAL backend. Currently the front end is generating the PDF for the vendor master. They will be sending the PDF as an XSTRING fromate to my BACKEND RFC. Then i need to convert this XSTRING to Binary -> Binary to PDF and archive it to the SAP DMS server.
      Since i am new to this particular requirement . I need a sample code or some idea how to build the logic based on this requirement. Please suggest is there any better way to handle.
    Portal Frontend - > Xstring - > Backend RFC ( ABAP Side) - > Archive to SAP DMS server.

    Dear ,
    i am facing such type of scenerio .
    did u solve ur problem ?
    i f  so please favour me.

  • Hardware required for SAP DMS Server

    hi all,
    my SAP system is  SAP ECC 6.0 EHP1 with oracle  OS is linux ,  if we install DMS server on this same sap system or on saparate system. how much hardware required for DMS server. our mostly will be imaging documents.
    Regards
    Khan

    Hi Khan,
    maybe the information in the SAP online help could be useful under http://help.sap.com/saphelp_erp60_sp/helpdata/en/b2/c043a66fab11d1949500a0c92f024a/content.htm
    Best regards,
    Christoph

  • Best Hardware Server Specs for Wsus to run close to 3000 Clients

    Hello Team,
    I am currently configuring a Wsus server 2012 for my company. I am looking forward to buy a Dell rack server and would like to take your input on what is the best server specs I could go for. I am intending to use a San-box to store Wsus content but still
    would need the best spec to run it without any outage. Kindly suggest. Thanks in advance.
    Many Thanks
    Many Thanks Krish

    I am currently configuring a Wsus server 2012 for my company. I am looking forward to buy a Dell rack server and would like to take your input on what is the best server specs I could go for.
    This is documented in the WSUS Deployment Guide
    System Requirements article.
    But the *BEST* specs you could go for would be whatever you can afford to buy .... which may also be gross overkill for a 3000-node WSUS server.
    Load tests from 2007 are documented in the
    WSUS Capacity Requirements article in the WSUS3 SP1 Deployment Guide. In short, for 3,000 clients you need a 1.5GHz vCPU and 2GB RAM.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Maybe you are looking for

  • Changing Display Preferences

    I have a terrible lcd monitor that only supports refresh rates up to 75hz and will show an "Out of Range" error if the refresh rate is too high. Whenever I turn on my computer or have it come back from sleep, for some reason Mac OS X resets the refre

  • Colours not rendering correctly in terminal

    Hi, I have just installed Arch on my laptop, and I am getting everything setup. When I run alsamixer something goes wrong, the screenshot below speaks a thousand words. When I use the arrow keys to change widget focus the previous widget tends to dis

  • AirPort Express frustations

    I have been at this for several days - no resolution. AirPort Express setup with a USB printer attached but cannot print on other than one computer. The iMac adjacent to the AE prints when connected to the ISP WiFi signal fine via the AE. I cannot ge

  • Cirrus doesn't work

    Hi, I've started a project with cirrus server side ( http://vaeloran.com/chatClouds/lab/_naeo_chatClouds_web.html); I have a little problem that affects my website as well as the video phone sample (http://labs.adobe.com/technologies/cirrus/samples/)

  • EXS24 instrument created from audio region- How to  move files?

    In Logic Pro X. I have created an EXS24 instrument from an audio region with 3 well-separated sounds. The instrument in EXS24 editor shows a zone with 3 files. Each file is actually the same physical file, but, when examining the three separate "file