User exit-modified

HI,
1. how to find list of user exits for delivery/billing/excise invoice
2. is there any way to find user exists which are modified

Hi,
Fin some user exit's,
it may usefull for U.
User Exits For Billing
USEREXIT_NUMBER_RANGE (Module pool SAPLV60A, program RV60AFZZ)
The internal number range used in the standard system is specified in the billing type table and can be changed in this user exit. This user exit is only called when the billing documents is created.
USEREXIT_ACCOUNT_PREP_KOMKCV (Module pool SAPLV60A, program RV60AFZZ)
In this user exit additional fields for account determination that are not provided in the standard system are copied into communication structure KOMKCV (header fields).
USEREXIT_ACCOUNT_PREP_KOMPCV (Module pool SAPLV60A)
In this user exit additional fields for account determination that are not provided in the standard system are copied into communication structure KOMPCV (item fields).
USEREXIT_NUMBER_RANGE_INV_DATE (Module pool SAPLV60A, program RV60AFZC)
Depending on the number range, table TVFKD is used to set the billing date (country-specific requirments in Italy). USEREXIT_NUMBER_RANGE is automatically deactivated when this user exit is being applied.
USEREXIT_FILL_VBRK_VBRP (Module pool SAPLV60A, program RV60AFZC)
This user exit is only called when the billing document is created. It is used to provide the header and the item of the new billing document with deviating or additional data.
USEREXIT_PRINT_ITEM (Module pool SAPLV61A, program RV61AFZB)
Printing the item line of a billing document can be supplemented or changed.
USEREXIT_PRINT_HEAD (Modulpool SAPLV61A, Programm RV61AFZB)
Printing the header line of a billing document can be supplemented or changed.
User exits in program RV60AFZD
Short descriptions of the user exits are contained in the program:
USEREXIT_RELI_XVBPAK_AVBPAK
USEREXIT_NEWROLE_XVBPAK_AVBPAK
USEREXIT_NEWROLE_XVBPAP_AVBPAK
The following user exits are available in report SAPLV60B for transfer to accounting (function group V60B):
EXIT_SAPLV60B_001: Change the header data in the structure acchd
You can use this exit to influence the header information of the accounting document. For example, you can change the business transaction, "created on" date and time, the name of the person who created it or the transaction with which the document was created.
EXIT_SAPLV60B_002: Change the customer line ACCIT
You can use this exit to change the customer line in the accounting document. This exit is processed once the ACCIT structure is filled in with data from document header VBRK.
EXIT_SAPLV60B_003: Change the customer line in costing
The customer line is filled in differently for costing. You can use exit 003 to influence the ACCIT structure.
EXIT_SAPLV60B_004: Change a GL account item ACCIT You can add information to a GL account item (such as quantity specifications) with this exit.
EXIT_SAPLV60B_005: User exit for accruals
Once all relevant data for accruals was entered in the GL account item, you can add to this data with this exit.
EXIT_SAPLV60B_006: Change the control line ACCIT
You can use exit 006 to add information to the control line.
EXIT_SAPLV60B_007: Change the installment plan
You can use exit 007 to add information to the installment plan
parameters in the GL account item.
EXIT_SAPLV60B_008: Change the transfer structure ACCCR, ACCIT and ACCHD
After the accounting document is filled in with data, you can use exit 008 to change the document once again.
EXIT_SAPLV60B_010: Item table for customer lines
You can use exit 10 to influence the contents of customer lines before they are created.
EXIT_SAPLV60B_0011: Change the parameter for cash account determination or reconciliation account determination
You can use this exit to change inbound parameters in order to influence account determination.
User Exits For Lists
User Exits in Program RVKPR002 (Customer Expected Price)
RVKPRFZ1: This allows the list structure of individual fields to be filled on header and item levels.
RVKPRFZ2: This allows the sort sequence for the first issue of the list to be defined.
RVKPRFZ1: This allows you to deposit your own user codes.
RVKPRFZ1: This allows you to create your own list headings.
There are two additional user exits for listing sales documents, which
influence the way in which the communication structure is filled. These user exits do not affect the structure of the list but the way in which the data is transferred and how the new additional fields are filled.
CUSTOMER_FILL_1
CUSTOMER_FILL_2
Additional display fields for sales document lists
The SAP system contains user exits that you can employ for sales document and billing document lists. These user exits enable you to display extra document, address and status fields, or fields from user- specific tables. You can find these lists in the New fields for lists of sales and distribution documents IMG activity.
User Exits For Shipping
User exits have development class VMOD. You can find them in the system under:
Tools -> ABAP Workbench -> Object browser. Display VOMD.
I hope it's usefull for u.
Best regards,
venkataswamy.y

Similar Messages

  • How to find the list of all user exits modified by the users

    How to find the list of all user exits using by in R3

    Hi Mohamed
    You use Solution Manager to do the comparison for you.  There are some nice features that will highlight all your customised coding.  Have a look at the SolMan resources on the Support Portal e.g. using SolMan for upgrade comparisons.
    Rgards
    Carl.

  • User exit modify?

    hi experts,
    i have written user exit to extract the Unrestricted,blocked,quality inspection, stock in transfer by storage location wise.
    but my extractor is picking up only the first storage location and the corresponding keyfigure values.
    could you plz give me soluton to achive this.
    i need to extract the keyfigure values by material,plant and storage location wise.
    SELECT SINGLE * FROM MBEWH INTO MBEWH
               WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
               AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
               AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
               AND LFMON eq v_period
               AND LFGJA eq v_year.
            SELECT SINGLE * FROM MARDH INTO MARDH
               WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
               AND WERKS EQ WA_L_S_KKBW_XBEW_IS4-PLANT
               AND LFMON eq v_period
               AND LFGJA eq v_year.
            IF SY-SUBRC = 0.
              WA_L_S_KKBW_XBEW_IS4-ZZLBKUM = MBEWH-LBKUM .
              WA_L_S_KKBW_XBEW_IS4-ZZSALK3 = MBEWH-SALK3.
              WA_L_S_KKBW_XBEW_IS4-ZZLGORT = MARDH-LGORT.
              WA_L_S_KKBW_XBEW_IS4-ZZUNREST = MARDH-LABST.
              WA_L_S_KKBW_XBEW_IS4-ZZQUALITY = MARDH-INSME.
              WA_L_S_KKBW_XBEW_IS4-ZZBLOCKED = MARDH-SPEME.
              WA_L_S_KKBW_XBEW_IS4-ZZRETURNS = MARDH-RETME.
              WA_L_S_KKBW_XBEW_IS4-ZZSTOCKIT = MARDH-UMLME.
            ENDIF.
    regards
    vadlamudi

    hi mahesh,
    here is the code.
    to fetch the current stock data from mbew
    for current period
              SELECT SINGLE * FROM MBEW INTO MBEW
                 WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                 AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
                 AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                 AND LFMON eq v_period
                 AND LFGJA eq v_year.
              SELECT SINGLE * FROM MARD INTO MARD
               WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
               AND WERKS EQ WA_L_S_KKBW_XBEW_IS4-PLANT
               AND LFMON eq v_period
               AND LFGJA eq v_year.
              IF SY-SUBRC = 0.
                WA_L_S_KKBW_XBEW_IS4-ZZLBKUM = MBEW-LBKUM .
                WA_L_S_KKBW_XBEW_IS4-ZZSALK3 = MBEW-SALK3.
                WA_L_S_KKBW_XBEW_IS4-ZZLGORT = MARD-LGORT.
                WA_L_S_KKBW_XBEW_IS4-ZZUNREST = MARD-LABST.
                WA_L_S_KKBW_XBEW_IS4-ZZQUALITY = MARD-INSME.
                WA_L_S_KKBW_XBEW_IS4-ZZBLOCKED = MARD-SPEME.
                WA_L_S_KKBW_XBEW_IS4-ZZRETURNS = MARD-RETME.
                WA_L_S_KKBW_XBEW_IS4-ZZSTOCKIT = MARD-UMLME.
              ENDIF.
    for prev period stock
              if  p_year = zzyear.
                SELECT SINGLE * FROM MBEW INTO MBEW
                   WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                   AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
                   AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                   AND LFMON eq p_mon
                   AND LFGJA eq p_year.
                IF SY-SUBRC = 0.
                  WA_L_S_KKBW_XBEW_IS4-ZZOPENSTCK = MBEW-LBKUM .
                ENDIF.
              else.
                SELECT SINGLE * FROM MBEWH INTO MBEWH
                   WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                   AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
                   AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                   AND LFMON eq p_mon
                   AND LFGJA eq p_year.
                IF SY-SUBRC = 0.
                  WA_L_S_KKBW_XBEW_IS4-ZZOPENSTCK = MBEWH-LBKUM.
                ENDIF.
              endif.
            else.
    to fetch the history stock data from mbewh
    for current stock
              SELECT single * FROM MBEWH INTO MBEWH
                 WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                 AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
                 AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                 AND LFMON eq v_period
                 AND LFGJA eq v_year.
              SELECT * FROM MARDH INTO table it_MARDH
                 WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                 AND WERKS EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                 AND LFMON eq v_period
                 AND LFGJA eq v_year.
              IF SY-SUBRC = 0.
                loop at it_mardh into mardh.
                  WA_L_S_KKBW_XBEW_IS4-ZZLBKUM = MBEWH-LBKUM .
                  WA_L_S_KKBW_XBEW_IS4-ZZSALK3 = MBEWH-SALK3.
                  WA_L_S_KKBW_XBEW_IS4-ZZLGORT = MARDH-LGORT.
                  WA_L_S_KKBW_XBEW_IS4-ZZUNREST = MARDH-LABST.
                  WA_L_S_KKBW_XBEW_IS4-ZZQUALITY = MARDH-INSME.
                  WA_L_S_KKBW_XBEW_IS4-ZZBLOCKED = MARDH-SPEME.
                  WA_L_S_KKBW_XBEW_IS4-ZZRETURNS = MARDH-RETME.
                  WA_L_S_KKBW_XBEW_IS4-ZZSTOCKIT = MARDH-UMLME.
           ENDIF.
    *for prev period Unrestricted,quality,blocked stock
                  if  p_year = zzyear.
                    SELECT SINGLE * FROM MARD INTO MARD
                       WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                       AND WERKS EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                       AND LFMON eq p_mon
                       AND LFGJA eq p_year.
                    IF SY-SUBRC = 0.
                      WA_L_S_KKBW_XBEW_IS4-ZZUNRESTOP = MARD-LABST.
                      WA_L_S_KKBW_XBEW_IS4-ZZBLOCKOP = MARD-SPEME.
                      WA_L_S_KKBW_XBEW_IS4-ZZQUALOP = MARD-INSME.
                      WA_L_S_KKBW_XBEW_IS4-ZZRETOP = MARD-RETME.
                      WA_L_S_KKBW_XBEW_IS4-ZZSTCKOP = MARD-UMLME.
                    ENDIF.
                  else.
                    SELECT * FROM MARDH INTO table it_MARDH
                       WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                       AND WERKS EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                       AND LFMON eq p_mon
                       AND LFGJA eq p_year.
                    IF SY-SUBRC = 0.
                      loop at it_mardh into mardh.
                        WA_L_S_KKBW_XBEW_IS4-ZZUNRESTOP = MARDH-LABST.
                        WA_L_S_KKBW_XBEW_IS4-ZZBLOCKOP = MARDH-SPEME.
                        WA_L_S_KKBW_XBEW_IS4-ZZQUALOP = MARDH-INSME.
                        WA_L_S_KKBW_XBEW_IS4-ZZRETOP = MARDH-RETME.
                        WA_L_S_KKBW_XBEW_IS4-ZZSTCKOP = MARDH-UMLME.
                      endloop.
                    ENDIF.
                  endif.
    for prev period stock
                  SELECT single * FROM MBEWH INTO  MBEWH
                     WHERE MATNR EQ WA_L_S_KKBW_XBEW_IS4-MATERIAL
                     AND BKLAS EQ WA_L_S_KKBW_XBEW_IS4-VAL_CLASS
                     AND BWKEY EQ WA_L_S_KKBW_XBEW_IS4-PLANT
                     AND LFMON eq p_mon
                     AND LFGJA eq p_year.
                  IF SY-SUBRC = 0.
                    WA_L_S_KKBW_XBEW_IS4-ZZOPENSTCK = MBEWH-LBKUM .
                  ENDIF.
                endloop.
              endif.
    regards
    vadlamudi

  • User Exit/BADI to modify MCHA-HSDAT while saving a process order

    Dear all,
    I would like to know if there are any user-exits or BADI's to modify MCHA-HSDAT field, while saving process order.
    Scenario: There are two material types ZBUL and ZFDF. After releasing the process order and when I save, an entry in MCHA table for material with material type ZFDF is created.I should make a check if MCHA-HSDAT of this ZFDF material is equal to MCHA-HSDAT of ZBUL.
    If not, I should replace MCHA-HSDAT of ZFDF material with the HSDAT of ZBUL material.
    I have checked user exits 'PPCO0007' and PPCO0014 and PPCO0020 but I could not find MCHA structure to update.
    Do, I need to create an implicit enhancement for this?
    Thanks in advance!
    Aravind

    Aravind,
    Do the following steps in order to find the best exit for you.
    for e.g. using enhancemnt PPCO0020 FM EXIT_SAPLCOKO_005. Use the "Where used list" to get the point where this FM has been called. So in this case you can use "(SAPLCOKO)MCHA" as field symbol.
    Any question, let me know.
    Alex

  • IW31 - User Exit or BADI for modifying Fund

    Hi,
    Would you know any user exit or BADI  in IW31 I Work Order Create) Transaction , to Modify Fund based during creation ?
    I am looking for User Exit or BADI  that could modift fund with my Logic, During SAVE "or" when ever user clicks on Menu GOTO-> Assignments -> Funds Management "or" when use enetrs Functional Location/ Equipment in main Screen ?
    Any Help really appricated. Thanks in Advance.

    hi
    this is the only exit for iw31..
    Transaction Code - IW31                     Create Order
    Exit Name           Description
    IWO10012            Maintenance order: Priority handling on central header
    To search for a badi, go to se 24 display <b>class cl_exithandler.</b>
    double click on method get_instance, get a break point on case statement.
    execute and start the required transaction in new session.
    look for variable <b>exit_name.</b> It would show the available badi's.
    Please do reward if useful
    Regards
    Swati

  • Badi or user exit for FTR_CREATE for modifying the Payment Details

    Hi,
    I need a Badi or user exit that will modify the internal table for the "Payment Details" in transaction FTR_CREATE. Basically, instead of using the default entries in the "Payment Details", data from a Z custom table will overwrite the "Payment details" or the internal table containing the "Payment details". This should create entries in the Transparent Table VTBZV with the values fron the Z custom table.
    I'm trying to implement the BADI FTR_TR_GENERIC but I cannot find where and how to modify the original "Payment Details" entries. Or if its even possible to do this.

    Hi Ravi,
    I was trying to do that but I am not sure were to start. I tried to modify the contents of PI_PROXY_TRANSACTION->A_TAB_CASHFLOW using MODIFY <itab> but an error occured when I tried to activate it saying that the Class/Interdace Attribute is read-only and cannot be modified. Is there a Method that I need to do in order to modify the Attribute? (I'm not that familiar yet with Classes and Methods though)
    Also, just to test, I manually changed the contents of two internal tables containing the "Payment Details" data during debug mode. But after the program has ended its run and finally saved the data, the Table VTBZV was not updated with the manual data I introduced. So I'm not sure if the Badi FTR_TR_GENERIC (which is I'm implementing) really allows the "Payment Details" to be modified or if I'm modifying the correct internal table(s).

  • Modify a value of a field in dynpro, from a User-Exit

    Hi guys, i have a problem and i wish you can help me.
    In transaction IW32, I am using EXIT_SAPLCOIH_002 to generate a stock transfer order with BAPI_PO_CREATE1. Once this bapi is used, it gives me the number of the document created.
    I need to put this number in the field PMSDO-BSTKD (Customer purchase order number) of the dynpro.
    First, i tried to modify directly the database (from table pmsdo), but naturally, the dynpro is not updated and when i save the document, it overwrites with a blank value.
    Then I tried to use a field symbol directly to the variable of the program of the dynpro, like this:
    FIELD-SYMBOLS: <rv_bstkd> TYPE pmsdo-bstkd.
        ASSIGN ('(SAPLCOI3)PMSDO-BSTKD') TO <rv_bstkd>.
        <rv_bstkd> = ls_return-message_v2.
    But its has no effect in the screen.
    Lastly, i tried to use two FM C14Z_DYNP_WRITE_FIELD and C14Z_DYNP_READ_FIELD
    With the "READ" one, I can read the value on the screen. Then with the "WRITE" one, i can write a new value. (that i can, once again, read it, with the new value!). But when I exit the user exit and return to view the screen, the field is still in blank (or with the previous value).
    Any, Ideas? I would be grateful for any suggestions.
    Thanks in advance.

    Hi Jguerra,
    Please try FM 'IQS1_FILL_WA_FROM_BUFFER'.
    Please see a sample code, am not sure about it, but i just give a try.
    data: Lv_VIQMEL like VIQMEL.
    CALL FUNCTION 'IQS1_FILL_WA_FROM_BUFFER'
           EXPORTING
                I_QMNUM        = CAUFVD_IMP-QMNUM
                I_AKTYP        = 'V'
           IMPORTING
                E_VIQMEL       = Lv_VIQMEL
           EXCEPTIONS
                NUMBER_INITIAL = 1
                OTHERS         = 2.
    check sy-subrc = 0.
    if Lv_VIQMEL-MSAUS is initial.
        move 'X' to NO_RELEASE.
    endif.
    Regards,
    Antony Thomas

  • Is there a user exit to modify PO line item level..

    Dear Friends,
    Is there a user exit to modify PO line item level..
    Ravi

    Hi...I'm not sure on any available customer exits for this purpose. However you can use the check function exit 'EXIT_SAPMM06E_012' of customer exit MM06E005 and using memory pointers you can change the item level data.
    The other option is to use BADI ME_PROCESS_PO_CUST's method PROCESS_ITEM to change the item level value. I would prefer the BADI rather than the customer exit.. Hope it works..
    Thanks,
    Jude

  • User Exit for FF68 to modify the bank deposit slip

    Hi ,
    I am searching for a user exit on FF68-to modify the bank deposit slip.
    Users want to print the cheque deposit slip grouped by the bank/branch and the cheque number.
    currently it is not grouping them even they have the same cheque number
    i am a bit new to enhancements, and user exists
    I searched the cmod and vmod but could not find smthing useful
    Can you please help?
    Thank you

    hi Shailaja
    thank you very much for your help
    i checked it via smod
    It says Transfer Additional Data in Finnish TITO Format.
    do you know what steps to follow to make the change?
    i am new to this
    as far i read i need to change this exit -change the table
    but how to link this with the code?
    does the ff68 knows that exit already?

  • Badi or User exit to modify MSEG data during Goods issue

    Hello,
    I have a requirement to modify the field plant MSEG-WERKS while doing goods issue of outbound delivery via transactiona VL02N.
    Can anybody suggest me which BADI or user exit should i use.I have searched the SDN and all the previous threads on this haven't yeild any solution for this.
    I have tried with below listed Badis and enhancements which wont work.
    Badi
    ===================
    MB_DOCUMENT_BADI
    MB_MIGO_BADI
    LE_SHP_GOODSMOVEMENT
    DELIVERY_PUBLISH
    Enhancements
    ===============
    MB_CF001
    MBCF0005
    Thanks and Regards,
    Koustubh

    Hi,
    I am facing a similar issue of updating the MSEG-DMBTR field when Post Goods reciept is done in VL02n.
    I hav tried to update the value in LE_SHP_GOODSMOVEMENT BADI and tried to modify the structure .
    eg in this way
    method IF_EX_LE_SHP_GOODSMOVEMENT~CHANGE_INPUT_HEADER_AND_ITEMS.
    data: wa1 type LINE OF shp_imsegvb_t. "IMSEGVB.
    DATA: flag TYPE c.
    LOOP at CT_XIMSEG INTO wa1.
      wa1-dmbtr = '12345'.
    MODIFY CT_XIMSEG FROM wa1.
    " TRANSPORTING dmbtr.
    flag = 'x'.
    ENDLOOP.
    endif.
    endmethod.
    The value gets updated in the structure but when the material document gets created then the table MSEG has the amount DMBTR field not changed.
    Also, I tried doing the updation in the Function eXit : EXIT_SAPMM07M_001 by the method mentioned in different threads:
    betweeb statemnet if  sy-tcode = 'VL02n'
    FIELD-SYMBOLS: <DMBTR> TYPE any,
    <DMBTR1> TYPE any.
    ASSIGN '(SAPMM07M)MSEG-DMBTR' TO <DMBTR>.
    assign (<DMBTR>) to <DMBTR1>.
    But still on save of the material document in MSEG I cannot find the new DMBTR field value.
    Kindly help me on this, urgently required. I have already gone through the number of threads in the forum, but no solution.

  • User exit to modify FI Tcode FD02 Application toolbar

    HI GURU,
    currently i am working on a migration project. we are migrate to ERP 6.0 from R3
    after migration, one of the button that customize by previous consultant is disappaeared.
    i want to know is there any way to modify FI Tcode FD02(change customer: ) Application toolbar, what i need to do is add a button that next to standard button(General Data / Company code Data)
    many thx
    HOWARD

    Hello Howard,
    I seem to have found a user exit in the transaction FD02, its : SAPMF02D. Hope this works for you.
    Regards,
    Manish.

  • VA01 user-exit to modify net price of line item...

    Hello Experts,
    Is there a user-exit to modify the net price value of a line item upon 'ENTERING' in
    VA01 transaction?
    Hope you can help me guys. Thank you and take care!

    Hi,
    The user exits and badis for va01 tcode:
    Enhancement/ Business Add-in Description
    Enhancement
    V45L0001
    SD component supplier processing (customer enhancements)
    V45E0002
    Data transfer in procurement elements (PRreq., assembly)
    V45E0001
    Update the purchase order from the sales order
    V45A0004
    Copy packing proposal
    V45A0003
    Collector for customer function modulpool MV45A
    V45A0002
    Predefine sold-to party in sales document
    V45A0001
    Determine alternative articles for product selection
    SDTRM001
    Reschedule schedule lines without a new ATP check
    V60F0001
    SD Billing plan (customer enhancement) diff. to billing plan
    V46H0001
    SD Customer functions for resource-related billing
    V45W0001
    SD Service Management: Forward Contract Data to Item
    V45S0004
    Effectivity type in sales order
    V45S0003
    RP-relevance for incomplete configuration
    V45S0001
    Update sales document from configuration
    V45P0001
    SD customer function for cross-company code sales
    Business Add-in
    BADI_SD_SCH_GETWAGFZ
    Scheduling Agreement: Read WAGFZ from S073
    BADI_SD_V46H0001
    SD Customer functions for resource-related billing
    Pls. reward if useful...

  • User Exit / BADI to Modify EKPV-TRAGR in Purchase Order Creation ME21N/ME59

    Hi,
    I have a requirement to modify the Transportation Group (EKPV-TRAGR) on creation of Purchase Order. Can you please suggest me a suitable User Exit of BADI to accomplish this Task?
    Thanks,
    Kannan

    hi ,
    here are the list of user exits for ME21n.
    AMPL0001
    User subscreen for additional data on AMPL
    LMEDR001
    Enhancements to print program
    LMELA002
    Adopt batch no. from shipping notification when posting a GR
    LMELA010
    Inbound shipping notification: Transfer item data from IDOC
    LMEQR001
    User exit for source determination
    M06B0001
    Role determination for purchase requisition release
    M06B0002
    Changes to comm. structure for purchase requisition release
    M06B0003
    Number range and document number
    M06B0004
    Number range and document number
    M06B0005
    Changes to comm. structure for overall release of requisn.
    M06E0004
    Changes to communication structure for release purch. doc.
    M06E0005
    Role determination for release of purchasing documents
    ME590001
    Grouping of requsitions for PO split in ME59
    MEETA001
    Define schedule line type (backlog, immed. req., preview)
    MEFLD004
    Determine earliest delivery date f. check w. GR (only PO)
    MELAB001
    Gen. forecast delivery schedules: Transfer schedule implem.
    MEVME001
    WE default quantity calc. and over/ underdelivery tolerance
    MM06E001
    User exits for EDI inbound and outbound purchasing documents
    MM06E003
    Number range and document number
    MM06E004
    Control import data screens in purchase order
    MM06E005
    Customer fields in purchasing document
    MM06E007
    Change document for requisitions upon conversion into PO
    MM06E008
    Monitoring of contr. target value in case of release orders
    MM06E009
    Relevant texts for "Texts exist" indicator
    MM06E010
    Field selection for vendor address
    MMAL0001
    ALE source list distribution: Outbound processing
    MMAL0002
    ALE source list distribution: Inbound processing
    MMAL0003
    ALE purcasing info record distribution: Outbound processing
    MMAL0004
    ALE purchasing info record distribution: Inbound processing
    MMDA0001
    Default delivery addresses
    MMFAB001
    User exit for generation of release order
    MRFLB001
    Control Items in Release Creation
    regards
    Satyam

  • User exit to modify sales order pricing condition

    Hi Experts,
    I need ot modify Sales Order Header Condition (ZFRH), Condition Value (KWERT) for Transaction VA01 & VA02
    I agree there are many user exits which will modify XKOMV-KWERT structure and can populate what ever value we insert.
    But the value we insert is inserting into line item condition and the total of all line items is populating in Header .
    I need to modify only Header condition without populating Line items
    Thanks ,
    Basheer .

    Hi:
    Program : MV45AFZZ
    search for USEREXIT_NUMBER_RANGE.
    BR,
    Manthana

  • User-exit or BADI for transaction MRRL to modify FI

    Hello,
    I need to find user-exit or BADI to modify the exchange rate when we execute MRRL transaction.
    I already try user-exit MRMH0001 (Logistics Invoice Verification: ERS procedure), but it didn't work.
    Thanks for any help.
    regards
    Zbigniew

    Following are the available suer exits provided by SAP. Try if any of these helps -
    Exit Name           Description                                                                               
    LMR1M001            User exits in Logistics Invoice Verification                       
    LMR1M002            Account grouping for GR/IR account maintenance                     
    LMR1M003            Number assignment in Logistics Invoice Verification                
    LMR1M004            Logistics Invoice Verification: item text for follow-on docs       
    MRMH0001            Logistics Invoice Verification: ERS procedure                      
    MRMH0002            Logistics Invoice Verification: EDI inbound                        
    MRMH0003            Logistics Invoice Verification: Revaluation/RAP                    
    MRMN0001            Message output and creation: Logistics Invoice Verification

Maybe you are looking for

  • Creating box for margins

    I purchased Dreamweaver CS3 The Missing Manual and I'm learning the basics of this program. When I went through the steps in the book the first time I very easily created a margin around my page so that there is a white area where my page is and my b

  • Detailed expenses posted of an internal order number

    Dear, I would like to see the detailed expenses of an internal order number that was posted. What T-Code that i can use? Thank you.....

  • Xorg-server 1.2.0-3 + nvidia = 800x600 only?

    Hello, I've just upgraded xorg-server to 1.2.0-3 version and I am not able to run X in 1024x768 resolution using nvidia driver. The resolution looks like 800x600. If I use nv drive it runs normaly in 1024x768. I use an old TNT Riva2 video card. Is th

  • How do I re-size all rows evenly? I'm using the ios version of Numbers.

    With the new upgrade yesterday it made all of my rows smaller and I'd like to make them all the same size but can't see a way to do that unless I go through every row and drag it but then they're not even.  Any ideas or has this not been implemented

  • Will a 7200rpm hard drive overheat my DV9009 computer?

    I have a DV 9009 us computer.  After reading the post on upgrading a hard drive I couldn't find the answer to this question.  I'd like to upgrade from a 5200rpm HD to a 7200rpm HD but I'm not sure the computer can handle it.  I'm afraid of overheatin