SAP BC 4.8 How to transfer an IDOC to a WebService using a specific WSDL fi

Hi,
I'm not very familiar with the XML, WSDL stuff, but I need to implement a connection between the SAP System and an other software which offers a webservice.
I got the WSDL file and now I schould create the Business Connector setup. But I'm not able to get a flow running receiving the IDOC and sending it towards the other software.
I tried to use the transport XML service but it doesn't work and SAP told me the recieving part needs to have an other XML dialect which is not offered directly by the SAP BC. I need to use the WSDL file, but how ?
Could anybody give me some information, screenshots of how to setup such kind of connection ?
Thanks in advance
Patrick

Hi ,
Refer these links,
http://w3.miraclesoft.com/msws/msoft/products/oracle/pdf/SAP-IDOC_Article.pdf
http://www.sap.com/korea/partners/icc/scenarios/pdf/ICC_INTEGRATION_GUIDE_22.pdf
http://www.soberit.hut.fi/T-86/T-86.161/2004/Final%20report%20SAP_RN%20.pdf
regards,
Suryanarayana.M

Similar Messages

  • How to create a webservice with axis specific WSDL

    Hi all
    I want to know if anybosy can provide with me any documentation or information link from where i can find the way how to deploy webservices using axis specific WSDL(i mean WSDL is created using axis jars) on to the application server like Weblogic.
    I would like to know the following
    1 - How to create the web.xml
    2- How to create the deployment descriptor.
    3- How to pack the EAR or WAR file.
    Thanks and Regards
    Manoj

    You can't as File is nor serializable. It won't make sense as you would try to give a handle to a file on the server hosting the service to a remote system.
    Can you explain the use case in more detail?
    Timo

  • How to transfer range parameter from vb when using bapi calling

    Hi,everyone.how to transfer range parameter from vb when using BAPI calling?

    Did you get the solution to your problem?  Can you please share it with me. I have a similar problem. I have a VB program that calls RFC function. It works with a single parameter but not with a range of parameters. If you have the solution, could you please share sample codes with me? Thank you so much.

  • How to see an IDOC type & FM, "WHERE USED LIST"?

    Hi Experts,
    I nned to create an IDOC of WMTCID01 and message type is WMTOCO.
    I wanna to see that, Where Where this IDOC was used(especially, in "Z" objects) so that, I can get some idea abt. it and do my coding.
    So, let me know that, How to see this IDOC & FM, "WHERE USED LIST"
    thanq

    hi go to the tcode...
    1) Create Segment ( WE31)
    2) Create Idoc Type ( WE30)
    3) Create Message Type ( WE81)
    4) Assign Idoc Type to Message Type ( WE82)
    Tcode- we19  is for testing idoc
    in the we42 the message type and the idoc function module is ataached by the process code..
    this is a best example to understand the creation of idocs(z)..
    http://www.****************/Tutorials/ALE/CustomIDOC/Create.htm

  • How to show busy cursor  when call webservice using as?

    I want to call webservice using script,but i don't know how
    to show busy cursor.please help me

    Show busy cursor:
    >>>
    CursorManager.setBusyCursor();
    <<<
    and hide it:
    >>>
    CursorManager.removeBusyCursor();
    <<<
    Don't forget to catch all events of the web-service to
    securely remove the busy cursor. Especially, you might wish to
    handle events of the 'results received' and the 'faults appeared'
    logical results.

  • How to transfer files from PC to Mac using Ethernet cable?

    I am a brand new PC to Mac convert and loving it. I'm just having trouble transferring my files from my PC to my MacBook Pro. I have my PC and Mac connected with an ethernet cable. I'm just not sure what steps I need to take from there. I guess I have to turn on file sharing on my PC but I'm pretty much lost from there. Is there a tutorial or how-to on how to do this? I tried the one on the Apple site but it didn't really help that much

    See if one of these methods will work for you:
    http://docs.info.apple.com/article.html?artnum=75320
    http://www.apple.com/getamac/movetomac/network.html

  • How to transfer file from PC to mobile using Avetana SDK

    Hello,
    I am programming in the J2SE environment and using Avetana bluetooth SDK which implements JSR-82. I have the Microsoft Bluetooth Stack.
    I can connect to my mobile using the following code but I don't know how to send a file. This code sends some data but the mobile does not acknowledge it.
    Here is the code. I would be very grateful if someone could help.
    public class BluetoothClient implements DiscoveryListener {
    LocalDevice local = null;
    DiscoveryAgent agent = null;
    int[] attrSet = null;
    RemoteDevice btDev = null;
    String serviceURL = null;
    ClientSession con = null;
    HeaderSet hdr = null;
    public static final UUID RFCOMM_UUID = new UUID(0x0003);     
    public BluetoothClient() throws Exception{
    local = LocalDevice.getLocalDevice();
    agent = local.getDiscoveryAgent();
    agent.startInquiry(DiscoveryAgent.GIAC, this);
    public void deviceDiscovered(RemoteDevice btDevice,DeviceClass cod){
    btDev = btDevice;
         System.out.println("Device discovered " +
    btDevice.getBluetoothAddress());
    public void servicesDiscovered(int transID, ServiceRecord[] servRecord){
         System.out.println("Discovered a service ....");
         for(int i =0; i < servRecord.length; i++){
              serviceURL = servRecord.getConnectionURL(ServiceRecord.NOAUTHENTICATE_NOENCRYPT,
    true);     
         System.out.println("The service URL is " + serviceURL);     
    public void serviceSearchCompleted(int transID, int respCode){
              System.out.println("Service search completed ........... ");
              System.out.println("Opening a connection with the server ....");
         (StreamConnection)Connector.open(serviceURL);
              OutputStream out = filestream.openOutputStream();
              String msg = "hello.txt";
              out.write(msg.getBytes());*/
              output.close();
    public void inquiryCompleted(int discType){
         System.out.println("Inquiry completed ... ");
         UUID[] uuids = new UUID[1];
         uuids[0] = new UUID("1106",true);
         try{
              if(btDev == null){
         System.out.println("No device has been discovered, " +
    "hence not worth proceeding exiting .... ");
         System.exit(1);
    System.out.println("Now searching for services ........ ");     
         agent.searchServices(attrSet, uuids, btDev, this);
         catch(BluetoothStateException e) {System.out.println(e.getMessage());}
    Edited by: determinedCoder on Dec 29, 2007 1:57 PM
    Edited by: determinedCoder on Dec 29, 2007 2:52 PM

    Hi all,
    Don't worry about this - With a little bit of reverse engineering, I figured it out. If anyone else is having the same trouble, then reply to this thread and I'll see if I can help. If anyone also knows how to send an sms message via a bluetooth connection from a pc to a mobile phone using avetana, then that would be great.

  • How to transfer music from iTunes onto iPhone using Mac OS X Lion

    I need help to transfer my music from itunes library onto Iphone.
    Or is there a way to save all data before i download mac os x mountain lion?

    If you want to drag and drop then you have to click manually manage music.
    Otherwise, sync the music.
    iPhone User Guide (For iOS 5.1 Software)

  • HT1386 how to transfer files from my iphone while using itune

    i m using iphone for very first time i want to tranfer some files from ma laptop to my mobile and want to delet some files from my iphone..i have downloaded itunes in ma laptop. please assist me and do the needful

    What files are you trying to transfer to your phone?  What files you want to delete from your phone?

  • How? Transfer notes from 3Gs to 4s using iCloud?

    Back up my 3GS on iTunes and then use iTunes to send notes data to iCloud then sync 4s to iCloud?
    My 3Gs is not running IOS 5 and I don't want anything but NOTES data transferred to my new 4s.
    Is there a better way to do this?  If not, what steps are involved to do it this way?
    Thanks

    Backups don't include music and apps. Transfer any purchases made on the 3Gs by right-clicking its icon in iTunes and choosing "Transfer purchases" - then sync them from iTunes to the new phone.
    Matt

  • How do I start firefox from the terminal, using a specific proxy configuration, without creating a whole new profile?

    When I use Firefox at work I must use a proxy, however when at home I want to connect with no proxy. I'd like to have two launchers for Firefox, one for work and one for home. To do this I need to configure Firefox from the terminal.
    After searching on the internet the only solution I could find was to launch Firefox with two different profiles, one for work using the proxy, and another for home. However if I do this, my bookmarks and saved passwords will not the same for both profiles.

    Right click on the desktop and choose 'Create Launcher'. There enter the details so start the program directly not via a script. This did the trick for me for another program.

  • How to find which Restricted Key Figures are using a specific hierararchy??

    HI Experts,
      I am updating a very important hierarchy which is used in many queries and in many Restricted key figures. Is it possible to find in which Restricted Key Figures this specific hierarchy is used??
    Thanks in advance.
    Meyling.

    Hi
    I was able to find a solution
    I built a new dataset in report builder using the same table as before but tried out the "Group and Aggregate" function and for the case_ship
    field I chose "Sum" as my aggregate.... In essence this gave me a very cool and easy daliy sum of the shipped cases. 
    When I used this new dataset and built my matrix report I was able to easily get the max daily shipment for each product by week, month and
    year.
    Tom

  • How to join the results from 2 webservices using BPEL?Architecture question

    Hi,
    I am new to BPEL. BPEL process calls two webservices, which return complex results. I need to process the results from 2 webservices using BPEL .The result will be a complex xml, join/merge of previous results.
    What is the best practice to do it with BPEL?
    I see three ways:
    1.To do the processing (join/ merge) inside the BPEL process itself and return complex xml.
    2.Develop auxiliary webservice in java. Auxiliary webservice will do the processing (join/merge). Call this webservice from BPEL process.
    3.Do a plain concatenation of the two XMLs in BPEL and forward it to the frontend. Frontend then will do all the logic on its side
    Thanks,
    Boris

    you could process the XMLs one at a time, and use XSL transformations to process the payload to a target schema.
    Activity 1:
    output from webservice1 -> transform 1 -> partial XML (of target schema)
    Activity 2:
    output from webservice2 -> transform 2 -> completed XML (of target schema)
    Regards,
    Shanmu.

  • Computer was stolen--how to transfer from iPod to new computer

    My computer was stolen and I want to transfer my iPod library to my new computer. I know how to transfer from one computer to another using an iPod but is there a way to do it when I don't have the computer that has my iTunes library?

    There are a number of third party utilities you can use to retrieve the files from your iPod. This is just a selection.
    YamiPod
    PodUtil
    PodPlayer
    iPodAgent
    There is also a manual method of accessing the iPod's hard drive posted in this thread: iPod to iTunes
    If your iPod was set for automatic update change it to manual update. While connecting the iPod to the computer, hold down the Shift + Ctrl keys. This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 3 and 30 seconds depending on your computer. Then go to Preferences>iPod and check the "Manually manage songs and playlists" box.
    Keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync again.
    Another way is to connect your iPod and before it starts to sync, click the little X on the right hand side of the display beside the "Do Not Disconnect" message. The display is the little window to the right of the iTunes control buttons: iPod Interface
    Or you could look at the method described in this link: How to keep iTunes from automatically updating your iPod
    Go with whichever method you feel most comfortable. If at any point you are asked if you want to link your iPod to a new library, click No.

  • How to transfer data from FPM_POWL_UIBB to FPM_FORM_UIBB

    Hi Team,
    How to transfer data from one UIBB (component is FPM_POWL_UIBB) to another UIBB ( Componenet is FPM_FORM_UIBB).
    I know the procedure how to transfer data from FPM_LIST_UIBB to FPM_FORM_UIBB using wiring concept, but from FPM_POWL_UIBB am unable to do that.
    Appreciate your quick response.
    Thanks in advance.
    Thanks,
    Satya.

    Hi Bruce,
    Thanks for quick response.
    I will explain my requirement in detail.
    IN FPM I have used  5 UIBB's ,
      1) FPM_POWL_UIBB with Custom component and its configuration
      2) FPM_FORM_UIBB which is a standard componet UIBB's their configurations and its feeder classes are as below,
                 EAMS_WDC_ORD_LONGTEXT_CFG       CL_EAMS_UI_FD_ORD_LTXT
                 EAMS_WDC_ORD_HEADER_CFG          CL_EAMS_UI_FD_ORD_HEADER
                 EAMS_WDC_ORD_RESPONSIB_CFG     CL_EAMS_UI_FD_ORD_HEADER
      In the above FPM application if I choose a record in FPM_POWL_UIBB it has to be appear in the respective standard UIBB's in edit mode so user can change according to his/her comfort and will save.
    I have tried Singleton method also but not able to transfer data as I got confused which interface I shoul use in singleton class , as I was working with FPM_POWL_UIBB I may not use IF_FPM_GUIBB_FORM.
    Please suggest me on this.
    Thanks,
    Satya.                  

Maybe you are looking for

  • Re-Conforming and Audio Bug nightmares

    Hi, First, let me say that I've searched throughly about those problems before I came in here. I own a company and we used to use FCP7 to edit our weekly show. I've moved all suites to Premiere CC 7.2.1 Our workflow is a bit different than before, si

  • Can you sync 2 i phones to one itunes using seperate Apple IDs

    My problem is : i have an iphone 4 and my boyfriend a 3gs, until recently we used seperate computers for sync but one broke so we have only 1 between us. We have sepeate Apple IDs and log in to our own each time we want to sync our phones, but we see

  • How do I remove 'no sender' messages from my iphone 4?

    Hi, This is my second iPhone and am having the same issue with the 4 as I had with the 3.  E-mails sometimes appear as 'no sender' and 'this message has no content'.  I would like to know how to get them off of the phone since the delete option is no

  • ITunes Producer is taking a while uploading my ibook

    Hi! i created my first ibook and I´m delivering to iBooks Store. I followed all the steps, but when iTunes Producer uploads the ibook I think it is taking long. It´s been 2 hours and still going. Is it normal? How long does it usually takes? Thanks!

  • Weblogic.security.SecurityInitializationException: The loading of OPSS [...] Error message: null

    Hello, I am trying to install Fusion Client on a CentOS 5.10 machine. I have installed: * java version 1.6.0_45 (have also tried with latest 1.7 version, but IIRC 1.6 is recommended) * Oracle WebLogic Server 11gR1 (10.3.5) + Coherence - Package Insta