I have implemted badi  for adding tab vl01 t.code?

Hi abapers,
I have implemented badi  for adding tab vl01 t.code?But additional tab is not appearing in vl01?

Hi,
I found something similar.hope it helps.
lets say u have to add fields to standard table  EKPO.
U can add a customer field in a standard table only for those standard table which has given the provision for adding fields .
Go to se11 and check out the table. there u will have CI_EKPODB  . "CI " stands for custom include.
i u can add my field.
Read the following----
To add the customer field :
Go to SE11 --> EKPO -->Display --> then doube click the data element "CI_EKPODB"... it will ask whether u want to create a field ...press YES and then continue with adding the field.. "ZZPAYMENT" in that ...
Creating the field in the table:
Give the name of the componenet "ZZPAYMENT" and the related data element (if the field "ZZPAYMENT" is of type CHAR give the data element as "CHAR" and give the needed length of the field say (15)...... then save and activate ur table........ it will show some warnings .... (ignore that) now ur table with the customer field will be ready
Hope this helps u out.
regards,
Hari Kiran

Similar Messages

  • Implementing Badi for additional tab page & creating views in cProjects 3.1

    Hi,
    I am implementing DPR_ADD_SAP_TAB_I for adding new tab page in Cprojects 3.1.
    Please tell me whether we have to create any veiw?
    if it is please tell me the procedure & steps

    Hi...
    Implement the BAdI DPR_ADD_SAP_TAB_I
    and write following code in its method GET_ADD_TAB_DATA
    method IF_EX_DPR_ADD_SAP_TAB_I~GET_ADD_TAB_DATA .
      field-symbols: <tab_data> type DPR_TS_SAP_TAB_CTRL.
      data: lt_tab_data type DPR_TT_SAP_TAB_CTRL.
      constants: lc_pre_ctrl   type string value 'CTRL_TAB_',
                         lc_suff_ctrl  type string value '.DO'.
      lt_tab_data = ct_comp_ctrl.
      loop at lt_tab_data assigning <tab_data>.
        case <tab_data>-obj_type.
       project definition
          when CL_DPR_CO=>SC_OT_PROJECT.
            <tab_data>-tab_title = 'otr(zotr_cust_txt/proj_txt)'.
            concatenate lc_pre_ctrl CL_DPR_CO=>SC_OT_PROJECT lc_suff_ctrl
    into <tab_data>-controller.
        endcase.
      endloop.
      ct_comp_ctrl = lt_tab_data.
      EV_BSP_APPL = 'CST_ADD'.
    endmethod.
    Regards,
    Reema.

  • VA01 Badi for extra tabs- overview screen

    Hi experts,
    I am looking into adding tabs on the Sales Order screen for custom fields. I have read about implmenting the Badis BADI_SLS_ITEM_SCR_CUS and BADI_SLS_HEAD_SCR_CUS, but his seems to only allow a tab in th Item view or the Header view, but not the Overview screen. I have also seen the Badis BADI_SD_TAB_CUST_H and BADI_SD_TAB_CUST_I, but they are kernal Badis that I have not been able to implement. Is there a way to add a custom tab on the Overview screen, not just the Item and Header screens?
    Any help is appreciated, thanks.

    Hi Nilesh,
    in our ECC600 system I found the implementation /DSD/CL_IM_RP_SHPMNT_EXT. Please have a look at the methods implementation, this may provide a solution for you.
    You can also check the customizing IMG. For sales and distributuion you can find a lot of text documents explaining customer extensions.
    Kind regards
    Clemens

  • Implementing 2 Badis for adding new internal follow-up actions and saving

    Hi Guys
    I would like assistance with the implementations of two badis in EMW.  The one badi is called /SCWM/IF_EX_QFU and is used for adding new internal follow-up actions and the second badi is called /SCWM/EX_QFU_SAVE and is used for saving the new follow-up actions that that have been created.
    Regards
    Maud

    Hi Guys
    I would like assistance with the implementations of two badis in EMW.  The one badi is called /SCWM/IF_EX_QFU and is used for adding new internal follow-up actions and the second badi is called /SCWM/EX_QFU_SAVE and is used for saving the new follow-up actions that that have been created.
    Regards
    Maud

  • Userexit or BADI for adding additional tab in MIGO screen.

    Hi all ,
       Kindly tell me as to which exit or BADI is used to add additional tab in MIGO header.
    Regards

    Hi,
    Create a program with the screen type sub-screen in SE80 and design the layout for the custom fields.
    Declare the custom fields in a Z**TOP include.
    Under the PBO method declare the program name and screen number
    Under PAI method declare the field to u2018Xu2019.
    Under the line modify method declare a flag and set to u2018Xu2019 checking for material document number by which we can set the fields to be in display mode when we open MIGO for display of material document created after doing goods receipt.
    Under the POST_DOCUMENT method write the code for appending the value to Z table along with the values of the line item (In this case production order number, material, u2026u2026.). For these values to be available here in this method use the memory concept u201CExport to memory idu201D in the method LINE_MODIFY. 
    In order to do any validations to the custom fields, go to transaction SE80 and mention the program Name created and in PROCESS ON VALUE_REQUEST create a module and provide the validations required for those custom Fields.
    In order to make the fields to be in display mode during the display of material document, create a module under PBO and import the flag value and the production order number details in the method LINE_MODIFY and if that flag = u2018Xu2019, use  
    LOOP AT SCREEN.
    IF SCREEN-NAME = 'ZZGBAGS'.
    SCREEN-INPUT = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.Retrieve the values from the Z table matching the key field (production order number) and pass the value of the custom field on to the screen.

  • BADI for PRODUCT tab in CRM_MKTPL

    Hi,
    we have to control the entered products and maybe delete after this check in Product tab in transaction <b>CRM_MKTPL</b> - trade promotion.
    I need a BADI when the products are entered in this tab. I find the badi definitions like <b>PRODUCT_ID_R3_ADJUST</b>,  <b>COM_PRD_ECM_ACTIVE</b>, <b>COM_PRODUCT_ADD_DATA</b> but implementation can't created for these definitions, the error message returned like this <b>"BAdI definition COM_PRODUCT_ADD_DATA is only provided for SAP internal use"</b>.
    Is there any BADI that controls the entered products? Or is there any other way to control the products??
    I need an urgent help

    yes..you can use  above Badi..
    check this thread for sample..
    Re: New tab and it's updation in VL31n

  • Required help for badi for GL tab in MIRO transaction

    Hi,
    I am working in MIRO transaction.
    I am having a requirement as below:
    While creating invoices, In the gl tab when we enter gl account number system should populate Tax jurisdiction code by default.
    I am using BADI EXTENSION_US_TAXES method MM_ITEM_TAX_MODIFY but it populates the tax jurisdiction in PO reference tab not in GL tab.
    Please advice
    Regards,
    Suvarna Nandi

    Hi
    Have you tried with enhancement FYTX0002? See also Note 302998 - Collecting fields for user-exit. It's an idea.
    I hope this helps you
    Regards
    Eduardo

  • User-exit/BADI for version tab in ME22N

    Dear Friends,
    I have a requirement pertaining to user exit/BADI.
    In ME22n in version tab when ever we change any data of PO the Version Completed check box should be checked.
    Please let me know about the User Exit to be used and few lines of Pseudo code to proceed further.
    Thanks,
    Anshul

    Dear Dave,
    Check any enhancement Point is available to inlcude your logic in that place.
    With Regards,
    Selvan.M

  • Screen exit/BADI for adding custom field in IW31/IW32

    Hi all,
    The requirement is to add the permit field in the Header component of IW31. Searched SDN and found user exit IWO10018 for the same which includes a screen exit.
    The activation of the same is adding a tab in the screen while user wants the field under header Component tab.
    How this can be done. Any suggestion.
    Thanks
    anya

    Hi,
      You can perform append structure to add your custom field(s)in VBAP table. Next step, go to SE51 (Screen Painter)to modify SAP Program SAPMV45A Screen number 4459 for Additional data A or Screen number 8459 for Additional data B to add your append structure custom fields.
    Once the above steps done, you can place your logic to populate custom fields in include program MV45AFZZ. i.e USEREXIT_MOVE_FIELD_TO_VBAP.
    At the end, please ensure all program and screen are activated. Hope this will help.
    Regards
    Kiran Sure

  • XRPM: Need to find the BADI for adding custom fields to  master data

    Hi,
      We have activated XRPM(4.0) business content and need to add some custom fields to some of the master data ( for example need to add custom fields to master data info object 0RPM_IHGU, 0RPM_IGCG etc).
      We have enhanced the data sources ( 0RPM_ITEM_HEADER_GUID_ATTR and 0RPM_FIN_CAT_GUID_ATTR respectively) in the source system  by appending additional fields to the append structure of the data source We are trying to find the BADI where we can implement the custom code.
      Can anybody help to find the particular BADI, id there one for all master data carrying data source in the xRPM source system?
      Thanks

    Dear Arunava,
    1) In your R3 goto  SE16 --> open table ROOSOURCE.
       Search for your OLTP source...eg: 0RPM*
       The column  EXTRACTOR will give you the module name.
    2) Also look/follow the link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9f668696-0701-0010-22be-a278e4587b68
    Currently available BAdIs include:
    RPM_BUPA_CUST_FIELDS BUPA customer fields
    RPM_CALC_BUPA_BPFTE Calculate the business partner availability
    RPM_CALC_STAFF_ICON calculate the staffing icon
    RPM_CREATEUSR_NAME Generates user names
    RPM_HR_IN_IF001 Customer exit for inbound time processing
    RPM_HR_IN_IF002
    RPM_HR_IN_IF003
    RPM_HR_IN_IF004
    RPM_HR_IN_IF005
    RPM_HR_IN_IF006
    RPM_INTEGRATION_OPTS get and set the project integration options
    /RPM/OBJECT_SERVICES Object support services
    /RPM/PERSON_CUST_FLD Resource customer fields
    RPM_PROCESS_DATA Inbound processing of time data by customer
    Good Luck, BB

  • BADI for adding new approver for PO

    Hi All,
      I want to add new approver for PO but with some restrictions. Could any one give me the BADI ddetails?
    Regards,
    Bhushan V

    Hello Shiva,
    Hope you may find this useful for your scenario.
    Allow Changes to Approvers
    Use
    You can use the Business Add-In (<DS:GLOS.5C733369F735D311AE620060B03C9BBE>BAdI) BBP_CHNG_AGNT_ALLOW to activate and deactivate the adding/changing of reviewers in the workflow approval preview.
    (The appropriate pushbuttons are then shown or hidden on the user interface.)
    Activities
    To do this, implement the method AUTHORISE_FOR_CHANGE in the BAdI.
    Example
    METHOD if_ex_bbp_chng_agnt_allow~authorise_for_change.
      IF sy-uname EQ 'EMPLOYEE4'.
        ev_add_buttons_disabled = 'X'.
      ENDIF.
    ENDMETHOD.
    This example implementation makes the buttons for changing or adding approvers and reviewers inactive for the user EMPLOYEE4.
    Please Reward FULL points for useful answer.
    BR,
    -Ashwin.

  • BADI for adding subcontract quantity while running MRP

    Dear All,
    Here we have developed a BADI which will collect subcontract data and add to the stock and show in MD04 Transaction.
    For this in development server we had developed BADI It is working fine in development server. But same thing we have ported into production server ,BADI
    also in activation mode in production server but still it is not working ..
    please help me to solve this.
    Reards,
    Kumar.

    this is not the way SAPs MRP run works.
    Where is the benefit for this?
    the requisitions are not even split into header and item table, it is just one table EBAN, and either way you would get exact the same number of records in EBAN.

  • User Exit or BADI for Operation tab of IW32 Transaction

    Hi All,
    Currently I am working on the transaction IW32. I am looking for a user exit or BADI which can trace the item level changed data for operations.
    Thanks in advance.
    Regards,
    Rajesh

    hi,
    User Exit IWO10012.
    BADi's
    IWO1_ORDER_BADI
    IWO1_PREQ_BADI
    IWO1_SCREEN_MODIFY
    Hope this helps
    Regards,
    Shashank

  • If I only have one window with no tabs, how do I remove the tab label at the top of the window?

    Ok, I open a window to my home page. At the top left of the window I have the Firefox icon and next to it the name of the page I'm on. Below that is the menu bar which I use enough to leave it there. And now below that, with no other tabs open, is a tab lable/tab strip/whatever with the Firefox icon and next to it the name of the page I'm on. Below that is the url/address bar which also is usually showing the name of the page I'm on.
    I like a clean screen with as little clutter as possible. I usually know what page/window I'm on because I'm the one who got me there. I don't need an additional tab strip for a window that has no tabs open taking up more space and telling me what I already know.
    If I could drop the Firefox icon wasting that entire top portion of my screen that would be great, but I'm sure that isn't an option.
    If I could put that menu bar on the same line as the address bar I'd be in efficiently used space heaven! But I'm also pretty sure that's not going to happen either.
    This new tab strip/tab label though, I know doesn't need to be there because it never was before until I opened a new tab and then logically would have a use for the tabs.
    But, since I don't like it and I want it gone, I'm presuming that means that it's new because some person or persons thought redundancy is fun and there is no option to remove it either.
    Can anyone educate me in any areas where my ignorance is causing me to suffer here? Give me back my inch at the top of my screen and I promise to not ask for a mile!
    Thanks to anyone who can/will assist me.
    Much Peace

    With Firefox 23 and TabMixPlus 0.4.1.0 installed, an additional box is added to the Tabs options panel that allows 3 options for the tab bar:
    *One is to '''Always''' hide the tab bar. I do not know whether future versions of TabMixPlus will remove that option. I have tested in Firefox 23 and it is possible to completely hide the tab bar regardless of the number of tabs open.
    Other options added in the additional box with TabMixPlus 0.4.1.0 are:
    *Never
    *When I have only one tab

  • How can I create an icon for "New Tab" (not "new window") on the toolbar?

    I want to have an icon for New Tab on the toolbar. I cannot find such icon on the Customize option.
    Is this possible?
    BTW I tried to check options-->tabs-->open new windows in a new tab instead, but this does not help and when clicking the "new Window" icon on the toolbar, indeed a new window - and not a new tab - opens.
    Thanks.

    You can open the Customize window and drag the New Tab (+) button form the tab bar on another toolbar. It will become a regular New Tab toolbar button.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"

Maybe you are looking for