ABAP Class not displaying in operation mapping.

HI,
I have created abap class using se24 for throwing exception message in sxmb_moni, this abap class needs to be called in operation mapping, even though i have activated this abap class in PI environtment, i couldnt see the abap class option in the operation mapping.
Could any one please let me know any change profiles requirements are required,
Thanks,
--Sai

Hi Sai,
Yes, you do have to register ABAP Class Mapping in the Exchange Profile to see this option in the Operation Mapping. Follow these step-by-step configuration guidelines:
http://www.riyaz.net/sap/xipi-how-to-register-abap-mapping-in-exchange-profile/624/
Hope this helps,
Greg

Similar Messages

  • Message Mapping of type ABAP Class not being shown

    Hi all,
    I have been trying to follow the given blog:
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi
    Even after doing the changes mentioned in the blog, i do not see the ABAP Class in the list of Message Mapping types.
    Do i need to do anyother configuration. Pls guide.
    Regards
    Neetu

    Hi Neetu,
    You will have to enable your ABAP mapping first.
    Do the following steps, pay carefull attention to the values you enter,
    In
    IntegrationBuilder ->IntegrationBuilder.Repository -> com.sap.aii.repository.mapping.additionaltypes
    enter the value of
    R3_ABAP|Abapclass;R3_XSLT|XSL (ABAP Engine)
    If the above doesnt work, try Abap-class instead of Abapclass in the above line.
    And then follow the remaining steps, make sure that the above value is correct. Your ABAP mapping should appear in your Integration Repository.'
    I suggest you go through these links:
    https://websmp101.sap-ag.de/~sapdownload/011000358700003082332004E/HowToABAPMapping.pdf
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi
    ABAP Mapping Vs Java Mapping.
    Refer to following SDN Demo which explains the need and how to do the ABAP mapping.
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/110ff05d-0501-0010-a19d-958247c9f798#jdi [original link is broken]
    This document will help you to create ABAP Mapping.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/3.0/how%20to%20use%20abap-mapping%20in%20xi%203.0.pdf
    Regards,
    Abhy

  • XSTL is not displaying in interface mapping

    I've created a XSLT transformation, next I've zipped *.xslt file into *.zip and imported (it is visible in Imported Archives). When I click "Display program" icon, I see popup with valid code.
    In message mapping I want to use this imported transformation. When I'm selecting XSL and then when I'm trying to select any XSLT I'm not able because nothing is displayed. When I tried to use drag and drop technique to paste my imported xslt I got an message:
    "IA_XSLT_PROXY_req has no program", where IA_XSLT_PROXY_req is a name of imported archieve.
    Any idea what is going on?

    Hi,
    Did you selected the option of XSL Mapping in Interface Mapping. Please select it from drop down list from where you select the ABAP MApping / Java Mapping. It will be in left side of lower window in Interface mapping. Please check it out.
    For more info about it you can refer to this weblog.
    /people/aashish.sinha/blog/2008/01/17/step-150-by-150-step-simple-approach-for-xslt-mapping
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Exposing WebService directly from ABAP Class not from BAPI

    Hi guys,
    is it possible ti expose a Webservice direct from an ABAP OO-Class.
    I know the possebility to do it for RFC enabled Funktionmodules but I think it is no good coding style to call ABAP-OO-Methods using RFC-Module only for providing them as methods of an WebService...
    Is there anyone who has exerience on that area ?
    Thanks in advance.
    Bast regards
    André

    Hi Micky,
    thanks for your answer. But the WS-Call are OO codings and the class is OO coding. From my point of view it is not a good style using an RFC Functionmodule as "middleware" between OO-Classes.
    However, if it is not possible I have to live with the possabilities SAP provides.
    regards
    André

  • MIcrophone class not displaying decklink capture card in names

    hi,
    I have a desktop application in which i have an option to select the audio video devices to publish the stream.The Camera.names displaying the decklink capture card .But Microphone.names is not showing the name.
    Is there anyway to get it in the list of audio devices?
    Thanks

    @DXter
    you have to go to
    contacts > options >  settings > and click it to display either phone memory or SIM memory, not both, then it shows up as several memories ...
    i am going with phone memory and then just copying onto my SIM when i get a new number, at least that is how i am trialling it.
    cheers
    me 3310 6300 N97
    son N95 HTC magic
    son 6300 N95 E63

  • 2nd Class not displaying in applet on browser

    I have a very basic applet that consists of two classes, the applet itself and a gui component class that I created that is used in the applet. When I run it in the AppletViewer, I can see my gui component on the applet just fine. But when I try to run it in the browser, I can only see the applet but not the my gui component class. Both class files are in the same folder as the HTML page. I tried putting both classes in a jar file and using the archive attribute in the applet tag of the HTML file but that didn't help. I even tried putting the entire gui component class inside the applet class. It worked fine in the AppletViewer but not in the Netscape browser.
    I'm probably missing something really simple here but I can't figure out what it is. Anybody have any ideas?

    Okay, I've whittled the code down to the bare minimum. I have an applet with a single ProgressBar class on it. The applet is in the AIControl.class file and the ProgressBar is in the ProgressBar.class file, both in the same directory. When I run it in the AppletViewer, I see a half full blue progress bar at the bottom of the applet. When I run it in the browser, I only see the blank applet with no progress bar. I'm sure I'm missing something really stupid but I don't see it. Thanks all for your help.
    /************** AIControl.java ***************/
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    public class AIControlPanel extends Applet
    ProgressBar prgProgressBar = new ProgressBar();
    public void init()
         setLayout(null);
         setBackground(java.awt.Color.lightGray);
         setSize(517,431);
         add(prgProgressBar);
         prgProgressBar.setBounds(12,398,492,16);
    /************* ProgressBar.java *************/
    import java.awt.*;
    public class ProgressBar extends java.awt.Canvas
    private int percentDone = 50;
    public void paint(Graphics g)
    double myWidth = getSize().getWidth() - 1;
    double myHeight = getSize().getHeight() - 1;
    g.setColor(Color.black);
    g.drawRect(0, 0, (int)myWidth, (int)myHeight);
    g.setColor(Color.blue);
    g.fillRect(0, 0, (int)(myWidth*((double)(percentDone)/100)), (int)myHeight);
    The HTML file I'm using to run this applet in the browser is bare bones and is as follows:
    <HTML>
    <HEAD>
    <TITLE>Autogenerated HTML</TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE="AIControlPanel.class" WIDTH=517 HEIGHT=431></APPLET>
    </BODY>
    </HTML>
    I don't think I can get much more bare bones than that...and it still doesn't work. Can anyone see what I'm missing?

  • Web dynpro Abap : Icons not display in alv table

    Hi ,
    I want to replace the content of a cell by an icon ,in an alv table.
    I know how I should do it, but my icon is never displayed. There is only an "X" as if the icon hasn't been find.
    Did anyone encountered the same issue?
    Thanks
    Karim

    Hi Kraim,
    I hope that you have followed the [correct procedure|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9] for displaying your icons within the ALV cells. May be you are passing an invalid icon name. Just try check out the dictionary table ICON to ensure that you are using the correct one.
    Regards,
    Uday

  • Re: monitor not displaying the Operating System after bios update

    At last, great to hear! 

    Hi
    Contact your local MSI office (using this >>How to contact MSI.<< link) and ask if you can remove the cooler and reapply thermal paste without voiding warranty.
    *MSI usually allows this to...

  • Map outline not displaying!

    My maps on my iPhone 4S with IOS6 is not displaying. The maps won't show outlines in map app nor in the photo map also, any advice would be great.

    reset is home button plus the power button at the same time
    the restore is hooking it up to itunes and putting it back to factory setting and also putting a new ios on it. 
    and those are the steps out there. Just because some other people said it wouldnt work doesnt mean it wont work for you

  • Raster map is not displaying on map

    Hi Dear,
    i have a problem displaying raster map. raster maps are successfully loaded and i created raster theme and able to display raster maps on map builder. then i created a map which contains 2 geometry themes and 1 raster theme i am able to see all these themes together in mapbuilder displaying fine. but when i am trying to display on map its displaying only geometry themes
    not displaying rasters on map
    here is my raster theme xml code
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="georaster">
    </styling_rules>
    do i need to add any more additions to my raster theme to display on my map ?
    please some one let me know
    Thanks
    Kabeer

    Hi Joao
    i copied those jar files to my mapviewer WEB-INF\lib directory and its working fine. its displaying my vector and raster data on my map.
    but there was small thing i what i recognized that before copying these files i had a georaster theme map and it does not display even if i run Purge cached metadata from mapviewer.
    i created again another georaster theme map and created cache then it worked with me.
    Thanks once again
    Regards
    Kabeer

  • Class not found when generating deployment xml in MW

    any ideas anyone?
    java.lang.RuntimeException: Class not found:
         at oracle.toplink.workbench.persistence.BldrProjectToRuntimeProjectConverter.convert(Unknown Source)
         at oracle.toplink.workbench.ui.BldrSession.generateDeploymentXML(Unknown Source)
         at oracle.toplink.workbench.ui.BldrMainView.generateDeploymentXMLForSelectedProjects(Unknown Source)
         at oracle.toplink.workbench.ui.BldrActionManager$61.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

    Hi,
    'Class not found' in the Mapping Workbench usually means that one of your classes was not included in the 'class path' panel. In the Mapping Workbench select the project -&gt; Class Path -&gt; Add Entry...
    For example, in my case I have Person.class, which is part of the package com.toplink.course. 'C:\dev\tl400\classes\com\toplink\course&gt;Person.class'
    So in the Mapping Workbench -&gt; Class Path I put 'C:\dev\tl400\classes'
    Raanan.

  • Webservice for ABAP classes

    Hi ,
        This is regarding creating about web service for ABAP classes. On searching SDN forum this is not possible.
        But we should not call methods from a class within the function module used in webservice?
        Please advice.
        Exposing WebService directly from ABAP Class not from BAPI
    Thanks
    Harsh

    [Amazon Associates Webservice|http://ecs.amazonaws.com/AWSECommerceService/2008-08-19/DE/AWSECommerceService.wsdl] is literal.
    More Details to be found [here|http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html]
    Have fun!
    anton

  • Abap mapping and operation mapping param

    Hi All,
    I have a problem with retrive value of export parameter in operation mapping by abap mapping class.
    standard parameter of abpa mapping class method that execute it contains param that ref to IF_MAPPING_PARAMETERS. So i belive by this class using method PARAMETERS->GET_STRING( 'P_IDOC_NR' ), but it dosen't works.
    Any idea
    Regards
    M.

    I have not seen anything in online help that gives the impression that you can use parameters in ABAP mapping.
    So I suppose that this does not work at all.
    Maybe you could use this approach:
    /people/peter.glas3/blog/2010/09/08/pi-parameterized-xslt--a-flexible-alternative

  • XSLT Mapping with Java class not working in Integration Repository

    Hi,
    I have an XSLT mapping program with Java enhancement and I was able to successfully tested it in Stylus Studio. However, when I imported the Java class and the xslt program in Enterprise Service Builder and tested it, my program does not compile.
    Here is the error message: "Transformer Configuration Exception occurred when loading XSLT mapping_temp.xsl; details: Could not compile stylesheet".
    My java program is in a zip file containing SOAPHeaderHandler.java and SOAPHeaderhandler.class. My Java has a package com.nga.xslt.
    Here is the declaration of my Java class in the XSLT: xmlns:javamap="java:com.nga.xslt.SOAPHeaderHandler"
    It seems that it could not read the java class. Can you please advice what is wrong?

    Hi ,
    select XMLTOOLKIT option in Operation mapping and execute it.
    I am not sure we can call java program in XSLT Program,but alternative is copy the code and use it in XSLT mapping it self,that means your XSLT program will become with JAVA extensions.
    then in Operation mapping level select SAPXMLTOOL kit option and execute it. i hope it will work. if it is not working then you have deploy some JAXP files on server,because the way execution of XSLT Mpaping program got changed,like when eve you executing XSLT with extnasions( if you are not using XMLTOOL kit option) then you have to use latest version of JAXP.JDK files.
    Regards,
    Raj

  • Image UI element is  not displayed in Abap webdynpro application

    Hi Experts,
    I need your advice on below issue.
    I have created new ABAP Webdynpro application just to
    display employee photo.
    When loading the application, I generated a dynamic URL for
    a image in webdynpro application path in cache to map to Image UI Element. It
    is working well in DEV and QA environment. But it is not displaying when loaded
    in PRD system.
    Please suggest where to check the cache properties in system
    in order to resolve this issue.
    The user can access the application path, is there any chance for security issue in the same path?
    I suspect the URL is cleared before user access it, can it be controlled via any config?
    Looking forward for your valuable inputs.
    Thanks,
    Swetha

    HI Swetha,
    Maybe the image is not present in MIME repository for the PRD system.
    Please check.
    Regards,
    Hancila

Maybe you are looking for

  • Issues with some pages not loading

    I'm using a note 3 N900W8 running 4.4.2 Using regular firefox or firefox beta for android. Some sites load but don't render anything. Opera, chrome, stock browser have no issues If I select to display desktop mode only the mobile site loads but nothi

  • Web page not rendering properly

    I recently switched my site to a Macbook laptop & the page is all squished to the left. I ALSO switched from Dreamweaver 8 (on a pc) to CS3 (on a mac). It rendered properly in win XP, but not so on the mac - is there a way to figure out what I am doi

  • Nokia Maps doesn't work anymore

    Good morning. Since the last update of maps for Nokia Maps, if I want to use my Nokia 500 as a GPS, I get the message: Car navigation can't start at this location (Autonavigatie kan niet op deze locatie beginnen.) I reinstalled the maps I needed. I e

  • Public Site manager tutorials?

    Dear iTunes U PSM colleagues     I have just styarted creating my site using the PSM and was wondering if there were any decent tutorials availble I know there is the fully comprehensive support site here but was wondering whether there were any slig

  • Combo Edit question

    Hello, I'm fairly new in setting up combo edits. We have an account that we want to use exclusively for one Bus Unit. No other Bus Unit should be able to post to this account. If someone could suggest the easiest way to achieve this, it will be great