In OM, Hiding some default infotypes in PP01 and PP02

In OM, For TCODE "PP01" and "PP02", the following infotypes are displayed:
Object
Relationships
Description
Department/Staff
Planned Compensation
Vacancy
Acct. Assignment Features
Authorities/Resources
Work Schedule
Employee Group/Subgroup
etc..
But I want to hide all the infotypes except Object, Relationships and Vacancy. How do I do it? From which IMG node?
Edited by: Vikrant on Aug 20, 2008 1:37 PM

Hi VIkrant,
there is a infogroups. you can maintain it in spro make sure that the only infotype set to your country are those you want to see in the pp01 and pp02.
thanks
Toti

Similar Messages

  • Default Pay scale group and Level in infotype-0008

    Hi,
    While hiring should display the default Pay scale group and Level in infotype-0008 or the pay scale group and level can default from the Job or position. Itu2019s possible? Thanks in advance.
    Regards

    No there is no standard Feature to default PSG and PSL. TARIFF is for PSA and PST.
    Wait for some body may have some information.
    Afrasyab

  • How i need to write a logic to generate idoc for some of infotypes, when i change the single infotype

    Hi experts,
         I have an requirement , when I change any infotype record from pa30 or pa40, i.e
    suppose I am changing the infotype 0002  in pa30 , the idoc only generated for that changed infotype only,
    but I need it to generate the idoc for  some other infotypes also I.e(0000,0002,t528t, 0016).
    So please give me some help to generate idoc when I run a rbdmidoc(bd21).
    Thanks in advance.
    Venkat 

    yes, visible bounds is reading the non-visible masked objects too.
    you're going to have to do it the hard way, loop through all your objects to get your bounds manually, and while you're at it, test for clipping masks and use the masking path instead.

  • How to pass some default values in all elements which are blank in xslt.

    Hi,
    Help needed:
    Scenario:
    After .xslt transformation, there are some elements which are being mapped but left blank. I want to assign some default values to it like '0'. How to do that.
    Thanks.

    One solution would be something like this...
    http://remysharp.com/2008/08/15/how-to-default-a-variable-in-xslt/
    Or you can use a template like this...
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="node()|@*">
         <xsl:copy>
           <xsl:apply-templates select="node()|@*"/>
         </xsl:copy>
    </xsl:template>
    <xsl:template match="Title">
        <xsl:choose>
            <xsl:when test="string-length(normalize-space(.)) = 0">
                <Title>default</Title>
            </xsl:when>
            <xsl:otherwise>
                <xsl:copy-of select="."/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    </xsl:stylesheet>For every empty "Title" node, this template will add <Title>default</Title>... If the Title has value it won't be changed... You can change this to your fields/your defaults... If you need default for other field just add another template in the same transformation...
    Cheers,
    Vlad

  • How to set file name in a JFileChooser to be some default String?

    Dear all,
    I am tring to make my JFileChooser more user-friendly, so every time that a JFileChooser show up, I would like to fill the file name with some default String, instead of just leaving them blank.
    Does anybody know how to do this?
    Many Thanks!

    look up the set...() methods of the JFileChooser api docs

  • In system preferences, I have set my screen saver folder.  My selection is not maintained.  It constantly reverts to some default.

    In system preferences, I have set my screen saver folder.  My selection is not maintained.  It constantly reverts to some default.

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • EVS  , change some default properties

    Hi ,
    I am using EVS for input filed .
    I want to change some default properties  , like :
    1. The EVS arrange the results in 6 values every page , i want to decide  how many results each page .
    2. The EVS display 2 columns , the setFieldLabel () method, set the lable of the "key" column.
    Which method change the lable of the  description field ( I already tried : setDescription && setColumnLabel ) ?
    Thanks ,
    F.F

    Hi FF
    Please go through these links
    Re: Extended Value Selector
    /people/valery.silaev/blog/2006/03/10/minus-evs-plus-ovs-value-help-smart-input
    Re: Extended Value Selector
    regards
    kalyan

  • Empty JList resizes to some default size

    Thanxin advance for reading (and replying).
    I have a 2 JLists added in a ScrollPane placed in a GridLayout of 2x1.
    I can add/delete some elements from first list into the second.
    If there are some elements in 2nd JList, then its size is set as expected.
    The moment 2nd JList becomes empty, it's width increases to some default size.
    After this, if I add some element again into this JList, its size shirnks back to the proper one.
    Can anyone explain this crazy behaviour.

    I was not able to reproduce this crazy behavior. Please feel free to post your own testable program.import javax.swing.*;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    public class TwoListsTest extends JPanel {
         public TwoListsTest() {
              super(new GridLayout(1, 2));
              final DefaultListModel leftListModel = new DefaultListModel();
              final DefaultListModel rightListModel = new DefaultListModel();
              final JList leftList = new JList(leftListModel);
              final JList rightList = new JList(rightListModel);
              for (int i = 0; i < 10; i++) {
                   leftListModel.addElement("left value " + i);
                   rightListModel.addElement("right value " + i);
              JPanel panel = new JPanel(new BorderLayout());
              panel.add(new JScrollPane(leftList), BorderLayout.CENTER);
              JButton button = new JButton(new AbstractAction("Move selected to right >>") {
                   public void actionPerformed(ActionEvent e) {
                        int index = leftList.getSelectedIndex();
                        Object item = leftList.getSelectedValue();
                        if (item != null) {
                             leftListModel.removeElement(item);
                             rightListModel.addElement(item);
                             leftList.setSelectedIndex(Math.min(index, leftListModel.getSize() - 1));
              panel.add(button, BorderLayout.NORTH);
              add(panel);
              panel = new JPanel(new BorderLayout());
              panel.add(new JScrollPane(rightList), BorderLayout.CENTER);
              button = new JButton(new AbstractAction("<< Move selected to left") {
                   public void actionPerformed(ActionEvent e) {
                        int index = rightList.getSelectedIndex();
                        Object item = rightList.getSelectedValue();
                        if (item != null) {
                             rightListModel.removeElement(item);
                             leftListModel.addElement(item);
                             rightList.setSelectedIndex(Math.min(index, rightListModel.getSize() - 1));
              panel.add(button, BorderLayout.NORTH);
              add(panel);
         public static void main(String[] args) {
              final JFrame frame = new JFrame(TwoListsTest.class.getName());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setContentPane(new TwoListsTest());
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        frame.pack();
                        frame.show();
    }

  • Hiding some fields from ALV report

    Hi All,
    I want to know if there is way to hide certain fields in ALV for some users only and not for others?
    If I use the option NO_OUT = 'X'  it will not be displayed in the list but the user can see the in the Layout option fields but if use NO_OUT = 'X' and TECH = 'X' the field will not be in the list and in the layout also but other users will miss that field.
    If I create user specific variant, but once the user is in the report he can change the layout so certain fields cannot be hidden.
    So, is there any way to hide some fields for certain users and not for others without hard coding user ids in program and restricting the fields from display??
    Thanks in Advance.
    Sonali.

    Thank You Vijay for the reply.
    I knew that Authorization object was the final solution but before using it I wanted to find out if there was a way in the ALV report to restrict certain fields.
    Sonali.

  • Is there a way of aligning the images in iweb photoalbums other than have them be a square?I have them at same height and resolution but htere is a default that shrinks them and aligns them at the bottom.Thanks.

    Is there a way of aligning the images in iweb photoalbums other than have them be a square?I have them at same height and resolution but htere is a default that shrinks them and aligns them at the bottom.Thanks.

    So how did you do it?
    by understand what iweb widgets do, in this case setting gridEntry widget's scalMode preference from fill to fit.
    then reset the displayed image, so it fits in the display area even if it's portrait aspect.
    however, i found some glitches in gridEntry widget that's quite strange... but all fix-able.
    perhaps, iweb experts (whose had poked at my example) here can chime in.

  • Assigning default values to root and subnode attributes

    Hello,
    I created a BO with a root node. In order to assign some default values after a root instance is created, I've implemented a determination. Everything is working as expected. When the instance is created (and only then) the init method is processed and the default values get assigned.
    As a next step, I added a subnode. I need to assign some default values to a new instance as well. So, I've created a determination for this subnode, in the same way as I did it for the root node.
    Now, when a new instance is created, the init method of the root is processed, but not the init method of the subnode. Only when I change a value of a subnode attribute and do a save, the init method of the subnode is processed and the init method of the root node as well (overwriting any changes with the default values, which is wrong).
    How can I achieve that after instance creation (and only at this point), the init method of the root and then the init method of the subnode are processed?
    Thanks for any advice.
    regards,
    Ulli

    Hi Ulli,
    It should work if you have configured as rightly mentioned by Tilmann.
    but If you want to debug the framework to understand the behaviour, you have to go to class - /BOBF/CL_FRW.
    Put a break-point in any of these method - CHECK_AND_DETERMINE / DO_DETERMINATIONS
    / DO_DETERMINATIONS_RETRIEVE
    / DO_DETVAL
    Thanks,
    Bharath.

  • Trying to override the default af:tree expanded and collapsed icons

    Hi,
    I initially hijacked a thread from 2010 that was vaguely similar to what I need to ask, but a kind forum moderator split my post out to stand on its own merits.
    I am trying to override the default af:tree expanded and collapsed icons I am using the following styles for my af:tree but they are not reflecting any thing on my tree with the styleclass orgType.
    af|tree.orgType::expanded-icon {
    content: url("../images/ac-expand.png");
    cursor: default;
    af|tree.orgType::collapsed-icon {
    content: url("../images/ac-collapsed.png");
    cursor: default;
    af|tree::expanded-icon {
    content: url("../images/folder_open.png");
    cursor: default;
    af|tree::collapsed-icon {
    content: url("../images/folder_close.png");
    cursor: default;
    After working for long hours I realized that there is some problem with af:tree and treeTable. They are not taking the styles where as for the other components, every thing works fine. Is there any way to achieve the task. Could you suggest any alternative way to do this. Thanks in advance. Your suggestions for this task can really help me and my team a lot.
    Regards,
    Krishna Sumanth.

    Hi,
    do the icons show without the style class reference used in the skin file? If so, then the style class for this component might be rendered differently for the tree, e.g.
    .orgType af|tree ...
    Frank

  • Some keys as ENTER, SPACE and BACKSPACE type characters

    Some keys as ENTER, SPACE and BACKSPACE are not working properly in my HP Pavilion dm4 1055br. When pressing one of these keys type two or three characters ( ): ENTER (lçj), SPACE (.;M), BACKSPACE (~h). This latter at the same time turn off the F11 key (sound). The light of wireless key (F12) does not turn on. When turn off the F12 key, all the keys mentioned work well.

    Dear Customer, Welcome and Thank you for posting your query on HP Support Forum It looks like you are having issues with the Keyboard on your Notebook.We will surely assist you with this. Troubleshooting: Step 01. Click on the Start Button and go to Control PanelStep 02. Open the Device Manager and expand the Keyboard from the listStep 03. Right click on Standard PS/2 Keyboard and click on UninstallNote: This driver will get installed again automatically on your NotebookStep 04. Please turn OFF the NotebookStep 05. Un-plug the Power/AC Adapter and also remove the Battery tooStep 06. Press and Hold the Power Button of the Notebook for a full minuteStep 07. Now let's re-insert the battery back in and plug back the Power/AC AdapterStep 08. Start the Notebook and keep tapping F10 Key during the startup to access the BIOSStep 09. Once you get to the BIOS, Please press F9 or F5 Key[Model specific] to load setup defaults for the BIOSStep 10. Use the arrow keys to say "YES" and hit enterStep 11. Now let's press Esc/Escape Key. Save Changes and Exit - YesStep 11. Now please wait till the Unit loads the Windows Operating system If the issue still persists please check and verify if an External Keyboard works fine with your Notebook Note: Please click on the below shown link to find more troubleshooting stepshttp://h10025.www1.hp.com/ewfrf/wc/document?docname=c03738933&tmp_task=solveCategory&cc=us&dlc=en&lc=en&product=5442782 You also need to download and install the BIOS driver first and then Chipset driver followed by Graphics driver from the HP Website
    Note: Please follow this order only while installing the driver - BIOS, Chipset and then Graphics Hope this helps, for any further queries reply to the post and feel free to join us again   **Click the White Thumbs Up Button on the right to say Thanks**Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem. Thank You,K N R KAlthough I am an HP employee, I am speaking for myself and not for HP

  • There are two folders in the My Music folder dedicated to iTunes music:  •My Music AppleReceive   and  •My Music iTunes iTunes Media Music    They share many of the same titles, although some duplicates may be mp3 and m4a. Confusingly, neither for

    There are two folders in the My Music folder dedicated to iTunes music:
    •My Music > AppleReceive
    and
    •My Music > iTunes > iTunes Media > Music 
    They share many of the same titles, although some duplicates may be mp3 and m4a. Confusingly, neither format seems to be exclusive to the AppleReceive or iTunes Media folder.
    I'm reluctant to playing the "delete one and see what happens" game.
    Any theories/suggestions?

    BCHeller wrote:
    There are two folders in the My Music folder dedicated to iTunes music:
    •My Music > AppleReceive
    No idea what this folder is. Sounds like it is something you created & named.
    •My Music > iTunes > iTunes Media > Music 
    This is the default folder iTunes uses for music.

  • Org.Assignment Infotype start date and End date is getting wrong.

    Hi, When i create a new employee in PA40, in Org. Assignment infotype start date and end date is getting wrong. for eg. When i create an employee on 01.04.2014.    In org. assignment infotype its getting like this. 01.01.2014  to  31.03.9999  and 01.04.9999 to 31.12.9999  Two date entries are creating by default.

    Hi
    Check in the Table - T588Z : Dynamic Actions ,is there any custom routines causing the defaulting dates functionality.
    Thanks,
    Sreeram

Maybe you are looking for