New tabs in PPOME (IT1005)

Hello there!
I need to show IT1005 in a tab in transaction PPOME.
I know I have to go in SPRO -> personnel management -> organizational management -> hierarchy framework -> integrate new infotype
but I don´t know how to customize it so it appears similar to PO03/PO13 infotype
Anyone can help?
Thanks in advance

Hi Marcos,
Unfortunately IT1005-Planned Compensation is the one infotype that cannot be shown on a tab in PPOME.  Reason is that it is composed itself of three separate tabs and the interface does not know how to handle this particular infotype. 
Paul

Similar Messages

  • 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..:)

  • New Tab in PPOME: Subscreen not found error

    Hi guys,
    I've created a new hr infotype( I followed the guide ), and customized the 2000 screen so it fulfills my requirements. Then I created a new screen, 7000, as a copy of 2000.
    I've add an entry at T77OMTABS table and T77OCTABUS. After this step, a new tab in ppome is shown. But this tab only has a text line with " No subscreen found ". Does anyone know what I may did wrong, or if I miss something?
    thanks.

    No, I did not.
    I deleted the FCODE name, and changed the type for subscreen.
    But after doing such, the error message is still shown.
    The screen was active, and now the subscreen is active.
    --Edit
    PS: In my subscreen 7000 there are some calls to modules, that are defined in MP900330. Is that a problem?
    Pl check my screen 7000 code:
    PROCESS BEFORE OUTPUT.
    MODULE MODIFY_SUBSCREEN.
            general infotype-independent operations
      MODULE BEFORE_OUTPUT.
            infotype specific operations
      MODULE P9003.
      MODULE HIDDEN_DATA.
    PROCESS AFTER INPUT.
    process exit commands
      MODULE EXIT AT EXIT-COMMAND.
            processing after input
            check and mark if there was any input: all fields that
            accept input HAVE TO BE listed here
      CHAIN.
        FIELD P9003-BEGDA.
        FIELD P9003-ENDDA.
        FIELD P9003-CATEGORIA.
        FIELD P9003-CARREIRA.
        FIELD P9003-QUADRO.
        field nome_quadro.
        field nome_carreira.
        field nome_categoria.
        module get_desc on chain-request.
        MODULE INPUT_STATUS ON CHAIN-REQUEST.
      ENDCHAIN.
         process functioncodes before input-checks                      *
      MODULE PRE_INPUT_CHECKS.
            input-checks:                                               *
      insert check modules here:
        process function code: ALL fields that appear on the
         screen HAVE TO BE listed here (including output-only fields)
      CHAIN.
        FIELD P9003-BEGDA.
        FIELD P9003-ENDDA.
        FIELD RP50M-SPRTX.
        FIELD P9003-CATEGORIA.
        FIELD P9003-CARREIRA.
        FIELD P9003-QUADRO.
        field nome_quadro.
        field nome_carreira.
        field nome_categoria.
        module get_desc.
        MODULE POST_INPUT_CHECKS.
      ENDCHAIN.
    Message was edited by: Filipe Guerra

  • PPOME - New Tab & Infotype - How to find "start date" of preview period

    Hi all,
    I have successfully created own Infotype and add as new tab in PPOME.
    But now I need in my modulpool program to read field "start date" of preview period (from heading of screen in PPOME). I can't find right field. Has anybody any idea?
    Thanks a lot.
    Dusan
    Message was edited by:
            Dusan Skokanek

    Hi ramprasad74,
    According to your description, you are using Analysis Services as a data source for the report, the cube has hierarchy: Fyear, FQuarter, FPeriod, fweek, Fdate. You want to add a date parameter to the report, after you changed value of the parameter, the
    report will return the first day of FPeriod.
    To achieve your goal, we need to add a parameter to the report, then use the parameter in mdx query. For detail information, please refer to the following steps:
    In the Report Data pane, right-click on a dataset created from a SQL Server Analysis Services data source type, and then click Query. The MDX query designer opens in Design mode.
    On the toolbar, click Design to toggle to Query mode.
    On the MDX query designer toolbar, click Query Parameters symbol. The Query Parameters dialog box opens.
    In the Parameter column, click <Enter Parameter>, and then type the name of a parameter.
    In the Dimension column, choose a value from the drop-down list.
    In the Hierarchy column, choose a value from the drop-down list.
    In the Default column, from the drop-down list, select a single value.
    Click OK. 
    In query designer dialog box, type the mdx query like below:
    with member [Measures].[FirstChild]
    as
    [Date].[Fiscal].currentmember.parent.firstchild.name
    select {[Measures].[FirstChild]} on 0,
    [Date].[Fiscal].[Date].members on 1
    from
    ( SELECT ( STRTOSET(@ParameterName, CONSTRAINED) ) on 0
    from
    [Cube]
    Here are relevant threads you can reference:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/c7146ac3-40ea-4d53-b321-c707aebbd405/how-to-pass-date-parameter-to-mdx-query
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/fd12a865-bc90-4a65-af42-ce38a8cfa29b/pass-date-time-parameter-to-mdx-query-ssrs
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Budget tab in PPOME

    Hi,
    We have upgraded to ECC 6.0 and now there is a new tab in PPOME called Budget.
    We have to fill in the Subtype field:
    "Fill in all required entry fields
    Message no. 00055"
    We would like to change this field to non required field since we dosen't use the Budget tab.
    How can we do this?? and how can we remove/hide the Budget tab?

    Hi,
    Even we are using the ECC 6 but in our system this tab is disabled. Check if any integration switch is on in the table T77S0 related to budgeting.
    Thanks
    Syed

  • I used to be able to open links in a new tab by clicking my middle mouse button, but now that I've updated it to the most recent update it doesn't work anymore. How do I fix this? I really love that feature. It works in IE and Chrome but not Mozilla.

    Ok, I used to be able to open links up in a new Tab using my middle mouse button. However, I updated firefox with the automatic Updates on the 26th of October and now I no longer can open links with my middle mouse button. Why? I use this feature just about every time I go searching on the internet so I really would like it back. I couldn't find anything that it was related to in the options so I turn this over to you guys.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • When clicking on links that open in a new window, the links don't open and Firefox freezes in a way. I can navigate the page I am on but cannot click to open a new tab or bookmark.

    When navigating the internet, if I come across a web page that has a link to open a picture or program in a new window, if I click on it, it does not open. Firefox immediately looses functionality in that I cannot open a new tab with the mouse wheel, right click to open a new tab, or use my bookmarks in either the drop down or toolbar to navigate away. I can usually still navigate the page that I am on, for example, (https://loanconsolidation.ed.gov/AppEntry/apply-online/appindex.jsp), when it freezes I cannot click on any of the content at the center of the page but I can still use the links from the list on the far left. For an example of the pictures, (http://www.insect-sale.com/), if you click on "New Arrivals" at the top of the page it takes you to a list of products that can only be viewed by clicking on them. Usually a picture of the item would open in a small window but it does not and Firefox freezes. This has also happen when I try a view a degree audit on a school's website where a program would usually open in a new window. The only thing I have been able to find that still functions properly when this happens is the home page button. I can click on it or use the wheel to open it in a tab just fine, but if I try and go anywhere else I cannot. The only way I can get Firefox back to normal is to use the Task Manager and end the process. Another thing I have noticed, that may or may not be related; is that my Norton Internet Security toolbar, that should show up below the bookmarks toolbar and above the tabs, only shows up about 1 out of every 10 times I open Firefox. Some days it doesn't show up at all. If it does show up and I log into Identity Safe, the autofill for the programed website works, even if the toolbar doesn't show up the next time I open Firefox.

    Go to Tools->Options->Apps
    Here you should see two columns: Content Type on the left, Actions on the right.
    Find and select excel spreadsheet or any other content type in the left column. There should be a corresponding action in the right column. What is it? You can use the drop-down list to select the option you want:
    Always Ask - Firefox will ask each time: What do you want to do with this file?
    Save file - Firefox will save this file to your computer
    Use - Firefox will give this file to the program to open it
    In case of saving, Firefox will either prompt you every time where you want the file to be saved, or save it to the default location. It depends on the preference in
    Tools->Options->General->Download

  • Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Remove the extensions, redownload Safari, reload the extensions.
    http://www.apple.com/safari/download/
    And if you really want a better experience, use Firefox, tons more choices and possibilities there.
    Firefox's "NoScript" will block the Trojan going around on websites. Best web security you can get.
    https://addons.mozilla.org/en-US/firefox/addon/noscript/
    Ghostery, Ad Block Plus and thousands of add-ons more have originated on Firefox.

  • Is there a way to open new tabs in the home page or some other link?

    When I open a new tab using the "+" symbol I get a blank page. I would like new tabs to open in my home page, or, if possible, a different page, like my favorite web browser, which is what I usually want when I open a new tab.
    Can this be done? I can't find the right preference for it, assuming that's the right place for such an option.

    Nothing beats about:blank in my opinion for clarity and for tab history.
    Here is an extension that does what you asked for, it is VERY large for what you get out it (which to me, what I would get out of it is confusion).
    '''NewTabURL''' :: Add-ons for Firefox (49.2 KB)
    :Select default URL when new tabs are opened: "Blank page", "Home page", ""Current page" or a user defined URL.
    :https://addons.mozilla.org/en-US/firefox/addon/newtaburl/

  • Is there a way to open new tabs on the same site without having them go to a new window?

    i like to go to article sites and open up many tabs where each tab is a new article. this allows me to quickly go from one article to the next. when i try to do this with the new firefox it opens the new tabs in a new window because they are from the same site. is there any way for me to turn that feature off?

    Do you mean the Switch to Tabs kicks in if you enter an already opened URL?
    *Switch to Tab no more: https://addons.mozilla.org/firefox/addon/switch-to-tab-no-more/

  • I would like to be able to start typing a URL directly (with no need to clear the field first) after opening a new tab with my homepage...

    I've just installed the newest desktop version of the Firefox browser because my Opera doesn't feel very well these days. I'm trying to become friends with Firefox, and that's why I've changed the new tab settings in order to have my offline homepage loaded every time I open a new tab. There is an inconvenience — when I press Ctrl+T, the cursor appears at the end of the URL. It means that when I start typing, the letters show in the address bar after the URL of my homepage, so what I need is to clear the field first.
    Is there a way to get rid of this? (If it helpes, I'm currently using Windows 7.)
    I would appreciate if I could just press Ctrl+T, type a URL, and press Enter when I want to go to a website different from my homepage. Thank you for your replies!

    Then you can use (Ctrl+L and) Ctrl+A to select all the text in the location bar or Shift+Home/End.

  • How do I delete a toolbar that was added by a plugin? Plug-in's been uninstalled, but the toolbar is still there and any new tabs open on their search engine (even though I have Tab Mix set to open tabs on a duplicate page). Help?

    Running Firefox on Windows XP3. I installed a plugin from Savevid.com, which they now require. (I've used that site for at least a year with no problem ever.) Everything was fine but it added a toolbar to my browser, and it seems to have reset Firefox somehow so that any new tab opens on "Searchqu", some low-rent search engine. I uninstalled the plug-in altogether, but the toolbar is still there, and I can't make the reset on the search engine go away. I use Tab Mix Plus (also never had this problem before with it), but no matter what I do, the tabs will not open to anything other than searchqu. (Tab Mix has the option to open to a duplicate tab - what it was using BEFORE all this - but changing that no longer has any effect.)
    Anyone know how to deal with a problem like this?

    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 or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • How can you get your homage address to open when you open new tabs? My homepage is Google, but my new tabs always open with Yahoo.

    On my old computer, all my tabs always opened to what my homepage was set to: iGoogle. Now with my new computer, my homepage is set, but all new tabs open with Yahoo! I've tried looking at tab setting but don't see a place to set it. Help!

    The behavior that you have is not the default Firefox behavior, which always opens a blank tab. You will have an add-on that is causing this. Check for any Yahoo related add-ons to see if they have this option. The freeze net assistant add-on is another one that opens Yahoo in a new tab.
    There are add-ons that allow you to specify what should appear on a new tab, but these may conflict with the add-on that is opening Yahoo.
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

  • The + symbol (to quickly open new tabs) to the right of the tab is gone. How do I get it back?

    In the last update of Firefox, the + symbol suddenly disappeared from the tabs section. In the past, this was used to open a new tab instead of having to go to the file menu. I would like to have the + symbol back on the right side of the tabs and cannot find a way to do this in the options or customize sections.

    Open the Customize window and set which toolbar items to display.
    *"3-bar" Firefox menu button > Customize
    *if missing items are in the Customize palette then drag them back from the Customize window on the toolbar
    *if you do not see an item on a toolbar and in the Customize palette then click the <u>Restore Defaults</u> button to restore the default toolbar setup
    See also:
    *https://support.mozilla.org/kb/customize-firefox-controls-buttons-and-toolbars

  • How to I get new tabs to open to the correct home page?

    When I open new tabs they just go to a Google Search page, which is very frustrating, especially when I open a new tab and try to type in the URL bar but as soon as it finishes loading Google it blanks out what I typed in and goes to the Google site. In other words, "blank" new tabs do not open to the Favorites page or even my home page. They open to Google. How do I change that? In other words, how do I get new tabs to stop opening to Google and start opening to either my home page or the Favorites screen? Thanks!

    You can modify the <b>browser.newtab.url</b> pref on the <b>about:config</b> page and set it to the desired page to open.
    *http://kb.mozillazine.org/about:config
    See also this article about the New Tab page (about:newtab):
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/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

Maybe you are looking for

  • In data transfer

    hi while transfering data to MM01 transaction , how many views you can use? what are the other problems we have to face ?

  • Call RFC

    hai      how to call RFC prog.

  • How is a file attachment stored in database?

    Hi all~~ I am developping an email application(web based) using Javamail. I need to store the attachment together with the relevant email messages in the database. Is that correct that I add an attribute called ATTACHMENT in the entity which stores t

  • On my hotmail email, a sign comes up saying *cannot get mail* the connection to the server failed

    i have a new itouch and have hotmail as my email account, today 21stn july 2012, when i went onto my mail account, a sign saying the following cannot get mail the connection to the server failed, what do i do now as i am not receiving any emails and

  • Question about DNS programing

    hi, i am creating a DNS query message, but when i send out my package, in wirshark i capture that in my package the question is unknow my package carry a domain name like "www.sun.com" and send to one of the root dns using type a. but the question is