BADI or Exit for CRMD_ORDER

Dear Friends
I need to add an input/output box (or text id) in CRMD_ORDER transaction - in Change Request Screen - in Reference block.
Could you please suggest me any BADI or EXIT?
Thank you very much. Full points will be rewarded for the helpful answers.
Regards
Ramani

Dear Friends
I need to add an input/output box (or text id) in CRMD_ORDER transaction - in Change Request Screen - in Reference block.
Could you please suggest me any BADI or EXIT?
Thank you very much. Full points will be rewarded for the helpful answers.
Regards
Ramani

Similar Messages

  • BADI / user exit for Tcode IW32?

    Hi
    Are there any BADIs  / user exits for changing component data in Transaction IW32 for a maintainance order?
    regards
    cs

    Enhancement                                                                               
    IWO10012                                Maintenance order: Priority handling on central header                                                                               
    Business Add-in                                                                               
    IWO_UI_USEFLEX                          BAdI for Calling Up an Alternative UI                  
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • BADI/User Exit for KO02

    Dear Experts,
    When I'm setting the BUDGETED status manually to Internal Order (With out distributing the Budget to Order in IM52) and after if I m setting RELEASE status the system is accepting. So, I want to stop this without giving the budget in IO, it should not accept to release IO.
    This is not possible with User Status, coz' User may go and set manually "REL" Status.
    can anyone suggest me the BAdi/User Exit for KO02(Internal Order Change) tcode.
    Thanks,
    Sanju.

    When you set a User status , you can assign an Authorization Object on who can change the status .
    Follow the path in SPRO--> Controlling --> Internal orders --> Order Master Data > Status Management> Define authorization Keys for Status Management
    Define Authorization Keys for Status Management
    In this step you define authorization keys which you can use to set up authorization checks when you manually set or delete a user status. When the system sets a user status as a reaction to business transaction, it does not perform an authorization check.
    When you set or delete a user status, the system checks whether the user is authorized for this action. In addition to the status profile and the object type, the system also checks the authorization key assigned to the user status in question.
    Example
    You want to define that certain user statuses can be changed only by a specified employee group.
    To do this, create an authorization key and assign it to the relevant user statuses.
    In the general authorization maintenance you can then assign authorizations for this key via the authorization object B_USERSTAT.
    Activities
    1. Check whether you want to define authorizations for your user statuses.
    2. If necessary, create authorization keys as follows:
    a) Choose "New entries".
    b) Enter a key and an explanatory text in the appropriate fields and choose "Save".
    You have now created the authorization key.
    3. Assign the authorization key to one or more user statuses in your status profile.
    4. Define corresponding authorizations and include them in the relevant authorization profiles.

  • BADI/ User Exit for transaction FTR_EDIT/FTR_CREATE initial screen

    Hi All,
    I want a BADI/User Exit for FTR_EDIT/FTR_CREATE transactions to validate company code and partner fields.
    please provide your suggestions.

    Hi,
    here is a coding example that I implemented in the BAdI FTR_TR_GENERIC. This coding is executed when the user press the check button. The method is EVT_TRANSACTION_CHECK. This example is checking the payment date dfaell if it is equal to the system date. If not then a message is sent to the message handler. Here is the code:
      DATA: faelligkeit TYPE d,
            faelligkeit_text type c length 10,
            meldungstext TYPE c LENGTH 100.
      FIELD-SYMBOLS: <it_source> LIKE LINE OF pi_proxy_transaction->a_tab_conditions.
      IF sy-uname = 'XYZ'.
    *    BREAK-POINT.
        READ TABLE pi_proxy_transaction->a_tab_conditions INDEX 1
          ASSIGNING <it_source>.
        faelligkeit = <it_source>-dfaell.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
           EXPORTING
             DATE_INTERNAL                  = faelligkeit
           IMPORTING
             DATE_EXTERNAL                  = faelligkeit_text
           EXCEPTIONS
             DATE_INTERNAL_IS_INVALID       = 1
             OTHERS                         = 2
        IF sy-subrc <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF faelligkeit <> sy-datum.
          CONCATENATE 'Fälligkeit' faelligkeit_text 'incorrect' INTO meldungstext separated by space.
          CALL METHOD pi_proxy_messages->set_message
            EXPORTING
              pi_message_id       = 'T0'
              pi_message_number   = '101'
              pi_message_severity = 'E'
              pi_message_var1     = meldungstext
            EXCEPTIONS
              OTHERS              = 4.
        ENDIF.
      ENDIF.
    It is not a really nice coding but it shows in a simple way how to use the BAdI.
    Regards
    Robert

  • BADI/ User Exit for transaction FTR_EDIT/FTR_CREATE

    Hi All,
    I want a BADI/User Exit for FTR_EDIT/FTR_CREATE transactions to validate company code and partner fields.

    Hi,
    here is a coding example that I implemented in the BAdI FTR_TR_GENERIC. This coding is executed when the user press the check button. The method is EVT_TRANSACTION_CHECK. This example is checking the payment date dfaell if it is equal to the system date. If not then a message is sent to the message handler. Here is the code:
      DATA: faelligkeit TYPE d,
            faelligkeit_text type c length 10,
            meldungstext TYPE c LENGTH 100.
      FIELD-SYMBOLS: <it_source> LIKE LINE OF pi_proxy_transaction->a_tab_conditions.
      IF sy-uname = 'XYZ'.
    *    BREAK-POINT.
        READ TABLE pi_proxy_transaction->a_tab_conditions INDEX 1
          ASSIGNING <it_source>.
        faelligkeit = <it_source>-dfaell.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
           EXPORTING
             DATE_INTERNAL                  = faelligkeit
           IMPORTING
             DATE_EXTERNAL                  = faelligkeit_text
           EXCEPTIONS
             DATE_INTERNAL_IS_INVALID       = 1
             OTHERS                         = 2
        IF sy-subrc <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF faelligkeit <> sy-datum.
          CONCATENATE 'Fälligkeit' faelligkeit_text 'incorrect' INTO meldungstext separated by space.
          CALL METHOD pi_proxy_messages->set_message
            EXPORTING
              pi_message_id       = 'T0'
              pi_message_number   = '101'
              pi_message_severity = 'E'
              pi_message_var1     = meldungstext
            EXCEPTIONS
              OTHERS              = 4.
        ENDIF.
      ENDIF.
    It is not a really nice coding but it shows in a simple way how to use the BAdI.
    Regards
    Robert

  • BADI/User Exit for custom table update from Delivery

    Hi
    Our requirement is to update a custom table with the delivery number and other related details when the picking status is changed to "C". Kindly suggest BADI/User exit for this requirement .
    Thanks in Advance for your immediate help .

    Hi Joseph,
    See SAP Note 415716 - User exits in delivery processing. It says when you have the document number available, what is permitted, what not, ....
    I hope this helps you
    Regards
    Eduardo

  • BADI / USER-EXIT FOR DEFAULTING THE FIELD VTTK-TNDR_ACTC IN TCODE VT01N

    Hi,
    I require a BADI / USER-EXIT for defaulting the field VTTK-TNDR_ACTC(Currency of Actual Shipment costs) to 'EUR' in transaction VT01N(Shipment Transaction) .
    Please could anyone help me with this .
    Regards,
    Sushanth H.S.

    Hi!
    User Exits in Transportation
    In Transportation, there are enhancements that you can use with transaction CMOD.
    For a detailed description of the individual enhancements, see the documentation on the individual enhancements or function modules in transaction SMOD.
    You can display all enhancements that are available for the area of transportation by choosing F4 in the Enhancement field. Enter V56* in the Enhancement field and choose Execute. Enter V54* to get a list of all enhancements for the area of shipment cost processing.
    Business Add-Ins in the transports
    Business add-ins (BADIs) are predefined user exits. They enable businesses, partners, and customers to add additional softward to the SAP source code. The linkup of SAP's New Dimension Products, such as APO and BW, to the standard system is thus possible.
    Customer-specific functions can be executed before the save time and after the database update.
    The following methods are available for the BADI with the definition name 'BADI_LE_SHIPMENT':
    AT_SAVE: BADI is called up at the time of the save. Checks and return to dialog are possible.
    BEFORE:_UPDATE: BADI is called up right before the data is saved to the database, that is, when all the data is available (for example, internal ly assigned shipment number).
    IN_UPDATE: BADI is called up after the database update.
    Standard Settings
    Creating a BADI method:
    Call up transaction SE19. Enter a name of your choice. Choose "create" and in the dialog box enter the definition name 'BADI_LE_SHIPMENT'. Afterwards, enter a short text for implementation. Save the BADI.
    On the tab page 'Interface', choose the method for implementation by double-clicking on it. Now you can enter your customer-specific program code. Save and activate the code. You can acess the transmission parameters entered in the BADI definition. With the method ***_AT_SAVE you can initiate the exception ERROR_WITH_MESSAGE (description 'An error message has occurred' ) if you wish to return to the dialog.
    Afterwards, go to the heading and activate the interface.
    Regards
    Tamá

  • Badi or Exit for changing subscreen in PO

    Hi Friends,
    Is there any Badi or Exit for changing shipping subscreen at item level for Purchase order.actualy my requirement is to supress all fields on shipping subscreen(Item Level) except route.How can I do it????
    Please help...

    MM06E005 - screen exits contains subscreen of PO header & Item
    AMPL0001 - this is a screen exits without field .
    use the first exit and check it.

  • BADI or EXIT for transaction F-28

    Hi !
    Can anyone tell me BADIs or EXITs for transaction F-28 ?
    Thanks in advance.
    Best regards,
    Dairo.

    Exit Name
    Description
    F050S001
    FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002
    FIDCC1: Change IDoc/do not send
    F050S003
    FIDCC2: Change IDoc/do not send
    F050S004
    FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
    F050S005
    FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
    F050S006
    FI Outgoing IDoc: Reset Clearing in FI Document
    F050S007
    FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001
    Balance Sheet Adjustment
    FARC0002
    Additional Checks for Archiving MM Vendor Master Data
    RFAVIS01
    Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00
    Line item display: Checking of selection conditions
    RFKORIEX
    Automatic correspondence
    SAPLF051
    Workflow for FI (pre-capture, release for payment)
    No of Exits:         13

  • BADI or Exit for MFBF Tcode

    Hi Experts,
    I need to do difference calculation in posting date and document date. I have made the code but not able to find exact BADI or exit for MFBF tcode.
    BADI i searched - RM_BFLUSH_GOODSMVT
    EXIT ???
    Please suggest, where I have to put below code so that when user put dates into this, then it will not allow him to get more than 7 days.
    data:  d_days like po347-scrdd,
         budat like mkpf-budat,
         bldat like mkpf-bldat.
    budat = rm61b-budat.
    bldat = rm61b-bldat.
    CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
      EXPORTING
        I_DATUM_BIS                   = budat
        I_DATUM_VON                   = bldat
       I_STGMETH                     = '2'
    IMPORTING
       E_TAGE                        = d_days
    if d_days > 7 .
      message 'date exceeds' type 'E'.
      elseif d_days < 0.
      message 'document date should be greater than posting date' type 'I'.
    endif.
    Please suggest experts,
    Thanks.
    Deepanshu

    Hi,
    Include - LBARMFS1
    FORM - FORM get_hr_data .
    Create a implicit enhancement in the beginning of above mentioned form FORM get_hr_data and put below code inside that.
    FORM get_hr_data.
    ENHANCEMENT 1 ZTEST_TEST.
    data:  d_days like po347-scrdd,
         budat like mkpf-budat,
         bldat like mkpf-bldat.
    budat = rm61b-budat.
    bldat = rm61b-bldat.
    CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
      EXPORTING
        I_DATUM_BIS                   = budat
        I_DATUM_VON                   = bldat
       I_STGMETH                     = '2'
    IMPORTING
       E_TAGE                        = d_days
    if d_days > 7 .
      message 'date exceeds' type 'E'.
      elseif d_days < 0.
      message 'document date should be greater than posting date' type 'I'.
    endif.
    ENDENHANCEMENT.
    BR,
    Vijay

  • BADI or Exits for Transaction FBL5N

    HI All,
    I want any BADI or Exits for transaction FBL5N.
    Please help me out asap.
    <<Text removed>>
    Thanks in advance.
    Regards,
    Seevangi
    Edited by: Matt on Jan 13, 2009 11:25 AM - do not offer points

    hi,
    There is one user exit available for this Transaction code:
    F1040001  Reserve for bad debt - calculate percentages
    BADI'S,
    Below Badis are available for the Tcode.
                                                                                    FI_ITEMS_MENUE01     Menu Enhancement                                            
    FI_ITEMS_MENUE02     Menu Enhancement                                            
    FI_TAX_BADI_015      RFUMSV00: Event "END-OF-SELECTION" before Data File Creation
    FI_TAX_BADI_016      RFUMSV00: Transfer of All Tax Data                                                                               
    if you require more details let me.
    regards,
    Dwaraka.

  • Any BADI or Exit for Tcode CAA1?

    Hi,
    I would like to know is there any exit or BADI for transaction - CAA1 ?
    I need to check whether contract Account category and Business partner type are matching (from custom table)  when we create contract account in CAA1 transaction.
    Please let me know if any one has idea..
    I tried using SMOD and some other procedure.. but I could not find any exit for this transaction.
    Thanks for ur time.
    Chris.

    Tons of BADIS:
    BUPA_DELETION                           Exit for Archiving/Deleting Business Partners                 
    BUPA_DO_NOT_CALL                        BP: Exit for Not Setting the FLG_NOUSE Flags in ADR2          
    BUPA_FURTHER_CHECKS                     Business Partner: Additional Checks                           
    BUPA_GENERAL_EXPORT                     SAP BP: BAdI for Export  of General Data for BP               
    BUPA_GENERAL_IMPORT                     BUPA_GENERAL_IMPORT                                           
    BUPA_GENERAL_UPDATE                     Business Partner General Data                                 
    BUPA_IDENT_UPDATE                       SAP BP: Identification Numbers                                
    BUPA_INDSEC_EXPORT                      SAP BP: Exports Industry Data                                 
    BUPA_INDSEC_IMPORT                      SAP BP: Imports Industry Data                                 
    BUPA_INDSEC_UPDATE                      SAP BP: Industry Code Data                                    
    BUPA_INTCOMP_EXPORT                     SAP BP:Exports Detailed Data for Rel.Type Investment in Firm  
    BUPA_INTCOMP_IMPORT                     SAP BP:Imports Detailed Data for Rel.Type Investment in Firm  
    BUPA_RELATSHP_UPDATE                    Business Partner Relationships                                
    BUPA_RELSHP_EXPORT                      SAP BP: Export of Managment Table of the BP Relationships     
    BUPA_RELSHP_IMPORT                      SAP BP: Import of Relationship Data - Management Table        
    BUPA_ROLES_UPDATE                       Business Partner Roles                                        
    BUPA_ROLE_EXPORT                        SAP BP: Exports Role Data                                     
    BUPA_ROLE_IMPORT                        SAP BP: BAdI for Import of Role Data                          
    BUPA_STATUS                             Business Partner: Exits for Status Management                 
    BUPR_FILTER_RELSHP                      When Reading,Filter Rel'ships using BUB_BUPR_BUT050_LM_READ   
    BUPR_FILTER_RELTYP                      Filter Relationship Types                                     
    PARTNER_UPDATE                          Business Partner                                              
    BUPA_DA_PREPARE                         Business Partner: Selection of Data to Be Deleted             
    BUPA_SAVE_CONTROL                       Establishing the Save Event for the BAPIs                     
    BDT_XCHNG_CREATE_SET                    Affects XCHNG Indicator When Creating                         
    BUPA_MASK_LIST_ITEM                     Masking the de-personalized fields of the protected BP        
    BUPA_SHLP_CONTROL                       BADI for F4 Help Event SELONE                                 
    BUPA_SHLP_AUTH_CHECK                    SAP BP - Exit for authorisation check                         
    BUPA_ADDR_EXPORT                        SAP BP: Exports Address References (BUT020) and Usages        
    BUPA_ADDR_IMPORT                        SAP BP: Imports Address References (BUT020) and Usages        
    BUPA_ADDR_UPDATE                        Business Partner Addresses                                    
    BUPA_ADRREL_EXPORT                      SAP BP: Exports Address References for Relationships          
    BUPA_ADRREL_IMPORT                      SAP BP: Imports Address References for Relationships          
    BUPA_APPLI_CHECK                        BDT: BAdI for Changing Activity Status of the Applications    
    BUPA_APPL_MNT_IMPORT                    SAP BP: Import Indicator for Exchange of Business Hours       
    BUPA_AUGRP                              SAP GP: Exit for Authorization Check   > B_BUPA_GRP           
    BUPA_BANK_EXPORT                        SAP BP: BAdI for Export of Checked Bank Data for BP           
    BUPA_BANK_IMPORT                        SAP BP: Import of Bank Data                                   
    BUPA_BANK_UPDATE                        Business Partner Bank Data                                    
    BUPA_CARDS_UPDATE                       Business Partner: Payment Cards                               
    BUPA_CCARD_EXPORT                       SAP BP: BAdI for Export of Payment Card Data                  
    BUPA_CCARD_IMPORT                       SAP BP: BAdI for Import of Payment Card Data for BP           
    BUPA_CENTR_CI_CHECK                     SAP BP: Check Data of the BUT000 CI Include                   
    BUPA_CONTPREL_EXPORT                    SAP BP: Exports Detailed Data for Contact Person Rel.        
    BUPA_CONTPREL_IMPORT                    SAP BP:Imports Detailed Data for Contact Person Relationship 
    Rob

  • BADI / User exit for Purchase order(ME21N) after saving the document

    Hi expert,
    I need the BADI / User exit for Purchase order(ME21N) after saving the document
    This is for email sending after create the purchase order so PO document number will be the import parameter
    pls help me
    point will be reward
    Regards,
    Ganesh

    Hi Ganesh,
    Could you please share your solution?
    Thanks.
    Hoops
    Edited by: Hoops on Jun 13, 2011 10:51 PM

  • Badi or Exit for ME35K

    Hi experts,
    I need find badi or exit for ME35k when saving. When the user select a document, click on button 'Cancel relase' and saving. Before saving I need to insert my code.
    Can you help me, please?
    Thank's.

    Hi experts,
    I need find badi or exit for ME35k when saving. When the user select a document, click on button 'Cancel relase' and saving. Before saving I need to insert my code.
    Can you help me, please?
    Thank's.

  • How to find all Badis and Exits for WS14000145

    Hi all:
          Could you please tell me how to get all the badis and exits for workflow WS14000145 ?
          Thank you very much!!!

    Hello,
    The main BADI corresponding to this workflow (N-step PO BDI workflow) is BBP_WFL_APPROV_BADI.
    Other BADI's whcih might be interesting to you are:
    BBP_WFL_SECUR_BADI --> to control the security level
    BBP_CHNG_AGNT_ALLOW --> To allow/disallow adding/changnig approvers
    BBP_CHNG_AGNT_GET --> Restrict the additional approvers to per-defined list
    Rgds,
    Prasanna

Maybe you are looking for