Data transfer using EDI from one SAP system to other SAP system

Dear all,
I understand that i should use normal ale-idoc features to transfer data from one sap to other sap system.
but can i transfer those idocs using EDI from one SAP to other SAP system

Hello,
surely you can do so.
EDI means that you transfer data in standardized EDI-formats. To get the data at the source  into that formats you normally use an EDI-Converter, which maps the IDOC-format into the EDI-format. Then you send the data in EDI-format to an EDI-converter at the target. There's the reverse mapping. You map the EDI-Format into IDOC-format and book these IDOCs into SAP.
I think this makes only sense if you cross organizational borders within the business process, e.g., if you define an exchange with many customers, but not all of them have an SAP-system. 
Regards Wolfgang
Edited by: Wolfgang Valtin on May 19, 2009 6:13 PM

Similar Messages

  • Problem arise during transfer of material from one company code to other co

    Dear CONS
    While doing transfer from one company code to other company code by using movement type- 301 ( direct one step) we got one error message '' Field Bus. Area is a required field for G/L account  JDPO 16020202
        Message no. F5808
    Diagnosis
        The value for field "Bus. Area" in the interface to Financial Accounting
        is an initial value but you are required to make an entry in the field
        selection for G/L account "16020202" in company code "JDPO" linked to
        the field selection for posting key "21".
    PL. SOLVE IT WHERE IS THE SETTING.

    no, the system is not accepting the GL ACCT. as it is a balace sheet account. pl. help.
    Edited by: nirupama swain on Sep 23, 2010 7:00 AM

  • How to transfer blocked stock from one storage loc to other storage loc

    Hi,
    Kindly let me know the procedure to transfer the blocked stock from one storage location to other storage location within a plant.
    Regards
    Rajesh

    I guess you have to convert it to unrestricted type before you can transfer, then reconvert it back to blocked.
    Not too sure.
    Regards,
    Srihari

  • Transfer of employees from one company code to other

    Hi Team,
    I have to transfer some 100 employees from one company code to other company code.  Can any one let me know the best practice for this activity.
    Many Thanks
    Veena

    Hi,
    You cannot assign one PA to multible company codes.
    In you case, create new PA's by copying the Existing PA's.
    Assign the newly created PA's to the new Cocd.
    Check all the groupings.
    In the Inter company transfer aciton limit the infotypes to 0 & 1.
    Record an LSMW for Intercompany transfer and move the employees in the new Cocd.
    NB : perform the actions w.e f 01.04.2010 avoid any changes to the statutory forms.
    Hope this helps,
    Regards,
    Param

  • I have a regular ipod and a ipod touch... how do I transfer the songs from one ipod to the other??

    I have a regular ipod and a ipod touch... how do I go about transferring music from one ipod to the other?

    Sync both with iTunes.

  • Data Transfer using DataSink from DataSource to MediaLocator not working

    I wrote this pretty straightforward program to transfer from a DataSource to a MediaLocator and when i run it nothing happens. I waited for around 10 minutes and still nothing happened. I manually closed the program to see if any data has been transferred to the destination file but the destination file timpu.mp3 is empty. Can someone tell me why it isn't working?
    import javax.swing.*;
    import javax.media.*;
    import java.net.*;
    import java.io.*;
    import javax.media.datasink.*;
    import javax.media.protocol.*;
    class Abc implements DataSinkListener
         DataSource ds;
         DataSink dsk;
         public void transfer() throws Exception
              ds=Manager.createDataSource(new MediaLocator(new File("G:/java files1/jmf/aa.mp3").toURL()));
              MediaLocator mc=new MediaLocator(new File("G:/java files1/jmf/timpu.mp3").toURL());
              dsk=Manager.createDataSink(ds,mc);
              System.out.println(ds.getContentType()+"\n"+dsk.getOutputLocator().toString());
              dsk.open();
              dsk.start();
              dsk.addDataSinkListener(this);
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent)
                   try
                        System.out.println("EndOfStreamEvent");
                        dsk.stop();
                        dsk.close();
                        System.exit(1);
                   catch(Exception e)
    public class JMFCapture5
         public static void main(String args[]) throws Exception
              Abc a=new Abc();
              a.transfer();          
    }Message was edited by:
    qUesT_foR_knOwLeDge

    Have thrown this together - so it's not pretty, but should give you an idea
    public class ABC extends JFrame implements DataSinkListener, ControllerListener, ActionListener{
        private Container cont;
        private JButton jBRecord;
        private boolean bRecording = false;
        private Processor recordingProcessor;
        private DataSource recordingDataSource;
        private DataSink recordingDataSink;
        private Processor mainProcessor;
        private DataSource mainDataSource;
         public ABC(){
            super("Basic WebCam Handler");
            cont = getContentPane();
            cont.setLayout(new BorderLayout());
            //     control panel buttons
            jBRecord = new JButton("R+");
            jBRecord.setToolTipText("Record On / Off");
            cont.add(jBRecord, BorderLayout.NORTH);
            //     & Listeners
            jBRecord.addActionListener(this);
            addMyCamera();
            pack();
            setVisible(true);
        private void addMyCamera()
            Vector vCDs = CaptureDeviceManager.getDeviceList(null); //     get Devices supported
            Iterator iTCams = vCDs.iterator();
            while(iTCams.hasNext())
                CaptureDeviceInfo cDI = (CaptureDeviceInfo)iTCams.next();
                if(cDI.getName().startsWith("vfw:"))
                    try{
                        MediaLocator mL = cDI.getLocator();
                        mainDataSource = Manager.createCloneableDataSource(Manager.createDataSource(mL));
                        mainProcessor = Manager.createProcessor(mainDataSource);
                        mainProcessor.addControllerListener(this);
                        mainProcessor.configure();
                        break;
                    }catch(Exception eX){
                        eX.printStackTrace();
         private void startRecording(){
             if(!bRecording){
                  try{
                    System.out.println("startRecording");
                    recordingDataSource = ((SourceCloneable)mainDataSource).createClone();
                    recordingProcessor = Manager.createProcessor(recordingDataSource);
                    recordingProcessor.addControllerListener(this);
                    recordingProcessor.configure();
                    bRecording = true;
                  }catch(Exception eX){
                       eX.printStackTrace();
         private void stopRecording(){
             if(bRecording){
                System.out.println("stopRecording");
                bRecording = false;
                try{
                    recordingProcessor.close();
                    recordingDataSink.stop();
                    recordingDataSink.close();
                }catch(Exception eX){
                     eX.printStackTrace();
        public void actionPerformed(ActionEvent e)
            Object obj = e.getSource();
            if(obj == jBRecord)
                if(jBRecord.getText().equals("R+"))
                    jBRecord.setText("R-");
                    startRecording();
                else
                    jBRecord.setText("R+");
                    stopRecording();
         *     ControllerListener
        public void controllerUpdate(ControllerEvent e)
              Processor p = (Processor)e.getSourceController();
             if(e instanceof ConfigureCompleteEvent){
                   System.out.println("ConfigureCompleteEvent-" + System.currentTimeMillis());
                   if(p == recordingProcessor){
                     try{
                         VideoFormat vfmt = new VideoFormat(VideoFormat.CINEPAK);
                         TrackControl [] tC = p.getTrackControls();
                         tC[0].setFormat(vfmt);
                         tC[0].setEnabled(true);
                         p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                         Control control = p.getControl("javax.media.control.FrameRateControl");
                         if(control != null && control instanceof FrameRateControl){
                              FrameRateControl fRC = (FrameRateControl)control;
                             fRC.setFrameRate(30.0f);
                     catch(Exception eX)
                         eX.printStackTrace();
                   else{
                        p.setContentDescriptor(null);
                   p.realize();
             else if(e instanceof RealizeCompleteEvent){
                   System.out.println("RealizeCompleteEvent-" + System.currentTimeMillis());
                   try{
                        if(p == mainProcessor){
                             Component c = p.getVisualComponent();
                             if(c != null){
                                  cont.add(c);
                             p.start();
                             validate();
                        else if(p == recordingProcessor){
                         GregorianCalendar gC = new GregorianCalendar();
                             File f = new File("C:/Workspace/" + gC.get(Calendar.YEAR) + gC.get(Calendar.MONTH) +
                                 gC.get(Calendar.DAY_OF_MONTH) + gC.get(Calendar.HOUR_OF_DAY) +
                                 gC.get(Calendar.MINUTE) + gC.get(Calendar.SECOND) + ".mov");
                         MediaLocator mL = new MediaLocator(f.toURL());
                         recordingDataSink = Manager.createDataSink(p.getDataOutput(), mL);
                         p.start();
                         recordingDataSink.open();
                         recordingDataSink.start();
                   }catch(Exception eX){
                        eX.printStackTrace();
             else if(e instanceof EndOfMediaEvent){
                  System.out.println("EndOfMediaEvent-" + System.currentTimeMillis());
                p.stop();
             else if(e instanceof StopEvent){
                System.out.println ("StopEvent-" + System.currentTimeMillis());
                p.close();
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent){
                   try{
                        System.out.println("EndOfStreamEvent-" + System.currentTimeMillis());
                        recordingDataSink.stop();
                        recordingDataSink.close();
                   }catch(Exception e){
         public static void main(String args[]) throws Exception
              ABC a=new ABC();
    //          a.transfer();          
    }

  • Data don't pass from one server to the other ???

    Hello,
    I have a big problem.
    I have define all the data server from all the technologies I want.
    All the tests are good.
    I have created interfaces all the first work well
    But.....
    When in my interface the Source and the target are not physicaly on the same server there's no data transmitted to my target.
    In the Operator I see that my interface have been executed without error but that no data have been inserted...
    So source on server A, Target on server B and even if there is no error during the execution, nothing is inserted on the target.
    Moreover, The SQL generated on the source is correct and when I execute it on a query editor i have the good data...
    But nothing in the target
    I'm passing by an scheduler agent installed as a NT Service.
    Please Help me ):
    BM

    Hi Veera,
    Through SE16 Display your table select necessary entries goto menu table entry-> transport entries. There it will ask you for TP no. Store entries in TP and then transport it to required system.
    Thanks and Regards,
    Vaibhav Pendse

  • How do I transfer purchased apps from one mac to the other?

    When i want to sync my iPhone in iTunes on my new computer I will lose all of the apps that I purchased.
    Can someone tell me how to sync it in a way (or some other solution) so I can keep my purchased apps? 
    I'm using the same ID as on old mac.
    I have been searching on the internet for help, but I can't find a clear answer.
    Thanks in advance.

    1) authorize iTunes on the new machine for your iTunes store account(s)
    2) connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    3) sync the device
    iTunes will wipe the iPhone but, since you transferred your purchases in the previous step, your content will be in your library and you can re-populate the iPhone with it.
    btw, purchased apps can be redownloaded over and over free of charge ...
    How to redownload purchased apps from the App Store
    ... and so can music and books
    http://www.apple.com/itunes/whats-new/

  • Won't let me transfer purchased songs from one computer to another

    The itunes wont let me transfer purchased songs from one computer to the other via home sharing even though both are authorised?

    Burn that songs to a *DATA DVD/CD* using iTunes - then take the resulting disk to your desktop computer; that disk will show up in iTunes' left column; drag the songs into your library.

  • I redeemed a giftcard in one of my accounts, and realized I wanted to redeem it in another. Is there a way I can transfer the money from one account to another, without being billed to my credit card?

    I redeemed a giftcard in one account and realized I wanted to use it in another. Is there a way I can transfer the money from one account to the other without billing my credit card?

    You can't transfer money between accounts.  You can, however, gift items by clicking the arrow to the right of the price, which will achieve the same ends.  It should work for everything except rentals.

  • EE Transfer from One Company Code to Other during a month

    Hi Gurus,
    I have a query related to transfer of employee from one company code to other in during a month. Because these companies are in one group. And if employee is terminated or resigns company needs to clear all his dues according to government rules and regulation.
    I have two Co Codes say 1000 & 3000.
    For these two Co Codes there is one chart of account and same wage types are created. These two companies have same payroll area and Control Record.
    In the current payroll period which is monthly, if I transfer an employee from one company to other. Is it possible to run regular payroll.
    Pls suggest what shall I do in this case....
    Regards,
    KPJ

    Hi,
    You can run regular payroll run before that u have to perform Action Transfer/Relocation.
    If you have some more quaries pls let us know.
    All the Best.

  • I have a very old G$ that I use for ProTools. I just bought a slightly newer G4 and I want to find out if it is possible to transfer my old OS 10.2.8 system from one computer to the other so I can run my old ProTools system without a hitch. Thanks!

    I have a very old G4 that I use for ProTools. I just bought a slightly newer G4 and I want to find out if it is possible to transfer my old OS 10.2.8 system from one computer to the other so I can run my old ProTools system without a hitch. I would rather not buy the old 10.2.8 system as it is expensive. Thanks!

    Need to know which newer one, some cannot run 10.2.x.
    One solution might be to clone the 10.2.8 Drive to another drive, then Install a later OS on it Preserving Users & Settings.
    Best way to get an exact bootable copy of your old drive to the new one is with Carbon Copy Cloner...
    http://www.bombich.com/software/ccc.html
    Relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • I managed to transfer the music from 1 pc to 1 other pc (to be played by iTunes). Bit didn't fixe the transfer of the meta data (for example the rating). Does anyone know how to use your old playlists, etc..(= meta data) on the other PC? So, please help!

    I managed to transfer the music from 1 pc to 1 other pc (it is played perfectly on the other PC (Windows 7- pc) by the newly downloaded and installed iTunes, version 10.6.1.7). But I didn’t fix the transfer of the meta data (for example the rating). Does anyone know how to use (or import) your old playlists, etc..(= meta data) on the other PC? So, short: how to migrate the meta data from one pc to an other pc?
    It's a pity that it seems not to be possible to import on the new pc e.g. the ratings!!!
    I don't want to start again with rating my (beautiful classical) music!
    Thanks, from Amsterdam, NL

    Did you do the move via Home Sharing, astro?
    If so, perhaps try the instructions from the following post:
    Re: i transfered itunes to my pc playlists did not go

  • I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it

    I have recently transferred data from my old Mac to my new one. The result was good, but I have 2 users now, whose data I want to merge into 1 single user, so to avoid having to switch from one user to the other to view and use certain files. How to do it?

    Here's an easy way:
    Pick the user that you want to eliminate (making sure that the remaining user has administrator privileges) and move all of the data that you want to keep into the Shared folder. Reboot or log out and login to the user you want to keep. Copy all the data from the Shared folder into your account - placing it neatly in folders (Documents, Music, Movies, etc.).
    Once the data is moved, log into the account you want to delete just once more to make certain that you've grabbed all the data you want to keep. Log out and log back into your admin account and go to System Preferences>Users & Groups and delete the 'old' user.
    That should do it.
    Clinton

  • Transfer data in the Ztable from one client to another client in a same ser

    Hi all,
    How can i transfer or move data in the Ztable from one client to another client in a same server .
    Thanks
    Ajay

    hi,
    create a transport request (Workbench type) and add the following line into the transport request:
    R3TR TABU name_of_table
    save and doubleclick this line and enter the table keys for the required entries (if you need all antries: client and an asterisk will do).
    When it is done save again, release the transport and ask basis to import into target client (or you can do on your own in SCC1 transaction)
    hope this helps
    ec

Maybe you are looking for

  • My iphone 5 is not discovered ssid wifi

    my iphone 5 is not discovered ssid wifi in near of ap, but most very near of ap  why ????  my ios v 6.0.2 but not currect work

  • How do i replace my hard drive? dv4

    I have a Pavilion DV4 Entertainment Laptop.  I replaced the hard drive and now it is acting like the drive isn't installed.  When I check BIOS, it says no HDD exists.  Is there something I am missing?  I made sure the drive is seated, it has 3 screws

  • How can I send a pages doc. to someone with a PC(word) so that they can open it?

    How can I either change my Pages document into a Word document, Or send it to someone with a PC/Word so that they can open and read it? (My email is gmail).

  • My battery drains from 20% to 0% in seconds

    Hello, I am having a strange issue with my battery.  for some reason when my battery hits 20% charge remaining i get the warning message saying 20% charge then about 20 seconds later the phone dies.  Any ideas? i have been closing all extraneous apps

  • SAP IDM with MS Active Directory (OU names in Arabic)

    Dear Gurus, With SAP IDM , we need to integrate with MS Active directory such a way that SAP IDM only fetches users who have "SAP" in one of the AD field. That means do not read entire AD but only fetches users in SAP who have "SAP" tagged in one of