Adding a new Tab

Hi Folks
I want to add a new tab in the screen 6100 t-code:LSO_PSV2. The new tab is a standard SAP field in the backend Tables. My client wants to see the field in the form of a tab on this tabbed subscreen.
Points will be awarded for helpful answer

Hi,
This is an ABAP issue.There is a search function which is called when you click the search button.You need to modify that function to include the extra tab.The function name is most probably F4_SEARCH_HELP.But please confirm the function name.
Please let me know in case you require any further clarification,
With Regards,
Kaustuv Goswami.

Similar Messages

  • Problem adding a new tab to e-Recruiting

    Hi,
    I am facing the following problem in adding a new tab in the E-Recruitment (Manpower Requisition) application. The developer had created a new BSP page of the following information.
    Name space: SAP
    Application: ZHR_MPOWER_REQ
    Controller URL: MPR.DO
    A customized element (9001) had also been created with the above information.
    I have also created a context ZTEST and a Container Seq '1000' and under the Container Seq, I have allocated a few assignment of Element of which I have assigned the new element - 9001.
    Having assigned the above, I am still unable to see the new tab in the link. Please let me know if there are any missing steps.
    Thanks.

    Dear,
    Just want to check, r u able to Run the Custom BSP as a Standard alone application ?.
    Have you Configure T77RCF_APPl_LOG table ?.
    Alvin, i could not see why you could not see the BSP Page.
    Please got to t-code  SLG1 and check the log's why it's not coming.
    Could you please give more details, what you have done.
    Thanks & Regards
    Sabba Ravi

  • Adding a new tab on item level in me21n tcode

    Hi all.
    i am adding a new tab on item level in me21n tcode.
    i want to make this tab to be shown on the screen when the order type is UB is stock purchase order.i dont know how to make this condition and where should i place it so that this tab can come in effect only when the stock purchase order appears.
    please help.thanks

    hi
    chk this
    Re: New tabs in the header tab-sheet of ME21N/ME22N/ME23N
    hope this helps
    regards
    Aakash Banga

  • Adding a new tab in PPOME

    Hi,
    We have a requirement like adding a new tab in the trasaction PPOME.
    Can somebody share their knowledge on this.
    Somu

    All infotypes that are to be added to the transaction, either SAP or Customer MUST have a screen 7000. This makes integration very simple. Another option is to develop a Module Pool with a screen and code to present one or many infotypes, but this is very time consuming compared with simply adding 7000 as a copy of 2000.
    In the case of SAP, standard infotypes that must added without an existing screen 7000 a screen 9000 must be created to take the place of the 7000. Screen 9000 is in the customer name space but must be created in the SAP development class.  for example 9000 screens has to be created for infotypes 1005, 1037 and 1050. Requests has to be made for development of screens for 1005 and 1016, but due to the special nature of the screens it was not possible.
    Entries must be made in T77ID to reflect the additional screen.
    Configuration Steps
    Various steps must be performed to achieve the requirements, which include:
    Removing Tabs
    Adding Tabs
    Adding Search Nodes
    Scenario Scenario OME0 is configured to reflect the requested changes. View T77OMTABUS defines the tabs that are available by scenario per object.
    Removing Tabs
    Maintain View T77OCTABUS
    Add Object and Tab page entries for the correct scenario to remove entries.
    Adding Tabs
    The first step is to define a tab page in view T77OMTABS. In most cases, this should be an Infotype specific entry that uses screen 7000. For solutions that are more complex a Module Pool can be developed.
    Once added, perform the same step defined in Removing a Tab, it will have the reverse effect. Use the Sequence number to determine order.
    Adding a Search Area
    To add an Area to a Search Node you must customize V77CSEAT. In this case, one entry was added for Object type C to allow for a search on Job Group/Family/Series.
    through spro:
    spro-Personnel Management>Organizational Management>Hierarchy Framework>
    Adjust Tab pages in Detail Area--> change the Tab Page Sequence
    also see:
    New tab in PPOME
    new tab in ppome
    hope its useful..:)

  • Adding a New Tab Page in Cprojects 4.0

    Hi
    We have added a new tab page by the method of Global Enhancement to Cproject we are successfull in getting the link in the tab page. But the page we had created thru webdynpro
    is not seen in the tab page it gives a blank page. We are using Cproject 4.0 can u help us.
    regards
    Suresh Nair

    Hi,
    this can be done via  transaction CRMV_SSC.
    Please review SAP help for further information regarding Screen
    Sequence Control under :-
    Screen Sequence Control of the Business Transaction -> Selection of the
    Screen Control Data
    or
    The Screen Sequence Control of the Business Transaction is documented in
    the online documentation under
    - SAP Customer Relationship Management
       - Business Transactions
         - Basic Functions for Business Transactions
           - Screen Sequence Control of the Business Transaction
    Regards, Gerhard

  • Adding a new Tab to an existing JTabbedPane not working

    Hello all,
    I am trying to add & display a new tab to an existing JTabbedPane when the user
    clicks on a button. For some reason the new tab, being added is not being displayed, and I don't know why. I have called invalidate(), validate() on the parent containers but haven't had any luck. I have also played around with SwingUtilities.invokeLater() and the Event thread, but have been unsuccessfull.
    Any help would be greatly appreciated.
          * This class is the parent that holds the internalFrame which is the
          * main parent for all subsequent containers
         public class QuoteRequestGUI implements QuoteRequestGUI_IF {
              protected JInternalFrame internalFrame_newQuoteRequest = new JInternalFrame("Quote Request");
              protected JTabbedPane tabbedPane = new JTabbedPane();
               * Create a new internal frame to which all the components of a new
               * QR will be added
              public JInternalFrame createNewQuoteRequestFrame() {
                   // Add a tabbed pane to the internal frame
                   internalFrame_newQuoteRequest.add(createQuoteRequestTabbedPane());
                   // .... Set various internalFrame properties
                   return internalFrame_newQuoteRequest;
              public JTabbedPane createQuoteRequestTabbedPane() {
                   // Create a new quote request details instance
                   QuoteRequestDetailsGUI_IF quoteRequestDetailsGUI =
                        new QuoteRequestDetailsGUI(quoteRequestStatusPassed);
                   // Create a new tab that will host all details of the quote request     
                   tabbedPane.addTab("Quote Request Details",
                             quoteRequestDetailsGUI.createQuoteRequestDetailsPanel());
                   return tabbedPane;
         public class QuoteRequestDetailsGUI extends QuoteRequestGUI implements QuoteRequestDetailsGUI_IF {
              private ProductDetailsGUI_IF productDetailsGUI = new ProductDetailsGUI();
               * Panel that will act as a container for both quote request and buyer
               * details
              public JPanel createQuoteRequestDetailsPanel() {
                   // Panel that will contain quoteRequest, buyer and buttons
                   JPanel panel_quoteRequestDetails = new JPanel();
                   // Create an intermediate panel so that components can be layed out properly
                   JPanel panel_quoteRequestIntermediatePanel = new JPanel();
                   // Set layout manager for panel
                   panel_quoteRequestIntermediatePanel.setLayout(
                        new BoxLayout(panel_quoteRequestIntermediatePanel,BoxLayout.PAGE_AXIS));
                   // Add the buttons
                   panel_quoteRequestIntermediatePanel.add(createQuoteRequestDetailsButtons());
                   // Add the intermediate panel to the main panel
                   panel_quoteRequestDetails.add(panel_quoteRequestIntermediatePanel);
                   return panel_quoteRequestDetails;
               * Panel that will hold all the buttons for the quote request details tabbed panel
              public JPanel createQuoteRequestDetailsButtons() {
                   // Panel to act as a container for the buttons
                   JPanel panel_quoteRequestDetailsButtons = new JPanel();
                   // Create, register action listeners and add buttons to the panel
                   JButton button_saveTabbedPane = new JButton("Save");
                   button_saveTabbedPane.addActionListener(new ActionListener() {
                        public void actionPerformed (ActionEvent actionEvent) {
                               saveTabbedPaneListener();
                   panel_quoteRequestDetailsButtons.add(button_saveTabbedPane);
                   return panel_quoteRequestDetailsButtons;
               * Display the save (product details) tabbed pane
               * @todo - Implement the save tabbed pane selected method
              public void saveTabbedPaneListener() {
                        log.info("tab count before added : " + tabbedPane.getTabCount());
                        // The product details of a particular quote request
                        tabbedPane.addTab("Product Details",
                                  productDetailsGUI.createProductDetailsPanel());
                        log.info("tab count after added : " + tabbedPane.getTabCount());
                        tabbedPane.invalidate();
                        tabbedPane.validate();
                        internalFrame_newQuoteRequest.revalidate();
         public class ProductDetailsGUI implements ProductDetailsGUI_IF {
               * Panel that will act as a container for both the product details (incl
               * table) and the buttons
              public JPanel createProductDetailsPanel() {
                   // Main product details panel
                   JPanel panel_productDetails = new JPanel();
                   // Add the scroll pane to the panel
                   panel_productDetails.add(new JButton("ok"));
                   // Add the buttons to the panel
                   // Add the scroll pane to the panel
                   panel_productDetails.add(new JButton("cancel"));
                   return panel_productDetails;
         }

    MS,
    Try copying one existing TAB and use that, this happens only when there is improper xml content. You can open the xml in the browser/visual studio for better clarity and then try making the changes. Doing IIS Reset will be required but in the meanwhile you
    can put the original RCDC which will work till the time you make any change in new TAB.
    Regards,
    Manuj Khurana

  • Adding a new tab to transaction IE02/IE03

    Hi
    i've added a new "Z" tab to transaction IE02/IE03 and created in it a subscreen. In the subscreen i've put 2 radio buttuns with the FctCode RAD. When i switch from 1 radio buttun to the other on i get the error message "Requested function RAD is not avalible here" .
    Is there any way to add radio buttun to a Z subscreen i add to a SAP transaction ?  (if i dont add fctcode to the radio buttuns i dont get the error messege but i need to swith between the radio buttuns but pushing the other radio button and pressing ENTER)

    Hello Mayethski
    Can you please tell me if you have got a solution for this since I have approximately the same thing to implement.
    Thanks in advance

  • Adding a new Tab - ME22n - Item Detail Level

    Hi,
    This is a bit Urgent!
    I need to add a Tab to a TabStrip in Item Detail level, in ME22n that has a count of 12.
    Out of which 1 is custom made.
    Someone else had done this development and i can't figure out how it's done.
    Now, i am adding a 13th Tab.
    There is a Enhancement Project made in CMOD.
    Which has the component  MM06E004 added to it.
    I have added the subscreen 0201 to SAPLXM06.
    And activated the both the enhancement Project and SAPLXM06.
    In ME22n, i should be seeing the 13th Tab in the Item Detail level.
    But i can't.
    I have all together 23 fields... So i have no way but to add all the fields in a new Tab.
    Please help.
    Cheers,
    Remi

    Hi,
    There are some points which you need to keep in mind before implimenting this exit.
    First of all this is a transaction and check whether you need a selection screen ( of a program ) on your new tab which will be inserted in the transaction.
    And to create a field you need to enable one of the screens depending on your requirement.
    SAPMM06E 0101 CUSTSCR1 SAPLXM06 0101
    SAPMM06E 0111 CUSTSCR1 SAPLXM06 0111
    SAPMM06E 0201 CUSTSCR1 SAPLXM06 0201
    SAPMM06E 0211 CUSTSCR1 SAPLXM06 0211
    SAPMM06E 0301 CUSTSCR1 SAPLXM06 0301
    SAPMM06E 0311 CUSTSCR1 SAPLXM06 0311
    If you use any addditional fields you need to define these additional fields in following structures based on the requirement:
    CI_EKKODB
    CI_EKPODB
    To pass data from the PBO / PAI modules you have to enable the suitable function exit based on the requirement. Enabling these exits would pass data from / to the additional screen.
    EXIT_SAPMM06E_006
    EXIT_SAPMM06E_007
    EXIT_SAPMM06E_008
    EXIT_SAPMM06E_009
    EXIT_SAPMM06E_012
    EXIT_SAPMM06E_013
    EXIT_SAPMM06E_014
    EXIT_SAPMM06E_016
    EXIT_SAPMM06E_017
    EXIT_SAPMM06E_018
    So we can either add a additional tab at header level / item level in this transaction.
    Regards,
    Satish

  • Extending Azure Pack User Interface by adding a new tab in a SideTab entry

    I'm extending Azure Pack User Interface, I have added a Custom Side Bar entry using "HelloWorld" Resource Provider. example
    After a new Side bar entry is create, I want to add a new tab in that side bar entry.
    In the "HelloWorld resource provider"  i have a project called "Admin Extension" in which i have to extend the UI.
    Initially I have added a new Html file in Content->Templates->Tabs called "Sampletab.html"
    In Manifests->HelloWorldAdminUIManifest.xml I have added
    <script src="~/Scripts/HelloWorld.SampleTab.js" />
    <template name="sampleTab"
    src="~/Templates/Tabs/SampleTab.html" />
    In Content->HelloWorldAdminExtension.js i have specified the new tab.
    navigation = {
    tabs: [
    id: "quickStart",
    displayName: "quickStart",
    template: "quickStartTab",
    activated: loadQuickStart
    id: "shares",
    displayName: "shares",
    template: "sharesTab",
    activated: loadSharesTab
    id: "settings",
    displayName: "settings",
    template: "settingsTab",
    activated: loadSettingsTab
    id: "sample",
    displayName: "sample",
    template: "sharesTab",
    activated: loadSampleTab
    types: [
    The template name i gave which i specified in Manifest file.
    function loadSampleTab(extension, renderArea, renderData) {
            global.HelloWorldAdminExtension.SampleTab.loadTab(renderData, renderData);
    The  Content->Scripts->HelloWorld.SampleTab.js  contains:
    /*globals window,jQuery,Exp,waz*/
    (function ($, global, Shell, Exp, undefined) {
    "use strict";
    function loadTab(extension, renderArea, renderData) {
    global.HelloWorldAdminExtension = global.HelloWorldAdminExtension || {};
    global.HelloWorldAdminExtension.SampleTab = {
    loadTab: loadTab,
    })(jQuery, this, this.Shell, this.Exp);
    When i load the tab, i get template not found error

    Hi Dinesh,
      The problem is solved. We are able to view the Accounting Preferences Tab now in the Settings screen.
      Actually the problem lied in calling the bbpfunction.html in the newly added html template i.e. 3500 screen. Actually the new screen 3500 is also defined in the BBPUM01 ITS service where we didnt write the code. So there we called the bbpfunctions.html from service bbpglobal.
      We have many other requirements linked to this Accounting Preferences which I shall post in a new thread.
       Thanks a lot anyways for your support !!
    Regards,
    Vikas.

  • Adding a new tab to CrystalReportViewer and loading a new rpt into it

    Hi,
    I've been struggling with the following problem for a few days now and I would really appreciate any help you can offer.
    I need to add a new tab to an existing instance of CrystalReportViewer and load a new crystal report (RPT) into it.
    I wasn't able to do that and tried inserting an instance of a new CrystalReportViewer into the new tabpage, but I've encountered several problems with that solution as well, such as: by hiding the tree and all bars, I'm also removing the page navigation field of the new rpt.
    Here is the code I've used:
    TabControl tabControl = (TabControl)((PageView)crystalReportViewer1.Controls[0]).Controls[0];
    DocumentControl tab2 = new DocumentControl(new ViewerDocument(new SubreportContext()));
    tabControl .Controls.Add(tab2);
    tabControl .TabPages[1].Text = "New Tab";
    tabControl .SelectedTab = tab.TabPages[1];
      Now I need to load the rpt to the new tabpage
    If I'm trying to add a new CrystalReportViewer into the tabpage:
    ReportDocument oRpt2 = new ReportDocument();
    oRpt2.Load(tempFile);
    CrystalReportViewer newViewer = new CrystalReportViewer();
    newViewer.Dock = DockStyle.Fill;
    newViewer.DisplayGroupTree = false;
      newViewer.DisplayStatusBar = false;
      newViewer.EnableDrillDown = false;
      newViewer.DisplayStatusBar = false;
      newViewer.DisplayToolbar = false;
      newViewer.ReportSource = oRpt2;
       tab2.Controls.Add(newViewer);
    Please let me know what is the best practice for this kind of operation.

    Continue my question....
    I've found a method that opens such a tab for me in one statement:
    DocumentControl tab2 = ((PageView)crystalReportViewer1.Controls[0]).CreateNewReportDocument("new doc");
    But I remain with question of how to load the new RPT into it?

  • I am having a problem adding a new tab, everyone is telling me to get rid of "ask toolbar" however I do NOT have ask, not at all. And yet I still can not find out what to do. Please help!

    Hello, I am having trouble opening a new tab on firefox. Everyone has told me to delete the "ask toolbar" but the thing is I do NOT have that, searched over and over and it is NOT on my firefox. Yet I still can not fix the new tab problem. Any help please?!

    Try this?
    * http://kb.mozillazine.org/Uninstalling_toolbars

  • Exit: MM06E005 - Adding a New tab at PO header level

    Hi, 
    1) Could anybody suggest how to use the exit MM06E005 to define a new tab in PO Header which consists of 5 custom fields. please provide the sequnce of steps to be done.
    Do we need to add the custom fields in the Custom Include CI_EKKODB.
    2) How do i de-activate the Custom Include once the project is de-activated.
    3) Can I go ahead and delete the above Custom Include?
    Regards
    Syam

    you can try the enhancement MM06E005, based on the Document category you can show the fields on the screen.

  • Adding a new tab at a specific place

    Hi, can someone help with a tab question.
    In earlier version of Indesign (CS6) you use to be able to use the 'enter' key to add a new tab at a specific measurement. Example: you start with a tab at 100mm, then you could type 125mm (in the x measurement panel) and press 'enter' and it would create a new (second) tab at 125mm. Then you could repeat 150mm 'enter', 175mm 'enter' and 200mm 'enter' and you would have five tabs all nice and evenly spaced. Now in CC when you have a tab at 100mm and you then type in 125mm (in the x measurement panel) it moves the first tab to 125mm… doesn't create new tab! In CS6 the move function was 'return' key and 'enter' was a new tab.
    If anyone can head some light on this, that would be great. Cheers, Jeff

    Ask in the ID forum and provide proper technical info like system, language settings, document settings and so on.
    Mylenium

  • Adding a new Tab to an existing RCDC

    I'm trying (and failing) to add a new tab to an existing RCDC.
    I've read several posts on this and I cannot figure out what I'm missing.
    I insert the following code in between 2 other groupings and every time I get the message "There is an error in the Group display configuration".
    <my:Grouping my:Name="NewTab" my:Caption="NewTab">
    <my:Control my:Name="NewTabText" my:TypeName="UocLabel" my:Caption="NewTabText">
    <my:Properties>
    <my:Property my:Name="Text" my:Value="!!!" />
    </my:Properties>
    </my:Control>
    </my:Grouping>
    I've tried this code and mild variations of this code on several RCDCs and I always get a negative result. 
    Any help, thoughts appreciated.  If I do another iisreset today I might explode.
    Thanks

    MS,
    Try copying one existing TAB and use that, this happens only when there is improper xml content. You can open the xml in the browser/visual studio for better clarity and then try making the changes. Doing IIS Reset will be required but in the meanwhile you
    can put the original RCDC which will work till the time you make any change in new TAB.
    Regards,
    Manuj Khurana

  • Adding a new Tab In the Tab Strip - T Code Co01

    Hii..
    Please Suggest me How I should add an New Tab in the Tabstrip in T Code SO01.?
    On Clicking the new tab ,a new Screen has to be Called.& some Custom fields requires to be Captured
    I have identified an Enhancement     PPCO0012
    Please let me know how to make use of the Screen Exit.
    Thanks in Advance
    Cheers

    Hii..
    Please Suggest me How I should add an New Tab in the Tabstrip in T Code CO01 ?
    On Clicking the new tab ,a new Screen has to be Called.& some Custom fields requires to be Captured
    I have identified an Enhancement PPCO0012
    Please let me know how to make use of the Screen Exit.

Maybe you are looking for

  • PC crashed, installed new HD, can't get songs

    Our laptop crashed and required a new hard drive to be installed. I of course had to reinstall itunes and lost everything in my library. But I had music in my iphone from the previous computer. Now I cant get access to any of those songs. I can see t

  • T-code for list of PO with Reference  to PR

    Dear sir Please tell me the t code to find the PO list that has been created with Reference to RP/RFQ

  • Issue with SRM SEVER IC 7.01 Mapping content

    HI, We have imported the SRM SERVER 7.01 and SRM SERVER IC 7.01 onto our PI system. And copied the follwoing mappings from namespace 'http://sap.com/xi/SRM/SupplierEnablement/Global/IC' to our Software Component Version. 1. MM2SUSOrderCreate 2. SUS2M

  • I cannot restart my ipad: how to solve it?

    I cannot restart my ipad: how to solve it?

  • 16:9 video on TV is too small

    I'm new here and I ask you to help me. I've created a project with Adobe Premiere Elements 7.0 and I've processed this project with Adobe Premiere Elements 10. It has the following project properties: Edit mode: HDV 1080i Firme base: 25.00 frames / s