Comparision Document between PI and Informatica.

Hi All,
        I have requirement where the current Informatica system is being replaced by PI. I would like to present .PPT to my client showing the comparison of operations between PI and Informatica. I would like to show pros and cons of both PI and Informatica. Request to provide me any useful document mentioning so.

Hi,
Please check below link.
SAP PI 7.1 in what way it can replace an ETL tool like Informatica?
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10fbac70-c381-2d10-afbe-c3902a694eaf?quicklink=index&overridelayout=true
In addition you can refer below link as well
Re: SAP PI 7.1 or 7.3 vs webMethods,Oracle Fusion,Biz talk, Tibco,IBM websphere
Regards,
Deepak.

Similar Messages

  • Hi, I need to import contacts from windows outlook to MAC outlook. I need the field mapping document between windows and mac outlook.

    Hi, I need to import contacts from windows outlook to MAC outlook. I need the field mapping document between windows and mac outlook.

    Then I suggest you post your question the Microsoft Mac forums since it's their products you're having trouble with
    http://answers.microsoft.com/en-us/mac

  • Different document between KZ and RE

    I would like to know what is the different between document of KZ and RE, as I know, RE is created by MIRO. how about KZ. Thanks

    Hi Port,
    RE Document type is for Vendor Purchase Invoice booking time Financial side automatically genarated the document at the the time of MIRO Entry against the WE Docuement Entry.
    KZ Document type is for Vendor Payment through Check or others.
    Hope it will clear.
    Regards,
    Kishore K

  • Sync documents between laptop and flashdrive

    Hello all...
    When I was using Windows, I used to use Briefcase to sync documents between my flash drive and my laptop; I later found SyncToy to be quite useful and a lot more reliable.
    Is there any program (like SyncToy or Briefcase) that will allow me to keep fully-editable copies of the same document on my flash drive and notebook, and sync between them on my Mac?
    Thanks!
    JG
    Message was edited by: Juan Guapo

    Take your Pick

  • Sharing Document between TableEditor and JTextArea

    hi,
    i'm trying to share a javax.swing.text.Document between a TableCellEditor and a JTextArea, so that both, the textarea and the tableeditor show the same text, regardless of where the user is typing.
    At the moment I'm doing this: every time the selection of the table changes, i get the document from the table editor and assign it to the textarea. This construct seems wo work, but only in one direction: if i type text into the table cell, the textarea gets updated, but not the other way round.
    any idea, what could be wrong?
    some code:
    public void valueChanged(ListSelectionEvent e) {
        if(e.getValueIsAdjusting()) {
            int row = table.getSelectedRow();
            JTextComponent txtComp = (JTextComponent) table.getCellEditor(row, TRANSLATED_COL).getTableCellEditorComponent(table, "", true, row, TRANSLATED_COL);
            translatedTextArea.setDocument(txtComp.getDocument());
            showItem(row);
    }

    sorry for my late response. here is an example:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.util.Enumeration;
    import java.util.Properties;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextArea;
    import javax.swing.ListSelectionModel;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.ListSelectionListener;
    import javax.swing.event.TableModelEvent;
    import javax.swing.event.TableModelListener;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.text.JTextComponent;
    public class TranslatorPanel extends JPanel implements TableModelListener, ListSelectionListener {
         public static final int ITEM_COL = 0;
         public static final int TRANSLATED_COL = 1;
        private JTable table;
        private DefaultTableModel model;
        private JTextArea translatedTextArea = new JTextArea();
        public TranslatorPanel() {
            initGUI();
        private void initGUI() {
            model = new DefaultTableModel(new Object[][] {}, new String[] {"Key","Value"});
            model.addTableModelListener(this);
            table = new JTable(model) {
                 public boolean isCellEditable(int row, int col) {
                      return col == TRANSLATED_COL;
            table.setSurrendersFocusOnKeystroke(true);
            table.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            table.getSelectionModel().addListSelectionListener(this);
            setLayout(new BorderLayout());
            add(new JScrollPane(table), BorderLayout.CENTER);
            add(new JScrollPane(translatedTextArea), BorderLayout.SOUTH);
            setSize(800,600);
            translatedTextArea.setPreferredSize(new Dimension(800, 300));
            TranslationItem item = new TranslationItem("key1");
            item.setTranslations("value1", "en");
            model.addRow(new Object[] {item, item.getTranslation("en")});
            item = new TranslationItem("key2");
            item.setTranslations("value2", "en");
            model.addRow(new Object[] {item, item.getTranslation("en")});
            item = new TranslationItem("key3");
            item.setTranslations("value3", "en");
            model.addRow(new Object[] {item, item.getTranslation("en")});
        // called, if the content of the table has changed
         public void tableChanged(TableModelEvent e) {
            int row = e.getLastRow();
            if (e.getType() == TableModelEvent.UPDATE) {
                 // store the new value in the item
                 TranslationItem item = (TranslationItem) model.getValueAt(row, ITEM_COL);
                 item.setTranslations((String)model.getValueAt(row, TRANSLATED_COL), "en");
         // called if selection of the table changes
         public void valueChanged(ListSelectionEvent e) {
              if(e.getValueIsAdjusting()) {
                   int row = table.getSelectedRow();
                   JTextComponent txtComp = (JTextComponent) table.getCellEditor(row, TRANSLATED_COL).getTableCellEditorComponent(table, "", true, row, TRANSLATED_COL);
                   translatedTextArea.setDocument(txtComp.getDocument());
                   showItem(row);
         private void showItem(int row) {
              TranslationItem item = (TranslationItem) model.getValueAt(row, ITEM_COL);
              translatedTextArea.setText(item.getTranslation("en"));
        public static void main(String[] args) {
            JFrame frame = new JFrame();
            frame.setSize(800,600);
            frame.add(new TranslatorPanel());
            frame.setVisible(true);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        private class TranslationItem implements Comparable {
            private String key = null;
            private Properties translations = new Properties();
            public TranslationItem(String key) {
                this.key = key;
            public String getKey() {
                return key;
            public void setKey(String key) {
                this.key = key;
            public String getTranslation(String locale) {
                String value = translations.getProperty(locale);
                return value == null ? "" : value;
            public boolean translatedForLocale(String locale) {
                String translation = getTranslation(locale);
                if(translation == null || translation.length() <= 0) {
                    return false;
                } else {
                    return true;
            public void setTranslations(String translation, String locale) {
                translations.setProperty(locale, translation);
            public String toString() {
                return key;
            public void print() {
                System.out.println("key " + key);
                Enumeration en = translations.propertyNames();
                while (en.hasMoreElements()) {
                    String locale = (String) en.nextElement();
                    String translation = translations.getProperty(locale);
                    System.out.println("\t"+locale+" = " + translation);
            public int compareTo(Object o) {
                if(o instanceof TranslationItem) {
                    TranslationItem ti = (TranslationItem) o;
                    return ti.getKey().compareTo(getKey());
                return 0;
    }

  • Smooth integration of iWorks documents between iMac and iPad

    I have an iMac with Lion 10.7,4 and an iPad 5.1.1.  I would like to work with iWork files on both devices, and move the files between both devices.  This seems simple but isn't.  I've tried Webdav but can get it to run.  I'm getting very frustrated with lack of integration.  Please help.  Why should this be so difficult?

    Hi there,
    There is a perfect solution for that: iCloud. I highly reccomend updating to OS X Mountain Lion from the Mac App Store. It's only $19.99 and has deep iCloud integration.
    This allows you to save your documents to iCloud from within Pages. Then, that file will appear in pages on your iPad, you can edit it, and then it will automatically update on all your other devices which are signed in with that Apple ID, including your Mac. It's seamless, and you don't really have to think about it.
    Here's a page all about it: http://www.apple.com/icloud/features/documents.html
    If you have any other questions about this, just ask, but for now iCloud is your best bet for syncing iWork files.
    Nathan

  • No link / reference document / between FI and JV documents

    Hi,
    I am uploading bank statements using transaction ff_5.
    After upload all postings are done, but for some documents there is no 'link' / reference document / . I've checked table JVSO1 and the field reference number is blank.
    Can you give an idea what could be the problem ?
    Thanks,
    Stefan
    Edited by: Stefan Kolev on Nov 28, 2011 5:45 PM

    Hi Ricky,
    BSEG-BELNR = COBK-REFBN
    Regards,
    Santosh

  • How to edit/share documents between iMac and iPad

    I would like to edit documents on my iPad and have those changes appear on my iMac and vice versa.
    I was hoping to use Office2 HD and Dropbox, but it seems that documents can't be saved back to Dropbox on the iPad. Everytime I try and save in Office2 HD I get a "this folder is read-ony" error.
    Is this a problem with Dropbox or is it a problem with Office2 HD?
    What work flow would people recommend? I was hoping to not have to buy the whole iWorks for both my iMac and iPad. I don't do that much of this kind of stuff and was hoping for a cheaper solution.

    Thanks Angelus angel.
    I think I worked out my problem. Because of the way the iPad deals with security you can't open a document directly from the Dropbox app into another app and then save it back.
    Instead I had to setup my Dropbox details in Office2 itself. Now it works great!

  • Is there an issue opening Pages documents between iMac and iPad"

    got the most recent version of operating systems and pages on both iMac and iPad; thought I should be able to open Pages document on both computer and device.  am I wrong?

    Make sure you are trying to open these documents in Pages 5. If you're using a Dock icon you had before updating, be aware that the Dock icons are not updated & will continue to launch the previous version which is still in your Applications folder in a folder named iWork 09.

  • Sync documents between iPad and MacBook

    I want to be able to edit Pages documents on my iPad and MacBook, and have sync from one to the other. I'm no having success with either the iCloud or Dropbox. When I make changes on the iPad, they don't seem to get reflected on the MacBook. Any suggestions?

    I believe that Pages on the Mac does not support iCloud yet.

  • TS3991 how to share documents between mac and Iphone

    I have the icloud on both devices but I can not get my documents (created in Pages, installed on both devices) to share.  I have tried everything apple has suggests but no go.  Any ideas?

    Under iTunes / File / Devices ?
    But I did not see my iPhone under this section...
    Only see those 4 options:
    Sync "my iPhone"
    Transfer Purchases from "my iPhone"
    Back Up
    Restore from Backup
    Could you describe a bit more precise?
    Many thanks~

  • Documents not syncing between iPhone and iPad

    I am encountering the most strange difficulty with iCloud, particularly Documents in the Cloud and the syncing of Numbers and Pages documents between iPad and iPhone. I do not use Keynote.
    I will try and describe the problem in as much detail as possible and explain everything I have tried to do.
    My goal is for documents I create on iPad to sync to iPhone, and vice versa, with changes appearing on both, and on iCloud.com. To clarify I'm not involving the Mac in anyway, I am aware this is a current limitation of Documents in the Cloud. Unless I'm missing something, what I want to do is what is advertised.
    - I am running the latest version of iOS on both iPad and iPhone.
    - I have the latest versions of Keynote and Pages on both.
    - I am logged in to iCloud on both iPad and iPhone with the same account
    - iCloud is working fine for all other purposes (Bookmark sync, PhotoStream etc)
    - Documents and Data is switched on, as is the option for Using Cellular Data
    - Use iCloud is set to ON under Pages and Keynote preferences
    - The arrow indicating a cloud document is on every document on both iPad and iPhone's icon, in the top right of each icon
    - In iCloud -> Storage &amp; Backup -> Manage Storage -> Documents &amp; Data -> Numbers it displays all the expected documents.
    The current behaviour appears to be that I create a document on either device, and the document is PARTIALLY uploaded to iCloud. That is, it appears on iCloud.com under iWork, but when I click on any file it either says "Upload failed" or "Waiting" for each file.
    If I try and delete a document on iWork.com, it crashes the web app and does not delete the documents.
    Things I have tried to resolve:
    - Uninstalling and reinstalling Numbers and Pages on both devices
    - Soft resetting both devices
    - Disabling and re enabling Documents in the Cloud on both devices
    - Disabling and re enabling iCloud toggle in the individual app preferences on both devices
    - Deleting and readding iCloud account on both devices
    - A full restore then restoring from iCloud backup on both devices (yes, I actually did that)
    - A combination of the above in various sequence orders, none of which made any difference
    More information... one solution on the web pointed to the problem involving a duplicate account which could be deleted from the Mail settings, however I only have one configured account - my iCloud account. Just in case it matters, my iCloud email is an @mac.com address.
    I think I have covered everything. Any help would be appreciated since Apple themselves seemed pretty stumped on the phone, suggesting another restore, or setting the phone and iPad up as brand new devices. I'd really rather not until I've exhausted every possible outcome.
    Any help massively appreciated!!!

    How did you get this fixed? I have the same issue!!

  • How can I transfer document ie word and exel files between my iPad and my laptop

    How can I transfer files ie Word and Exel between my iPad and my laptop.

    It depends on what app(s) that you are using on your iPad that you want to transfer the documents between - without and app the documents cannot be saved (apart from as email attachments), as unlike 'normal' computers the iPad doesn't have a file system and files/documents have to be stored/associated with an app. Once you've got an app then, depending on what it is, transfer might be done via the file sharing section at the bottom of the iPad's apps tab when connected to your computer's iTunes, via wifi, email attachments, Dropbox etc.
    Documents To Go supports (http://itunes.apple.com/au/app/documents-to-go-office-suite/id317117961?mt=8) supports both Word and Excel files and how to transfer to/from it is described on this page http://support.dataviz.com/support.srch?docid=14497&pid=198
    Apple's Pages app supports Word documents : http://itunes.apple.com/us/app/pages/id361309726?mt=8 (how to transfer files http://help.apple.com/pages/ipad/1.4/#tanb5b5c055)
    and their Numbers apps supports Excel documents : http://itunes.apple.com/au/app/numbers/id361304891?mt=8# (transferring files http://help.apple.com/numbers/ipad/1.4/#tanb5b5c582)

  • Table relations between vbrk and bkpf for  Accounting Document Number

    hello,
    i am using 4 tables to get data into my programs.
    vbrk,vbrp konv and bkpf.
    i want to get belnr from bkpf.i found relation between vbrk and belnr.but in vbrk table belnr's value is initial.
    can anybody tell me that how should i relate vbrk and bkpf or how to get Accounting Document Number(belnr) from bkpf for Billing Document(vbeln).
    regards,
    soniya s.

    hi,
    chekc this. its working for me.
    data : WA_AWKEY LIKE BKPF-AWKEY.
    data :  WA_BELNR LIKE BKPF-BELNR.
    data : LENGTH TYPE I.
    *BREAK MTABAP.
    LENGTH = STRLEN( IT_VBRK-VBELN ).
    if  LENGTH = '10' .
    MOVE it_vbrk-VBELN TO WA_AWKEY.
    SELECT SINGLE BELNR FROM BKPF INTO WA_BELNR
      WHERE AWKEY = WA_AWKEY
      AND AWTYP = 'VBRK'
      and blart = 'RV'.
    it_final-acc_doc = WA_BELNR.
      CLEAR WA_BELNR .
      CLEAR WA_AWKEY .
    else.
    CONCATENATE '0' it_vbrk-vbeln INTO wa_awkey.
    SELECT SINGLE BELNR FROM BKPF INTO WA_BELNR
      WHERE AWKEY = WA_AWKEY
      AND AWTYP = 'VBRK'
      and blart = 'RV'.
    it_final-acc_doc = WA_BELNR .
      CLEAR WA_BELNR .
      CLEAR WA_AWKEY.
    endif.

  • Difference between invoice and billing document

    Hi ,
    As an ABAPer , I am finding it very difficult to find the difference between the billing and invoice.
    If both are different, then how these documents are configured.
    thanks
    Devi Reddy

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

Maybe you are looking for

  • How do I change the copyright info and links in collection pages?

    Can anyone tell me how I can change the copyright info and links on a collection page using the new updated Public Site Manager? 1. When I click on 'Configure selected collection' there doesn't seem to be an option to edit copyright information and I

  • Is my computer crashing due to memory upgrade?

    I recently installed some new memory on my iMac and it has begun crashing pretty regularly since then. At first I only installed one additional 4GB module because I didn't know they were supposed to installed in pairs (and didn't do enough research).

  • Getting error in event handler method onPlugFromStartView

    Hi,        I am getting error in event handler method onPlugFromStartView java coding. The error message is u201CThe method wdGetwelcome componentcontroller() is undefined for the IPrivatevieew. Plese explain how to resolve this error to deploy the w

  • Adding fields

    HI experts, My task is i need include a vendor field in the FBL3N output. I have copied the standard program but i am no getting any idea how to add a vendor field. I already find the tables and logic the extract from the database table but i am not

  • Something changed on my file and now my vector elements and fonts look pixelated in CS6

    Today an illustrator file with vector objects and fonts that I've been working on for days looked pixelated when enlarging at more than 400%. I couldn't find the fix so I started a new canvas, selected everything from my pixelated file, pasted it int