Export Interfaces via Webservice in ECC 6.0 for SAP Learning SolutionLSO600

hi *,
i am pretty new to SAP HR and have found this manual
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/329da1a8-0b01-0010-b399-c04517307bcd
in this manual it is described that in LSO 600 you either have the possibility to export a SOAP interface directly from the SAP HR Netweaver instance and OR can go through SAP XI for doing this.
my problem about this is that i can not find a manual for doing this. my preferred way would be to export this soap requests via NON XI (just ECC 6.0).
does anyone know a manual for exporting this interfaces or similar ones to soap/wsdl?
regards chris

And what is the solution?

Similar Messages

  • Changes form 4.6cc to ecc 6.0 for sap sd

    i am doing upgrde project. may i know the changes from 4.6cc to ecc6.o.
    please help me regarding this is there any file or path for this
    regards
    satish

    Dear satish babu,
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    Then it displays the Release Version and the Delta Functionality. which can be downloaded to a word document if required.
    and also check the release notes of ECC 6.0 in service.sap.com.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • How to use Building blocks ECC 6.0 for SAP implementation of FI/CO

    Hi SAP gurus,
    I am new to FI/CO, we are planning to implement SAP FI/CO from scratch with the client, can anyone explain me what is the procedure to be followed to implement ECC 6.0 and also let me know how to use SAP building blocks in implementation of FI/CO modules.
    plz do reply me at the earliest. Thanks in advance.
    Regards,
    suresh

    Hi,
    U can check the Best Practices avaialbale based on any version
    http://help.sap.com
    Select Best practices
    Select Baseline packages
    Select the country for which u r customizing
    Select  business information
    Select Pre-configured scenarios
    Select the country
    Select the module available on the right side
    Regards,
    Sridevi
    <b>Pls. reward all useful answers</b>

  • Custom de disponibilizacao do XML via WebService

    Srs.
    Preciso da ajuda de vocês em uma solução custom que estou criando via WebServices de disponibilizacao do arquivo XML gerado pelo SEFAZ.
    O problema que estou tendo é que, informando um ID de uma NFe, não estou conseguindo ler todos os dados do XML que está armazenado no GRC, durante a leitura está ocorrendo salto entre os dados e não entendo ainda o que pode estar errado.
    Segue abaixo o codigo da RFC que estou criando que através do ID ( como eu disse ) me retornaria o XML completo dentro de um unico campo de texto, o que nao esta ocorrendo.
    FUNCTION Z_GETXML_BY_MFEID.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_NFEID) TYPE  /XNFE/ID
    *"  EXPORTING
    *"     VALUE(E_XML) TYPE  CHAR30K
      TYPES: begin of typ_tab_xml,
                id    TYPE string,
                docid TYPE SDOK_DOCID,
             end of typ_tab_xml.
        TYPES: begin of typ_tab_string,
                str  TYPE Xstring,
             end of typ_tab_string.
      DATA: wa_xml       TYPE typ_tab_xml,
            wa_dokobject TYPE SDOKOBJECT,
            itb_fileinfo TYPE TABLE OF SDOKFILACI,
            wa_fileinfo  TYPE SDOKFILACI,
            itb_fileBinary TYPE TABLE OF SDOKCNTBIN,
            wa_fileBinary TYPE SDOKCNTBIN,
            str_xml      TYPE string,
            tab_string   TYPE TABLE OF SDOKCNTASC.
      SELECT SINGLE id
                    docid
        FROM /XNFE/XML
        INTO wa_xml
       WHERE id = I_NFEID.
      IF sy-subrc <> 0.
      ENDIF.
      wa_dokobject-class = '/XNFE/XML1'.
      wa_dokobject-objid = wa_xml-docid.
      CALL FUNCTION 'SDOK_PHIO_LOAD_CONTENT'
        EXPORTING
          OBJECT_ID                 = wa_dokobject
          CLIENT                    = SY-MANDT
      AS_IS_MODE                =
          RAW_MODE                  = 'X'
      TEXT_AS_STREAM            =
       TABLES
         FILE_ACCESS_INFO          = itb_fileinfo
         FILE_CONTENT_BINARY       = itb_fileBinary
    EXCEPTIONS
      NOT_EXISTING              = 1
      NOT_AUTHORIZED            = 2
      NO_CONTENT                = 3
      BAD_STORAGE_TYPE          = 4
      OTHERS                    = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE itb_fileinfo INTO wa_fileinfo INDEX 1.
      DATA: linha       TYPE i,
            linha2      TYPE i,
            linha_fim   TYPE i,
            tabela      TYPE TABLE OF typ_tab_string.
      linha = wa_fileinfo-first_line.
      linha_fim = wa_fileinfo-last_line.
      Data: len TYPE i.
      WHILE linha <= linha_fim.
        linha2 = linha + 1.
        data LXSTRING type XSTRING.
        CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
          EXPORTING
            INPUT_LENGTH       = 4096
           FIRST_LINE         = LINHA
           LAST_LINE          = LINHA2
         IMPORTING
           BUFFER             = LXSTRING
          TABLES
            BINARY_TAB         = itb_fileBinary
        EXCEPTIONS
          FAILED             = 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.
       Data: str TYPE string.
       CALL FUNCTION

    Eu uso essa  função para recuperar o XML:
        CALL FUNCTION '/XNFE/CORE_KPRO_XML_READ'
          EXPORTING
            is_dokobject     = ls_dokobject
          IMPORTING
            ev_content       = EV_STRING
          EXCEPTIONS
            no_existing      = 0
            no_authorization = 0
            no_content       = 0
            read_failure     = 0
            convert_failure  = 0
            OTHERS           = 0.
    Onde:
        ls_dokobject-class = '/XNFE/XML1'.
        ls_dokobject-objid = lv_docid .
    At.,
    Bernardo Braga

  • Calling a local Webservice from ECC ABAP - Am I on the right track?

    Hi all
    In my NW2004s landscape I have an ECC system (ABAP 6.40, Java not configured/linked) and an XI system (6.40).  My requirement is to call a Webservice (WS) from the ECC system.
    I've converted an existing Java class (that contains 3 methods) to a webservice (WS) using NWDS.  This WS has then been deployed to the XI system as it is the only one with a JAVA system.  I'm able to view and test the WS methods using the Web Service Navigator on the XI system.  The wsdl for the WS that was generated has the following format "http://<server>:<port>/<webservice name>/<configuration name>?wsdl  (No .asmx extension as per most of the examples on SDN...not sure if this matters).
    My understanding is that I should be able to create a client proxy in my ECC system (via Enterprise Services in SE80) using this wsdl and I can also configure a logical port throught txn LPCONFIG.  I should then be able to utilise ABAP to call this webservice? 
    I've found the blog "/people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap detailing this (for a 6.40 system)... but when I attempt the program I get a soap 111 error code Unallowed RFC-XML Tag(SOAP_EINVALDOC).  
    Am I on the right track? Is it possible to call the Webservice from ECC ABAP? 
    There are no dumps for me to analyse and I've also tried putting on RFC trace with no success.
    Could it be that the WS is not correctly formed even though it works fine when tested from the WS Navigator on the XI system?
    Thanking you in advance.
    Malick

    Clive Pennington wrote:
    Thank you Eugene, your answer is most helpful.  I supose I just wanted to do everything myself really.  If when I have made my little movies, my animations and collated all my words and pictures I have problems assembling the documents then I can always get a professional to haul it together for me but I want to put in the donkey work first.  I know it is a lot of money for the software but now the pain is giving way a little I'm really quite enjoying myself.
    The planning which you have mentioned in your reply is of imense value I will start to do that immidiately, also the constant testing through Digital editions.
    All this is really helpful and I thank you for you reply.  I have made a brave attempt at some elementary annimation and posted them on youtube for testing, the urls are here if there is any interest.  Basic and time consuming but I can do this much faster now.
    http://tinyurl.com/348wjxg
    http://tinyurl.com/2wzuhql
    http://tinyurl.com/3yzjunk
    Thanks again............ Clive
    What comes through to me from your videos is that you know your material (of course, no pun intended) and that you have a clear sense of how to present it for clear communication to, and understanding by, your audience. Without this core, no amount of professional-level visual effects will achieve your goal, a great training program.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • WSCONFIG Problem while creating Webservices in ECC Discovery System.

    Hi,
    I am creating a webservice in ECC Discovery system, whereas in i am getting the following error when trying to release the webservice using Tcode: WSCONFIG.
    Error:
    An attempt was made to edit the service definition ZWS_SaleOrderCreate_Test with transaction WSCONFIG. This is not possible for this service definition, since it has a new service definition version (release 710 and later).
    Procedure
    Use the web service configuration interface offered by the ITSAM framework.
    Your helpful answers will appreciated.
    Advance Thanks
    Ashok

    Hi,
    WSCONFIG is obsolete since Netweaver 7.0 SP14.
    With Netweaver 7.0 you have to use transaction SOAMANAGER instead.
    With Netweaver 7.10, I don't know as I have never used it.
    Regards,
    Olivier

  • How to extract data via webservices and configure webservices in BI 7

    Hi to all,
    Can any body tell me How to extract data via webservices and configure webservices in BI 7.
    i have created a remote functionmodule which extract data from R/3 , now i want to upload data to BI 7 using that remote function module.
    i have use webservice (push) as adapter mode, as i want to connect function module with SOAP , via web services.
    please can any body tell how to do that.
    also how to configure the webserive , what is it .
    I SHALL BE THANKFULL TO YOU FOR THAT
    Regards
    Pavneet rana

    Hi,
    1. Using the function library (transaction SE37), call the Web service creation wizard.
    To do this, select the desired function module in the function library and choose Utilities ®Generate Web Service ® From the Function Module.
    2. Go through the following steps, shown in the wizard:
    a. Create a virtual interface.
    The virtual interface represents the interface between the Web Service and the outside.
    b. Choose the end point.
    The name of the function module that is to be offered as Web service is already entered here.
    c. Create the Web service definition.
    The Web service definition helps with assigning the Web service features, such as how security can be guaranteed in data transfer.
    d. Release the Web service.
    The wizard generates the object virtual interface and Web service definition in the object navigator.
    The function group that was generated when the XML DataSource was created is not transportable and is thus assigned to a local package. To prevent errors due to transports, make sure that the objects that were generated in the Web service creation wizard are assigned to a local non-transportable package.
    The Web service is released for the SOAP runtime.
    3. In the virtual interface for the import parameter DATASOURCE, define the name of the XML DataSource as the fixed value.
    A separate function group is generated for each XML DataSource. It makes sense to pre-assign the parameter DATASOURCE with the name of the XML DataSource in the virtual interface of the Web service for which the function group was generated.
    If you do not pre-assign the parameter, it will be necessary to transfer the data sent with the appropriate filled DataSource element, for example, by setting the value in the application that implements the Web service.
    a. In the object navigator, choose the name of the package in which the Web service was created and choose Enterprise Services ® Web Service Library ® Virtual Interfaces.
    b. Choose Change in the context menu for the virtual interface.
    c. For the virtual interface, remove the flags exposed and initial and enter the name of the XML DataSource in apostrophes, for example u20196ADATASOURCENAMEu2019.
    d. Activate the virtual interface.
    Regards,
    Marasa.

  • Querying for contacts via webservices

    When we query for contact records via webservices , it only checks those contacts created by the webservices and not by any other users.A user id has been created for the same as 'Web Interface', though when we login to the instance through this user id we are able to view all the records created by other users also.
    Kindly help us with the issue
    Thank you.
    Edited by: user11089876 on May 4, 2009 10:07 PM

    Hi,
    Are you in R16 and using 2.0 WS APIs? If so please check what you are setting for the parameter "ViewMode". This may affect the data visibility. For more info, check the WS reference guide page 282. Hope it helps
    -- Venky CRMIT

  • Using the Open Catalog Interface (OCI) between SAP-ECC 6.0 and SAP-MDM

    Hello ASUG Community.
    I'm working on an SAP-MDM project where we will configure the OCI interface between SAP-ECC 6.0 and SAP-MDM.  The business requirement will be to punch out to SAP-MDM's catalog from SAP-ECC for expensed items (e.g., no material master record exists in SAP-ECC).
    The data that will be returned to SAP-ECC will be purchase price info, material group, short text, & our global SAP-MDM item number.
    The question I've been trying to design around is "where to store the SAP-MDM item number"?
    I've looked into creating a custom filed on EKPO but now feel that a configured text field will be the best solution from an SAP-ECC point of view (less effort on the SAP-ECC side from a development perspective, no need to regenerate the EKPO table, etc.).
    The question I'd like to pose to ASUG is.... Does anyone have experience or an opinion to offer using this functionality?  It seems that I will have to code in a user exit or BAdi to insure that the SAP-MDM item numbers are returned to the appropriate text field on my POu2019s.  Or can this be done using the standard OCI functionality?
    I found OSS note 1347656 which references BADI "ME_CATALOG_INTERFACE" but I'm not sure if this right path to go down or if this would be the correct place to code non-conforming OCI mapping requiremetns.
    Any insight would be most appreciated.
    Thanks.  Sincerely,
    Rich Wortmann

    I would suggest you create a new field for this as you may require thois going forward for reporting as well. Text fields are difficult to report.
    Sorry not sure about the BADI to use.

  • Exposing a webservice on ECC 5.0 in a load balancing setup

    Hi
       We have a webservice exposed on ECC 5.0 that is being invoked by an external system. When we move this webservice to our production environment - which is load balanced and has a logon group setup - we need to be able to expose this webservice - not on a single application server - but be available on the logon group ( message server ) so that the url that we provide for the webservice to the external system does not contain  a single application server - but points to the logon group. We do not have a web dispatcher in our environment/architecture.
    How do we go about exposing this point-to-point webservice on ECC 5.0 in a load balanced setup ? Any suggestions, experiences that can be shared ?

    This  can be done though SICF.
    If you click on a service, their is a service data tab.
    underthat tab is a Load Balancing option.
    This then points the service at the SMLG logon group.
    Regards
    James

  • Same MessageID  from sender(Webservice) --  PI --  ECC and vice versa

    Folks,
    We have a sender and receiver  webserver which has its own monitoring system in it and it tracks messages by means of Message ID which it creates .
    Now this web service when hits PI it sends the message ID in a field in payload.
    The message ID which the webservice sends is now different then which is created in PI as the  message propagates
    The same message ID is created in ECC as we all know .
    Now Our problem is we are  finding it difficult to track messages from webservice Outbound as well as inbound
    If there are 100 messages we have to search on the basis of time only , we cant search on message ID
    My question is can we have a unique message ID throughout the scenario.
    ( i.e webservice -- PI-- ECC and ECC -- PI --Webservice)
    Please  help
    thanks
    Ninad

    Thanks Gouri ,
    In case of webservice sender the webservice sends a message ID in a payload ( they have there own monitoring using there own message ID )
    Being in Support , I get a call that message belonging to  xxxxx message ID has failed. Now when I look in SXMB_MONI
    I see 1000 messages between same sender and receiver.
    I have to check payload and check the said message ID and then find the message , this is Cumbersome
    hope we find some better approach
    Thanks
    Ninad

  • I have a MacBook Pro (Retina) and a Sony HandyCam DCR-HC48 video Camera. The Sony only exports video via Firewire, which is not available on the Mac. Is there a firewire to USB or to HDMI adapter?

    I have a MacBook Pro (Retina) and a Sony HandyCam DCR-HC48 video Camera. The Sony only exports video via Firewire, which is not available on the Mac. Is there a firewire to USB or to HDMI adapter?

    tyler57,
    it would be better to direct that question to Gary Loftis, since my MacBook Pro doesn’t have a Thunderbolt port.

  • Strange. I can play all my clips in FCP 7, but can not export them via share, nor submit them via Compressor. What happened? Thank yiou for your kind help, I can not continue my work! FCP 7!

    Strange. I can play all my clips in FCP 7, but can not export them via share, nor submit them via Compressor. What happened? Thank yiou for your kind help, I can not continue my work! FCP 7!

    When FCP/FCS begins to act unexpectedly, the usual first step is to trash your preferences:
    https://discussions.apple.com/docs/DOC-2491
    MtD

  • Does the built-in DAC on my 2007 mid yr iMac support 96/24 audio as it supplies signal to the headphone jack? (is there a reason to export audio via optical jack then to an external DAC?

    does the built-in DAC on my 2007 mid yr iMac support 96/24 audio as it supplies signal to the headphone jack?  If so, is there a reason to export audio via optical jack then to an external DAC then to stereo?

    My suggestion to work around this problem would be to hook up an Airport Express. The AE also has an optical out the same as your iMac. As long as your wireless connection is robust enough you should be able to stream from your iMac to your AE and then have the optical cable connect between your AE and your DAC, which then connects to your Integrated Amp/Receiver/Pre-Amp (depending on your system configuration).
    I assume because you are using the optical out and connecting to an external DAC that you are looking for a high level of Audio quality ?

  • Is any different between ECC 5.0 and ECC 6.0 for Excel export?

    Dear all,
    As you know, most standard SAP report allow Excel export. I just wonder is any different between ECC 5.0 and ECC 6.0 for excel report in standard SAP reports?
    In ECC 5.0, Reports in profit center accounting, LIS, or PA, etc. has their own different way to export to excel and is any improvement in ECC 6.0? I Thanks.

    In ECC 5.0, a lot of reports don't have Excel export function instead user has to go to system -> List -> Save -> Local file -> spreadsheet.
    I just wonder is any improvement in ECC 6.0? just like LIS report, user can select export -> Transfer XXL to either pivot table or just plain excel but the function only exist in certain reports in some modules and not all.
    Thanks again.

Maybe you are looking for

  • ExFAT External Drive not recognized and unrepairable

    Please help me. I have a Seagate external 2 TB USB 3 drive. I was backing up files to it from my MBP mid 2013 running Mavericks. I ejected it but forgot to wait for the "safe to remove" message. When plugging back in, the drive doesn't mount and fsck

  • To DD-WRT or not to, that is the question!

    I just bought the WRT610N (on sale for $145 =)) and I see that version 2 of this router is now supported for DD-WRT My set up is downloading torrents from my Windows Home Server and I stream video to my Popcorn Hour from that machine as well. I then

  • Formatting mySQL date in a dynamic field

    Hi all.. I've seen many articles on here about how to INSERT dates to the mySQL table, but I need to know how to format it into MM/DD/YYYY when the form dynamically populates from an existing record.  Just using a regular DW8 Recordset behavior for t

  • Aperture is crasching at the start up

    My Aperture will not Start anymore. I reinstalled it, a recoverd it and i looked for the plist to delete it but i dont find it. It is the last update and it shows me this code: Process:         Aperture [1813] Path:            /Applications/Aperture.

  • Mail Adapter  connection parameters

    Hi I have done the following scenario. /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address The source file is picked and in SXMB_MONI it shows checkered flag but not reaching the target. what should I give