Exit or Enhancement needed for transaction MM06

Hi all,
Can anyone help me in finding any user exit or BADI when we save the transaction MM06?. I have tried using exit handler, checked the package, but there is no exit/BADI. There is one BADI BADI_MM_SPSTOCK but it is not getting triggered when i save MM06.
Please help as soon as possible.
Thanks in advance

Hi,
user exits are not there for MM06 transaction.
go through the below links for BADI.
/people/alwin.vandeput2/blog/2006/04/13/how-to-search-for-badis-trace-it
https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/find%252bapplication%252bclass%252bwith%252bexits%252band%252bbadis%252bfor%252ba%252btransaction
Regards,
Madhu

Similar Messages

  • Need a user exit or enhancement point for loading start button in VT02

    I have a requirement to write the code for loading start button and complete PGI as soon as loading start is checked in VT02(shipment transaction).
    Please suggest....

    HI Venkata,
    Below are the user exits and BADIs in the transaction VT01
    Enhancement
    V56UNUMB                                Shipment number allocation
    V56UDLUP                                Obsolete as of 4.6C: Delivery Update on Delivery Routines
    V56UCHCO                                Check shipments are complete
    V56UCHCH                                Shipment processing: Check whether changes were made
    V56TDLIF                                Filter Delivery Items for Shipment
    V56SLDET                                Shipment processing: Leg determination
    V56MVT04                                Extensions for Collective Processing of Shipments
    V56LOCID                                Shipment Processing: Determine Location Identification
    V56LDELI                                Read Delivery Data for Shipment Processing
    V56L0001                                Status of Shipments for a Delivery
    V56FSTAT                                Shipment processing: Activities when setting a status
    MV56AINI                                Initialization of transaction control for transportation
    V56USTAT                                User-individual definition of transportation planning status
    V56USVDO                                Update new objects for transport
    V56USVDP                                Preparation for updating new objects for transport?
    V56AFCCH                                Shipment processing: Check function code allowed
    V56AGTAR                                User Exit for Filtering Shipping Unit Calculation
    V56ARCHV                                Customer-spec. checks for archiving shipments
    V56ATKTX                                Change the number of lines for text input in shipment
    V56BMOD                                 Transportation processing: Field modification
    V56DISTZ                                Shipment Processing: Determine Distance
    V56FCOPY                                Shipment processing: Copy delivery data
    Business Add-in
    BADI_V56N                               User Exit Transport - Message Determination
    BADI_LE_SHIPMENT                        BadI: Shipment Processing
    Regards,
    Radhika

  • User Exit Doesn't Run For Transaction KE26

    Hi Gurus,
    I have a requirement in which when i use the transaction KE26, i need the User Exit EXIT_SAPLKEII_002 Enhancement
    COPA0005 to run. Using the Program for finding out the user exits for a particular transaction i found out this exit . but when i use ke26 this exit is not activated .Plz Help.
    Thanks in advance.

    The program you use give the Customer Exit (or BADI) for the development class of a transaction or program. Its only a tool, an exit can belongs to another dev class than the transaction and an exit of the same dev class may not be called by the transaction.
    - Look at dev class KE with SE80, there are a lot of transactions in this class.
    - Look at function group XKKE, there are some exits here.
    Regards

  • Exit or enhancment spot for custom checks to prevent delivery from VA02

    Hi,
    Requirement is -
    When we click delivery from VA02 tcode.. After sales order is saved (commit ) , I need to check some conditions from XVBAP records and based on my checks I  need raise error message and prevent going into the delivery screen.(user should not be able to access delivery screen from VA02).
    Can anyone tell me what is the best exit or enhancement spot I can use for this?
    Thanks in advance,
    Mohan.

    Hi
    Try to check the routine FCODE_FLI1 in SAPMV45A
    Max

  • Screen exit help is needed for SCASE development

    Dear forum,
    I need your help to find a possible screen exit for the SCASE transaction. I want to add custom fields in the standard SAP screen since we want to have more fields here than standard. I have identified the program and package as follows:
    Transaction: SCASE
    Program: SAPLSRMCLFRM2
    Package: SCMG_GENERAL
    Can you please help me on how to find a screen exit for this?
    I would really appriciate all help I can get, many thanks in advanced!
    // Par

    Hello again,
    I have seemed to found the following BADI: SCMG_CASE_FCODE_S - Case Frontend: Non-standard Pushbutton
    The documentation states the following:
    This BADI is called if a function code was triggered that s not implemented by the standard of the case.
    This is true if the pushbutton is customer- or application-specific.
    You can create your own pushbutton in the table SCMGFUNCTION by using the maintenance view SCMGV_FUNCTION. If you do so, pay attention to the customer namespace in the table.
    In this table you can control exactly when the pushbutton is active The function code is the processed in this BAdI
    If I now want to create a subscreen with new custom fields and add that as a pushbutton option on the standard screen of transaction SCASE, what would be the next steps to take?
    Best regards, Par

  • Help needed for transaction KKA2

    Hello Firends,
    Iam working on Transaction KKA2.
    When I enter the WBS Element, Period, Fiscal Year, RA Version and check the checkbox for "Full Log" and execute, it displays me "Planning data", "Actual data" and "Result Analysis data". I want to change the logic how the planned cost is displayed based on the planned revenue, actual cost and the actual revenue. I need to write a condition before the screen is displayed. How can I do that?
    I tried the user exit <b>EXIT_SAPLKKAG_002</b>. But Iam unable to use this to solve my purpose.
    So, where can I write my condition so that the costs can be displayed as I desire...
    Regards,
    Raju.

    Hi,
    I had a similar requirement and looked here to no avail.
    After some trial and error I made it work - here are findings for others to benefit.
    1. Check out OSS note 26957 which explains this functionality.
    2. Even see the SPRO documentation for this
    3. This is 'user exit 2', which is set in config transaction OKG3. I ended up using vakuation basis = 1 and profit basis = F. This ensures all data is transferred to the user exit in the EXPORT_BASIS. In my example, I needed to update the revenue
    data : ld_erlos type rke2_erlos.
    if abgrenzungs_schluessel = 'Z12345'           " RA Key
    and coep_bukrs = '1234'                        " CC
    and not vbuk_vbeln  is initial.                " Sales order
      loop at export_basis
      where zlnid = 'REV'.                         " Line-ID = Revenue
    new value ......
          ld_erlos = ....
    Export new revenue value
        if not ld_erlos is initial.
          export_basis-planbewkg = ld_erlos.
          modify export_basis.
        endif.
      endloop.
    endif.
    Please notice that the logic is called twice with 2 different set of currencies.
    Additional tags for searching :
    ZXKAGU02
    KKAG0001

  • EXIT/ BADI/ Enhancement point for User Status change in Order

    Hi all,
    I am looking for an EXIT or a BADI or an enhancement point specifically for user status change in an order thru IW31/IW32.
    I have the exit names for Order PBO, PAI, 'SAVE' event etc. so m not looking for generic answers.
    I have to put some validations for the Order on USER STATUS CHANGE. Let me know if any of u have any pointers on that.
    Thanks and Regards,
    Sonal

    Hi,
    Use this Enhancement IWO10009 and call these function module to change the User Status
    STATUS_TEXT_EDIT --> To Read the existing status.
    STATUS_CHANGE_INTERN_VB --> to change the status.
    Regards,
    Satish

  • User exit or badi neede for the vl02

    Hi All,
    My user will do the GOODS ISSUE Through the VL02 ,So the shelflife expiry date will perform at this time,it will give the error message if the Batch shelf life expiredate is not matching with material master shelflife expriry date,but my user wants to skip this check for a particular movement type , So to solve this issue can any one tell which enhancement technique is suitable to solve this issue,if that is user-exit or BADI Please could you give that user-exit/BADI Name .
    Thanks in advance..
    SRIHASA

    you can use these many badi for user exist in vl02:
    Enhancement/ Business Add-in            Description
    Enhancement
    VMDE0004                                Shipping Interface: Message SDPACK (Packing, Inbound)
    VMDE0003                                Shipping Interface: Message SDPICK (Picking, Inbound)
    VMDE0002                                Shipping Interface: Message PICKSD (Picking, Outbound)
    VMDE0001                                Shipping Interface: Error Handling - Inbound IDoc
    V53W0001                                User exits for creating picking waves
    V53C0002                                W&S: RWE enhancement - shipping material type/time slot
    V53C0001                                Rough workload calculation in time per item
    V50S0001                                User Exits for Delivery Processing
    V50R0004                                Calculation of Stock for POs for Shipping Due Date List
    V50R0002                                Collective processing for delivery creation
    V50R0001                                Collective processing for delivery creation
    V50Q0001                                Delivery Monitor: User Exits for Filling Display Fields
    V50PSTAT                                Delivery: Item Status Calculation
    V02V0004                                User Exit for Staging Area Determination (Item)
    V02V0003                                User exit for gate + matl staging area determination (headr
    V02V0002                                User exit for storage location determination
    V02V0001                                Sales area determination for stock transport order
    Business Add-in
    DELIVERY_ADDR_SAP                       Address Change in Delivery Processing
    DELIVERY_PUBLISH                        Announcement of delivery data during database update

  • User Exit or BAdI available for transaction MFBF

    Hi all,
         Is there any BAdI or User Exit available for Trasaction MFBF to change the workcentre type? if possible could anyone help me out in figuring out the the Exit.
    Answers will be rewarded
    Cheers,
    Prashanth

    check...
                                                                                    Enhancement/ Business Add-in            Description                                                                               
    Enhancement                                                                               
    PTRM0001                                User Exit for Lead Column in REM Planning Table                
    SAPLRMPU                                Customer Exits for Material Staging                            
    XMRM0001                                User exits: Backflushing in Repetitive Manufacturing                                                                               
    Business Add-in                                                                               
    CIF_RM_PPR_DISTRIB                      Distribution of Postprocessing Records in APO                  
    FCO_CO_FUNCTIONS                        CO Functions for Failure Costs                                 
    FCO_CUSTOMER_SPECIF                     Failure Costs: Customer-Specific Enhancements                  
    FCO_RM_FUNCTIONS                        Failure Costs: Enhancements in Repetitive Manufacturing Area   
    RM_HR_INTEGRATION                       HR Integration of REM Backflush                                
    RM_LIST_PRODUCTION                      BAdI for Printing Production Settings                          
    RM_MF50_ROWS                            BAdI for Hiding Lines in the Planning Table                    
    RM_PERFORMANCE_DREQ                     Performance Improvement in New Distrib. of Dependent Reqmts

  • Enhancement COOM0001look for transaction

    Hi Experts,
    How will I know the transactions that triggered the enhancement COOM0001? Thanks!
    Best Regards,
    Jason

    Hi,
    Go to the enhancement..SMOD..Give the enhancement name..
    click the components of the enhancement..
    Then go to the function module exit..
    put a where used list and check in which program it is called..
    Thanks,
    Naren

  • FM/BAPI needed for transaction KP06

    Hi folks,
    I need a BAPI/FM for posting using tcode KP06. I am using layout 1-102 Activity Input. I am passing data to cost center, sender cost center and sender activity type group . I need a BAPI to perform its posting which can be seen on the overview screen where we click the 'Line Items' button.
    Please Help.
    Thanks in advance .
    Priyanka Ashtekar

    Didnt  get ur questions..
    be precise..
    Edited by: Manish hadiyel on May 27, 2008 7:47 AM

  • BAPI  needed for  transaction CU42

    hi,
    I want to change materials which are having single level BOM to mutilevel. could any body provide a BAPI to do that. i am having around 10000 materials.
    Regards ,
    Ramesh

    Didnt  get ur questions..
    be precise..
    Edited by: Manish hadiyel on May 27, 2008 7:47 AM

  • Exit/BADI/Enhancement for Payroll driver

    Dear Friends,
    When we run transaction pc00_m10_calc for US payroll driver for an employee for a period,we can see the renumeration statement in the output screen.
    I need to modify the internal table xrt to add the similar wage types in one period before it passes to form , which exit / BADI enhancement should for this purpose.
    Pls. advice.
    Thanks..
    Regards,Prashant

    Hi,
        Please check the below.
    Enhancement
    HRUSRCU0                                Enhancement for Customer Exit for RPCTRCU0.
    Business Add-in
    PC10_PAY0001                            User exit for base_wages in a gross up calculation
    PC10_PAY0002                            Exit to determine if negative taxables should be allowed
    PC10_PAY0003                            Exit to determine if distribution calc should be allowed
    PC10_PAY0004                            Work Tax Area Override Add-In: Activation
    PC10_PAY0005                            Work Tax Area Override Add-In: Default proration of wages
    PC10_PAY0006                            User exit for additional ESS W4 (PZ10) fields; before output
    PC10_PAY0007                            User exit for PZ10 and IT0210 fields; after input
    PC10_PAY0008                            More than 99 exemptions for US payroll withholding tax calc
    Regards,
    Srini.

  • Suitable User-Exit or BAdi for transaction VF01

    Hi
    Is there any User-Exit or BAdi available for Transaction VF01, in which following fields are available.
    Invoice Number -> BELNR
    FI Doc. Type -> BLART
    Inv Date -> BLDAT
    Year -> GJAHR
    Thanks

    the following program are the user exit for billing.
    we often use RV60AFZC and RV60AFZZ.
    RV60AFZA
    RV60AFZB
    RV60AFZC
    RV60AFZD
    RV60AFZZ
    RV60BFZA
    For Sales order
    Pricing, item addtion deletion
    MV45AFZZ
    First, I did not find documentation for the BADI either. But at the first glance the process of implementing it looks quite straightforward. I assume you run R/3 Enterprise (4.7). So, you should implement BADI 'BADI_SD_SALES' - this must be done in transaction SE19. In particular for the purpose of adding some additional items into sales document I would implement method SAVE_DOCUMENT_PREPARE. This method has changing table parameter FXVBAP of type VA_VBAPVB_T - it holds all the sales document items. Just add items of yours to it. Certainly, you have to fill all the appropriate fields carefully.
    Hope this helps somehow.
    In that case you should use USEREXIT_DOCUMENT_SAVE_PREPARE subroutine (form). As far as I remember it has no parameters. To add items to the sales document you should modify internal table XVBAP.
    regards
    vinod

  • Any BADI for transaction C223

    Hello,
    Is there any BADI/enhancement available for transaction C223 that can be implemented. I need to do some validations before I save the production version changes. I could find BADI - "<b>CPFX_SCREEN_SET</b>" for the transaction, but it seems it is internal to SAP. I understand that we cannot implement a BADI if it is internal to SAP. Please correct me if there is another way to do it?
    Would be grateful for your inputs!!
    Thanks.
    Warm regards,
    Yogesh

    Hi,
        Take a look at by weblog which talks about modifying the standard report. Pay close attention to the comments provided by the SAP Developers.
    /people/ravikumar.allampallam/blog/2005/12/05/need-a-way-to-change-appearance-of-a-standard-existing-alv-report
    However, the BADI mentioned in the blog is available only from WAS 640 and is generic for any standard ALV report.
    You cannot add fields to the report, unless the developer has been kind enough, or you can edit the structure used to define the field catalog can be edited to add more fields or include a CUSTOM structure
    Refer below link:
    https://forums.sdn.sap.com/click.jspa?searchID=4049078&messageID=1537328
    <b>Reward points</b>
    Regrds

Maybe you are looking for

  • Different GL accunts during GR for PO and GR for production order

    Hi For posting GR for PO and GR for Production order we use movement 101 only then how we can define or e different GL accounts for both the transactions ?

  • ENVY 17-j053ea recovery attempt failed

    Hi, I have a HP ENVY 17-j053ea which I had to purchase recovery discs for. I used the recovery discs several times following different instructions and using different BIOS settings, and have been in 3 different chats with HP but I am still getting a

  • Set Exchange Related Properties task gets rejected

    Hi All, During exchange account creation one of task 'Set Exchange Related Properties' is getting rejected with error ' incorrect information provided'. I have tried checking all the attributes in process forms but finding all proper. Create mailbox

  • Gray screen of death on third-gen iPad...

    I'm caught in a bit of a circle and am needing a little help re if/how to get out of it. Hoping the community here might be able to help - or confirm that I'm out of luck. My third-gen iPad gave me the gray screen of death this morning, while downloa

  • ODAC 11.2 Release 3 DevTools for VS installation problem

    Hi! I've got Windows 7 x64 and my problem is: I dowloaded ODAC 11.2 Release 3 (11.2.0.2.1) with Oracle Developer Tools for Visual Studio and i tried install with setup.exe after i unzipped package. I saw for 1 sec console with some text and that's al