Additional TAB in VT01N

My requirement is to add an additional TAB in VT01N screen
All I need to know is using which BADI or userexit this functionality can be achieved?

Hi
See the enhancement (trx SMOD) beginning V56*
See the badi'
BADI_HU_AUTOPACK,
BADI_HU_PACKING_QTY
BADI_HU_MAIN
Regards
Kiran Sure

Similar Messages

  • Additional TAB in shipment screen VT01N

    Hi,
    Could you please let me know how we can add additional TAB in Shipment screen VT01N / VT02N.
    1. Do we have any suitable BADI for doing this?
    2. Is it possible by creating a Z Transaction code to the Shipment screen and achieve
        aditional TAB on the screen ?
        If so , tell me the method it can be acheived. Can we still ensure the flow of the process?
    Thanks!

    Hi,
    try of these BADIs: LE_SHP_TAB_CUST_ITEM, LE_SHP_TAB_CUST_HEAD and LE_SHP_TAB_CUST_OVER. It depends on where do you want to display your tab. To get info about how to implement BADIs check their documentation and sample code. Everything is very well documented.
    Cheers

  • To populate Segment data to Order item level in additional tab B

    Hi Experts,
    I am working on Inbound interface using IDoc (ORDERS05); during Idoc process IDOC_ORDERS_INPUT; i have to take segment value and need to populate at order items level; in custom field  (in additional tab B).
    For that i am using FM (Customer exits) :
      Step 1-  EXIT_SAPLVEDA_001 (Getting segment value and passing to XVBAP-Zfield).
      Step 2- EXIT_SAPLVEDA_002 (Passing Value to respective screen using BDCDATA table).
    Due to unable to find where i have to set flag and how ?;                                                                                To avoid multiple record to append ; BDCDATA Table with same screen.
    As mention in this link for Header level additional tab B : http://www.sapfans.com/forums/viewtopic.php?f=21&t=62945#p1025880.
    They are using my_flag to avoid ,issue as i mention in above step.
    Step 3 - At last they are deleting my_flag in FM : EXIT_SAPLVEDA_003. (find in above link)
    Thanks in Advance
    Regards
    Vinay

    you need to use a flag of type vbap-posnr .
    and your check statement will become
    check my_flag NE XVBAP-POSNR. (or the ZZXVBAP-POSNR).
    and setting the flag
    my_flag = XVBAP-POSNR.
    so for same posnr it wont repeat the append.. hope this can help

  • I am Not Getting a Additional Tab in ZMIGO in Display mode

    Dear Gurus ,
                          I have Impelemented a Migo Badi and Created a Additional Tab in MIGO . The Additional Tab is getting Displayed in Create Mode but the same is not getting in Dispay Mode . Can Any Body help me for the same .
                                      I have Created two screen for the same .
    0001 is for Created and 0002 is for Display mode . And in PBO i rave checked the condition for the same which i am pasing below for your refrence . Can any body please help me .
    READ TABLE gt_scrn_active INTO ls_scrn_active
                                WITH KEY line_id = i_line_id .
      CHECK ls_scrn_active-active EQ 'X'.
    External subscreen:
    The content of global field G_NO_INPUT (set in method MODE_SET) will
    influence the number of external subsreen:
      IF g_no_input IS INITIAL.
        e_cprog   = 'SAPLZCFG_JEWELLERY'.
        e_dynnr   = '0001'.                     "External fields: Input
        e_heading = 'Additional Unit'(004).
      ELSE .
        e_cprog   = 'SAPLZCFG_JEWELLERY'.
        e_dynnr   = '0002'.                     "External fields: Input
        e_heading = 'Additional Unit'(004).
      ENDIF .
    Regards
    S.B.Shankar

    hi,
    just i basice ? have you checked the status of BADI is it implemented.
    Atul

  • Can no longer open additional tabs using Forefox 17.0

    I downloaded the update for Firefox 17.0 and installed it with no problems. After completion, I discovered that I could not open additional tabs as with previous versions of Firefox. I tried various methods, including the File pulldown menu, clicking on the tab stop next to an already open website, and using Ctrl+T. Nothing worked. I can open additional windows, but find it much more convenient to use tab stops, and am currently unable to do so using the latest version of Firefox.

    Hello cahoughton, check it in [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode#os=win7&browser=fx17 Safe Mode], in Safe Mode window select '''''"Start in Safe Mode"''''' and see if this happen again,''''' if not '''''see: [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems#os=win7&browser=fx17 Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]
    also in your "System Details" you have installed 2 flash versions (Shockwave Flash 11.5 r502 & Shockwave Flash 11.4 r402) and 2 Adobe PDF Plug-In (Adobe PDF Plug-In For Firefox and Netscape 10.1.4 & Netscape 10.1.3).
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Additional tab at header level  in ME21N through BADI ME_GUI_PO_CUST

    Hi,
    I want to have additional tab at header level  in ME21n through BADI ME_GUI_PO_CUST.  But after all effort I am not getting display of  tab.  Let me explain what i did till now
    1. Appended  table EKKO with field
    2. Create one function Group -under that
    A. Created one Include u2013Paste the code given
    DATA: call_subscreen   TYPE sy-dynnr,
          call_prog        TYPE sy-repid,
          call_view        TYPE REF TO cl_screen_view_mm,
          call_view_stack  TYPE REF TO cl_screen_view_mm OCCURS 0,
          global_framework TYPE REF TO cl_framework_mm,
          global_help_view TYPE REF TO cl_screen_view_mm,
          global_help_prog TYPE sy-repid.
    FORM SET_SUBSCREEN_AND_PROG *
    --> DYNNR *
    --> PROG *
    --> VIEW *
    --> TO *
    --> CL_SCREEN_VIEW_MM *
    FORM set_subscreen_and_prog USING dynnr TYPE sy-dynnr
    prog TYPE sy-repid
    view TYPE REF TO cl_screen_view_mm.
    call_subscreen = dynnr.
    call_prog = prog.
    call_view = view.
    ENDFORM. "set_subscreen_and_prog
    B. Created one screen  (9000)
    3. Implemented BADI ME_GUI_PO_CUST and paste the code.
    data: ls_subscribe like line of re_subscribers.
    CHECK im_application = 'PO'.
    CHECK im_element = 'HEADER'.
    CLEAR re_subscribers[].
    ls_subscribe-name = ' ZMMSCR1'.
    ls_subscribe-dynpro = '9000'.
    ls_subscribe-program = ' ZMMSCR1'.
    ls_subscribe-struct_name = 'EKKO'.
    ls_subscribe-label = text-001..
    ls_subscribe-position = 15.
    ls_subscribe-height = 7.
    append ls_subscribe to re_subscribers.
    Please help me what s going wrong .and what else I will do to get success.
    Edited by: Vishal A Vijaywargia on Jul 29, 2009 2:24 AM

    Hi Prosengit,
    I am not aure about u r BADI,
    BUt last week i have custom tab in the PO header data using this enahncement 'MM06E005'.
    IN thi senhancement u have thrre screen exits.In this enhancement
    SAPMM06E        0111 CUSTSCR1 SAPLXM06        0111 Subscreen: PO item
    u can add subscreen and u can add u r own fields here .
    and u can write u r code in 'EXIT_SAPMM06E_006'.
    if u want to change the title of the program.
    Go to program SAPLXM06 then go to text element give text symbol no as '111' and u can change the title of u r tab.
    I hope this solves u r problem.

  • When i try to load any page on Mozilla 28 the page opens but i get additional tab saying The address isn't valid The URL is not valid and cannot be loaded.

    When i try to load any page on Mozilla 28 the page opens but i get additional tab saying The address isn't valid The URL is not valid and cannot be loaded. I tried everything from reseting Firefox ,completely new installation of firefox to about.config and nothing worked it's been two days now since the problem started and i am pretty frustrated and desperate as i try to fix the issue so please help me with some solutions????
    Big thanks in advance

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Preferences_not_saved

  • Adding field in Additional Tab page in CRMD_order

    hi all,
            i want to add a field in the additional tab page in crmd_order Tcode,
    i did it by modifing the screen the strucutures are filled ex CRMT_SALES_BADI,
    CRMT_SALES_COM
    in the CRMC_MAP Tcode i have seen the field is added .
    wat are the further steps do i need to do to get saved and poped in the field value when reterive.
    regards

    As standard the field is set to 1 decimal place.
    You cannot change this value without modifying your system (not recommended)
    I think you can enter more decimal places in the confirmation documents e.g. IW41
    PeteA

  • Modify Sales order Item additional tab B

    I need to modify Sales order item additional tab B ...by removing the exisitng fields and should add some new fields ....which is ok. But does it have any impact becoz the same screen fields coulbe used in any of the other transaction .......i  just wanted to know if we remove the fields from sale orde item additional tab B and some new details will have some impact

    Hi,
    Before making any modifications check "Where-used". If it is in some other program other than the VA01/02/03, then better consult your lead before modifying.
    If you do not find, go ahead and make the changes confidently.
    Regards,
    Subramanian

  • Custom fields to Additional tab B in VA01/VA02

    Hi ,
    We have requirement where we need to add custom fields to the Additional tab B at item level in VA01 t-code.
    My doubt is to do this do we need access key? is it not possible with out access key i mean any other way to do so.
    If we add those fields in VBAP table will that automatically available in t-code, hope no............
    Please let me know the process to add the custom fields .......... 
    Regards,
    Madhavi

    Hi
    See these notes
    SAP Note 302497 - Additional cust. fields not displayed in 'Additional data B'
    SAP Note 209278 - Display of customer-specific fields in sales doc
    SAP Note 386694 - Additional data not displayed in screen 8459 and 8309
    SAP Note 420546 - Additional data B and transaction variants in sales order
    and related notes.
    And yes, you need to register it in SCCR.
    I hope this helps you
    Regards
    Eduardo

  • Exit to populate a custom field on additional tab b in order - inbound proc

    Hi experts ,
    I Need to populate a custom field  on the additional tab b of an sales order during inbound processing.
    I am using the function module idoc_input_orders.
    Regards

    Hi,
    As this custom fields are not avaialble in the standard IDOC type, you need to extend the standard idoc type.
    Assign custom message type to sextended idoc type.
    Maintain Entries in WE57 tcode.
    With in the In function module idoc_input_orders, using FIND option, try for CALL CUSTOMER statement,here you will find all teh customer exits availble in the FM where you can maintain logic for filling the custom fields.
    Revert back if any issues,
    Regards,
    Naveen

  • Need to modify Sales order Item additional tab B

    Hello all,
    I need to modify Sales order item additional tab B ...by removing the exisitng fields and should add some new fields ....does it have any impact on this screen could be used in any of the other transaction .......i  just wanted if we remove the fields and some new details will have some impact
    Regards,
    KK

    Additional data B is used to add your own fields also known as custom fields in sales order.
    Custom fields can be added to tables VBAK & VBAP (depending on header or item). Similarly you can remove fields if you don't require it anymore.
    In short, your requirement can be met but you have to take help of ABAP consultant since it requires maintenance of user exits and modification of screens.

  • Additional Tab B in Sale Order VA01, Va02, VA03

    Hi
    I want to add some new fields in the (ADDITIONAL TAB B) Header.
    The screen no is SAPMV45A-8309.
    Now if i want to add the the field do i need to take key and do it.
    If not then how can i add the new 'Z' fields in the this screen.

    U can do it using Tcode: SHD0.
    Pl. Search for similar threads

  • Show additional tab in Cprojects

    Hi,
        I have created a custom Webdypro ABAP component to add a new tab in cProject Component(DPR_MAINFRAME).
        In my webdynpro component i have implemented the standard interface DPR_CUST_EXT_INTF.
        In view i have created a tab and inside the tab i have created some 5 input field and created a ztable to store the values  
        entered in the input fields on click of 'Save' button in the view.
        In SPRO I have made the below mentioned configuration to inculde my tab inside the View of DRP_MAINFRAME.
        Collobaration Projects->Global Enhancements to Projects Elements->Show Additional Tab page in cPRojects.
        Clicked on  'NewEntry' button to create a new entery
        Project Element Type : Project Definition
        Project Type:  blank
        Tab Active: Checked
        Tab Page Title: Custom Tab
        Webdynpro Component: ztabs
    After having done this when i execute the DPR_MAINFRAME Application i am able to view my tab inside the view of the standard application.
    When i enter details inside the input fields and when i click on Save the data is also getting saved in my ztable.
    When we execute the DRP_MAINFRAME Component we can find a Save button provided in the Standard component.
    My requirement is On click of the Standard SAve button the data entered in the input field must get inserted in the ztable.
    When i implemented the interface DPR_CUST_EXT_INTF , method ON_AFTER_SAVE got created in my component controller .
    I even tried placing my code in the method but data didn't get updated in the ztable.
    Regards,
    Bala Baskaran.S

    Hi,
    Can you guide me to add a new tab in the C projects, I tried creating a new wda component with DPR_CUST_EXT_INTF as implemented interface.
    The view in this component has a tabstrip having a single tab in it, Then i went to spro as mentioned:Collaboration Projects->Global Enhancements to Project Elements->Show Additional Tab Page in cProjects.
    I added a new entry here
    Project Elements: Project Definition
    Proj Type : Blank
    Tab Page Active: checked
    Tab Page title: Additional Tab
    Web Dynpro Component: zcomponent
    Still The tab is not displayed, Can you let me know if I am missing something?
    Regards,
    Shitanshu Sahai

  • Mail notification at value placed at approver field in Additional tab

    Hi SAP Gurus,
    in the business  based on the document (DIR ) we are creating there will be specific person responsible for approving the document.
    so we have created a characteristic values in additional tab field, having the list of names / values of approvers,
    so while creating the DIR the user will select the relevant approver who is suppose to approve the document, here the requirement is based on the characteristic field value in DIR,
    that particular person should get a Mail asking him to  approve the document.
    how to go about this, can standard work flow solve this requirement, or should we have to go for development in Workflow to meet this requirement, will the value at additional tab act as a triggering point for Mail generation to specific user? i have not worked with Work flow.
    please explain in detail the steps to meet this requirement.
    Points awaiting,
    Thanks and regards,
    Priya S

    Hi
    thanks for your inputs,
    The complete requirement is the client needs  to check the values in Characteristics  (the users) with there credentials, just like the funtionality provided in field USER in document Data Tab,
    and he will place the relevant Users (one or many) and the mail has to be triggred to each of the reviewers and the document approvers based on the value placed.
    (here not placing any values in Characteristics and only ging by Work FLow, it  will not give any record in the DIR who are the Approvers or reviewers of that particular Document, so it is required for reporting purpose also)
    so it is two requirement,
    1) search criteria in the values of Characteristics just like that is available in the field USER in document Data Tab (just exactly the same no compromise)
    2) Mails to the users placed in the Characteristics automatically to review, ( which could other wise be done through Document distribution)
    there is still more to share with you all in the class and classification requirements.
    need your help
    Thanks and regards
    Priya S

Maybe you are looking for

  • Internal error while compiling a package

    When I update a view within from a pulic procedure the package compiles without any issue. However If I make the same procedure as private(no declartion in specifcation) the package gives an internal error

  • HP Officejet Pro 8600 only print 1/4th (maybe less) of a page and blows it up...

    Hi! A program I work on at work (which is distributed to people selling my employer's products) has trouble printing correctly on an HP Officejet Pro 8600. Only part (maybe 1/4th) of the page is printed and is expandeds to fit all the page. This prog

  • I am going to throw this machine out the window!  STATIC!

    This static is driving me CRAZY! A little background on what is going on: I am using 2 USB microphones to record a podcast (30Something Podcast). I have recorded 11 shows without any issues on my Macbook Pro and now I am getting static on ONE of the

  • ITunes not connecting to Airport Express

    Trying to play music through remote speakers. Get an iTunes error message stating remote speakers can't be found. The airport express is set up properly, and worked great for months. Now its not letting me play any music. The express is recognized in

  • Problem in XML Message creation using ABAP Proxy

    Hi, I am trying to send the data from ECC to CRM when post goods issue is done for a delivery from ECC side using ABP Proxy. I called my proxy method in BADI : DELIVERY_PUBLISH. And after calling the method, I used commit work also. But the problem i