Enhancement, BAdI management with SOLAR02

Dear all,
We are managing Transaction&Program List related with processes on SOLAR02 transaction.
There are several object type we can select.
WAPA                                BSP Application
WTAG                                BSP Extension
CLAS                                  Class/Interface
BMDD                                 Document
FUGR                                  Function Group
FUNC                                  Function Module
REPS                                  Include
IASP                                   Internet Service
WDY_JAVA_SOLMAN         Java Web Dynpro Application in Solution Manager
DEVC                                  Package
PROG                                  Program
TRAN                                  Transaction
BMTR                                  Transaction Request
WDY_APPLICATION Web   Dynpro Application
But, we want to manage the Enhancement(User-exit) and BAdI object list, also.
So, we will add the new object type "SMOD" and "CMOD".
(We know how to add the object type already)
But, I wonder if someone of you is managing this type object already and how to manage enhancement
and BAdI list. (ex.by adding new object type etc...)
Please give me good opinions for managing enhancement list.
Thank you.
Best regards,
jihyun cho

Hi,
please check this blog Extend SAP Solution Manager to Manage New Object Types
Regards
Andreas

Similar Messages

  • I want to enhance customer(XD01) with BADI screen

    hai sap-abap gurus
    I want to enhance customer(XD01) with BADI screen to populate custom fields and store its information. can anybody tell how to find out proper BADI for screen enhacement ? and how to Implement?
    pls tell me the detailed steps?

    Hi,
    1) Use the BADI's CUSTOMER_ADD_DATA & CUSTOMER_ADD_DATA_CS.
    CUSTOMER_ADD_DATA -This BADI used to activate the screen group and checks for account group
    CUSTOMER_ADD_DATA_CS -This BADI used to include the custom screen.
      2)Your code group need to be configure in SPRO before doing the work.
    Regards
    Kiran Sure

  • Hi gurus, can any one explain me about Badi & Bapi with eg.?

    Hi gurus,
    Can any one explain me about Badi & Bapi with examples.
    Regards
    Raghu

    Hi Raghu
    1) Badis means:
    The BAdIs of the enhancement concept are not treated as standalone objects, but are integrated in the overall concept. Thus, the tools for defining BAdIs are part of the Enhancement Builder included in the ABAP Workbench.
    Transaction SE18, up to now the only entry point for defining classic BAdIs, now manages classic and new BAdIs. When an existing BAdI is displayed or changed, it analyzes whether the BAdI is a classic or a new one, and then switches to the respective tool. In the case of a new BAdI, this tool is the enhancement spot editor
    2) Bapis means:
    BAPIs can be called within the R/3 System from external application systems and other programs. BAPIs are the communication standard for business applications. BAPI interface technology forms the basis for the following developments:
    Connecting:
    New R/3 components, for example, Advanced Planner and Optimizer (APO) and Business Information Warehouse (BW).
    Non-SAP software
    Legacy systems
    Isolating components within the R/3 System in the context of Business Framework
    Distributed R/3 scenarios with asynchronous connections using Application Link Enabling (ALE)
    Connecting R/3 Systems to the Internet using Internet Application Components (IACs)
    PC programs as frontends to the R/3 System, for example, Visual Basic (Microsoft) or Visual Age for Java (IBM).
    Workflow applications that extend beyond system boundaries
    Customers' and partners' own developments
    Thanks
    Trinath

  • PMS: Creation of new tabs for reference elements of ENHANCE BADis

    Dear Experts,
    I am on a PMS EHP5 implementation (for all practical purposes, it's an EHP4 implementation as we are not using the pre-defined template) and have the below problem.
    I have the ENHANCE_FIX and ENHANCE_FREE BADIs included at the VA level (as the requirement is to create immediate child objects for the template through these BADIs). I have a reference element (VB) defined for these BADIs.
    Example template (L1 = Level 1, L2 = Level 2, L3 = Level 3):
    L1 - VA
    ---- L2 - VB1
    --------- L3 VC1
    --------- L3 VC2
    ---- L2 - VB2
    ---- L2 - VB3
    In the above example template, the ENHANCE* BADIs will add VBs (example: VB4 and VB5) at the L2 level (appearing in the document below VB2 and VB3).
    The requirement is to have separate tabs for each VB at the L2 level (so I will have one tab for VA and 5 tabs for VB from the above example).
    I am unable to specify creation of new tabs for the reference element VB when I carry out my tabs and process configuration.
    I have not been able to find any information on this aspect either. Would appreciate any help that can come my way.
    Thanks.

    Thanks Maurice.
    I still feel that the product should leave that option to the designer of the solution. There are a lot of solutions which can get chaotic. If designed appropriately, I guess this chaos can be controlled.
    At the very least, I am sure that I have not left anything out in configuration. I will raise this with SAP over a CSS.
    Thank you for your input.

  • How to create a case in case management with QM02 link?

    Dear Gurus,
    I have to create a case in case management with link to t-code QM02. Any help would be appreciated.
    Thanks,
    GSM

    Hi..
    Easy transaction to Case Management customizing is SCASE_CUSTOMIZING. There you have an overview of the customizing of case management.
    Also carryon these steps one by one...
    Case Management Basic Settings :
    Define Number Range Intervals for Case
    Define Case Types
    Determine Permitted values for attribute
    Create values for "Category" attribute
    Create values for "Cause" attributes
    Create values for "Priority" attribute
    Create values for "Reason" for escalation attribute
    Assign escalation reasons to an attribute profile
    Create values for "Authorization level" attribute
    System Modifications
    Create status profile
    Create Text profile
    Create Text Ids
    Create Text Profile
    Define Logical system for external objects
    Enhanced System modifications
    Note About Enhanced System Modifications
    Define Processes
    Set up registry
    Create/Change Case Record Model
    Create Profiles
    Create attribute profile
    Create function profile
    Create terminology profile
    Create Activities for authorization check
    Activate application log
    Define processes
    Create/Change Case Record Model
    When u open the Transaction SCASE_CUSTOMIZING , there will be Registry Steps...
    Follow them step by step.
    Regards,
    Eswari.

  • Enhancement/BAdi/User Exit for ME21N

    Hi
    i am looking for a modification/enhancement/BAdi or userexit that would  be triggered when the document type is changed on purchase order type in transaction ME21N.
    can anyone help?
    i have seen there are lots of many exits available, but i am after something more specific....
    if anyone could help and point me in the right direction it would be much appreciated.
    i found enhancement MEQUERY1, but not sure if i could utilise this for my needs.
    thanks

    i used the BAdi ME_PROCESS_PO_CUST and method PROCESS_ITEM
    with this code:
    METHOD if_ex_me_process_po_cust~process_item.
      DATA: ls_mepoitem   TYPE mepoitem,
            ls_mepoheader TYPE mepoheader.
      DATA: header_obj TYPE REF TO if_purchase_order_mm.
    * get header data
      header_obj = im_item->get_header( ).
      ls_mepoheader = header_obj->get_data( ).
    * get item data
      ls_mepoitem = im_item->get_data( ).
      IF ls_mepoheader-bsart = 'ZPSC' AND ls_mepoitem-umson IS INITIAL.
    * Message: PSC Order requires 'Free' indicator selected
        MESSAGE e017(zenhance_msgcl).
      ENDIF.
    ENDMETHOD.

  • Please provide some important using Enhancements/BADIs in Self service proc

    Hi experts,
    Please provide some important generally using Enhancements/BADIs in Self service procurement with classic Scenario.
    Also pls provide some details regarding those enhancements.
    Also pls. provide some important reports in SAP-SRM
    Thanks
    Reshma

    Not sure what u r trying to do.
    Nornally many requirements are fulfilled with doc change Badi.
    SRM provides very basic reports but if u want good reports u need BI
    Regards,
    NNK

  • Enhancing Customer Reports with Commands and Parameters

    Hi All,
    I am implementing the mentioned tutorial. I have succesfully deployed the AccessStatisticApplication PAR on portal. While scheduling the report from Content Management -> Reports -> Running Reports, it is giving error "<b>Can't find bundle for base name com.sap.netweaver.km.stats.reports.DocumentAccessReport, locale en_US</b>". Has anyone faced the problem, can anyone please help to remove this runtime error.
    Related Link: <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0">Enhancing Customer Reports with Commands and Parameters</a>
    Regards
    Poonam

    <i>True, the application property service is apparently not to be used for a real-life scenario</i>
    You can definitely use the application property service in production scenarios - it's used by other components in a standard KM install, i.e. out-of-the-box.
    <i>in our case it forced the server down with deadlocks. </i>
    This should definitely not happen! Did you get SAP support to take a look at this? Was it the most popular documents report that caused this, or some other custom code? There should be no such problem with this service, since it's been around for quite some time and in production use.
    <i>
    Even if the code sample is not to be used for real-life scenarios it could at least make use of something else than the application property service which isnt't optimal for this use.
    </i>
    The application property service is good for a lot of scenarios, so it is realistic to use in in real-life scenarios. The only time I have seen this approach (storing the number of hits on documents in the database) fail is in very high-load scenarios.
    <i>Could you provide me with a link to the documentation for the logging framework?</i>
    <a href="http://http://help.sap.com/saphelp_nw70/helpdata/en/d2/5c830ca67fd842b2e87b0c341c64cd/frameset.htm">Logging and Tracing</a> on help.sap.com and <a href="https://help.sap.com/javadocs/NW04S/current/en/index.html">Logging and Tracing API (J2EE Engine API)</a> for NW 7.0.

  • Enhancement/ BADI for Planned Order Routings CA01/ CA02

    Hello Experts,
    The reqt. is
               An iDoc should get generated in SAP each time a Planned Order routing is: Created/ Updated/ Cancelled
               The iDoc generated should contain Planned Order attributes plus the routings.
    I am extending Idoc type LOIROU02 adding a custom segment with a field for Work center.
    Now where to populate value for this newly added field?
    Any Userexit/ enhancement/ BADI is available for this?
    PS: There is no Userexit for this as far as I know.
    Please help. Its urgent.

    Hi Sharah,
    Welcome to scn.
    [Extension|http://help.sap.com/saphelp_45b/helpdata/en/35/b0e82c87a62488e10000009b38f9b7/frameset.htm][Process to extend idoc|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80677e5d-dc79-2c10-b7bb-a7e99767c8f6?QuickLink=index&overridelayout=true]
    Regards,
    Madhu.

  • Travel Management with Travel Desk

    Hi Experts,
    We are having following Scenario in Travel Management(with Travel Desk) please suggest me how to achieve the same.
            1.     Employee will raise the Travel Request the same will go to his Reporting Boss
            2.     Boss will approve the above Travel Request.
            3.     Once he approves the request the same has to go to Travel Desk (Company Owned).
            4.     Travel Desk people will book the tickets/hotels and makes the payment to the vendor
                    (Travel  Agent/Hotel). The same information will go to employee.
            5.     After completion his tour, Employee will apply for the reimbursement which he paid on his
                    own.
            6.     Finance Department will check the bills and makes the payment.
    From the above steps, 1st, 2nd, 5th and 6th steps are available in standard system but how to do with 3rd and 4th step.
    Thanks in Advance
    Ratnakar

    Hi together,
    you will have several issues here.
    - First of all, Workflow Container BUS2089 does not carry all planning related details in standard. So you will have to enhance it using SWO1. Especially travel service details are missing.
    - if you are about to enhance it, you can also add a method to change both approval and accounting status of the trip. This will enable you more flexible process steps.
    - if manager has approved request, you can forward it by mail to a central inbox of travel agency. Travel agency is usually not working in customers SAP system, so you have to use an external communication.
    - agency usually sends an external PDF confirmation to traveler as they are not connected to SAP system
    - as an alternative, you can connect to agencys reservation systems Amadeus, Sabre or Galileo and use travel planning. then you have full synchronization and online booking capabilities inside SAP system
    - when ticket is issued at agency, credit card/ form of payment is charged. This is external process. If you want to have these data, take the credit card transaction data from provider and use RPRCCC00. Or ask agency to provide same data in similar format.
    - if you use WD ABAP for travel request (which also works as standalone without EP portal), you can use "other services" to ask traveler for additional details which are needed for travel desk. You will find about 15 fields there which is much more than the standards for flight/ hotel/ rail request.
    regards,
    Michael

  • Enhancements & BADI?

    Give the detail deffrence between enhancements , BADI & modification
    regards
    sami

    Exits are basically the hooks whcih SAP has provided to add your own code. There are two types of Exits:
    1. Customer exits: Implemented as Function Modules within z includes. Anybody can change it and no access key is required.
    2. User Exit: Implemented as subroutines within includes (any include except y or z includes). You need access for the specific include and then you can any subroutine (user exit) within that Include.
    BADIs are the enhanced version of user exits where the same logic is implemented via classes and object (OOP)
    Enchancement point is the latest once introduces with ECC6.0 . Not very sure about that but you can change it without any access key.
    Please go through the following link which will help you understand the exits in a much better way:
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/content.htm
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://sap.niraj.tripod.com/id21.html
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.sap-img.com/ab038.htm
    User Exits.
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    customer exits
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d
    Menu Exit.
    http://www.sappoint.com/abap/spmp.pdf
    http://www.sappoint.com/abap/userexit.pdf
    http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm
    http://www.sapdevelopment.co.uk/enhance/enhancehome.htm
    BADI
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40921dd7-d5cf-2910-1894-bb62316afbd1
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip
    http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    http://help.sap.com//saphelp_470/helpdata/EN/eb/3e7cee940e11d295df0000e82de14a/frameset.htm
    Rewards if useful........
    Minal

  • My drive recently had to be replaced with a new one installed by Apple they reinstalled all my stuff from my time machine. Most my programs had to be updated which I managed with a little help from my friends, but the last one that I can't solve is

    My IMAC OSX 10.6.8   2.8 GHz intelcore  2Duo 4GB 800 Mhz DDR2 SDRam recently had to have its hard drive replaced by apple thy actually had to give me a larger one because mine was no longer available,They also reinstalled all my programs and data from my 2 terrabite time machine back up. I got my system home and found that I had to upgrade most of my programs which I managed with a little help from my friends, but I still have one problem that I can't solve I have a Nikon Coolpix S6 that I have Been Syncing with my Iphoto since I've got it 3 years ago and now when I place it in the cradle the program reconizes it and says that it is going to start to import the new photos the little white wheel in the center of the screen starts spinning but nothing else happens. I checked all my connections and they are goog plus I even downloaded a nikon progam just to double check the camera & cradle and it works there but it wont pair off with my IPhoto.

    First go to iPhoto Preferences, look in both General and Advanced tabs to make sure that things are set to import from camera into iPhoto.
    Then if that doesn't help, connect the camera and open Image Capture in your Applications > Utilities folder and see if you can use Image Capture to reset the import path from the camera to iPhoto.
    Image Capture: Free import tool on Mac OS X - Macgasm
    Message was edited by: den.thed
    Sorry John, I didn't see your post when I clicked the reply button. Dennis

  • Bad experience with Verizon Fios Internet and Customer Service

    I had an extremely bad experience with Verizon Fios Internet service and I will never use Verizon again. 
    In August 2014, I called and installed the Verizon Fios Internet and phone bundle. I asked the customer agent several times if I will be charged anything before the installation of the Internet and phone service. She said, 'No, we will only start charging after the Internet and phone are installed at your apartment'. I went to the store and picked up the router and phone and installed it at home by myself. The router did not work. I called Tech support and they said it will take several days for another available agent to come and look into the issue. I decided to discontinue the service and closed the account that same night.
    At the end of the month, I received a bill of $80 of activation fee for the internet service. Nothing was ever activated, my internet router did not work, and I got charged an activation fee for a service that I did not even start using. From August to December, I called customer service over 10 times and some of them said they will waive it while the others said it's a non-refundable activation fee. One lady said, 'Ma'am, the activation fee starts when you placed the order, the warehouse received it and packed the router in the boxes....' Isn't that ridiculous? If that's the case, please ask all your customer representative to say a clause before new customers open their account: Are you aware that you will be charged a non-refundable activation fee once you open the account regardless of whether or not you use the service or not. 
    So after 3 months (November 2014), I decided to get out of all these troubles and paid off my $80 activation fee. They put the bill in the collection agency and I called them and paid the overdue balance. Then in December 2014, I received a statement saying I have a $3.11 overdue balance. The collection agency told me that they will charge me for the whole activation fee and a $3 transaction fee for the transaction. So now Verizon came back and said I owed them the $3 because I paid the collection agency their transaction fee. 
    I am very disappointed and furious about the whole Verizon operating system. Charging a customer for an activation fee for a service s/he has not consumed or used does not make any business sense. In addition, they do not know how to coordinate with the collection agency on overdue bills. Give the customer a heads-up that they will be charged a transaction fee on top of the overdue balance, and that transaction fee does not count towards clearing the balance. 
    I have completely lost my confidence in Verizon albeit the many good feedback from my friends. 

    Hi crystallau52,
    Sorry you are having difficulty. An agent with access to your account will reach out to you directly by email, private message in the Forums and/or the billing telephone number on your Verizon account for more information or to help you resolve your issue.

  • How many domains can Prime Collaboration Advanced manage with the BE6000?

    The BE6000 Administration guide states that "Most BE6K deployments have a single domain as part of a Standard Prime installation. Multiple domains are available with Prime Collaboration Advanced (available for purchase) that can be used for complex Business Edition 6000 deployments."
    How many domains can Prime Collaboration Advanced manage with the BE6000 solution? How do we order and deploy Prime Collaboration Advanced with the BE6000 solution?

    http://docwiki.cisco.com/wiki/System_Capacity_for_Cisco_Prime_Collaboration_10.0

  • How do I disable Firefox's Download functionality, I would like to use another download manager with Firefox...many thanks Bruce

    Hi I am using version 3.6.15 with Windows 7, I would like to use another download program in place of Firefox's default option, how can I disable this in Firefox
    Many thanks
    Bruce Baxter

    Use this extension to integrate an external download manager with Firefox. <br />
    https://addons.mozilla.org/firefox/220/<br />
    http://www.flashgot.net/whats

Maybe you are looking for

  • What are the new tax patches to be attached for the FY 2008 in India....

    Hi Experts.... What are the new tax patches to be added for the tax calculations for the Financial year 2008.Please advice... regards, sai.

  • Calculated fields in access query

    Hi, I made a report in .net (2008) and have as datasource a query from ms access. One of the fields is calculated in Access. In .net preview of data in the crystal report all of the data is showing. However when running the report this column is omit

  • Xml query search by date or number

    table :tb column:pxml <?xml version="1.0" encoding="GBK"?> <model id="f379f851-b1f9-48bf-8ac7-dafd2b1cedb0" name="hotel" objid="8873dc02-cf83-4527-95bb-e3025469e4ba"> <property id="3100" name="thedate"> <value>2009-09-07</value> </property> <property

  • Vim LaTeX-suite compile

    I have the latex-suite in vim and I use it to compile.  However, by default it compiles to DVI.  I would like for it to compile to PDF by default instead.  As of right now, if I try setting it to PDF (for example, using :TTarget pdf), it does not car

  • Default Collection Set For New Collect

    Good Morning, Since upgrading to 5.2 I notice that when I right click on a collection set to create a new collection Lightroom does not default to the collection set I right clicked on as the "Inside Collection Set" if my original collection set is n