I like to know the table name where all the Interface name ( Data Type and

Dear Friends,
I like to know the table name where all the Interface name ( Data Type and Message Type in IR ) is stored.
Thanks.

Hi,
Please find the repository API’s in the SE24 class builder that can be used for accessing repository objects from the ABAP stack of SAP XI. Check CL_SRAPI* in the SE24 transactions for digging further.
location of interface objects
CL_SRAPI_DATA_TYPE---data type
CL_SRAPI_DATA_TYPE_ENH---data type enhancement
CL_SRAPI_FAULT_MESSAEG_TYPE--fault message type
CL_SRAPI_MESSAGE_TYPE--message type
CL_SRAPI_INTEGRATION_SCENARIO--integration scenario
have a look at the table SXMSPMAST, SXMSCLUP & SXMSCLUR
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4fbe7b8e-0a01-0010-b69b-b7e717378f22#search=%22SXMSPMAST%20%2B%20XI%22
That document has references to lot of tables maybe it can be of use to u.
Look at the below thread for SXMB_MONI tables and Function module:
In Which Database Table the Messages are Stored in XI
Message Monitoring  --> corresponding tables?
Edited by: Dharamveer Gaur on Oct 8, 2008 10:40 AM

Similar Messages

  • I am wanting to buy and Ipad.. but I would like to know the difference between having wifi and a simcard..if someone could explain this to me.. and the benefits of both I would appreciate it.

    Good Morning:
    I have been looking at the Ipads for a while now.  I have some concerns though.  First, I am NOT a techy of any kind!!  So my question is;  What is the difference between wifi and a simcard(?)   What I understand about wifi is...if you are in an area with free internet.. you can excess it.  If not, then you can't.  What is a simcard?  Is this what you would use like a turbo stick..such as internet on the go... or is this a data plan for the Ipad, like I have for my phone?  If so, I take it that it would mean a monthly bill of what or however I set it up...  Please be kind with your responces.. I am a older person who wants a new gadget.   
    Thank you

    Hi, Sarah,
    You don't really compare a SIM card directly with WiFi. What a SIM card indicates is that a device is designed to connect to cellphone service, in the case of an iPad a data-only service for connection to the Internet. The SIM card works with a technology called GSM (don't worry about what that means); the SIM card is just how the iPad is identified to the cell carrier (in the US, that would be AT&T).
    Your choices of connecting an iPad to the Internet are therefore:
    WiFi - wireless network connection which uses a device referred to as a "hotspot" or "access point" (and sometimes a "wireless router") with an Internet service provided by some other company. You may have this at home, with your own WiFi router and Internet service, or it may be found by some other location, such as a coffee shop. Cost of WiFi at home would only be the cost of the router and the fee you pay to your Internet provider. Other locations may or many not involve a cost. The advantage of a WiFi connection is speed (compared to a cellular data service) and cost (no monthly fee other than your Internet provider).  The disadvantage is that you have to be in range of a WiFi service; that range is usually on the order of 100 feet or so.
    Cellular - this is a service provide by a cellphone carrier. This allows you to have your iPad connected to the Internet wherever the carrier offers service, which may be in buildings, parks, while driving, etc. just as with a cellphone. You pay a monthly fee to the cell carrier for this service. The advange is of course that it's available in many places. The primary disadvantages are the monthly cost and slower speed in the connection to the Internet.
    You can have both with an iPad if you purchase your iPad with both systems included; iPads are sold WiFi-only or WiFi+3G ("3G" refers to being capable of connecting to a cell network) You are not obligated to sign up with a cell carrier if you buy the iPad with that technology; most carriers allow you to sign up month-by-month, and in some countries the carrier has a pay-as-you-go service. If you tell us what country you're in, someone can tell you more about the available cell plans, if you're interested.
    I hope this helps. Feel free to post back if you need further clarification or have additional questions.
    Regards.

  • I would like to know the documents of tomography.llb and witch algoritm is used

    how may I use a series of bitmap as input of the program 'tomography.llb'
    thanks for your attention.
    luca iezzi
    [email protected]

    I am not familiar with tomography. Can you explain where to find this llb? Is it shipped with a toolset?
    NI is in the business of making tools and not recreating existing algorithms. Chances are that there is nothing more than the standard CS algorithm going on behind the scenes.
    Jeremy

  • I'd like to know the difference between Flat view and Threaded view in the forum.

    anyonw know?
    discussion view style and comment view style
    any difference? i have not noticed any

    threaded view will not display posts which are replys to other posts in the main view
    only when you click on the original post will you see them

  • Difference b/w DATA TYPE and DATA OBJECT & differences b/w TYPE and LIKE

    hai
    can any one say the differences between Data type and Data Object.
    And also differences between TYPE and LIKE
    thanks
    Gani

    hi,
    _Data Types and Data Objects_
          Programs work with local program data – that is, with byte sequences in the working memory. Byte sequences that belong together are called fields and are characterized by a length, an identity (name), and – as a further attribute – by a data type. All programming languages have a concept that describes how the contents of a field are interpreted according to the data type.
          In the ABAP type concept, fields are called data objects. Each data object is thus an instance of an abstract data type. There are separate name spaces for data objects and data types. This means that a name can be the name of a data object as well as the name of a data type simultaneously.
    Data Types
       As well as occurring as attributes of a data object, data types can also be defined independently. You can then use them later on in conjunction with a data object. The definition of a user-defined data type is based on a set of predefined elementary data types. You can define data types either locally in the declaration part of a program using the TYPESstatement) or globally in the ABAP Dictionary. You can use your own data types to declare data objects or to check the types of parameters in generic operations.
         All programming languages distinguish between various types of data with various uses, such as ….. type data for storing or displaying values and numerical data for calculations. The attributes in question are described using data types. You can define, for example, how data is stored in the repository, and how the ABAP statements work with the data.
    Data types can be divided into elementary, reference, and complex types.
    a. Elementary Types
    These are data types of fixed or variable length that are not made up of other types.
    The difference between variable length data types and fixed length data types is that the length and the memory space required by data objects of variable length data types can change dynamically during runtime, and that these data types cannot be defined irreversibly while the data object is being declared.
    Predefined and User-Defined Elementary Data Types
    You can also define your own elementary data types in ABAP using the TYPES statement. You base these on the predefined data types. This determines all of the technical attributes of the new data type. For example, you could define a data type P_2 with two decimal places, based on the predefined data type P. You could then use this new type in your data declarations.
    b.  Reference Types
    Reference types are deep data types that describe reference variables, that is, data objects that contain references. A reference variable can be defined as a component of a complex data object such as a structure or internal table as well as a single field.
    c. Complex Data Types
    Complex data types are made up of other data types. A distinction is made here between structured types and table types.
    Data Objects
          Data objects are the physical units with which ABAP statements work at runtime. The contents of a data object occupy memory space in the program. ABAP statements access these contents by addressing the name of the data object and interpret them according to the data type.. For example, statements can write the contents of data objects in lists or in the database, they can pass them to and receive them from routines, they can change them by assigning new values, and they can compare them in logical expressions.
           Each ABAP data object has a set of technical attributes, which are fully defined at all times when an ABAP program is running (field length, number of decimal places, and data type). You declare data objects either statically in the declaration part of an ABAP program (the most important statement for this is DATA), or dynamically at runtime (for example, when you call procedures). As well as fields in the memory area of the program, the program also treats literals like data objects.
            A data object is a part of the repository whose content can be addressed and interpreted by the program. All data objects must be declared in the ABAP program and are not persistent, meaning that they only exist while the program is being executed. Before you can process persistent data (such as data from a database table or from a sequential file), you must read it into data objects first. Conversely, if you want to retain the contents of a data object beyond the end of the program, you must save it in a persistent form.
    Declaring Data Objects
          Apart from the interface parameters of procedures, you declare all of the data objects in an ABAP program or procedure in its declaration part. These declarative statements establish the data type of the object, along with any missing technical attributes. This takes place before the program is actually executed. The technical attributes can then be queried while the program is running.
         The interface parameters of procedures are generated as local data objects, but only when the procedure is actually called. You can define the technical attributes of the interface parameters in the procedure itself. If you do not, they adopt the attributes of the parameters from which they receive their values.
    ABAP contains the following kinds of data objects:
    a.  Literals
    Literals are not created by declarative statements. Instead, they exist in the program source code. Like all data objects, they have fixed technical attributes (field length, number of decimal places, data type), but no name. They are therefore referred to as unnamed data objects.
    b.  Named Data Objects
    Data objects that have a name that you can use to address the ABAP program are known as named objects. These can be objects of various types, including text symbols, variables and constants.
    Text symbols are pointers to texts in the text pool of the ABAP program. When the program starts, the corresponding data objects are generated from the texts stored in the text pool. They can be addressed using the name of the text symbol.
    Variables are data objects whose contents can be changed using ABAP statements. You declare variables using the DATA, CLASS-DATA, STATICS, PARAMETERS, SELECT-OPTIONS, and RANGESstatements.
    Constants are data objects whose contents cannot be changed. You declare constants using the CONSTANTSstatement.
    c.  Anonymous Data  Objects
    Data objects that cannot be addressed using a name are known as anonymous data objects. They are created using the CREATE DATAstatement and can be addressed using reference variables.
    d.  System-Defined Data Objects
    System-defined data objects do not have to be declared explicitly - they are always available at runtime.
    e.  Interface Work Areas
    Interface work areas are special variables that serve as interfaces between programs, screens, and logical databases. You declare interface work areas using the TABLES and NODESstatements.
    What is the difference between Type and Like?
    Answer1:
    TYPE, you assign datatype directly to the data object while declaring.
    LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly.
    Answer2:
    Type is a keyword used to refer to a data type whereas Like is a keyword used to copy the existing properties of already existing data object.
    Answer3:
    type refers the existing data type
    like refers the existing data object
    reward if useful
    thanks and regards
    suma sailaja pvn

  • Sorry but i have a problem my IPAD has been stolen and i want help to know where is the place of it ? can i send the serial number or anything i want help to know the place of my IPAD and thanks  My name is :- Osama Rezk   I'm From :- Egypt

    Sorry but i have a problem my IPAD has been stolen and i want help to know where is the place of it ? can i send the serial number or anything i want help to know the place of my IPAD and thanks My name is :- Osama Rezk I'm From :- Egypt my icloud ID
    <Email Edited by Host>

    You will only be able to track your iPad if you have find my iPhone active and the iPad is connected to a network.
    Take a look at this link, http://support.apple.com/kb/PH2580

  • I would like to know the version or name of SAP that is implemented in real

    I would like to know the version or name of SAP that is implemented in real time?

    This is a very generic question and really depends on what you are implementing (modules).
    The history of the "R/3" is
    3.0D Basis 300
    3.0E Basis 300
    3.0F Basis 300
    3.1H Basis 310
    3.1I Basis 310
    4.0B Basis 400
    4.5B Basis 450
    4.6C Basis 460
    4.71 Basis 6.20
    4.72 Basis 6.20
    5.00 Basis 6.40 (ECC 5.0 - Enterprise Core components)
    6.00 Basis 7.00 (ECC 6.0) - actually in RampUp
    All of those have increased business functionality and interfaces to other systems (CRM, BW etc.)

  • Would like to know the name of the game pre-installed on an eMac.

    I would like to know the name of the space ship 3rd-person shooter game pre-installed on an eMac.
    Awhile back, I had used an eMac with a previous employer and there was a space ship 3rd-person shooter game loaded on the eMac.
    This may or may not have been preinstalled. I just remember it being there when the eMac was purchased.
    Thoughts?
    Thanks,
    --Todd

    Hello Todd,
    I think the game you refer to is called Deimos Rising. It can be purchased from here...
    Deimos
    Hope that is the one!
    Cheers
    Ian

  • TS4006 Is there google maps data available for Chad, Africa ? I am trying to see where a relative is who works for an Non profit organization there, i have the privacy agreement to do so. In case they are kidnapped there, i would like to know the last pos

    Is there google maps data available for Chad, Africa ? I am trying to see where a relative is who works for an Non profit organization there, i have the privacy agreement to do so. In case they are kidnapped there, i would like to know the last position. I am getting an error that google maps is not available so i asusme there is no map data. Wout it be at least for such cases be possible to get longitude and latitude instead of nothing ?
    Thanks for ideas / suggestions

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • If i Know the Interface name of the badi ,how can i know the badi definitio

    Hi Experts,
         1. If i Know the Interface name of the badi ,how can i know the badi definition name?
         2. And also if i know the name of the  implimentation class,how can i know the implimantation name and definitin name
    Thanks&Regards
    Ramakrishna L

    Hi,
    in order to find BAdI definition starting from the interface, you should perform a "Where used List" from SE24.
    Type your interface name and then, in the where used dialog box, tick the 'Business Add-in" check box.
    1.But is there any table which stores Implimentation name and Implimentation class name?
    2.And also any table that stores BADI Definitiion name and Implimentation names.
    1. SXC_CLASS table; Exit, implementation side: Class assignment (multiple)
    2. SXC_EXIT table: Exit: Implementation side: Assignment: Exit - Implementation
    Regards,
    Andrea

  • I would like to know the list of possible output (export) file codec from FCP X. For example, can I export  in F4V or FLV format?

    I would like to know the list of possible output (export) file codec from FCP X.  For example, can I export  in FLV format?  Where do I find the list, which gives me all the details about it?  Or is there only one output codec? Thanks

    That's an excellent analogy. While FCP cannot export FLV. It is possible to do a very simple substitution. If you export a QuickTime movie using the .mov suffix with the H.264 codec, you can change it to FLV simply by changing the suffix to .flv. This is an acceptable format for Flash movies on most web sites, if that's where you're trying to go.

  • Hi..Iam an Architect...I would like to purchase a macbook pro 15.4 inch 512 gb, 16 gb.So i would like to know the possibilities and advantages of using 3d softwares and autocad.And also is 3dsmax available for mac os or should i install it with windows.

    hi..Iam an Architect...I would like to purchase a macbook pro 15.4 inch 512 gb, 16 gb.So i would like to know the possibilities and advantages of using 3d softwares and autocad.And also is 3dsmax available for mac os or should i install it with windows.

    System Requirements for AutoCAD 2013 for Mac:
    Apple® Mac OS® X v10.8.0 or later (Mountain Lion), OS X v10.7.2 or later (Lion), or OS X v10.6.8 or later (Snow Leopard) with 64-bit Intel processor
    Apple® Mac® Pro 4.1 or later; MacBook® Pro 5.1 or later (MacBook Pro 6.1 or later recommended); iMac® 8.1 or later (iMac 11.1 or later recommended); Mac® mini 3.1 or later (Mac mini 4.1 or later recommended); MacBook Air® 2.1 or later; MacBook® 5.1 or later (MacBook 7.1 or later recommended)
    3 GB of RAM (4 GB recommended)
    2.5 GB free disk space for download and installation (3 GB recommended)
    All graphics cards on supported hardware
    1,280 x 800 display with true color (1,600 x 1,200 recommended)
    All Mac OS X supported language operating systems
    Apple® Mouse, Apple Magic Mouse, Magic Trackpad, MacBook® Pro trackpad, or Microsoft-compliant mouse.
    Mac OS X-compliant printer
    Additional Requirements for 3D Modeling (All Configurations)
    Pentium 4 or Athlon processor, 3 GHz or greater or Intel or AMD dual-core processor, 2 GHz or greater
    4 GB RAM or more
    6 GB hard disk space available in addition to free space required for installation
    1,280 x 1,024 true color video display adapter 128 MB or greater, Pixel Shader 3.0 or greater, Direct3D®-capable workstation-class graphics card
    3ds Max 2014 and 3ds Max Design 2014 are available for windows only:
    System requirements for 3ds Max 2014 and 3ds Max Design 2014
    Windows 8 or Windows® 7 64-bit Professional operating system
    64-bit Intel or AMD multi core processor
    4 GB RAM minimum (8 GB recommended)
    4.5 GB free disk space for installation
    3-button mouse
    Latest version of Microsoft® Internet Explorer®, Apple® Safari®, or Mozilla® Firefox® web browser
    Recommened Mac:
    15-inch MacBook Pro with Retina display : 15.4-inch (diagonal) LED-backlit display with IPS technology
    2880-by-1800 native resolution at 220 pixels per inch with support for millions of colors
    Hardware
    2.4GHz quad-core  Quad-core Intel Core i7
    16GB 1600MHz DDR3L SDRAM
    512GB Flash Storage
    Autodesk AutoCAD 2014 for Windows vs AutoCAD 2013 for Mac
    USER INTERACTION                                                                          Windows         Mac
    Command line


    Multifunctional grips


    Dynamic input


    Auto-complete command entry2


    Hide and isolate objects


    Create and select similar objects


    Delete duplicate objects


    Properties palette


    Quick properties palette

    Quick view


    In-canvas viewport controls


    Editable UCS icon


    Layer tools3


    Layer groups


    Layer state manager4

    New layer notification

    Filter

    Quick select

    DesignCenter

    Tool palettes

    Content palette

    Navigation bar

    ShowMotion

    Coverflow navigation

    Multi-touch gestures

    AutoCorrect command entry

    File tabs

    DOCUMENTATION
    Geometry creation & measurement tools


    Parametric constraints


    Associative arrays


    Copy array


    Object and layer transparency


    Strike-through text


    Blend curves


    Multiple hatch editing


    Sheet set manager

    Project manager

    Dynamic blocks5


    Model documentation tools

    Table style editing

    Hatch creation preview

    Multiline style creation

    Digitizer integration

    Change space

    Express tools6

    Text align

    DESIGN
    Solid, surface, and mesh modeling


    Surface curve extraction


    PressPull


    Autodesk materials library


    Material creation, editing, and mapping

    Basic rendering


    Sun properties7


    Visual styles7


    Advanced rendering settings

    Camera creation

    Walkthroughs, flybys, and animations

    Autodesk ReCap point cloud tool

    Import Sketchup files (SKP)

    Geographic location

    CONNECTIVITY
    External references (DWG)


    Image underlays


    PDF underlays


    DWF underlays

    DGN underlays

    In-place editing of DWG references


    Batch publish


    Publish or plot to PDF


    Plot styles


    Plot style table editor


    AutoCAD WS connectivity


    Autodesk 360 connectivity

    Data links

    Data extraction

    Hyperlinks

    Markup set manager

    dbConnect manager

    eTransmit

    WMF import and export

    FBX import and export

    SAT import and export


    Additional model import

    Design feed

    Share on Facebook

    LICENSING
    Standalone licensing


    Network licensing


    Cross-platform licensing

  • HT5260 Hi, my name is Gerard and my iphoto library is getting very large I would like to know if I can store all or most of my photos in a external hard drive and access them from Aperture?

    Hi, my name is Gerard and my iphoto library is getting very large I would like to know if I can store all or most of my photos in a external hard drive and access them from Aperture?

    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • We have 4000 transports...would like to know the best methods of transports

    We have 4000 transports...would like to know the best methods of transports.I understand mass transports and consolidation of transports through transport organiser can be of help ..However would like to understand more on the following points
    1)In both the cases, how dependencies between transports will be managed.
    2)How Sequencing will be managed?
    3)Which is recommended and under what circumstances?
    4)Pros and cons of each?
    Thanks
    Shamna

    Have those transports already be transported (e.g. from Dev to Test?) - if so the transports from Test to Prod must be in the exact same sequence you transported them into Test because only then the coding status will be exactly the same.
    If there was no transport yet then you usually transport in the sequence of the transport numbers - however if they have not yet been transported you don't know, if there are dependencies between different transports unless you kept a kind of log.
    In that case the savest way to transport everything is to combine all objects of all transports into one transport and then let that one run into Test and Prod. That way you would not have to worry about sequence problems where a newer version is overwritten by an older version.
    However the big transport only works if all the objects in those 4000 transports are not locked in any open request. You can create that transport by using SE03 and choosing 'Merge Object Lists' - just paste all the transports into the selection field and execute. You don't have to do all 4000 at once but do it in packages.
    Hope that helps,
    Michael

  • I would like to know the difference between OEL and RHEL

    I would like to know the difference between OEL and RHEL, are they same?
    If I test any application on RHEL, will it work on OEL too.
    Thanks
    Edited by: user10685113 on 08-Aug-2012 05:35

    The name OEL as such is not used anymore, since the product was renamed from Oracle Enterprise Linux to Oracle Linux with the release of version 5.5 in September 2010.
    The main technical difference between Oracle Linux and RHEL is that Oracle Linux ships with an Oracle exclusive and optimized Oracle UEK kernel. It does however still install and provide the original and older RHEL kernel for fallback.
    As of Oracle Linux 5.6, the Oracle UEK kernel is the default kernel. The current latest version of Oracle Linux 6.3 uses the Oracle UEK2 kernel, which is based on the Linux 3 kernel (2.6.39).
    Oracle Linux is binary compatible with RHEL.
    Oracle Linux has several advantages over RHEL, in particular if you plan to use it to install Oracle products.
    • The same kernel UEK and UEK2 versions are available for Oracle Linux 5.x and 6.x
    You do not necessarily need to perform a complete and unsupported system upgrade to use a newer kernel version and drivers.
    • Oracle Pubilc YUM
    Oracle provides a public yum repository for installing software packages including the latest patches. RHEL does not and requires a paid subscription for online access.
    • Oracle specific drivers and software
    Oracle Linux provides additional software and kernel drivers, for Oracle clustering, Dtrace, BtrFS and ASM, which is not available for RHEL 6.
    Oracle Linux provides additional packages which trigger the automatic installation of system software prerequisites, including kernel parameters and oracle account setup to install Oracle Database:
    oracle-validated (Oracle Linux 5)
    oracle-rdbms-server-11gR2-preinstall (Oracle Linux 6)
    And last not least you have just one vendor and support requirement for Oracle products.
    Have you checked the Internet:
    http://www.oracle.com/us/technologies/linux/index.html
    https://linux.oracle.com
    To obtain Oracle Linux:
    https://edelivery.oracle.com/linux
    https://wikis.oracle.com/display/oraclelinux/Downloading+Oracle+Linux (alternative)
    Edited by: Dude on Aug 8, 2012 2:29 PM

Maybe you are looking for

  • ERROR ODI-40837: An error occurred during the creation of the schema

    Hi I am trying to test an xml file server and keep getting the following error. ERROR ODI-40837: An error occurred during the creation of the schema: ODI-40738: A SAXException was caught while reading the model saying: Expected 'DOCTYPE'. JDBC URL jd

  • STO: How to cancel excise invoice

    Dear All, I'm facing following problem in STO. Goods issue and excise invoice have been made. Now, Excise invoice need to be canceled as amount (Base amount, BED) are incorrect. What is the procedure to cancel this excise invoice. What is the transac

  • How can i do this two figures? semicircles on circle...

    look the image, how to create it? if i want 16 semicircle over a circle what i have to do? can't find a solution on myself. and if want it on a square? thank you [URL=http://imageshack.us/photo/my-images/15/tttmb.jpg/][IMG]http://img15.imageshack.us/

  • Keyword Filtering please help !!!!!

    Hi all, I am doing my program which is a web browser with filtering funciton, it's running properly now but it have some problem with the keyword filtering function, it still not work properly. I try out a target webpage but that page still displayin

  • How much to send in an ipod for a repair with a cracked screen?

    question explains itself