What are XI objetcs and What are XI components

there are so many areas in XI. for eg. ...IR,ID,SLD,RWB,IS,BPM blah blah...
anyone please explain.... what is the diffrence between object and component.please explain in words rather giving link...
thanx in advance.

hey sam,
components of xi are what xi is made of... like ir, id , rwb, sld, AE...these components sit on abap or java stack.
"objects" in xi is what "you develope" to send/receive msg in xi like data types, msg types, mappings etc.
plz refer help.sap. everything is documented pretty well over there.
http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
happy learning!
[reward if helpful]
regards,
latika.

Similar Messages

  • Some BAPIs are auto commit and some are not.  what is the reason?

    Hi all,
    currently i am working on BAPI.I found that some BAPIs are auto commit and some are not. can anybody tell me what is the reason.

    hi,
    one option to find the difference is you have to look for parameters like test run or commit .
    If the function module  doesn't have them, then it means you have to use BAPI_TRANSACTION_COMMIT or BAPI_TRANSACTION_ROLLBACK based on the success or failure.

  • What ideal Win Server and Hardware are recommended for 11g DBs

    What best Win Server and Hardware are recommended for 11g DBs?
    - Processor
    - Memory
    - Storage
    - Network
    - Etc...
    Following is the scenario:
    - The server will be for development and test DBs
    - More than one databases will be installed each for each project
    - Maximum 4 databases will be accessed each time
    - Maximum DB size for each DB will be in couple of GBs.

    Which version of 11g ? For 11gR2, see the requirements here - http://download.oracle.com/docs/cd/E11882_01/install.112/e16773/reqs.htm#i1011417
    Any server that exceeds these requirement will suffice. Obviously the more the number of processors, the faster the processors, the more the RAM, the more the disk etc etc, the better.
    HTH
    Srini

  • I just download mountain lion to my mac,  now microsoft office suite doesn't work....it says 'you can't open the application 'microsoft word' because PowerPC applications are no longer supported.  What does this mean and what do I have to do to fix it??

    I just download mountain lion to my mac,  now microsoft office suite doesn't work....it says 'you can't open the application 'microsoft word' because PowerPC applications are no longer supported.  What does this mean and what do I have to do to fix it?? HELP!!

    Install Snow Leopard on another boot partition, or upgrade Microsoft Office to a newer version, or use any number of better alternatives. Some of them are free.
    Consider
    LibreOffice (donation-supported)
    NeoOffice ($10)
    OpenOffice (completely free)
    In addition to the above I also recommend Apple's Pages ($19.99). I use OpenOffice and Pages and have been completely Microsoft - free for over a year now. Life is better without Microsoft.

  • Hi what does this mean and what do I need to do?....You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms.

    Hi what does this mean and what do I need to do?....You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms.

    well not sure of what the problem is besides you running an operating system that adobe cannot work with. reply with that type info ie I am running windows xp home or OSX version 7.5.3 etc. Meanwhile here is the link for minimum system requirement for adobe's creative cloud products System requirements | Creative Cloud that should help. good day

  • I do not have my software to reboot my computer.  How do I find out what my administration id and password are?

    I do not have the software to reboot my computer.  How do I find out what my administrator ID and password are?

    Hey,
    Do you have access to the internet?
    You might visit Adobe website and download Acrobat pro on your system.
    Then, you can use your serial number for activating the software.
    Regards,
    Anubha

  • What version of XHTML and CSS are in Safari 3.2.1

    hello
    do you know what up to date versions of XHTML and CSS are in Safari 3.2.1
    Before i decided to post here i did look at other options, the developers seem to have their own club.
    and there was not much other choice on the front page of the forums.
    I did try looking through the reference library, http://developer.apple.com/referencelibrary/
    where else could i look to find what versions of XHTML and CSS are in Safari 3.2.1
    and any other interesting specs.
    thank you for your time in this matter.
    James

    Hi,
    When you say you looked through the reference library, did you see [this page|http://developer.apple.com/referencelibrary/InternetWeb/idxWebContent-date .html]?
    It doesn't mention explicit version numbers but claims to tell you what functionality is supported.
    Safari handles CSS2.1 and a growing number of CSS3 declarations. Work is also ongoing on [adding HTML5 support|http://webkit.org/blog/140/html5-media-support>, but I don't know if any of it has made the release version of Safari yet.

  • What Driver name/class and url are to be provided?

    I have created a new alias for jdbc in the portal along with the user-mapping...........as a result i can see jdbc system in the system drop-down box.............but i m having some problem while making the connection with portal as it is asking for driver name/class and url and also other details..........my back-end server is MS SQL...........What Driver name/class and url are to be provided in this case or any other details required?????
    thank you very much............

    Hi Deep,
    There is a how-to posted on SDN regarding how to connect and configure the BI JDBC Connector.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/6209b52e-0401-0010-6a9f-d40ec3a09424
    This document describes the jdbc driver to use etc.
    Hope this helps,
    Cheers,
    Scott

  • What are Crypto Cards, and what are they different from Java Cards?

    Hi,
    I just heard the name 'Crypto Card'. I thought Java Card is the only standard for smart card. Could anyone tell me what are Crypto Cards, and what are they different from Java Cards? Thanks in advance.
    Joey

    Probably any card that offers cryptographic capabilities (crypto coprocessor) could be called "Crypo Card", but likely the term was referred to cards offering a pkcs#11 interface.
    Pkcs#11 is the standard for accessing crypto devices, like tokens, cards, or accelerators. Such a device can be easily accessed for example from your browser to perform cryptographic and digital signature operations.
    A Javacard can operate as a pkcs#11 device in you install on it an applet dealing with the pkcs#11 requests.

  • What are Wrapper classes and what are they used for ?

    What are Wrappter classes and what are they used for ?..Also, any examples would be great to understand this concept

    Wrapper classes are used to enclose primitive data
    types so that they can be used in instances where an
    object is required. For example, if you want to add an
    integer to an ArrayList, you can't use this:java.util.List al = new ArrayList();
    int i=123;
    al.add(i);because the ArrayList expects data of type object. In
    order to all the integer to the ArrayList, you must wrap
    it in the Integer wrapper class. This works:java.util.List al = new ArrayList();
    int i=123;
    al.add(new Integer(i));Hope that helps.
    Mark

  • What versions of Linux and WIndows are supported?

    I have looked on the web site, and cannot find what versions of Linux and Windows are supported? Most of the documentation just says Linux and/or Windows, with no referenence to version.
    My specific questions are for Oracle Personal server:
    Is it supported on
    Windows XP Professional
    Windows XP Home Edition
    Red Hat Linux 7.3
    Red Hat Linux 7.2
    Red Hat Linux 8.0
    Red Hat Linux 9.0
    RHEL 3.0
    If yes to all or some, what is the best OS/Version to install the Oracle Personal Server on? Considering performance? Ease of install and use?
    Thanks,
    Tomas

    Joel:
    Thanks. But, when I tried to create an acct in metalink section, it said I needed a "support identifier". When I researched this, it seems I can only get a "support indentifier" if I have a valid support contract.
    Now, that seems a bit of "the cart before the horse", as I am thinking of buying the Oracle Personal Server, but have not.
    And want to know supported platforms before I do buy. But, now it seems I have to buy, to get my pre-sales question answered.
    Is there another place I can find this info, possibly a pre-sales area of the oracle web?
    Rgds,
    Tomas

  • I do not receive all my e-mailson all my devices. I seem to get them all on my iPhone 5s, but not all show up on my iPad and iMac. they are all set up the same. Any Ideas on what is going on and what I can do to remedy this? thanks

    I have an iMac with OS X Lion 10.7.5,an iPhone 5s with iOS 7.1.2 and an iPad with iOS 7.1.2. all software is up to date. My problem is I do not receive all my e-mail on all 3 devices all the time. I seem to get them on my phone , but not all show up on my iMac or iPad. Any ideas as to what is going on and what can I do to resolve this issue? thanks

    On the iPhone, go into Settings -> Store and turn off "Automatic Downloads" for Apps (and Music and Books, if you wish). You can also do that on the iPad to prevent it from going in the opposite direction.
    That will stop any automatic downloading... to prevent them from coming over when using iTunes, select the phone (under Devices), Apps, and then uncheck "Automatically sync new apps." Again, do the same for the iPad if you wish.

  • The drop down view by menu (Song, album, etc) at the right side of the iTunes window is like a ghost. It flashes into view for a millisecond once in awhile but never lets me click on it. Anyone know what this is about and what to do?

    The drop down view by menu (Song, album, etc) at the right side of the iTunes window is like a ghost. It flashes into view for a millisecond once in awhile but never lets me click on it. Anyone know what this is about and what to do?

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • What is the provisioning feature in the settings under, general profile? It says something about "provisioning". What does that mean and what does it do?? (It's on my 5th generation iPod touch, black, iOS 6.1.3

    What is the provisioning feature in the settings under, general>profile? It says something about "provisioning". What does that mean and what does it do?? (It's on my 5th generation iPod touch, black, iOS 6.1.3

    A profile is used on iOS device to add specific settings and similar things to an iOS device.  Tryically, they are added when the iOS devices is controlled by a company or school.
    However, some apps install a profile. If your iPod is not controlled by a company or school then it seems an app added the profile. You can good the title if the profile and see if that gives any info.

  • What is this icon, and what does it do?

    When you open an email and are in the read mode, at the bottom of the
    Screen, right in the middle there is an icon that looks like a box with an arrow
    Pointing into it. When I hit that, the piece of mail I am reading disappears.
    I can't find the description even in the iOS manual. What is this icon and what
    Is it doing to the mail that disappears? Occasionally I can find that email in the
    All mail folder.. But not always.. So confusing!

    I believe that is the "archive" button. You have a setting for that instead of delete. Do you see the trash can? If not, that is what it is. Here is a link to the iPhone manual and you can see about changing that, but I would have to say it is probably in settings, mail.
    http://manuals.info.apple.com/enUS/iPhone_iOS4_UserGuide.pdf

Maybe you are looking for