Adding a Tabstrip in VA03

Hello,
I am Preety new in the Enhancement area,
i have to add a tabstrip for our custom fileds both for header and item data in va03.
can any one help me on the same how to do that which BADI or Exits are suppose to be used.
Thanks and regards,
Gunjan

Hi,
The program for the transaction VA03 is SAPMV45A.
In that, we have to search for call customer-subscreen,if you need screen exit.
Check the following.It can help you.
http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975e643b111d1896f0000e8322d00/content.htm
<b>Reward points</b>
Regards

Similar Messages

  • Adding option to menu VA03 : Menu-Exit / BADI  ?

    Hi all,
    First, what I want to do is, from the VA03 menu, adding a "function" associated with a small code which will be able to launch Iexplorer with the right customized address. ( I'll probably use Abap fction 'CALL_BROWSER' ).
    What I don't know is adding an option to one of the menu in VA03/VA02 ?
    I think Menu-Exit can be helpful ?
    Regards,
    Erwan.

    Hi Ervan
    Menu-exit can be helpful, but must be pre-defined by SAP.
    I'm on a very old system (4.0b) without menuexits for VA03/VA02, but maybe your system is different.
    You can identify menue-xits in the menupainter. Menu items starting with the '+' sign are reserved for customer functions.
    As ex. se enhancement V43A3X1 (if it exists in your system).
    The menu-exit must be combined with a function-exit that implement the code - what must happen when user selects the menu item.
    Best regards
    Thomas Madsen Nielsen

  • Adding/activating  tabstrip to BP role

    Hi all,
    we have a problem in displaying BP data set(marketing attributesPHA030)   When i go to transaction code BUSD and check whether the data set(Marketing attribute PHA030 has been maintained in BP roles like BP General(000000)role and BP role Consumer(CRM006)the data set(marketing attribute CRM005) has been maintained.
    But when it comes to BP display under any of the role like Consumer,sold-to-party,internet user etc i am unable to see that marketing attributes tab strip.
    is it something like activating that particular tabstrip ? if so can any one suggest me in this regard.
    thanks in advance,
    mdv

    Hi
    mdv..
    Sometimes may required to generate a sub-screen container..
    go to transection BUSP and generate a sub-screen cotainer.
    Regards
    Vibhas

  • Dynamic creation of TabStrip

    Hi,
    I want to create a tabstrip dynamically.The tabstrip should have 3 tabs, and in each of the tabs i want to put some UI elements like a label, input field, dropdown, tables.........etc.
    Im able to create the tabstrip and add tabs to it dynamically.
    I've even created the UI elements which i wanted to put in the tabs.............But im not able to proceed as i dont know how to add the UI elements to the tabs.......
    Can anyone tell me how to add UI elements to a tab in a tabstrip?
    Regards,
    Padmalatha.K
    Points will be rewarded.

    Hi,
    Following code will help you to understand the dynamic creation and adding them
    //Tabstrip
           IWDTabStrip tabStrip = view.createElement(IWDTabStrip.class);
           //Tab
           IWDTab tab = view.createElement(IWDTab.class);
           //Input Field
           IWDInputField inputField = view.createElement(IWDInputField.class);
           //Adding inputfield to tab
           tab.setContent(inputField);
           //Adding tab to tabstrip
           tabStrip.addTab(tab);
    //Finally add this tabstip to either your root container or some other container.
    Regards
    Ayyapparaj

  • Subordinate Items not visible in Tabstrip Contrainer - Web Template

    Hello Gurus,
      In Web Application Designer I am creating a blank template and adding a Tabstrip Container. Within the Tabstrip Container I am adding an Analysis web item. When I go to "Internal Display" for Tabstrip and click on "Tab Panel" a popbox opens and when I click on the "Subordinate Web Item". I do not see the Analysis web item. I only see the default. What am I missing? Appreciate all the help.
    Thanks.
    Regards,
    bw newbie
    We are on BI 7.0 support pack 19.

    Hey,
    could you please post the solution? I came across the same issue lately and I can`t make a solution
    at this point.
    thx in advance!
    Greets marcus

  • Add New Tabstrip at ME22n

    Hi experts ,
    I added one tabstrip at Tcode ME22N using  user exit EXIT_SAPMM06E_006 and
    screen SAPLXM06   0111  but tabstrip is not appearing there .
    Is any coding require at PBO for add tabstrip at Me22N
    Pls help me ASAP .
    Thanx

    Hi,
    Since you need to enhance transaction ME22N by adding a new tab, I think you are using ECC 5.0 or higher.
    In that case you can also use BADI ME_GUI_PO_CUST to add screen (tabs) at both header and item of PO transaction.
    Also you will find an example implementation class of the BADI ME_GUI_PO_CUST in class CL_EXM_IM_ME_GUI_PO_CUST.
    Hope this helps.
    Regards,
    Abhisek.

  • How to add  extra tabstrip in xd01 for more customer addresses?

    hi everybody,
    can some body help me out in adding extra tabstrip in
    xd01 for more customer addresses.
    thanks ,
    pradeep.

    Hi
    The BADIs and User exits available:
      Find Badis
    Transaction Code - XD01                     Create Customer (Centrally)
    Enhancement/ Business Add-in            Description
    Enhancement
    SAPMF02D                               
       User exits: Customer master data
      Business Add-in
    CUSTOMER_ADDRSCR_CHG                  
         Change Address Screen in the Master Data Maintenance
    CUSTOMER_ADD_DATA                     
        Additional Data at Customers
    CUSTOMER_ADD_DATA_BI                 
         Additional Data at Customers (Batch Input and ALE)
    CUSTOMER_ADD_DATA_CS                 
        Additional Data at Customers (Subscreen Container 4000)
    the above badis  fulfil u r requirement.
    If it is helpful rewards points
    Reagards
    Pratap.M

  • Error in sales order creation using FM IDOC_INPUT_ORDERS

    Hi experts,
    I am using  FM IDOC_INPUT_ORDERS for IDoc processing for creating sales order.
    I have added customized fields over VA03 screen and to VBAP table.
    I am using user exit EXIT_SAPLVEDA_001 for populating these additional fields.
    Here I am writing below code for customized segment:
      WHEN 'Z1EDP01'.
        x_Z1EDP01 = segment-sdata.
        xvbap-ZZNETWR   = x_Z1EDP01-ZZNETWR.
        xvbap-ZZTAX     = x_Z1EDP01-ZZTAX.
        xvbap-ZZGRSWR   = x_Z1EDP01-ZZGRSWR.
        Move-Corresponding xvbap to dxvbap.
    After this, sales order is getting created but these additional fields are not populated over the VA03 screen. Can you tell me whats wrong in code or any configuration error?
    Thanks,
    ~Sachin

    DXVBAP is an internal table for this exit, where do you modify the line of this itab. (can you post the code with the READ TABLE dxvbap and MODIFY wa/fs statements)
    ([Note 753153 - FAQ: Customer-functions in IDOC_INPUT_ORDERS|https://service.sap.com/sap/support/notes/753153])
    Regards,
    Raymond

  • Changing the customer screen tab name in transaction co02

    I have done a exit in transaction CO02.Added one tabstrip in the screen.Its named as customer screen there.How to change this name.please provide with steps.

    Hi
    I'm working on 46C and ECC 6.00: it works fine in the both realeses.
    So I suppose it'll have to work on 470
    I run SMOD trx (no CMOD)
    Insert PPCO0012 and press TEST icon
    Doubleclick on line Exit Menu
    A popup is shown and here I can change the description and the icon for function +COI
    That's all.
    If you're getting the error "Non-existent components: Menu option SAPLCOCU+COI", try to check the sap note 626530
    Max

  • Screen exit of  Po header

    Hello Friends ,
    I have added new tabstrip in PO header with two new fields which are appended to Ekko table by append structure.
    1) When creating the PO, the changes to these new fields are not getting updated into Ekko table
    2) After doing the changes to these new fields in Me22n, if i am trying to save the Po it's giving the information message 'No data changed' and the changes to these new fields are not getting updated in Ekko table.
    Could you please advice me regarding this problem.
    Thank's in advance,
    Arvind.

    Hello Friends,
    The screen exit is shown below ,here in 101 screen i have added two new fields
    SAPMM06E                       0101 CUSTSCR1 SAPLXM06                       0101
    To update the new fields in the new tab strip , i have written the code in the user exit of PO header (EXIT_SAPMM06E_006) as shown below.
    Note:The two new fileds are check boxes ,depending on some conditions we need to mark the  check boxes.
      TABLES:CI_EKKODB.
    if not I_LFM1-ZZINTLIF is initial.
      CI_EKKODB-ZZINTLIF = I_LFM1-ZZINTLIF.
    endif.
      IF ( I_EKKO-BSART = I_LFM1-ZZEDIBSART1 ) OR
         ( I_EKKO-BSART = I_LFM1-ZZEDIBSART2 ) OR
         ( I_EKKO-BSART = I_LFM1-ZZEDIBSART3 ) OR
         ( I_EKKO-BSART = I_LFM1-ZZEDIBSART4 ) OR
         ( I_EKKO-BSART = I_LFM1-ZZEDIBSART5 ) .
        CI_EKKODB-ZZEDI = 'X'.
      ENDIF.
    But these two new fields i.e. ZZINTLIF and ZZEDI  are not getting updated in the table Ekko and the changes are not reflected on screen also.
    Please help me regarding this issue.
    Thank you,
    Arvind.

  • Clicking on new implemented tab is not navigating to subscreen

    hi alll,
    there are 4 tabstrip in a screen and i have added one tabstrip. i am calling two subscreen one subscreen for all 4 tabstrip and another one for new added tab strip. i have just copied a old subscreen and added in new subscreen which will be used for 5th tabstrip. my problem is that all tab strip is working and navigating but when i click on new added tab nothing is happening...
    please tell me whether i have missed something...??
    screen code is : PROCESS BEFORE OUTPUT.
    Status und Titel setzen
    MODULE GUI_CONTROL.
    Screenattribute setzen
    MODULE MODIFY_SCREEN.
    PBO des Gruppierungen-Subscreens
    CALL SUBSCREEN: GRPG_SUB INCLUDING SYST-CPROG '1100',
                    GRPG_SUB1 INCLUDING SYST-CPROG '1200'.
    PROCESS AFTER INPUT.
    Ausgang direkt ohne Prüfungen
    MODULE EXIT_PROCESSING AT EXIT-COMMAND.
    PAI des Gruppierungen-Subscreens
    CALL SUBSCREEN: GRPG_SUB,
                    GRPG_SUB1.
    Feldprüfungen
       FIELD KONMATGRPT-GRPGTEXT   MODULE CHECK_GRPGTEXT  ON REQUEST.
       FIELD KONMATGRP-GRPGNR      MODULE CHECK_GRPGNR    ON REQUEST.
    Folgedynpro setzen
    MODULE SET_SCREEN.
    FCODE vearbeiten
    MODULE FCODE_PROCESSING.

    yes abhijit,
    but the problem is that, i have to do changes in standard screen(T code vbg123) and there are no screen exit so we have to add tabstrip in standard screen. i have copied that program screen in zobject and trying to make changes... but after adding the 5th tabstrip i am not able to navigate and even i am not able to see the places where i can add screen number like this code
    T_TABSTRIP-ACTIVETAB = G_T_TABSTRIP-PRESSED_TAB.
      CASE G_T_TABSTRIP-PRESSED_TAB.
        WHEN C_T_TABSTRIP-TAB1.
          G_T_TABSTRIP-SUBSCREEN = '2410'.
        WHEN C_T_TABSTRIP-TAB2.
          G_T_TABSTRIP-SUBSCREEN = '2420'.
        WHEN C_T_TABSTRIP-TAB3.
          G_T_TABSTRIP-SUBSCREEN = '2430'.
        WHEN C_T_TABSTRIP-TAB4.
          G_T_TABSTRIP-SUBSCREEN = '2440'.
    the code for screen 1000 where tabstrip is added:
    PROCESS BEFORE OUTPUT.
    Status und Titel setzen
    MODULE GUI_CONTROL.
    Screenattribute setzen
    MODULE MODIFY_SCREEN.
    PBO des Gruppierungen-Subscreens
    CALL SUBSCREEN GRPG_SUB INCLUDING SYST-CPROG '1100'.
    PROCESS AFTER INPUT.
    Ausgang direkt ohne Prüfungen
    MODULE EXIT_PROCESSING AT EXIT-COMMAND.
    PAI des Gruppierungen-Subscreens
    CALL SUBSCREEN GRPG_SUB.
    Feldprüfungen
       FIELD KONMATGRPT-GRPGTEXT   MODULE CHECK_GRPGTEXT  ON REQUEST.
       FIELD KONMATGRP-GRPGNR      MODULE CHECK_GRPGNR    ON REQUEST.
    Folgedynpro setzen
    MODULE SET_SCREEN.
    FCODE vearbeiten
    MODULE FCODE_PROCESSING.
    and code which i am doing after copying in z object:
    PROCESS BEFORE OUTPUT.
    Status und Titel setzen
    MODULE GUI_CONTROL.
    Screenattribute setzen
    MODULE MODIFY_SCREEN.
    PBO des Gruppierungen-Subscreens
    CALL SUBSCREEN: GRPG_SUB INCLUDING SYST-CPROG '1100',
                    GRPG_SUB1 INCLUDING SYST-CPROG '1200'.
    PROCESS AFTER INPUT.
    Ausgang direkt ohne Prüfungen
    MODULE EXIT_PROCESSING AT EXIT-COMMAND.
    PAI des Gruppierungen-Subscreens
    CALL SUBSCREEN: GRPG_SUB,
                    GRPG_SUB1.
    Feldprüfungen
       FIELD KONMATGRPT-GRPGTEXT   MODULE CHECK_GRPGTEXT  ON REQUEST.
       FIELD KONMATGRP-GRPGNR      MODULE CHECK_GRPGNR    ON REQUEST.
    Folgedynpro setzen
    MODULE SET_SCREEN.
    FCODE vearbeiten
    MODULE FCODE_PROCESSING.

  • CAA1 BDT

    hello,
    i've enhanced contract account transactions caa1 caa2 caa3 (FI-CAX version 605) using BDT (added additional tabstrip/screen  with custom logic, objects and so on). Everything works fine except value assignment to "Reference number" field (FKKVKP-EXVKO) : field group 105, view VKK122, section VKK110. The screen field is visible and input enabled, but when i try to save contract or change active tabstrip (from standard to custom and vice versa) - system clears reference field immediately. i didn't find any note, created reference between screen field and db table via casb tcode, debugged standard PBO (VKK_FICA_PBO_MKK122) and PAI (VKK_FICA_PAI_MKK122) FM's , but no success. i've created  custom view (copied SAPLFKKC 265 screens layout) with custom pbo and pai function modules which set's and get's screen values. it works, but i do not like this solution could you provide another one.
    Thank you,
    dez_

    To read the memory from the screen use VKK_FICA_FKKVKP_GET function module.
    To update the values in fkkvkp table use VKK_FICA_FKKVKP_COLLECT FM.
    Go to the t-code CAS7
    Event : DSAVB.
    create a Z function module with the name "Z_FMname_DSAVB" and attach in DSAVB event. call get and collect function modules to update the data in database.
    Regards,
    Siva

  • Adding field in VA03

    Hi all,
    In VA03 - header - Order data tab  -  i added a field A  and i appended in VBKD DBtable .    where can i write the code to save it.
    Edited by: vijay krishna on Jan 3, 2008 10:45 AM

    Hello vijay krishna ,
    You can write your coding in user exit SAVE_DOCUMENT_PREPARE in include MV45AFZZ.
    Regards,
    John.

  • Adding Z-Fields to Standard Screens of Transaction VA01 / VA02 / VA03

    Hi All,
    The system is being upgraded from 4.7 to ECC 6.0
    In 4.7 server, the client has added 2 Z-fields to VBAK table. Moreover, these Z-fields are added to Standard SAP Screens of Transactions VA01 / VA02 / VA03.
    One of the Z-field is for the Description which appears on the very first screen of transaction (Screen 4440) replaces the Standard SAP Screen Field VBAK-KTEXT.
    The other Z-Field appears on Header-->Additional Data B (Screen 8309).
    Please note:- The screen numbers that are mentioned above are the screen numbers of ECC 6.0
    I tried to change the edit the Screen by taking the Access Key from the market place, but only got Screen Overlapping Errors.
    What should I do to incorporate these Z-fields?
    I have heard of Screen-exits but never worked on the same. Would appreciate if someone guides me as to what needs to be done.
    Thanks for your valuable time and suggestions.
    Regards,
    Rajesh

    Hi Rajesh,
    I am working ECC 6.0
    We had the same requirement but for Additional Data B in header and item
    For this
    (1) Got the access key
    (2) applied access keys
    (3) In the additonal Data B screens/Program SAPMV45A imported Z fields to the screen in Graphical painter,saved and activated after writing necessary PBO/PAI modules and the codes in 8309 and 8310 screens
    Please can you tell more on the "Screen Overlapping Errors"
    Maybe we can can work out the error.....
    Regards
    Byju

  • PO - adding field in VA03 header - order data

    Hi all,
    i am facing some problem to find out the user - exits, 
    in VA03 - header - order data    i added a text field in that Order data tab , and also i appended a field ZZSCON in VBKD
    where should i add the code to insert the text field in the DBtable(VBKD)
    Edited by: vijay krishna on Jan 3, 2008 10:34 AM

    Hello,
    Maybe you can try searching for the user-exits in standard code. Debug the transaction and set breakpoint in desire statements.
    Breakpoint --> Breakpoint at --> Breakpoint at Statement
    and then here write: CALL CUSTOMER-FUNCTION
    Then pressing F8 it will go directly to the next breakpoint (next user-exit in standard code). Verify that you have access to your customer field in user-exit parameters.
    I hope it will help you.

Maybe you are looking for

  • SSO from Microsoft ISA to SAP enterprise Portal

    Hi Gurus,   Our vendors access the Internal network using MS-ISA as proxy.The first point of authentication is MS-ISA where the Vendor needs to give his User id and Password.After that he hits the Internal Portal and is prompted for a Login  again.Is

  • Metadata not writing to jpgs

    We keep all of our photos on a Windows Home Server 2011 shared folder. Previously, we kept all our photos in a WHS v1 shared folder and it did not exhibit these issues. The issue: Metadata not writing to jpgs We manage all our photos with Adobe Light

  • Choosing a camcorder to interface well with ilife

    I have many Hi 8 tapes and I am looking for a camcorder that will play these tapes AND connect to my mac via fire wire. Any suggestions

  • Please ignore, posted in wrong section and can't delete.

    Intended for Windows Desktop section.  Skype crashes upon login and I get a "Skype has stopped working." message. It started after my Win7 computer got a BSOD while skyping someone. First time I uninstalled Skype and reinstalled which got it working.

  • JPEG file format option missing in PSE 9

    The JPEG file format option in the "Save as" dialog is no longer listed in PhotoShop Elements 9.  I've completely uninstalled and re-installed the software, but the JPEG file format option is not there.