ERP system type for ESOA service

Dear Experts,
What system type we need to use for ERP system to use SOA services in SRM scenarios like plan driven procurement, service procurement?
We are currently on SRM 7.01 and backend system ECC 6.0 Enhpk 5. We have used the system type ERP_3.0
Now, we are using the BAPI BAPI_PO_CREATE1 to create po out of shopping cart in the ECC system. If we modify the system type to say ERP_4.0 or ERP_5.0, will it still use the BAPI to create PO in the backend system ?
Please, I need your expert comment on this.
Thanks and regards,
Ranjan
Ranjan Sutradhar

Hello,
If you maintain the ECC system type as ERP_3.0 (sap_appl 603 for ECC), RFC will be used to create backend PO in ECC.
If you maintain ERP_4.0 (SAP_APPL 604) or ERP_5.0 (SAP_APPL 605), XML is used instead. In this case, you have to have PI installed.
If you do not have PI and still want to create POs via RFC, you should maintain ERP_3.0, but not all functionalities provided in SRM 7.0 will be used.
Regards,
Ricardo

Similar Messages

  • System type for technical system.

    Hi All,
    I want to create a new technical system for my receiver sys. The receiver is the PI .
    so its SAP->XI->XI Interface.
    Can anybady explain what will be the System Type for receiver PI.(web as abap or ...etc)
    Also pls explain the diffrent system types.

    Hi,
    Technical system for PI is of type Web As ABAP (because PI is also a product of SAP)
    Other technical system types:
    Web as ABAP -
    > For SAP applications.
    Web as JAVA -
    > Web AS Java systems consist of one or more instances and each instance is installed
                       on a separate host. An instance itself consists of cluster nodes that can
                       communicate with each other.For Enterprise java applications on J2EE stack.
    Third party -
    > For People soft, BAAN, JDEdwords, ...........
    Regards
    Ramesh

  • Possible in ERP 6.0 for Web Service without PI(XI) Engine

    Hi,
    We are planning to upgrade our SAP 4.63 to ERP 6.0. We expect to use web services for interfaces with ancillary systems. SAP recommend us to purchase PI(XI) engine.
    Can anybody help to answer my question below:
    1. Without PI(XI), ERP 6.0 Web services can call and be called by other systems directly?
    2. With PI(XI), what's the benefit?
    Very appreciate your help.
    Thanks
    Mr FU

    1. Without PI(XI), ERP 6.0 Web services can call and be called by other systems directly?
    Without PI (XI), ERP 6.0 can call other web services and still be called from other systems directly.
    2. With PI(XI), what's the benefit?
    With PI (XI) 7.1, you would have an Enterprise Service Repository (ESR). This would serve as a central repository for your services and improves overall governance. Consuming web services from PI 7.1 can be monitored via the message monitoring. Asynchronous web services call can also be restarted in the PI system if the web service call fails.

  • Material type for both service and delivery

    Hai all,
      I there is any material type for which both delivery and service can be carried for the same material.
    Thanks in advance,
    S.Jenibalet

    Hi.,
               DIEN is the itemctegory group for service with delivery & LIES is item category group for service or delivery
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • Find "System type" for License registration ecc6

    Hi
    how do i find the "System type" in ecc6?
    i need to registration for License .
    and if it relevant at all to the license?
    thanks in advance

    Dear Shani,
    System type is nothing but role of your system.
    like weather your system is development system, QA system or production system.
    So if system is IDES then system type is Training system.
    if system is Production system then system type is production system.
    if system is QA system then system type is test system.
    if system is development system then system type is development system.

  • Best way to handle Interface Return Type for Web Service Method

    Hi All,
    i have the followinig situation. I would like to create a method as a web service:
    Customer getCustomer(someType){....}
    ie: getCustomer method, with a parameter that indicates some backend data source. The method returns a Customer object. However, depending on the datasource this method uses (which is dependent on the type passed in, ie FooDB, BarDB etc) then i return either a:
    FooCustomer extends AbstractCustomer implements Customer
    BarCustomer extends AbstractCustomer implements Customer
    Now this fails because JAXB cant handle interfaces because when sending XML over the wire it needs a concrete representation (as far as i understand).
    So how should i deal with this?
    Do I need to create a differnet method for each datasource (foo DB, bar DB), ie:
    FooCustomer getFooCustomer()
    BarCustomer getBarCustomer()
    or do i continue calling getCustomer but somehow indicate in the WSDL that I have an AbstractCustomer object and some other bits from FooCusotmer or BarCustomer or ....
    kinda stumpeed here? I wouldve thought itd be handy to be able to do this (ie: call one getCustomer() method and get back Customer objects representing nay type of customer ... in some way...but cant see how to achieve this.
    Any pointers would be greatly appreciated
    cheers
    Marty

    Try to explore abstract schema type.

  • Custom data types for Web Service services

    Instead of language primitives (int, double) or Strings, is it possible to define custom data types (i.e. classes) for use in a service method argument or as a service return type? For example, if I create a class called MyClass then could I use it as an argument n a service as follows: someServiceMethod( MyClass myClassInstance). A service returning the custom type might look like this: MyClass getTheClassServiceMethod(String someString). Are either of these ideas possible?

    Hi there,
    you can use your own classes as service method argument or return type. But you should not forget to do a type mapping on both the service and client side.
    I can tell you, how I am sending and receiving my own datatype called "FileBean" which is a simple JavaBean with getter() and setter() methods for the properties.
    I'm using axis for deployment and tomcat as the web server, where my service runs on (currently only local but in future this will be remote).
    Service class: "InstallationService.java"
    Bean class: "FileBean.java"
    Client class: "FileSaving.java"
    My deploy.wsdd file has the following entry:
    <beanMapping qname="myNS:FileBean"
      xmlns:myNS="http://packageDelarationBackwards"
      languageSpecificType="java:packageDeclaration.FileBean"/>
    ...The method header in my service:
    public FileBean storeAttachments(FileBean file)The important part of my Client:
    QName qnFileBean = new QName("http://packageDelcarationBackwards", "FileBean");
    call = (Call) service.createCall();
    call.setTargetEndpointAddress( new java.net.URL(endpointURL) );
    call.setOperationName(new QName("InstallationService","storeAttachments"));
    call.setReturnType(qnFileBean);
    call.registerTypeMapping(
                            FileBean.class,
                            qnFileBean,
                            new BeanSerializerFactory(FileBean.class, qnFileBean),
                            new BeanDeserializerFactory(FileBean.class, qnFileBean));
    ....After deploying the service and starting the server I can send my "FileBean", work with it and give it back.
    Hope this helped. If you need more information, just let me know.
    Steffi

  • MM-PUR default scales for condition types for service (ME31K

    Hi,
    We have faced the following problem:
    The business case was, to have default scales for certain condition types for a service for a purchasing contract.
    We didn't find it in SAP, so we wrote an OSS. SAP answered that it's not possible now, nor in the future.
    So we decided to look around in SAP, and found out that it was half possible.
    I've abused the exit USEREXIT_XKOMV_BEWERTEN_INIT of program RV61AFZB.
    In this exit I provide the internal table staffel for program SAPMV13A with the correct information (via ASSIGN ('(SAPMV13A)STAFFEL[]') to <staffel>.)
    In this way, if a user adds a service, this exit will get reached and the scales are filled. If the user then clicks on conditions and then double clicks the condition type with the scales, all the default scales are shown to the user. If you then click on save, the next screen is the service screen, if you then click on save again, all the date is stored in the database. (bit of a work around, but this works)
    However, I can't figure out how to save the scales data, when you only add a service and then push the save button without viewing the conditions. Quite logically actually because I'm skipping two whole screens with pbo and pai modules, in these modules internal converting takes place.
    Has anyone encountered this problem before and how did you solve it then ?
    Alternatively what is the SAP standard way to add pricing condition scales on condition types of a service of a purchasing contract? As you know there is no BAPI yet to change/create a purchasing contract.
    I was thinking, to add the scales by updating the tables directly via ABAP, I know that's not a clean way to do it, although it isn't too risky.
    Kind regards, Rob Dielemans

    Dear Rob,
    Is this solution properly working for you?
    I think my problem is similar: purchasing outline agreement (contract) refuses to apply relevant scale prices in the item line. Always uses the first price - without considering order quantity depencies.
    Regards,
    Tamás
    Edited by: Tamas Szabo on Mar 31, 2009 3:50 PM

  • Setting in ERP system required: replicate Inbound/Outbound delivery to EWM

    Hi Experts.
    I have done all primary Configuration Settings for the ERP System and EWM system (using SPM setting, bcez its is ecc 6.0 sr2 ench pack 2 or 3)
    Suppose, plant is 0001, storage location 0001 is mapped to warehouse number EW1 in ERP
    Warehouse numbers are mapped ERP (EW1) and EWM system (EWM1)
    ERP system.   For Inbound delivery processing in VL60
    1)My question how to configure new Vendor with receiving point should be< EWM1> and warehouse number should be <EW1>  ( to replicated inbound delivery in EWM SYSTEM )
    For outbound setting for VL01N.
    2) How to configure
    Shipping to <EWM1>
    Delivery type & Sales area ( sales org, Distribution channel , division ) .let me know any configuration required  for delivery type & sale area. ( to replicated outbound delivery in EWM SYSTEM).
    Waiting for your reply .
    Thankyou

    ERP system. For Inbound delivery processing in VL60
    1)My question how to configure new Vendor with receiving point should be< EWM1> and warehouse number should be <EW1> ( to replicated inbound delivery in EWM SYSTEM )
    There is no relation between a vendor and the receiving point. Actually, you may not require a 'receiving point' to be able to transmit the ECC inbound delvy to EWM. The setting that will drive is the assignment of ECC 'dummy' Warehouse to Plant/storage location and the assignment of this ECC 'dummy' warehouse to EWM Warehouse, in ECC. Similar setting is to be made in EWM where the assignment of business system is made with ECC dummy warehouse and EWM warehouse, in EWM.
    In addition to this, you'll need to have the mapping of ERP document type to EWM document type along with the mapping ot ERP item category to EWM item type.
    For outbound setting for VL01N.
    2) How to configure
    Shipping to <EWM1>
    Delivery type & Sales area ( sales org, Distribution channel , division ) .let me know any configuration required for delivery type & sale area. ( to replicated outbound delivery in EWM SYSTEM).
    The above note is the same for this as well.

  • Automated Runtime Configuration for External Services

    Hello,
    in relation to my bachelor thesis I was wondering if there is API or another way to set the backend systems destinations for external services dynamically and not by entering the information in CAF Runtime.
    Thanks,
    Petromil

    Hello Bonnie,
    Here is some documents which will help you to setup External Service Management.
    http://help.sap.com/bp_bblibrary/500/documentation/U42_BB_ConfigGuide_EN_BR.doc
    <a href="http://help.sap.com/bestpractices/BBLibrary/documentation/J24_BB_ConfigGuide_EN_UK.doc">SD/MM Services</a>
    Regard,
    Arif Mansuri

  • System Type ERP not available while creating Buisness System For ECC in SAP Sourcing 9.0

    Hi,
    I need to import Master data in SAP Sourcing but when i am uploading master data i am getting this errror
    Business system ECQCLNT340 does not match with local SAP Sourcing System ID SOURCING.
    i have followed the steps in config guide of SAP ERP with SAP Sourcing.
    when i am creating business system in SAP Sourcing system type ERP is not available.
    i have also attached the error file, please check
    --------------Version---------------
    ECC 6.0 Ehp6
    SAP Sourcing 9.0 on NW7.3 Ehp1 on IBM DB2
    Thanks and Regards,
    Murtaza Najmi

    Thanks you Prasad,
    this issue has been resolved and i have completed the installation part of SAP Sourcing and Contract generation.
    Now , I am getting error while uploading clause document,  my functional team member are not able to upload clause document. kindly suggest.
    ----------------------Error Description---------------
    Login with buyer link into the system-> it has all authorizations
    then Goto -> Contract Management -> Clause Library -> Clause list -> Click on New button -> Click on Add button -> Browse Document
    it is showing POPUP with Error that "There is a problem with the Contract Generation web service Contact your system administrator"
    Thanks and Regards,
    Murtaza Najmi

  • Java Add-In Installation for EHP4 ERP system

    Hello!
    we successfully upgraded our SAP ERP system to EHP4 for SAP.
    Our system has only ABAP stack.
    Question
    1) Is it possible to install a Java Add-In instance for the existing EHP4 system?
    2) If yes, can this be done on the same Windows server?
    Thank you very much!

    Specific Requirements
    Take the following specific requirements of the new installation process into consideration:
    - The previous SAPInst installation service Java Add-In in SAP ERP 6.0/SAP NetWeaver
    7.0 was able to add Java usage types such as EPC, or EP, to existing ABAP-only
    systems. This was possible only, if you added AS Java at the same time. The option of a
    Java Add-In installation is not any longer available as of the enhancement package 4 for
    SAP ERP 6.0. Thus, it is not any longer possible, for example, to add EPC and EP
    together with AS Java to an ABAP-only system.
    [SAP Enhancement Package 4 for SAP ERP 6.0|https://websmp201.sap-ag.de/~sapidb/011000358700000772192007E]
    There are many links on SDN discussing ERP EHP 4 dual stack:
    [Re: EHP4 Dual stack;
    [ECC 6.0 - EHP4 - Client Import;
    Hope this helps.
    Thanks,
    Naveed

  • Consuming and Providing Web Service with JD Edwards ERP system

    Hi,
    I would like to create web services with c++ or java OR any other easier way .
    I need to use that web services to use in Share point to interact with JD Edwards ERP system .
    Pls Note : Since not having license for JD Edwards, I need to create and call from Sharepoint Web service to JD edwards.
                       and not from JD edwards web service.
    Could anybody guide me in this.
    Thanks in advance.

    I had this error again so I thought I would post my solution:
    The issue is SAP needs to know the certificates being used by the web site being called.  These certificates are automatically installed in your browser but need to be manually installed in SAP.  This is what I did:
    How to find/install new certificates
    Make sure you run Internet Explorer as an Administrator so you can export the certificates
    Go to the web site that SAP is trying to call in Internet Explorer
    Double click on the lock in the address bar
    View certificates
    Find the certificates that are being used
    Tools --> Internet Options --> Content --> Certificates
    Click on the “Trusted Root Certification Authorities” tab
    Find the certificate identified in step iii
    Export as a CER certificate
    Click on the “Intermediate Certification Authorities” tab
    Find the certificate identified in step iii
    Export as a CER certificate
    Go to STRUST in SAP
    Import the Certificates in the “Anonymous” or “Standard” SSL client
    Save
    RESTART the ICM via t-code SMICM  <-- Critical!!!
    Test

  • Wrong calculation for condition type for misc. provision in service PO

    Hi Gurus,
    In service PO line item, we have maintained customised condition type for misc provision. this is % based on net price. It has been assigned account key and accrual key. It's manual. Logically, it should calculate the value based on the total of the net values of all service lines and post a single entry for all concerned service lines. What system is actually doing, it calculates the value correctly for total of net values of service lines in that PO line item but post it to the account as many number of times as the number of service lines in that line item.
    This is when service based IV is active for the PO line item. If I deactivate this, then it post the account once only which is ok.
    Please explain this behaviour. Also, I want to activate service based IV, what should I do to this condition type. Is there any condtion base formula or condtion value formual to be assigned in the pricing procedure?
    Thanks in advance,
    Sudhir Dahake

    Hi,
    Check if some user exit/ routine is written for the condition type.
    Check user exit RV60AFZZ, RV60AFZA, RV60AFZB,RV60AFZC for some code.
    If it is a manual condition check COPY CONTROLS or if it is automatic check condition records from which it is calculated based on qty, price, material type, etc.
    Regards,
    Amit

  • Condition types for service tax

    Hi,
    We are configuring the system for TAXINN.
    Which condition types to be usd for service tax, ECess on service tax and HECess on service tax?
    are their any standard condition types for it or we need to create those?
    Regards,

    Hi,
    For Deductible;
    JSRT     IN:A/P Service Tax %
    JEC3     IN: A/P ECS for ST %
    JES3     IN:A/P SECess on ST
    For Non-deductible; (Copy of Above with A/c Key "NVV")
    ZSRT     IN:A/P Service Tax %
    ZEC3     IN: A/P ECS for ST %
    ZES3     IN:A/P SECess on ST

Maybe you are looking for

  • CUE 8.6.1 AA scripts - xfer to voicemail

    Hi All, Under the new version of CUE the xfer to voicemail subflow has changed a little and for the life ofme i cant make it work. What are the Input Mappings and Ottput Mappings Sources and Subflow Destinations. Can someone give me a working example

  • Can't Drag Music From iTunes to iPhone 5

    Last night I updated iTunes to the latest version as well as updating my iPhone. I rarely add music to my phone via iTunes as it is always an ordeal, but I had a couple of albums I wanted to add last night as I am going away tomorrow. I am unable to

  • Powerbook Requires Restart Often

    My 15" powerbook has been having problems for about a month. When I start it up, the screen freezes and has a message to hold down the power button for several seconds to shut down and restart my computer. Then, if I wake it up from sleeping or start

  • "to upper case"-function in where condition

    Hello all, This code below meets my purpose, but I find it very "ugly": * c1 is % TRANSLATE NACHN TO UPPER CASE. CONCATENATE c1 NACHN c1 into NACHN. TRANSLATE VORNA TO UPPER CASE. CONCATENATE c1 VORNA c1 into VORNA. SELECT *   INTO CORRESPONDING FIEL

  • Install standalone workflow

    i install standalon oracle workflow by the script below: rem Oracle Workflow install script rem Make sure all arguments are assigned or java will hang "C:\Program Files\Oracle\jre\1.1.7\bin\jre" -classpath "C:\Program Files\Oracle\jre\1.1.7\lib\rt.ja