Server sizing method for SAP-PS module

Dear Experts,
can anybody throw some light on how to do server sizing when the database is Oracle.
Thanks in adv.
regards
Ashis

Sizing is usually done together with the hardware partner.
Check
http://service.sap.com/quicksizer
Markus

Similar Messages

  • Sizing Estimator for SAP NetWeaver MDM

    New sizing estimator tool simplifies sizing procedure for SAP NetWeaver Master Data Management 7.1. The tool is intended for SAP internal use by SAP Consulting.
    Find out more [here| http://iltlvh487.tlv.sap.corp:50000/SizingEstimator/Main.html
    User Guide [Link| http://iltlvh487.tlv.sap.corp:50000/SizingEstimator/files/userGuide.pdf]

    Hello,
    Those links work now. please try again.
    You ca also try to copy them out to your browser.
    Regards,
    Yaniv

  • Financial experience for SAP FICO module

    is experience in core finance required for SAP FICO module or experience in financial domain good enough ?

    All that you require for SAP FI is the ability to understand the business process in FI terms and implement the same in SAP.
    Good domain knowledge is a must for SAP FI consultant - either it be in the form of education or thru' experience.
    If you can understand the requirements in FI terminology, you can easily start your career in SAP FI and can value add your knowledge thru' experience.
    All the best!
    Regards,
    Sridevi
    Award points, if found useful.

  • Step by step complete configuration document for SAP PM module

    Can any body send me step by step complete configuration document for SAP PM module. If possible screen shots also. I will be highly obliged.
    Indranil Chatterjee
    Thanks in Advance.

    Indranil,
    It is not permitted for forum members to send documents to one another.
    It is also expected that members will first perform their own research before asking for help.  Did you search through SAP Help?
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/b2/4df35d51b811d192fb0000e829fbc6/frameset.htm
    Best practices? 
    http://help.sap.com/bp_bl604/BL_IN/html/Content_Library_BL_EN_IN.htm
    Best Regards,
    DB49

  • Matrix certification for SAP PSCD module

    Hello,
    I would like to know if the SAP PSCD module is already certified to run on SLES (SUSE Linux Enterprise Server)?
    Do you have a matrix of modules certified to run on SLES?
    Best Regards

    Dear Francisco Martinez,
    you should have a look to the <a href="http://service.sap.com/pam">Product Availability Matrix</a> at the SAP Service Marketplace. On the right pane, navigate to <i>SAP Industry-Specific Components</i> and then <i>SAP PUBLIC SECTOR PSCD</i>.
    For example, when choosing <i>SAP PUBLIC SECTOR PSCD 4.72</i>, you will see, that PSCD is an addon for <i>SAP R/3 ENTERPRISE</i>. You now have to check, on which platforms <i>SAP R/3 ENTERPRISE</i> is certified.
    On the right pane, navigate to <i>SAP Application Components</i> and then <i>SAP R/3 ENTERPRISE</i>. Choose your SAP R/3 Enterprise release and check on which database platforms it is released (If database is certified, the Application Server is certified as well. Because of this, you always have to check for the database platforms!).
    Choose your database and check which operating systems are certified.
    Best Regards
    Hannes

  • Replacement function modules/method for obsolete Funtion Modules in ECC 6.0

    We are working on Upgrade Project and need your help in finding the replacement Function module/ Methods for following obsolete Function Modules:
       1.   GET_FIELDTAB
       2.   WS_EXCEL
       3.  HR_DISPLAY_BASIC_LIST
       4.  LOG_SYSTEM_GET_RFC_DESTINATION
       5.  HELPSCREEN_NA_CREATE
       6. TR_RELEASE_COMM
    Thank in Advance.
    Sarita.
    Edited by: Sarita Yalamati on Mar 28, 2008 1:23 PM

    Hi sarita,
    for GET_FIELDTAB use 'DDIF_NAMETAB_GET'..here is sample code
      CALL FUNCTION 'GET_FIELDTAB'
           EXPORTING
                LANGU               = SY-LANGU
                TABNAME             = C_STRUCTURE_NAME
                WITHTEXT            = ' '
           TABLES
                FIELDTAB            = IDFIES
           EXCEPTIONS
               INTERNAL_ERROR      = 01
                NO_TEXTS_FOUND      = 02
                TABLE_HAS_NO_FIELDS = 03
                TABLE_NOT_ACTIV     = 04.
    Replacement :
    CALL FUNCTION 'DDIF_NAMETAB_GET'
      EXPORTING
        TABNAME           =  C_STRUCTURE_NAME
      ALL_TYPES         = ' '
      LFIELDNAME        = ' '
      GROUP_NAMES       = ' '
      UCLEN             =
    IMPORTING
      X030L_WA          =
      DTELINFO_WA       =
      TTYPINFO_WA       =
      DDOBJTYPE         =
      DFIES_WA          =
      LINES_DESCR       =
    TABLES
      X031L_TAB         =
       DFIES_TAB         = IDFIES
    EXCEPTIONS
       NOT_FOUND         = 1
       OTHERS            = 2
    For WS_EXCEL  use GUI_DOWNLOAD.. here is sample code
    CALL FUNCTION 'WS_EXCEL'
    EXPORTING
       FILENAME            = 'D:\FILE1.xls'
      SYNCHRON            = ' '
      TABLES
        DATA                = itab
    EXCEPTIONS
       UNKNOWN_ERROR       = 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.
    ENDIF.
    Repalcement :
    data : l_filename type string.
    l_filename  = 'D:\FILE1.xls'.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = l_filename
      FILETYPE                        = 'ASC'
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab
      FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
      EXPORTING
        DOCUMENT               = 'D:\FILE1.xls'
       APPLICATION            =
       PARAMETER              =
       DEFAULT_DIRECTORY      =
       MAXIMIZED              =
       MINIMIZED              =
       SYNCHRONOUS            =
        OPERATION              = 'OPEN'
      EXCEPTIONS
        CNTL_ERROR             = 1
        ERROR_NO_GUI           = 2
        BAD_PARAMETER          = 3
        FILE_NOT_FOUND         = 4
        PATH_NOT_FOUND         = 5
        FILE_EXTENSION_UNKNOWN = 6
        ERROR_EXECUTE_FAILED   = 7
        SYNCHRONOUS_FAILED     = 8
        NOT_SUPPORTED_BY_GUI   = 9
        others                 = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Documentation for SAP function modules??

    Hello,
    is there any documentation for the SAP function modules available?
    I need documentation for SJ01 (SAP Objects). If I try to view the documentation in SE80, I get the error message: "Document OJ_XXX(whatever I selected) is not available in language DE"
    Where can I get this documentation?
    Is there an overview+documentation available somewhere of all SAP functions which may be used for own programs? Or how do I know what's already available and how to use it?
    Thanks
    Steffi

    Hi,
    Go thru this links
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=449&h2=322&h1=303&h3=449
    http://www.erpgenie.com/abap/functions.htm
    Thanks
    Sunil

  • Sql Server configuration requirements for SAP ECC 6.0

    Dear  All,
    I am using Sql server 2005 Enterprise as data store for Sap ecc 6.0.There are certain configuration requirements to be done while installing it so that sapinst.exe (sap installer) is able to use it to create its own DB's.
    For eg it requires a collation of SQL_Latin1_General_CP850_BIN2 whereas the default that gets installed is SQL_Latin1_General_CP1_CI_AS.
    Like this there are other requirements which I am not aware of.Most of the docs available on the Internet are talking of ecc 6.0  with Oracle 10.2G which is the most common combination.I am having docs for this combination.
    I am installing ecc for the first time.
    *I am unable to download docs from sap. marketplace as it requires a login given to certified users or sap purchasers.I am neither.*
    Can anyone help me with this.If anyone has ECC 6.0 installation guide with sql server it will be serve my purpose.
    Thanks for your efforts.

    "Excuse me?
    What he is doing is illegal , you know what that means, right? If you don't believe me, read the license that comes on the first installation DVD.
    Actually, I even think it's kind of barefaced to ask in the forum of the software vendor for help! I mean, it's like asking in a bank forum how to rob and fraud the bank! You - and many others - may think that it's right and ok to do that. I tell you: it is not. Not for "home use", not for personal use, not at all.
    You can use the software available here in the SDN to lean and study, that's why it's there.
    If you deal at all with copied software, then just be smart enough to make other people not notice. He can be happy if he's not prosecuted (which would legally be possible)."
    Do u understand what is legal or illegal? Have u read the license in full?
    The license does not put any limit on the number of users.So if I am using it means that one more user has been added by the license holder.
    Therefore there is nothing illegal about it.
    It would have unethical (not illegal) if the software is being used for a business purpose other than for which it has been purchased.
    Since it being used for training purpose the above does not hold good.
    In fact it is SAP who is benefited in the long run bec' after a person learns it technology because  he is going to implement it somewhere, for which the concerned user will have to purchase a license.Therefore I am helping SAP to increase its business.
    But there are some stupid people who don't understand these things but are ready to shout at the top of their voice thinking themselves to be intelligent.
    Edited by: coolmind26 on Jun 5, 2011 10:57 AM

  • Combine report list for SAP-PP module

    Respected SAP GURU,s
    Can any body give me the combined report list of SAP-PP modules or give some direction to search it.
    SFC route is not required...
    pl reply urgently
    Rewards point will be given.
    VEDANT

    Hi,
    These are the few reports
    1. KanBan Analysis1 Plant          
    Txn Code: MCQ.
    This report gives information of KanBan usage. This can be used only when KanBan Component is used. 
    2 KanBan Analysis 2
    KanBan Board Demand Source Overview 
    Txn Code: 
    PK11
    PK12
    PK13
    PK18
    This report gives information of KanBan usage. This can be used only when KanBan Component is used.
    3 Material Usage Analysis Plant        
    Txn Code:  MCRE
    This report can be used for analyzing the actual material usage against plan in manufacturing process.
    4 Product Cost Analysis Selection Plant        
    Txn Code: MCRI
    This report can be used for finding out planned cost vs. actual cost in the manufacturing process
    5 Missing Parts Info System
    Txn Code: CO24
    Missing Part List Check

  • Server CAL License for SAP Server

    Hi
    Do we need Windows Server CAL for SAP Server, as we have Server 2008 R2 for our SAP Server.
    Please guide.
    Regards
    Ajay Goel

    Hi Wee,
    By definition every device connecting to a Windows server needs a CAL. However, neither the OS nor the SAP system "counts" them.
    Depending on which kind of clients you have (Windows XP/Vista OEM, Volume licenses etc.) you have a CAL included.
    So based on SAP users created and other users required in your landscape , you may procure respective CALS.
    Hope this helps.
    Regards,
    Deepak Kori

  • Queries About SAP Certification EXAM for SAP SD Module

    M currently working as a End user in SAP SD and m interested to prepare for SAP certification. Is that i can do self study using materials and go ahead with SAP certification exam . Is that possible to write the certification or any T&C that i should have attending any SAP courses.

    Hi,
       consultancy experieince is a must to clear the certifiication , sap india will look for few criteras like that u should have worked in sap with same company i.e in consulting experieince and some times ask the experieince certificate from company hr department if they are not satisifed
    regards,
    ram

  • Microsoft SQL Server 2008 Express for SAP BO BI 4.0

    Dear Experts,
    I am curently installing a SAP BO BI 4.0 with the bundle database, and after watching the thread  10610337 and http://www.microsoft.com/sqlserver/en/us/product-info/compare.aspx I am wondering if the SQL server express is sufficient for a usage of BI .(we will also add on this instance the Data Services)
    I don't know how the data are stored (is that like BW ?) and if it will need a large disk space ?
    According to your experience, are the 10 Gb database space of SQL express are ok for a development environment ?
    Best Regards,
    Thibaud.

    The bundled DB with BI4.0 is provided as a sample and as a means to quickly deploy product.
    You should use your company standard DB solution for any serious BI4.0 deployment.
    The bundled DB should be enough for Development or test/sandbox type of deployments.
    As to the required size - it depends on what and how exactly you're going to use it - without a proper Sizing exersize it is impossible to say.
    see sizing section on SMP for more details on that.

  • To go for SAP PS module or not to go?

    Hi All,
    There is a saying "better to be late than never". I Akash B.E(Mech.) though having extreme inclination towards software industry opted for industrial work 12years back and worked hard to retain there. But my urge towards computers is drawing me back to it. Having a strong experience of 12years of Projects, Good communication skills, logical & analytical skills, Interpersonal skill and hands on implementation experience in SAP (PS) (from customer's ends), I am thinking to build my career as a SAP PS consultant. I have following questions in mind:-
    Is it a right move?
    Whats the present demand for PS consultant?
    How should I proceed for it?
    Thanks
    Akash

    Hi Akash,
    Well I don't know how to react to this query. May be this is against SCN rules as you are providing your personal and professional details and seeking an experts advise to make your carrier. I don't know whether your question is meant to be answered at here at SCN or not. But since you have asked three questions. Following are my findings or suggestions.
    1. Is it a right move?
    As you said you have 12 years of strong experience in projects. It means you are more associated with real time projects scenarios. So Yes, It is a right move.
    2. Whats the present demand for PS consultant?
    Its not about demand of PS consultant. Every module of SAP has its own and unique importance and each and every aspect of SAP is demanding and challenging indeed.
    3. How should I proceed for it?
    I believe you are more of a field person who is associated with projects related activities but to incorporate your experience in SAP, then of course you need to learn SAP. To achieve this, better go for Certification Class room courses and groom yourself in SAP.
    I hope this may help you.
    Regards,
    Amit

  • Size of SQL Server 2005 Database for SAP B1 2005 B is heavy

    Hi all,
    In my company we are working with SAP B1 2005 B SP 25.
    Our Database is in SQL Server 2005. Its Size reaches 6 GB in less then two years periods.
    Can Any body guide me to reduce the size or how to maintain database. Can we split Database in SAP B1 ?
    Due to the size users getting less speed
    Awaiting your valuable guidance for the same.
    Best Regards,
    Chintesh Soni

    Hi Chintesh,
    I would advise caution doing any of the things suggested in SAP Note 548772. In particular, I strongly recommend you do NOT set auto-shrink on. This is a really bad idea on a production database and I can't understand why SAP would suggest it.
    Is it the data file that is 6GB or the overall size of the database (ie data and log files)? If your log file is large  then this can slow performance. I recommend setting up transaction log backups on an hourly basis. This is good practice and not only keeps the log file healthy but also gives you the option to recover your data to the last transaction log backup in the case of an emergency. If you don't want transaction log backups then do as the SAP note mentions and set the recovery model to simple and do a once-off truncation of the log file.
    Are you doing regular maintenance on the database (ie rebuilding indexes, updating statistics)? Are you monitoring fragmentation on the data drive and doing a defrag occasionally to keep the drive healthy?
    Kind Regards,
    Owen

  • Microsoft SQL Server 2008 Express for SAP BusinessObjects Enterprise 4.0

    Hi Expert,
    I'm going to install SAP BusinessObjects Enterprise 4.0 on my virtualized system (vmware) composed as: windows server 2008 Enterprise Edition R2 + Tomcat. I have some doubts related to the DB version to choose.
    Due to the fact that Microsoft SQL Server 2008 Express is bundled with SAP BOE 4.0 I want to use this DB.
    However, I saw in the Microsoft Portal that Microsoft SQL Server 2008 Express (http://www.microsoft.com/sqlserver/en/us/product-info/compare.aspx)  that:
    Number of CPUs     1
    Maximum memory utilized     1 GB
    Maximum database size     10 GB
    These my doubts:
    1) Could these characteristics  generate performance issues for a production environment?
    2) Which is a typical DB size for a production enviroment? could be greater then 10 GB?
    3) Can I use Microsoft SQL Server 2008 Express  in a virtualized system (vmware)?
    Thanks in advance for collabortion
    regards
    gio'

    Hi Gio
    Remember that the BOE system database (or repository) only has a few tables in it, with really one main table that stores a reference to each folder, report, user, group, server, etc. on the system. So the table and the database itself do not grow very large. In the past year, we have done over 70 SAP BusinessObjects projects and I can't recall one where the database size would even approach 5GB in total, let alone 10GB.
    The reason for this is that the database only stores a reference to the physical objects and content within BOE-- the actual reports, universes, etc. are stored on the file system within the Input and Output file repository folders.
    And the memory constraints are not really an issue either with BOE-- the database itself does not come under much strain during the day-to-day operation of the server. If you believe that the memory may be an issue, you can always start with SQL Server 2008 Express and then using the new tools in the 4.0 CMC to monitor the memory usage on the server. If you need to, you can move the system database to another SQL Server edition, or alternately move the database to another one of the supported platforms, including Oracle, DB2, etc.
    Hope this helps!
    regards
    David

Maybe you are looking for

  • How can I put my main Application class in a package?

    Hello, I would like to put my main Application class for my air app inside a package. If I create a regular FLX application, this works fine. In that case I just move the application file created into a packade and change the run/debug settings. This

  • Any way to manage disappearing iPod HD space?

    Does iTunes reduce the amount of available iPod hard drive space through automatic updates of the Recently Played playlist? (1) I've noticed my iPod available hard disk space reduce by 0.01 GB each time I automatically update. This is on a per song b

  • Adobe reader 10 and 11 crashes after 3-5 sec.

    adobe reader 10 and 11 crashes after 3-5 sec. it newer gets fully opened, it just closes. the problem is all my pdf files on my computer. and they work fine on my other labtop. tryed to repair, remove, install many times

  • Where are my pictures?

    I had the iphone 3G and then got the iphone 4. i synced my iphone 4 with my computer and it has been working just fine with everything uploaded properly for the past month. iphone os 4.0.1 downloaded to my phone and screwed up phone. just went to app

  • Creative Cloud Updater cannot update CS6 - Corrupted Download

    In practical terms I am of course using Photoshop CC 2014. However as part of the CC update process, my original installation of CS6 (before subscribing to Creative Cloud) gets updated. It now keeps failing with the following warning: "Update Failed