External services po for resources need information till ML81N, MIRO etc.

hi all,
Looking for external services po for resources need information till ML81N, MIRO.
Even  HR personnal number PA 30, CAT2, CATM  required for smooth flow.
Internally for this HR tcodes WBS element Activity number is also involved.
Thanks in advance for mm dudes for replys.
Regards,
Parameshwar.

Hi,
I hope as per your requirement , you have to develop some custom (Z) report or using SAP query. All the requested data are available in Std.SAP tables, you have to fetch it as per your requirement.
You can check the std.report - ME2S for planned/actual Comparison
Thanks & Regards,

Similar Messages

  • Internal Server error while configuring External service for CAF

    Dear All,
    While configuring the External Service (RFC) for CAF Core project in our EP7 SP11 server we are getting error message we are getting Internal server error when we click on service registry.
    500   Internal Server Error
      SAP NetWeaver Application Server 7.00/Java AS 7.00 
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at com.sap.caf.mp.mmr.adapter.ServiceDefinitionTypeConverter.convertExternalInterface(ServiceDefinitionTypeConverter.java:507)
        at com.sap.caf.mp.mmr.adapter.MMServiceRetrievalAdapter.getExternalInterfaces(MMServiceRetrievalAdapter.java:547)
        at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerBean.getExternalInterfaces(MMServiceRetrievalAdapterCallerBean.java:158)
        at com.sap.caf.mp.mmr.ejb.MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.getExternalInterfaces(MMServiceRetrievalAdapterCallerLocalLocalObjectImpl0_0.java:477)
        at com.sap.caf.mp.core.data.service.DataServiceBridge.getExternalServices(DataServiceBridge.java:201)
        ... 47 more
    Please let me know what shd be done to correct the error.
    Warm Regards
    Mazdul
    [email protected]

    The solution is mentioned in this thread:
    Error on External Serrvice Configuration Page NW 20047s SP10
    re-create your configuration if possible and see whether that fixes it

  • Business Objects, external services and application services in CAs

    Hi All,
    right now we are developing our first eSOA Composite Application with CE and I have some questions regarding Business Objects, the import of external services and the development of application services.
    As I understood there are two ways to provide business functionality for composite applications:
    a. Import backend functionality as an external service (e.g. BAPI, RFC) at the CAF, build the application service which can be used as a callable object for UIs or the GPs
    b. Develop a local Business Object (in CAF) providing the business logic, create the application service which again can be used as a callable object. Furthermore the application service can be exposed as a Web Service (external service).
    My questions:
    1. When is it appropriate to to import external services in stead of developing local BOs?
    2. Under what conditions is it advisable to (solely) develop local BOs?
    3. What are the advantages / disadvantages regarding the reusability of the services (in option a and b)?
    Note: We are developing on NetWeaver 2004s.
    Please let me know, if you need more information to answer the questions!
    Thanks for your advice in advance,
    Regards,
    Ivonne

    Hi Ivonne,
    first of all, the CAF Business Objects (BOs) itself don't contain any business logic, they're basically just local database tables (with some CRUD services on top).
    Business logic is implemented in Application Services (AS).
    Now, regarding local BO's vs. external services, it depends on your use case. If the data is already available somewhere in your backend system it makes sense to use external services. For instance you wouldn't want to store business partners all over different composites. For data that is specific to your composite (in particular configuration, customizing etc.) and not likely to be reused by other applications you should use local BOs.
    Accessing local BO's is also much faster than calling external services.
    You can do reuse in both scenarios, since the CAF services can be exposed as web services.
    Regards,
    Christian
    Edited by: Christian Loos  on Apr 8, 2008 6:11 PM

  • External Service Generation - WSDL not accepted

    Hi,
    I am struggeling to import my WSDL into the CAP SP 8 in the NW DevStudio.
    A long time I received a an error "invalid WSDL" - no further comments.
    After reading the SAPNote and comparing with working WSDLs I came up with that WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://com.bis/xi/esabox/demo" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://schemas.xmlsoap.org/soap/encoding/" name="CreateSAPOrderService" targetNamespace="http://com.bis/xi/esabox/demo">
         <types>
              <xsd:schema targetNamespace="http://com.bis/xi/esabox/demo">
                   <xsd:complexType name="row">
                        <xsd:sequence>
                             <xsd:element name="p_idproduit" type="xsd:string"/>
                             <xsd:element name="p_nom" type="xsd:string"/>
                             <xsd:element name="p_type" type="xsd:string"/>
                             <xsd:element name="p_pu" type="xsd:string"/>
                             <xsd:element name="p_count" type="xsd:string"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:schema>
         </types>
         <message name="CreateSAPOrderRequest">
              <!--
              <part name="p_idproduit" type="xsd:int"/>
              <part name="p_nom" type="xsd:string"/>
              <part name="p_type" type="xsd:string"/>
              <part name="p_pu" type="xsd:float"/>
              <part name="p_count" type="xsd:int"/>
              -->
              <part name="row" type="tns:row"/>
         </message>
         <message name="CreateSAPOrderResponse">
              <part name="SAPOrderResponse" type="xsd:string"/>
         </message>
         <portType name="SAPOrder_PortType">
              <operation name="createSAPOrder">
                   <input message="tns:CreateSAPOrderRequest"/>
                   <output message="tns:CreateSAPOrderResponse"/>
              </operation>
         </portType>
         <binding name="SAPOrder_Binding" type="tns:SAPOrder_PortType">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <operation name="createSAPOrder">
                   <soap:operation soapAction="createSAPOrder"/>
                   <input>
                        <soap:body use="literal" namespace="http://com.bis/xi/esabox/demo"/>
                   </input>
                   <output>
                        <soap:body use="literal" namespace="http://com.bis/xi/esabox/demo"/>
                   </output>
              </operation>
         </binding>
         <service name="Create_SAP_Order_Service">
              <documentation>WSDL File for CreateSAPOrderService</documentation>
              <port name="CreatSAPOrder_Port" binding="tns:SAPOrder_Binding">
                   <soap:address location="http://iwdfvm2160:51000/XISOAPAdapter/MessageServlet?channel=:BSe_GREENATTITUDE_WS:CC_GREENATTITUDE_WS"/>
              </port>
         </service>
    </definitions>
    No I receive the error "Cannot convert MP Service Definition SAPOrder_PortType into MMR External Service. Reason: Program Error: Unexpected MP data. IStructure struct instance have to be of type IElement."
    Well - for me that does not help a lot.
    Has anyone an idea what I am doing wrong?
    and BTW: I have the impression that CAF but also XI and VC heavily struggle to work with external WSDL. Does anyone know whether SAP is going to improve their products somewhen towards real-life applicability?
    Thanks for any comment!!
    Cheers.

    Hi Ankit
    I had managed to solve the problem with a workaround
    1) I created an Proxy Project to wrap XI WSDL file in it
    2) Then created EJB project to call wrapped XI web Service
       from ejb method. I then exposed this ejb method as web service
    3) Finally created ear for ejb and deployed it on Web Application Server
    4) now create External service project for the new wrapper web service it will get imported sucessfully and build and deploy also goes sucessfully
    The difference this workaround does is that we do not have to consume XI webService directly which has little different structure and instead we consume wrapper web service which is generated out of an EJB and is available on JAVA stack your web service itself
    CAF has no problem importing External services when they are hosted on web server JAVA itself
    Hope my explanation convince you to go with this workaround
    Thanks
    Asif

  • Field Selection _ External services

    Dear All,
    In External Services, except for service masters, field selection in what way we do.
    For example in Service PO, Update Conditions field is made suppressed, how I can I make it optional.
    In menu path SPRO-MM-Ext Services - Define Screen Layout, i really cannot understnad how to do that. My requirement is to make Update conditions field in service PO creation screen (ME21N), to be made visible and optional.
    Request u to help
    Rgds
    Raul

    Hi Raul,
    Please kindly check the setting to the screen layout as follow :                                                                               
    SPRO -> Material Management -> External Service Management ->  Define Screen Layout -> Purchase Order -> Field group "Service Fields"-> Field "Info Update Indicator"                                          
    Please kindly check whether the field selection there is hidden or optional. Please maintain it to Optional.                                                                               
    Regards,
    Mauro

  • Service tools for BI-Ip

    Hi All,
    Can you suggest where can I find information on service tools for BI? like master data creation etc.
    Regards,
    Deepti

    Closing as didn't get any replies.

  • External number range for service items?

    I want to create Purchase order with services using BAPI. Is it possible to set external number range for the extrow / introw, so that if I need to change a service line item, I will be able to find out which service item needs to be changed.

    It depends on whether you have a service master or not.
    1. If you have service master, then there will be a service number (just like a material number). You can use that identify which one has to be deleted.
    2. If NOT, then they would still send the text for the Service lines (I guess this will be unique for each line item). So, you will have to identify the line to be deleted by that.
    Makes sense?
    A question - You are saying you will get information to update the PO, but how does the system know which PO to be updated, how are you going to identify which PO needs to be changed?
    Regards,
    Ravi
    Message was edited by: Ravikumar Allampallam

  • How to fix this error "this iPad is not able to complete the activation process. Please press Home and start over. If the issue persists, please visit your nearest Apple Store or Authorized service provider for more information or replacement"?

    How to fix this error "this iPad is not able to complete the activation process. Please press Home and start over. If the issue persists, please visit your nearest Apple Store or Authorized service provider for more information or replacement"? When I plugged in my iPad this popped up!

    Hi csreddy, 
    If you are receiving a message to contact an Apple Retail Store or Authorized Service Provider for help updating from iOS 3, click on the link below to initiate that support:
    Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support
    http://support.apple.com/en-us/HT204204
    Update your device using iTunes
    If you can’t update wirelessly, or if you want to update with iTunes, follow these steps:
    Install the latest version of iTunes on your computer.
    Plug in your device to your computer.
    In iTunes, select your device.
    In the Summary pane, click Check for Update. 
    Click Download and Update.
    If you don't have enough free space to update using iTunes, you'll need to delete content manually from your device.
    Find out what to do if you get other error messages while updating your device.
    Last Modified: Jan 12, 2015
    Apple - Find Locations
    https://locate.apple.com
    Contact Apple for support and service - Apple Support
    http://support.apple.com/en-us/HT201232
    Regards,
    - Judy

  • How download  data of me2s   'po order for external  services: in cxcel'

    THIS IS sandipan. I am very new in this field . My requirement is when i am going  to me2s  t.code. then i am giving purchasing group , plant , Service Number as input. then it showing purchase doc . , item , porg , matl... , plant , crcy . It's ok. but after that when i am clicking  purchase order it displays Purchase order for external services : overview screen in a hiarirchical view  and no download option is available here.  I need to export the data of that screen to a excel sheet . how Is it possible ? please help me ...
    Moderator message: please do not open multiple threads for the same or similar issue.
    Edited by: Thomas Zloch on Jan 7, 2012 10:22 PM

    Hi
    T165A is used for 'Services Pricing'.
    Please note that for Services PO, you will have two pricing schema.
    1) At PO-Item Level : RM0000 (or whatever you define in schema determination in Purchasing ->Conditions IMG and assign in your vendor master)
    2) At service line level : Based on settings in T165A.
    If you check in Services level conditions screen and click on Analysis, you will find that ZS0001 is triggered.
    Best regards
    Ramki

  • I need information on my bill, for the last two yrs, how do i go about looking for it

    i need information on my bill for the last two yrs, how i go about looking for it . thanks\

    The last 12 months' worth can be obtained via your on-line MyVerizon account; look under View Bill and use the drop-down to select the appropriate bill.  Anything prior to the past 12 months would need to be obtained via Customer Service; there is a charge (I believe $5 per copy, but I'm not sure).

  • Need information on SolarisWBEM Services

    I need the following information about the Solaris WBEM Services.
    1. Is Solaris WBEM Services supported now and how to use the same?
    2. Features supported by Solaris WBEM Services? For example, list of providers are supported by the same.
    Please provide me with link to the documents on Solaris WBEM services.

    (sorry for the double answer. Klaus managed to post just before me :=)
    Hello Deep,
    check out help.sap.com, http://help.sap.com/saphelp_nw04/helpdata/en/cd/8a424089ff2571e10000000a155106/frameset.htm
    In addition search the forum for similar questions, there are quite a lot of good answers in the threads.
    regards,
    Jørgen
    Message was edited by: Jørgen Ruud

  • Inspection lot for external service

    Hi Gajesh/ Sujit/shyamal/ all
    we are planning to use service master for external vendor's service, i have couple of questions
    please share your experience, if anyone of you come across this kind of requirement
    1. is it possible to create an inspection lot for external service?
    2. we want to capture / validate the vendor's external service, weather it is accepted or not? sometime we need to enter quantitative value also
    3. is there any setting or config for assign /create inspection lot for service master?
    what I know is without material master we cannot create inspection lot but i don't know about service master.
    thanks
    Sami

    Gajesh,
    thanks for quick response.
    2 business req. are as follows
    1.  vendror is performing periodic service, MM side external service order (service contract/PO)created, bsaed on thatPO vendors performing service.
    service entry sheet they are capturing man hours and date of service.
    business wants quality of service to be captured in QM inspectiion lot.
    2. production order ---> routing -- operation ---> vendor & service PO number  assigned external work --> now inspetion lot will be created for that material/production order.
    how can we link service master, service entry sheet and inspection lot?
    how to map for this req.?
    again is't possible to create inspection lot for service master?(without material master)if your answer is yes, then where/how can we assign inspection type ? which inspection type?
    thanks
    Sami

  • Need information abt ESS/MSS services?

    need information abt ESS/MSS services?

    Hi Ramesh,
    Have a Look at this links.
    these links would be usefull for you since you are exploring EP
    Creating R/3 Backend System https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/24d8faf9-0701-0010-c99c-aabbdb7e95f4
    Creating R/3 Transaction iView *** https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/61bcfff9-0701-0010-608d-f49bca11320c
    User Mapping https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2256fdf9-0701-0010-18b2-e5c83f75b73f
    Creating SQL Backend system with JDBC https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce8502fa-0701-0010-319a-bdb72d4a1c0f
    Creating SQL iView with JDBC https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c27c04fa-0701-0010-61b1-a7c7375032b8
    Exporting Portal Objects https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ced5f8f9-0701-0010-59aa-8bef7761d9db
    Creating Worksets ans Roles https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9f2df6f9-0701-0010-d08f-a95acdd86453
    Creating Pages https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6077f3f9-0701-0010-cb97-c21d3aa57453
    Create URL iView https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e4bbf0f9-0701-0010-6a8a-e8b2372f76d0
    Create a Folder https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/47eeeef9-0701-0010-37b1-f356bfbbcf23
    Cheers!!
    Regards,
    krishna

  • Billing for External Services to Customer

    Hi All,
    Please advice how to bill customer for External Services like civil work etc.
    My client uses services from external companies so if they have contract with customer for that,after completing the work they want to bill it to customer ,pls advice.
    Muzamil

    Muzamil,
    If you are using projects, you can create an external or service activity depending upon whether you are entitling the vendor to perform some work or a service. Once you create and release the network activity, a purchase requisition is created, which then will be converted into a purchase order by your purchasing department. The purchase requisition/order commitment will appear on the network activity (project) and when the vendor sends you a goods receipt/invoice (depending on configuration), your project receives the cost. Then, depending on how you are billing your customer, you could incorporate these costs also into your customer billing.
    If you need further explanation on billing, please write back with details about how you are billing your customers currently (if based on a project).
    Regards,
    Venkat.

  • Combination of GR/IR control not allowed for external services

    Hi,
    I need to uncheck the field GR-Based IV (EKPO-WEBRE) in the SERVICE PO but I receive the message :
    "Combination of GR/IR control not allowed for external services"
    I want to allow the user to receive Invoices (MIRO) before the Service Entry (ML81N).
    Thanks.
    Carlos Durazo

    HI,
    This is a "hard coded" option and cannot be removed.
    If you want to be able to post invoices for services before the GR (acceptance) then you could consider using "normal" POs for these (without item category "D") abd use material masters (DIEN material type) or describe the service in text.
    External services POs are only really suited to complex services or services that need a two step GR process (Service entry and acceptance).
    Far too many organisations use the service entry sheet option when "normal POs" would be far better.
    Steve B

Maybe you are looking for

  • Seemingly trivial but can't see to do it

    Hi, I always liked using the arrow keys for moving objects in situations where I need more precise control e.g. I use this technique in Photoshop all the time. Is there a trick to using arrow keys in PrE 9? For example, I'm trying to position my text

  • Unable to obtain 4G from my network with the Z10

    I recently purchased my z10 from verizon in the United States unlocked. When i inserted the sim card of my local network (4G plan) i was only able to identify an 'E'  in the upper right hand corner of the screen. After speaking with my network provid

  • Require to connect to Oracle DB

    hi, I need to connect to an Oracle DB using JDBC drivers. Where will I get these drivers from. What all do I need to do to connect to the DB using these drivers. Is it possible to install the drivers through our application,incase they are not presen

  • Log.properties

    below is the log.properties file but this is not able to generate new log file every hour. so please help me to point out what modification should be needed. # This file is to configure the logs that xellerate produces via log4j. # this file is used

  • Backup Iphone via ITunes

    Hi everybody, I recently downloaded the new iTunes. It had changed a lot compared to 2 years ago when I started to use it the first time. Back then when I did the backup, I am able to view the outlook of my iPhone (3GS) homescreen and also all the pa