Graphics in ABAP OO

Hi,
     I have to do an application and I have doubt about using ABAP OO or JAVA: it is necessary using a gantt graphic, but the user can move the bars! I know that is possible in Java, using an applet, but would be better using ABAP OO. It's is possible?
Tks,
Regards,
Rafael Soares

Rafael,
   Take a look at the following Classes that deals with the Graphics:
    1. CL_ALV_GRAPHICS
    2. CLG_GRAPHICS_CHART
    3. CL_DC_GRAPH_RFW
    4. CL_GRAPH_TUT_CHART_MODEL
It would help you.
Thanks
Kam

Similar Messages

  • How to Generate and Display SVG Graphics in ABAP

    Hi everybody,
    I tried to complete the Tutorial "How to Generate and Display SVG Graphics in ABAP, Part 1" by Siarhei Ulasenka (https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ad83a990-0201-0010-d680-a189f8bc20fa).
    Unfortunately when I tried the example to display an SVG Drawing in an ABAP Report I get the error message "Es ist ein Laufzeitfehler aufgetreten, ungültiges Zeichen" (english should be something like "Runtime Error, unkown character"). But it works when I open the svgfile in a new IE Window (parameter in_place from cl_gui_html_viewer->show_url). Also when I open a svg file from the local disc it works fine.
    The code:
        CALL METHOD html_control->load_data
          EXPORTING
            url            = 'chart.svg'
            type         = 'image'
            subtype    = 'svg+xml'
          CHANGING
            data_table = lt_svg
          EXCEPTIONS
            OTHERS     = 1.
        CALL METHOD html_control->show_url
          EXPORTING
            url        = 'chart.svg'
            in_place   = 'X'
          EXCEPTIONS
            cntl_error = 1.
    Has anyone a solution? Thanks in advance for your help!
    Regards
    Kathrin

    Hello Alex,
    The Corel SVG viewer has problems loading and displaying the examples (see the list of limitations at their site). Try to use the Adobe viewer instead.
    Regards,
    Sergei Ulasenka

  • How to mail chart/graphics in abap

    Hi there,
    I have some abap that creates great charts using GRAPH_MATRIX.
    I have also abaps that send emails with attachments.
    Now I want to email a chart, but I don't know what to specify inn the SO_CONTENT.
    Has anyone experince with this please?
    I did found the following:
    "If the field SO_SEND is set to a value other than SPACE, then the graphic is NOT output on the screen. Instead, a SAPoffice document is generated which is described by the parameters SO_RECEIVER, SO_TITLE and SO_CONTENTS."
    any help appreciated!!
    danny

    Hi,
    You can see a PERFORM GR_SEND called in this function
    Which in turn calls functions SO_OBJECT_INSERT & SO_DYNP_OBJECT_SEND & SO_OBJECT_SEND
    in the include LGRAPFGL  to send the email.
    May be you can debug and check what is happening and you can include the same logic in your program.

  • Possible to view graphics in ABAP documentation without printing?

    I have uploaded a bitmap to the document server and included it in the documentation of my component (an interface, in this case), for which the ABAP workbench generates the statement
    BITMAP 'BO_VSAB' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 300
    The picture is displayed in the print preview, and also prints alright.  I'd prefer to see it without printing, though, while simply viewing the documentation online. Is there a trick to achieve that, for example by using a different form than the standard S_DOCU_SHOW, or whatever?
    -- Sebastian

    Quite honestly, so far I've never seen any ABAP documentation with images. I kind of doubt it is feasible because the thingy that displays documentation most likely doesn't have any capability of displaying graphics. I'm guessing there is simply no container or screen element for that.
    I'm affraid you'll have to create your own screen to achieve this.

  • Graphic in ABAP Adobe form from SE78

    Hi All,
    I am trying to display image(SE78) in ABAP Adobe interactive form.
    But it is not displaying  any image in run time.
    I use following code. Can any one guide what could be the problem
    method WDDOINIT .
      DATA lo_nd_adobe TYPE REF TO if_wd_context_node.
      DATA lo_el_adobe TYPE REF TO if_wd_context_element.
      DATA ls_adobe TYPE wd_this->element_adobe.
    * navigate from <CONTEXT> to <ADOBE> via lead selection
      lo_nd_adobe = wd_context->get_child_node( name = wd_this->wdctx_adobe ).
    * get element via lead selection
      lo_el_adobe = lo_nd_adobe->get_element(  ).
    * get all declared attributes
      lo_el_adobe->get_static_attributes(
        IMPORTING
          static_attributes = ls_adobe ).
    *---------Code To select LOGO & PERNR
    CONSTANTS:    c_graphics    TYPE   tdobjectgr  VALUE 'GRAPHICS',
                  c_bmap        TYPE   tdidgr      VALUE 'BMAP' ,
                  c_bcol        TYPE   tdbtype     VALUE 'BCOL'.
      DATA:       lv_logo       TYPE   tdobname.
    *--pernr
      ls_adobe-pernr = '80000086'.
    *--Get the Logo
      lv_logo = 'OURSOURCE_LOGO'.
      CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
        EXPORTING
          p_object       = c_graphics
          p_name         = lv_logo
          p_id           = c_bmap
          p_btype        = c_bcol
        RECEIVING
          p_bmp          = ls_adobe-logo
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    *--Send the values back to the node
      lo_el_adobe->set_static_attributes(
        EXPORTING
          static_attributes = ls_adobe ).
    endmethod.

    I'm assuming you want a different logo per document? Otherwise, you could just use an image object in Adobe for your logo.
    does the code return the appropriate subrc when you grab your logo? Do you have your context bound to an image object in Adobe?
    EDIT: also, what does your Context look like?
    Edited by: robert phelan on Feb 19, 2009 10:01 PM

  • New to Graphics in ABAP

    Hi all!! I have a requirement to create a program that shows a graphic chart, but must show 2 graphic on the same chart, that is a bar graph and a line graph on the same chart. This is to compare actual data with data from previous years, so it must be done on the same chart but with a different type.
    I've been looking for examples on trx GRAL, on SAP Help, but I've found nothing like this.
    Have anybody done something that might help?
    Thanx
    Jesus

    Hi,
    Refer to the following code:
    REPORT ZZ__GRAPH .
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
    DATANAME(15),
    QUANTITY1 TYPE I,
    QUANTITY2 TYPE I,
    QUANTITY3 TYPE I,
    END OF ITAB_DATA,
    BEGIN OF ITAB_OPTIONS OCCURS 0,
    OPTION(20),
    END OF ITAB_OPTIONS.
    ITAB_DATA-DATANAME = 'Electricity'.
    ITAB_DATA-QUANTITY1 = 55.
    ITAB_DATA-QUANTITY2 = 62.
    ITAB_DATA-QUANTITY3 = 59.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Gas'.
    ITAB_DATA-QUANTITY1 = 35.
    ITAB_DATA-QUANTITY2 = 52.
    ITAB_DATA-QUANTITY3 = 44.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Water'.
    ITAB_DATA-QUANTITY1 = 18.
    ITAB_DATA-QUANTITY2 = 22.
    ITAB_DATA-QUANTITY3 = 19.
    APPEND ITAB_DATA.
    CALL FUNCTION 'GRAPH_MATRIX_3D'
    EXPORTING
    COL1 = 'Jan'
    COL2 = 'Feb'
    COL3 = 'Mar'
    TITL = 'Utility Expenses in US$.'
    TABLES
    DATA = ITAB_DATA
    OPTS = ITAB_OPTIONS
    EXCEPTIONS
    OTHERS = 1.
    Just copy & paste it in a new program & see the output.
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • Draw graphics in ABAP

    Hi,
    i'm looking for a way to draw graphics in my SAP-GUI. I need really drawing, not only charts.
    I searched the forum for this topic, and found the solution via a HTML-Control with SVG.
    Basicly this is exactly what im looking for, but isn't there any other way?? In best case a solution, that don't need a plug-in..

    Hi Bernd
    For pictures you can use the class "cl_gui_picture". You can find more in the demo program Nablan mentioned.
    It may also be OK to use an HTML viewer if possible. It can be instantiated from the class "cl_gui_html_viewer"
    To store your picture files you can use the Web Repository.
    To draw graphics, you can use "GRAPH_MATRIX_*" function modules. You can inspect those.
    A better way that I would prefer to draw graphics, is using GFW (Graphical FrameWork). Inspect demo programs "GFW_DEMO_*" for those.
    Hope this clue helps...
    *--Serdar

  • Eventing on Graphics using ABAP Webdynpro is it Possible -EHP5

    Hi,
    I have below graphic output requirement..
    On X-axis i will have fixed columns.. and I should have an option to  DRAG and DROP contents which should be like Blocks  from 1 column to other column.. which eventually should update database..Is it possible technically ? I know we can do drag drop whole column in ALV from EHp2 but this is some strange requirement for me..How do we handle this?
    EMP3
    EMP1                 EMP2                EMP4        
    A                     B                   C                   D
    FYI..We are SAP ramp up customers for EHP 5.0
    Should we use
    IGS( Internet Graphics Server) with Business graphic? Can we handle eventing?
    Adobe Flex? If so do we need any extras for Client machines like flash? How complex would it be?
    ALV Display as Graphic? As far as i know this is just display
    Rgds
    Tarun
    Edited by: SriTarun on Jun 6, 2011 3:36 PM

    NB - the "data" that is returned by these classes is the data as defined in an adobe form - it doesn't return the content of non-form PDF documents.
    The PDF must be an interactive form ( although that doesn't restrict you to using the SAP process for creating the form is my understanding - but I could be wrong. )
    Edit - I was wrong! ONLY PDF documents that have been created by the ADS can have data extracted using these classes. So unless you are using Adobe interactive forms - then you will get no value from this functionality - and if you're using AIF then you're probably just use the standard UI element
    Edited by: Chris Paine on Oct 26, 2010 6:04 PM

  • FAQ's, intros and memorable discussions in the ABAP Form Printing Forum

    Welcome to the SDN ABAP Form Printing Forum!
    In addition to release dependent information avalaible by:
    - pressing the F1 key on an ABAP statement,
    - or searching for them in transaction ABAPDOCU,
    - using the [SDN ABAP Development Forum Search|https://www.sdn.sap.com/irj/sdn/directforumsearch?threadid=&q=&objid=c42&daterange=all&numresults=15&rankby=10001],
    - the information accessible via the [SDN ABAP Main Wiki|https://wiki.sdn.sap.com/wiki/display/ABAP],
    - the [SAP Service Marketplace|http://service.sap.com] and see [SAP Note 192194|https://service.sap.com/sap/support/notes/192194] for search tips,
    - the 3 part [How to write guru ABAP code series|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f2dac69e-0e01-0010-e2b6-81c1e8e5ce50] ... (use the search to easily find the other 2 documents...)
    ... this "sticky post" lists some threads from the ABAP forums as:
    - An introduction for new members / visitors on topics discussed in threads,
    - An introduction to how the forums are used and the quality expected,
    - A collection of some threads which provided usefull answers to questions which are frequently asked, and,
    - A collection of some memorable threads if you feel like reading some ABAP related material.
    The listed threads will be enhanced from time to time. Please feel welcome to post to [this thread|Suggestions thread for ABAP FAQ sticky; to suggest any additional inclusions.
    Note: When asking a question in the forum, please also provide sufficient information such that the question can be answered usefully, do not repeat interview-type questions, and once closed please indicate which solution was usefull - to help others who search for it.
    Form Printing
    Exporting Graphics from SAP => Download Logo from SE78, except WS_DOWNLOAD has been replaced (see the docs).
    How to check via report if a graphic exist in SE78. => Validating the existence of a graphic from ABAP.

    Welcome to the SDN ABAP Form Printing Forum!
    In addition to release dependent information avalaible by:
    - pressing the F1 key on an ABAP statement,
    - or searching for them in transaction ABAPDOCU,
    - using the [SDN ABAP Development Forum Search|https://www.sdn.sap.com/irj/sdn/directforumsearch?threadid=&q=&objid=c42&daterange=all&numresults=15&rankby=10001],
    - the information accessible via the [SDN ABAP Main Wiki|https://wiki.sdn.sap.com/wiki/display/ABAP],
    - the [SAP Service Marketplace|http://service.sap.com] and see [SAP Note 192194|https://service.sap.com/sap/support/notes/192194] for search tips,
    - the 3 part [How to write guru ABAP code series|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f2dac69e-0e01-0010-e2b6-81c1e8e5ce50] ... (use the search to easily find the other 2 documents...)
    ... this "sticky post" lists some threads from the ABAP forums as:
    - An introduction for new members / visitors on topics discussed in threads,
    - An introduction to how the forums are used and the quality expected,
    - A collection of some threads which provided usefull answers to questions which are frequently asked, and,
    - A collection of some memorable threads if you feel like reading some ABAP related material.
    The listed threads will be enhanced from time to time. Please feel welcome to post to [this thread|Suggestions thread for ABAP FAQ sticky; to suggest any additional inclusions.
    Note: When asking a question in the forum, please also provide sufficient information such that the question can be answered usefully, do not repeat interview-type questions, and once closed please indicate which solution was usefull - to help others who search for it.
    Form Printing
    Exporting Graphics from SAP => Download Logo from SE78, except WS_DOWNLOAD has been replaced (see the docs).
    How to check via report if a graphic exist in SE78. => Validating the existence of a graphic from ABAP.

  • Possible to generate graphics within smart forms dynamically like SVG ?

    Hello,
    I would like to generate a graphic for a smart form. This graphic will only be needed in the smart form. Therefore my question:
    It is <b>possible to generate dynamically graphics using ABAP</b> as programming language? In the same line like SVG (Scalable Vector Graphics) or ChartDirector? I know it works in many other programming languages.
    Smart forms can handle *.bmp and *.tif picutres. Therefore the output of this ABAP program should be a picutre within the format *.bmp and *.tif.
    Daniel

    Welcome to SDN,
    I am not sure whether you can use SVG in smart form, but certainly in ABAP yes. check out the following atricle for more info.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/how to generate and display svg graphics in abap,%20Part%201.article
    Regards
    Raja

  • Graphics on SAP Screens

    Hi!
    I know two ways to make some graphical attractions in SAP screens. These are using 'GRAPH_MATRIX...' functions and using GFW classes. But, as I know, the former one is always opened in a new window and the latter one has no means for printing.
    Is there some way to embed the graphics obtained by 'GRAPH_MATRIX...' functions into a SAP screen or to make GFW-based graphics printable (Hope you don't advise to use both; one for displaying and the other for printing)? If not, is there another way for graphics displaying.
    Thanks...
    *--Serdar
    Message was edited by: Serdar Simsekler

    Just today SAP posted a new "mini course" in the SDN home page... I don't know if it will help you, but will be my next read when I finish to read all the threads in the ABAP forum.
    Here's the link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/how to generate and display svg graphics in abap,%20Part%201.article
    (don't know how to put a link here, will be the third thing to learn :P)
    I wish it could help you,
    Vicenç

  • Xi-material

    hi
        i need complete material on the xi scenarios
    regards
    reaves

    Hi Keanu,
    follow the steps which i give u can clearly understand,
    Just when u see the architecture of XI u can clearly understood that everything was interdependent in XI,
    Why WebAS is used in the sense the integration builder which is present in the Netweaver will basically run in the explorer, which depends on the java stack, so a platform is required which is used to support both ABAP as well as JAVA, so a unique architecture or we can say platform was introduced to build a system which is nothing but WebAS, it may be WebAS JAVA or WebAS ABAP.
    and when u come to the servers part, it is quite differient when compared with XI3.0 and PI7.0 and at the same time in PI we have a provision of installing the both java and abap as central instance and when u see in XI3.0 u need to sepatrately configure for both java and ABAP, as a whole in concern we dont see separately in the servers part..
    The doubts regarding to u was aboud SLD(System Landscape Directory components)
    SLD can be classified into 2 as
    1. Software Catalog
    2. System Catalog
    Software catalog consists with Products and Software Components.
    If u know Ms-Office we can understand better, Ms-Office is an Product in which Ms-Word and Ms-Excel and others are the components of the Ms-Office product in similar any object created in XI should store under any software component so we require a Software Component and at the same time this Software Components should be under Products, so we are creating products the hierarchy will be like this for software catalog
    PRODUCTS -
    >>> SOFTWARE COMPONENTS -
    >> NAMESPACES CREATED DURING DESIGN -
    > OBJECTS
    System Catalog consists with Techinal System and Business System
    Technical System is the physical entity but where as the Business System is the logical system of the Technical System..
    i.e an n number of business systems are created for a singel Technical system.
    Basically while developing the scenarios it is difficult to share the technical system so we develop instance of the technical system i,e a logical system.
    Regarding to the Integration Repository..
    The concepts that to be covered are ..
    know about the Software components and namespaces
    Interface Objects -- Data types -- Where structures are designed
    Message types
    Message Interfaces -- Where structure of the data type are
    accessed through message types..
    Mapping -- Choose according to the requirement basically we have 4 types of mapping, Graphical Mapping, ABAP Mapping, Java Mapping, XSLT Mapping.
    Proxy Generation --Which is used to avoid adapters in transforming information (Adapterless communication)
    Sometimes we use BPM depends on the requirement.. Integration Scenarios..
    Regarding to the Integration Directory..
    First according to the scenario u have to decide whether to use a party, service without party in which it contains business system, business service , business scenario..
    The creation of Objects will be like this ...
    *Communication Party or Service
    Communication Channel
    Receiver Determination
    Interface Determaination
    Sender Agreement
    Receiver Agreement*
    Business scenario is used when a scenario is developed using BPM's
    Based on your needs, you can select from the following service types:
    Business System: Address a particular business system as the sender or receiver of messages.
    A business system is an actual application system in a system landscape. A business system
    (service) comprises information about the inbound and outbound interfaces and the software
    component versions of the business system. The business system services are used when
    configuring internal company processes.
    Business Service: Address an abstract business entity as the sender or receiver of messages.
    Using a business service, you can define the technical or business subunits of the companies
    involved and then assign them the relevant interfaces. The business services are used when
    configuring cross-company processes.
    Business Process or Integration Process Service: Address an integration process as the sender or receiver of messages.
    Prerequisites
    The business system must be entered in the SLD.
    A communication party has been created.
    1Create Business System as Service with Party
    Procedure
    1. In the Configuration: Integration Builder, navigate to Objects tab.
    2. Expand Party.
    3. Right-click on Business System and choose Assign Business System.
    4. In Business System Wizard, skip the step 1 Introduction by choosing Continue.
    5. In step 2 Assign Party, for example, enter Buyer.
    6. In step 3, select systems from the list that you want to define as the business system
    service.
    7. Choose Finish.
    Create Business Service as Service with Party
    Procedure
    1. In the Configuration: Integration Builder, navigate to Objects tab.
    2. Expand Party.
    3. Right-click on Business Service and choose New.
    4. In the Create Object Wizard, choose a communication party. For example, select
    Seller.
    5. Enter a service name, for example, PCK_Service.
    6. Enter a description for the service.
    7. Choose Create and Save.
    After Creating the Systems u need to choose the Adapter based on the scenario.. we call this as communication channel, and we shuld configure the communication channel to fetch the file from the source and to drop the files to the target directory..
    Then it should follow with Logical Routing and Collaboration Agreements..
    Logical Routing consists with Receiver Determination and Interface Determination
    Collaboration Agreements consists with Sender Agreement and Receiver Agreement..
    In Receiver Determination u have to specift the what are all the receivers that are going to receive the message and u have a provision of delivering the message based on the payload by using an option of condition editor.
    In Interface determination u will be specifying the Interface mapping which was developed in the design in between Outbound and Inbound Interfaces
    In Sender agreement we give the communication channel which is developed in the sender side w.r.t the business system/service.
    In Receiver agreement we give the communication channel which is developed in the receiver side w.r.t the business system/service.
    >>>>Following are the links to weblogs which will help to develop the
    basic scenarios.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in
    ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in
    ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm -
    Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI
    Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive
    Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a
    receiver file adapter -
    SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in
    XI30 using Trex Engine
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring
    for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver
    mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by SAP
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    http://help.sap.com/saphelp_nw04/helpdata/en/80/8e3841e26cef23e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/developerareas/xi?rid=/webcontent/uuid/a680445e-0501-0010-1c94- [original link is broken]
    a8c4a60619f8
    regards,
    Kishore

  • Preformance in mapping

    can you give me the order for graphical,java,abap and xslt mappings in preformance point of view?

    There  are some unfortunate things about XI compared to other ESB EAI framework.
    XI just use JAVA, J2EE and Web service technology for design and configuration phase. In run time ABAP engine is the main player which use J2EE engine as RFC destination to handle supporting work.
    However other ESB EAI Engine such as Aqualogic, Websphere, Mule, TIBCO etc depend on JAVA as a core engine.
    Regarding the view of a programmer who do not have a clue on the powe of JAVA and XSLT and at the same time have to depend on the burdon of some architectural flops in XI , it is nice to say that for the sake of goodness use ABAP mapping as much as possible for complicated mapping.
    However provided that XI will one day use JAVA as a core engine and use JAVA technology as a main stream then XSLT and JAVA mapping can rock with even a 2 CPU production machine.
    For example, I have a SAP Integration with 45 different plant system for a Telecom supply chain in USA where 2 instance of weblogic server with J2EE and JAVA can handle 35,000 master data changes (IDOCS) from SAP to all plants in 4 hours without breaking a single one. It took more than 3 days to load into the same SAP master data system using ABAP technologies and may be 60 CPU machines too.
    If you know what is the power of XSLT, JAVA caching, power of JAVA POJOS, HEAP tuning and provided you have a right infrastructure supported by ESB EAI features such as transformation, translation, routing, then JAVA is the solution.
    But if you are from a back ground of customization project, not much clue of software programming and dragged to certain believe then JAVA is not a solution.
    I hope to see one day SAP platform use JAVA and J2EE technologies with its full power and keep the right steps SAP took with Netweaver platform.
    Thanks

  • SVG Tutorial

    Hello everybody,
    I tried to complete the Tutorial-Weglog "How to Generate and Display SVG Graphics in ABAP, Part 1" by Siarhei Ulasenka. unfortunately when I tried to test the logo.htm I get the error message "Konnte nicht auf Datei zugreifen" (english should be something like "Couldn't access file")
    Has anyone experiended the same? Or has a solution?
    Regards
    ALEX

    Hello Alex,
    The Corel SVG viewer has problems loading and displaying the examples (see the list of limitations at their site). Try to use the Adobe viewer instead.
    Regards,
    Sergei Ulasenka

  • Print preview in abap list format (OMLV) - Need preview in graphical format

    Dear All
    I am facing a problem with the print preview. (transaction code OMLV)
    When i am clicking on print preview button the system is displaying the output in a ABAP list format.
    and also the printout shows only the ABAP content.
    Pl. advise on how to view the print preview in a graphical format and not in the ABAP list format and pl. let me know the setting to print the spool in the graphical format.
    Thanks,
    Maxx

    Hi,
    this problem is not only related to warehouse. even the print preview spool for GR/GI slip in t-code SP01 shows as ABAP list and not as graphical screen.
    my question is why does the system shows the print preview for spool as an ABAP list instead of graphical view.
    pl. advise
    Thanks,
    Maxx

Maybe you are looking for

  • Weird Firefox Happening Please Help!

    When I minimize Firefox 8.0.1 to work in my windows 7 computer it won't stay minimized but about 30seconds then it maximizes all by itself without any intervention from me. I minimize it and it starts all over again. Has anyone had this problem? Than

  • PDF and iPad sync support cancelled?

    Has Apple discontinued support for syncing PDF's from iTunes on a desktop or laptop into iBooks in an iPad? I noticed that this was a long-standing issue, and I'm assuming it might be intentional by Apple or they would have likely fixed this already.

  • Count of characters

    Dear experts, Can I do a count of characters in an Acrobat document? Yours Knud Lindholm Lau, Copenhagen

  • Info Panel following mouse pointer

    Today I am getting a pop-up information panel showing metadata and exif information against a ghosted black background when the mouse pointer hovers over an image in either browser or viewer mode. This is situated about 1 cm down and right from the p

  • Can't get rid of stubborn genres

    My Genre list has become ridiculous with entries like "Business", "Interdimensional" and "131 Alpha Music" (whatever they're supposed to mean). I know its possible to remove a genre from your list by changing all the necessary tracks' genre to someth