E-Recruiting 6.0 with ECC 5.0

We're planning on implementing SAP E-Recruiting 6.0, and we're currenlty running ECC 5.0 that we want to use with it.
Is this possible? If so, can we take advantage of the new features of E-Recruiting 6.0 with our ECC 5.0, or do the new features require ECC 6.0 as a back-end?
Upgrading from ECC 5.0 to ECC 6.0 is not possible at the moment, and implementing E-Recruiting 3.x is not an option.
Finally, where can I find white papers and installation guides for E-Recruiting 6.0?

Hi Juha / Rajesh,
I looking at various options to implement E-Recruiting in a stand alone scenario.
One option i know is where my HR Data is in ECC6.0 and E-Rec component is in other ECC6.0 system and i can interface the data through ALE and RFC's.
When we talk about E-Rec in standalone (without ECC), how would be technical architecture look like.
Please help me with some inputs.
Juha - The link you had provided does not take me to the document. Can you please provide some information?
Best Regards
G Raj

Similar Messages

  • How is the integration with ECC in SRM 7.0??

    Hi,
    Working with SRM 5.0 or 5.5  the use of XI for integration with ECC is not mandatory because when we send any document from ECC to SRM like requisitions (to convert them in shopping cards) or when we send any document from SRM to ECC like shopping cards, PO´s, contracts,  we only use the RFC´s and the abap programs.
    Is the same behavior with SRM 7.0?????
    Could the integration from SRM 7 with ECC 6 work with RFC´S without XI or for this vertions is XI mandatory?????
    Thanks

    SRM70 is closely integrated with XI for transferring docs between ECC and SRM.  SAP introduces eSOA tech nology with SRM70 and hence all documents like PR from ECC to SRM, Central Contract from SRM to ECC, PO creation (Classic), etc uses this techn ology.
    Thanks,
    Jagadish

  • Setting up SNP with ECC at a macro level

    Hello experts
    What are the different scenarios that can be set up with SNP - ECC - SNP with respect to Distribution planning ?
    Meaning stock transfers , assuming PPDS will be active and will only be used for creating PPDS planned orders.
    We have 10 plants and 34 DC's and regional DC's.
    Thank you.
    Regards
    KK

    HI KK
    This is more an architecture question that has to be addressed at macro level.
    Assuming your demand is coming from DP or somewhere outside, a SNP run either SNP Heuristics or CTM or optimizer could be setup to move that demand from DCs to Plants. Then you run the planing runs at each plant in PPDS producing planned orders in short term and SNP run for medium to long term. If you have external procurement, the system creates purchase reqs.
    If your plants are sourcing your DCs and then to regional DCs, you may want to run this in 3 stages, first SNP from regional DC to DC, then DC to plant and finally at Plant.
    At one of our projects, we separated the SNP runs into Heuristic( where these is no capacity issue) and some into CTM ( where there are more constraints).
    Based on the scenario, you may choose to integrate these planed orders, purchase reqs. from SNP/PPDS to ECC and execute there.
    You may also run a deployment run from the plants to DCs and not integrate these deployment reqs. with ECC ( as you would not execute them yet), then finally convert these deployment reqs. into STOs/POs and then push these to ECC for execution.
    There are infact so many possibilities based your business need. You may take above as a frame work. Hope this helps.

  • SAP SRM 7.0 with ECC EHP 4 components to execute scenario

    Hi All,
    I am new to SAP SRM 7.0.Could you please let me know that what are all the components needs to be in place to execute the technical scenarios and business scenarios.I had an hands on experience on SAP SRM 5.0 with ECC 6.0 backend.
    Some where i read that there are lot of configuration  changes when we integrate SRM 7 with ECC EHP 4.Do we need to have PI 7  for executing Centralized contract and plan driven procurement scenario?Please guide me to have some exposure towards higher version.Thank you in advance.
    Best Regards,
    praveen

    Hello,
    You can refer the INSTALLATION AND UPGRADE INFORMATION , Master guides etc maintained at the below mentioned location which will answer all your query's here.
    Goto URL http://service.sap.com/srm-inst and then navigate to SAP SRM --> SAP SRM Server 7.0 .
    Best Regards,
    Rahul

  • RFC & Excel VBA  with ECC 6.0

    I use a routine like this to post movements in R/3 (This is an example for MB1A Transaction) based on information posted on a excel spreadsheet  + VBA and seudo-code created with SM35 transaction
    Public Sub updateRFC_BDC()
    'Set sheet specific variables / constants
    j = 0
    startRow = 3
    colStatus = 1
    colMsg = 1
    ' Cell information on the excel spreadsheet
    colMKPF_BLDAT = 2
    colMKPF_BUDAT = 3
    colMKPF_OIB_BLTIME = 4
    colRM07M_BWARTWA = 5
    colRM07M_WERKS = 6
    colRM07M_LGORT = 7
    colXFULL = 8
    colRM07M_WVERS3 = 9
    colMSEG_MATNR = 10
    colMSEG_ERFMG = 11
    colMSEG_ERFME = 12
    colMSEG_WERKS = 13
    colMSEG_LGORT = 14
    colMSEG_CHARG = 15
    colMSEG_OIHANTYP = 16
    colOIB_A08_TDICH = 17
    colOIB_A08_TDICHEH = 18
    colOIB_A08_MTTMP = 19
    colOIB_A08_MTTEH = 20
    colOIB_A08_TSTMP = 21
    colOIB_A08_TSTEH = 22
    colOIB_A08_MCF = 23
    colDKACB_FMORE = 24
    colCOBL_PRCTR = 25
    i = 0
    'Set debug mode
    If CheckBox1.Value = True Then
       DEBUG_MODE = True
    Else
       DEBUG_MODE = False
    End If
    'Reset status column
    Range(Cells(startRow, colMsg), Cells(60000, colMsg)).Value = ""
    'Login to SAP, if it fails, notify user and exit sub
    updateStatus "Logging into SAP...", colStatus, 1
    If Not login2SAP Then
       MsgBox "Login to SAP failed.  Remote Function Call NOT performed.", vbInformation, "Login Failed"
       updateStatus "", colStatus, 1
       Exit Sub
    End If
    'While the next row is not empty loop through BDC
    While Trim(Cells(startRow + i, 2).Value) <> ""
       firstTime = True
       updateStatus "Processing Row " & (startRow + i), colStatus, 1
       ' Retrieve the Function object (the Connection object must be set up before Function objects can be created):
       Set RfcCallTransaction = Functions.Add("RFC_CALL_TRANSACTION")
       'Set the export parameters
       RfcCallTransaction.exports("TRANCODE") = "MB1A                                                                                "
       RfcCallTransaction.exports("UPDMODE") = "S"
       Set BdcTable = RfcCallTransaction.Tables("BDCTABLE")
       'Highlight current row so user knows what is happening
       Cells(startRow + i, 2).Select
       'Screen SAPMM07M BDC code
       add_BDCData BdcTable, "SAPMM07M", "0400", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "RM07M-LGORT"
       testForBlank_AddToBDC "MKPF-BLDAT", Cells(startRow + i, colMKPF_BLDAT).Value
       testForBlank_AddToBDC "MKPF-BUDAT", Cells(startRow + i, colMKPF_BUDAT).Value
       testForBlank_AddToBDC "MKPF-OIB_BLTIME", Cells(startRow + i, colMKPF_OIB_BLTIME).Value
       testForBlank_AddToBDC "RM07M-BWARTWA", Cells(startRow + i, colRM07M_BWARTWA).Value
       testForBlank_AddToBDC "RM07M-WERKS", Cells(startRow + i, colRM07M_WERKS).Value
       testForBlank_AddToBDC "RM07M-LGORT", Cells(startRow + i, colRM07M_LGORT).Value
       testForBlank_AddToBDC "XFULL", Cells(startRow + i, colXFULL).Value
       testForBlank_AddToBDC "RM07M-WVERS3", Cells(startRow + i, colRM07M_WVERS3).Value
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "=NPE"
       'Screen SAPMM07M BDC code
       add_BDCData BdcTable, "SAPMM07M", "0410", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "MSEG-OIHANTYP"
       testForBlank_AddToBDC "MSEG-MATNR", Cells(startRow + i, colMSEG_MATNR).Value
       testForBlank_AddToBDC "MSEG-ERFMG", Cells(startRow + i, colMSEG_ERFMG).Value
       testForBlank_AddToBDC "MSEG-ERFME", Cells(startRow + i, colMSEG_ERFME).Value
       testForBlank_AddToBDC "MSEG-WERKS", Cells(startRow + i, colMSEG_WERKS).Value
       testForBlank_AddToBDC "MSEG-LGORT", Cells(startRow + i, colMSEG_LGORT).Value
       testForBlank_AddToBDC "MSEG-CHARG", Cells(startRow + i, colMSEG_CHARG).Value
       testForBlank_AddToBDC "MSEG-OIHANTYP", Cells(startRow + i, colMSEG_OIHANTYP).Value
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPMM07M                                2400BLOCK1"
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPMM07M                                2400BLOCK2"
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "/00"
       'Screen SAPLOIB_QCI BDC code
       add_BDCData BdcTable, "SAPLOIB_QCI", "0500", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "OIB_A08-TDICH"
       testForBlank_AddToBDC "OIB_A08-TDICH", Cells(startRow + i, colOIB_A08_TDICH).Value
       testForBlank_AddToBDC "OIB_A08-TDICHEH", Cells(startRow + i, colOIB_A08_TDICHEH).Value
       testForBlank_AddToBDC "OIB_A08-MTTMP", Cells(startRow + i, colOIB_A08_MTTMP).Value
       testForBlank_AddToBDC "OIB_A08-MTTEH", Cells(startRow + i, colOIB_A08_MTTEH).Value
       testForBlank_AddToBDC "OIB_A08-TSTMP", Cells(startRow + i, colOIB_A08_TSTMP).Value
       testForBlank_AddToBDC "OIB_A08-TSTEH", Cells(startRow + i, colOIB_A08_TSTEH).Value
       testForBlank_AddToBDC "OIB_A08-MCF", Cells(startRow + i, colOIB_A08_MCF).Value
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "=CONT"
       'Screen SAPMM07M BDC code
       add_BDCData BdcTable, "SAPMM07M", "0410", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPLKACB                                0001BLOCK"
       testForBlank_AddToBDC "DKACB-FMORE", Cells(startRow + i, colDKACB_FMORE).Value
       'Screen SAPLKACB BDC code
       add_BDCData BdcTable, "SAPLKACB", "0002", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "COBL-AUFNR"
       testForBlank_AddToBDC "COBL-PRCTR", Cells(startRow + i, colCOBL_PRCTR).Value
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPLKACB                                9999BLOCK1"
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "=ENTE"
       'Screen SAPMM07M BDC code
       add_BDCData BdcTable, "SAPMM07M", "0410", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "MSEG-ERFMG"
       testForBlank_AddToBDC "MSEG-ERFMG", Cells(startRow + i, colMSEG_ERFMG).Value
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPMM07M                                2400BLOCK1"
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPMM07M                                2400BLOCK2"
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPLKACB                                0001BLOCK"
       testForBlank_AddToBDC "DKACB-FMORE", Cells(startRow + i, colDKACB_FMORE).Value
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "=BU"
       'Screen SAPLKACB BDC code
       add_BDCData BdcTable, "SAPLKACB", "0002", "X", "", ""
       add_BDCData BdcTable, "", "", "", "BDC_CURSOR", "COBL-AUFNR"
       testForBlank_AddToBDC "COBL-PRCTR", Cells(startRow + i, colCOBL_PRCTR).Value
       add_BDCData BdcTable, "", "", "", "BDC_SUBSCR", "SAPLKACB                                9999BLOCK1"
       add_BDCData BdcTable, "", "", "", "BDC_OKCODE", "=ENTE"
       add_BDCData BdcTable, "TCDEMB1A                                                                                ", "", "", "", ""
       firstTime = False
       ' Call the function (if the result is false, then display a message):
       If RfcCallTransaction.CALL = True Then
           Set Messages = RfcCallTransaction.imports("MESSG")
           If DEBUG_MODE Then
               printBDCTable (startRow + i)
           End If
           Cells(startRow + i, colMsg).Value = Messages.Value("MSGTX")
       Else
           MsgBox " Call Failed! error: " + RfcCallTransaction.Exception
           updateStatus "Error!", colStatus, 1
       End If
       i = i + 1
       j = 0
       Messages.Value("MSGTX") = ""
    Wend
    logOffSAP
    If DEBUG_MODE Then
        MsgBox "BDC file written to : " & DEBUG_FILE
    End If
    updateStatus "Processing Done. Logged off of SAP", colStatus, 1
    End Sub
    Now I'm trying to use this routine for  ECC 6.0, but it looks like the export parameter changed and it is not working.
    Could you please help me to debug this routine to make it work with ECC 6.0
    Thanks

    Dear Javier Cantini,
    Welcome to SCN.
    Post your queries in relevant forum. Your query is technical in nature and should be posted in ABAP forums. Moving your thread to ABAP, General forum.
    Regards,
    Naveen

  • Central contract in SRM 7.0 with ECC 6.0

    Hi
    We are using SRM 7.0 with ECC 6.0
    When we create contract in SRM 7.0 & Trying to distribute to Backend as Contract, It is showing error in BBP_PD as below
    HEADER I1015 Awaiting Approval
    HEADER I1021 Created
    HEADER I1038 Complete
    HEADER I1141 Released
    HEADER I1180 Document Completed
    HEADER I1193 In Distribution
    HEADER I1195 Distribution Incorrect
    0000000001 I1143 Item is Active
    Badi BBP_DETERMINE_LOGSY is activated to define backend system
    No IDOC is also generated.
    No errors in MOnitor also
    Not sure what is message type needs to define & what else is needed
    Regards,
    NNK

    HI
    Need to do following
    1. Keep conidtion types in ECC & SRM same for contract.
    2. Also Add message types BLAORD & COND_A manually in ECC in WE20.
    Then only it works
    Regards,
    NNK

  • List of modules with ECC 6.0

    I am looking for information on different module and engine in SAP from licensing perspective , like Netweaver comes wih ECC 6.0. What about Open Hub ? Can anyone kindly provide list of module and what comes with what and how it is set up?

    Licensing is what your contract states.  Just because Netweaver comes with ECC 6.0 that does not mean you are licensed to use netweaver components like enterprise portal, MDM, BI etc.  ECC 6.0 requires only web application server to run and perhaps other basis components, but other pieces of Netweaver are not automatically available to you.  Look at something like this to help you with modules of SAP ECC 6 http://help.sap.com/saphelp_erp60_sp/helpdata/en/80/ea89395eb58c4f9d0c3e837cf0909d/frameset.htm
    Click on logistics and modules are listed
    Mike

  • SAP XI 2 BI Integration with ECC 6.0

    Dear all,
    we are planning to do XI integration between ECC 6.0 to BI
    1) How to Get the BI Standard data from ECC 6.0?
    2)We are planning to integrate Standard BI reports with ECC 6 0 through XI.
    Please sugget the scenario for integration between ECC 6.0 to BI through SAP XI.
    Thanks In Advance.
    Mahesh

    Hi Mahesh,
    Please go thru these links
    To push data from BW to XI, please check
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20push%20data%20into%20bw%20from%20xi.pdf
    To send data from XI to BW please check
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/integrate%20bw%20via%20xi.pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40574601-ec97-2910-3cba-a0fdc10f4dce
    XI-BI Integration unsing RFC
    Pushing data from BI to XI using RFC Adapter
    https://forums.sdn.sap.com/click.jspa?searchID=17734474&messageID=5878682
    Thanks,
    Shweta

  • #DATA Sync & # CONTEXT error in BI 4.1 with ECC 6 environment

    I am getting the #DATA Sync & # CONTEXT error in BI 4.1 with ECC 6 environment. When i am adding Excel Sheet as asecondary source for BO report am getting this error. because of below,
    Ecc data
    Profit center -- 000100
    Fiscal Year --- 2,014
    Posting Period - 1  to12
    Amount 2000
    Excel Data
    Profit center -- 000100
    Discharge Date --- Q1 2014, Q2 2014,
    Discharge Port --- Excelerate or Expediate, etc
    I ahve created report Using ECC Data like, Profit center,Fiscal Year,Posting Period and Amount.
    Now i want to Add from Excel Discharge Date and Discharge Port am getting the #DATA Sync & # CONTEXT error or Imcompatible object.
    because i am anot able to merge these objects with ECC Objects. Can anyone suggest me what i can do to achieve this?
    Cheers
    Murali Durairaj

    Hi
    Have you created two different data providers (one for ECC, another for Excel data)in
    the webI report,
    If yes -- check whether able to see data sample in the Excel data provider
    Run the WebI Report -- Design Mode -- Edit -- Select the Excel Data Provider --
    Check able to see the Data Sample data whichever there in the excel sheet.
    If you are able to see the Sample data…then merge common objects (able to merge
    only if both the objects have same data types.) then check the data in the
    report.

  • Reconcile Inventory BI Content Queries with ECC

    Hi Folks,
    I have a question regarding reconciling Inventory Management BI Content reports based on cube 0IC_C03 with ECC.
    We implemented IM in BI, and now try to reconcile the queries with ECC. Specifically, I have one query, 0IC_C03_Q0008 - Stock in Transit.
    We ran the report by Plant, in BI, it only showed one material with #, but people from ECC side use T-Code MB5T in ECC and saw many materials with Stock in Transit for that Plant; and for the material showed on BI report, the # doesn't match between BI and ECC.
    What is the right way to reconcile the report with ECC? is there any other report/Tcode in ECC we can use?
    Any insight ideas would be much appreciated!
    Thanks,
    Freda

    Hi Freda,
    For me, it is the typical nightmare to try to reconcile the cube to your ECC transactions since the cube summarizes and doesn't include your material documents.
    So, to make it a bit easier to match MB5T or MB51, add an ODS with a material document and Material item key and all of the fields and key figures necessary for reconciliation (I usually look at the datasource's delivered fields and add whatever sounds reasonable to look at).  To fill records in this ODS, only fill them from 2LIS_03_BF, because BX and UM do not contain material documents.
    While I was writting this, I think I realize what is happening in your situation.  If memory serves me correctly, MB5T is Cross-Company SIT, which is not part of the 2LIS_03* datasources.  They only account for Intra-Company (Plant-to-Plant within the same company code) SIT.  For that, there is a White Paper you can have an ABAP'er implement for you.
    Here are two good documents you should read and be familiar with:
    How to .... Report on Cross Company Stock in Transit: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/92c0aa90-0201-0010-17b1-bf5b11c71257
    How to .... Handle Inventory Management Scenarios in BW: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Also, when comparing my cube data to ECC/R/3, I use transaction MMBE in the ECC to identify stock quantities and stock in transit (SIT).
    Brian

  • SRM 5.0 as an Add on with ECC 6.0

    Even i have the same question on how we would manage the distibution model when the SRM System is installed as an add on with ECC. Since being on the same client here are some of the Questions. I have also opened a new thread on this.
    1.) How would the distribution model be distributed when on the same client?
    2.) How would the Documents flow between two different systems?
    3.) In an SUS-MM scenario, how would this be handled when installed on the same client?
    4.) How would material and vendor replication facilitated?
    Any thoughts would be highly appreciated !!
    Thanks,
    Sundeep

    Hi Sundeep,
    I have answered for vendor replication here :
    One Client Solution
    For product category, material and material type replication, this is same process through activation of relevant objects in table mdsv_ctrl_opt_a
    Then you have to trigger the replication through mds_load_cockpit
    For SUS, you have to select SUS_ONE (instead of EBP_ONE) in table bbp_backend_dest
    That all what i know so far
    Kind regards,
    Yann

  • New Extractors GL with ECC 6.0

    All,
    Currently we have ECC 5.0 system and we have 0FI_GL_10 extractor providing us the reports based on P&L and Balance Sheet. The major issue with it is that it brings in 51 times the number of records because we have 16 periods and 3 currencies.
    We are planning on upgrading ECC system in near future. We want to have our GL base reports coming out of the new extractors. I have heard that the new extractors make it much better with ECC 6.0. We have our blance sheet and Detailed P&L reports coming out of current extractor.
    Can anyone who has implemented new extractor help on explaining which new extractor can best replace this functionality?
    Thanks in advance.

    Hi,
    Go through the links
    http://help.sap.com/saphelp_nw70/helpdata/en/e2/f16940c3c7bf49e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/29/830e405c538f5ce10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/e6/f16940c3c7bf49e10000000a1550b0/frameset.htm
    Re: New GL cubes 0FIGL_V10, 0FIGL_V11
    Note 1070629 - FAQs: New General Ledger Migration
    Cost Elements:Cost Element ( KSTAR ) should be available in the extract structure ( FAGL_EXTSTRUCT_LEAD ) of 0FI_GL_10.Append the structure to get cost element, activate , uncheck the hidden tab.
    Features of the Extractor
    Extraction method: F1 (function module (complete interface))
    Extractor: FAGL_GET_TT_DATA_LEAD
    Extraction structure: FAGL_EXTSTRUCT_LEAD
    If you include your own fields in the totals table of the new General Ledger using transaction FAGL_GINS, these fields are not included in the extraction automatically. You first have to include them under the same name in an APPEND to extraction structure FAGL_EXTSTRUCT_LEAD. The fields of the APPEND structure are then filled automatically.
    Santosh

  • BI 7.0 is  along with ECC ?

    Hi friends,
    I need to know some informartion regarding BI 7.0
    If we order ECC version cds then can we get BI 7.0 along with it or do we need to order ECC and BI separately.
    what abour CRM ? is it is with ECC ?
    Thanks
    Tony

    Hi Tony,
    With ECC6.0, you get Bi 7.0(but u should get a separate licence for it)
    Thanks,
    Hari.A

  • Crm compatibility with ECC 5.0

    Could you please confirm that CRM 2007 can be ran together with ECC 5.0 and where I could find these kind of "compatibility" informations?

    Hi Edwin
    see similar post with this topic ....
    Such information normally found in the Master Guide for SAP CRM (service.sap.com/instguides). This you should check first.
    As an integration of a complete application does not exist, but an integration on product instances ("systems") level, the following approach is possible as well
    -identify the required product instance for your scenarios in the Scenario and Process Component List viewer (service.sap.com/scl)
    - check the dependency matrix (see http://www.sap.com/community/flash/KW22_08_Story_1.epx)
    Keep in mind: As integration topics depend on customer specific system designs, you should test the situation in your own system landscape (Above sources concentrate on general recommendations)
    regards,
    Andreas R

  • Minimum requirement, hardware of SUN Solaris with ECC 6.0

    hi all
    can anyone tell me what is minimum requirement of hardware of SUN Solaris with ECC 6.0
    i serach out in marketplace but didn't get the answer.
    so any one can solve my problem
    rgds
    aftab

    hi juan
    i go to quick sizing but its looks too confusing like FI, HR, SCM etc and asking too many values which we don't need to specify in our case. We only need hardware minimum / maximum requirement to install SAP ECC6 SR3 on Solaris Sparc machine..
    tell me how can i do in simplified way
    thanks in advance
    Rgds+
    Aftab

Maybe you are looking for