How to make a key in OM Custom infotype

Hello everyone,
                    I have created the custom infotype in OM. I need to make one of the field in include HRI9xxx as Key field. Is any one know how to do this.

Hello Oleg,
              Thanks for replaying,  My understanding was When you create a infotype through PPCI you create structure HRI9*** with the fields you wants into infotype. SAP attach the HRIKEY include along with HRIADMIN with your HRI9*** include and create HRP9****. By default the fields in HRIKEY include will becomes Keys. I don't have a option from my client to modify HRIKEY.
Let me know is there any thing I am missing in it?

Similar Messages

  • How to make ENTER key in internet explorer run the  BIP report?

    In BI publisher 11g, users wanted that after entering the values for the parameter, they hit the ENTER key ( on the keyboard)  and the report should run .
    In Mozilla firefox, when I hit ENTER key on the keyboard report runs fine... but in Internet explorer, it does not ( infact in internet explorer TAB key works)
    How to make ENTER key in internet explorer run the report?
    Thanks
    Ashish

    Perform the following steps and tell us if it  resolve this issue:
    1. In Internet Explorer, click Tools, and then click Internet Options.
    2. Click the Security tab.
    3. There are four security zones listed:
    * Internet
    * Local intranet
    * Trusted sites
    * Restricted sites
    Click the zone being used by P6, which is noted at the bottom right hand corner of the browser window when the P6 URL is being accessed.
    4. Under Security level for this zone, click Custom Level.
    5. Under Downloads, under Automatic prompting for file downloads, click Enable, and then click OK two times.
    6. The browser will need to be restarted for the change to take effect.
    Refer to the following Microsoft Knowledge base article for additional file download and active x controls which should also be enabled: http://support.microsoft.com/kb/883255

  • How to make a key out of this data?

    Since no one replied to my last post, I'll give it another try. From an RTSP server I get two values, a key called rsaaeskey (342 bytes, without the line breaks):
      yxKBocBgTii20n9nbKfYGyGhPqtosXuq8M99yU5/PzTVNmIUsUGlpD27u
      cqN8eNFvmaO7cFVXeaMGaCfI5V+YNrd77xGQ+CUE0XFraXUvp4cF4aX1L
      ZOGe38nwX3Ba+4bQFfjmYgz3ObRuOWlw9KCi4CMP5574F+CIvutVAwtAC
      PiDFF7nVcoaBTr2QbSUile0Zs3Hyxjn9PWVaey9Nu2DgJZ8rtw6F2SkQ7
      NDHBjjUKXNIeCAeBFuV4XNiazvi3gWa4VbgITtD9jcm+7nPMAK0oBL1S3
      K3Z6FK7XVnfehYYJjRw7THMZzSvq7FtLB9QgulqQTJ3awJdwS0ACb1FkAand an initialization vector called aesiv (22 bytes):
      zcZmAZtqh7uGcEwPXk0QeAThe data is obviously Base64 encoded. However, after decoding I don't know how to make a key out of it. Trying KeyFactory's generatePublic and generatePrivate methods result in an InvalidKeySpecException with any algorithm I've tried (RSA, DSA, DH).
    I think this is a multi-prime RAS secret key (someone said they're 342 bytes long), but how do I generate a Java Key out of it?

    The rsaaeskey, decoded to binary, is a binary array of 256 bytes. Using the DUMPASN1 tool we see that the bytes are not in ASN.1 BER or DER encoding.
    C> openssl enc -base64 -d -in rsaaeskey.base64 -out test.bin
    C> dumpasn1 rsaaeskey.bin
       0 CB   18: [PRIVATE 11]
                :   81 A1 C0 60 4E 28 B6 D2 7F 67 6C A7 D8 1B 21 A1
                :   3E ABIf it were encoded in ASN.1 BER or DER encoding it will start as a "SEQUENCE" or a "SET", not as an unrecognized data.
    You need to check the exact specification of the protocol. (Are you using TSP - RFC 3161, or RTSP - RFC 2326?)

  • How can we create subtypes for om custom infotypes

    hi,
        I want the detailed procedure how to create Subtypes for Organzational management custom infotypes.
        Pls send me the detailed path how to create Subtypes for Org management.
    thanks & regards,
       Sekhar.

    Access transaction SM30/31 for table maintenance. Enter view name V_778U.
    Select maintain and enter the subtype for the custom infotype.
    Also remember to enter the time constraint for the subtypes mainatined in table T777Z.
    SPRO Path
    Personnel Management --> org management --> basic settings --> data model enhancement --> infotype maintenance --> maintain subtypes.
    Regards
    Ravikumar

  • How to make fields editable in an custom enhancement

    Hi Experts,
    My requirement is to perform some custom validations against a field FKONT(BSEG) at the line item level of FB60 and display appropriate message and make the incorrect field editable.
    I have implemented an implicit enhancement point in include MF05AFGENJ.
    The error messages are coming but I am unable to make the GL account, cost center and profit center fields editable.
    Please let me know how to make the above fields editable after displaying the error message.
    For reference, I have done the coding like this:
    IF sy-tcode = 'FB60' .
    CHECK GL_ITEMS IS NOT INITIAL.
    DATA: L_COUNT TYPE I,
          L_STRING TYPE STRING,
          L_FKONT TYPE FIPLS,
          L_TABIX TYPE SY-TABIX,
          G_FLAG TYPE C.
    DATA: WA_ZZFSTP LIKE ZZFSTP.          "Work area for ZZFSTP table
    CONSTANTS:C_MK TYPE TXJCD VALUE 'MK0000000'.
    *-- Validating the Financial budget item field
    IF GL_ITEMS-FKONT IS NOT INITIAL.
    SELECT SINGLE FKONT
                        INTO L_FKONT
                        FROM ZFSTP
                        WHERE FKONT = GL_ITEMS-FKONT.  "cost center
    IF SY-SUBRC NE 0.
       CLEAR: G_FLAG.
       G_FLAG = 'X'.
       MESSAGE W003(ZZFI) WITH 'Please enter 'Financial' 'Budget Item Field' DISPLAY LIKE 'E'.
       EXIT.
    ENDIF.
    *-- Copying the first line item financial budget item field to all the line items in the internal table
    DESCRIBE TABLE GL_ITEMS LINES L_COUNT.
    IF L_COUNT > 1.
      READ TABLE GL_ITEMS INDEX 1.
      IF SY-SUBRC = 0.
            CLEAR: L_FKONT.
            L_FKONT = GL_ITEMS-FKONT.
    *-- Assign the tax jurisdiction codes in all the line items
             LOOP AT GL_ITEMS.
               CLEAR: L_TABIX.
               L_TABIX = SY-TABIX.
               GL_ITEMS-FKONT = L_FKONT.
               GL_ITEMS-TXJCD = C_MK.
    *-- Copy the first financial budget item number and tax jurisdiction code MK0000000 in all line items
               MODIFY GL_ITEMS INDEX L_TABIX TRANSPORTING FKONT TXJCD.
    *-- Populate tax jurisdiction and FKONT financial budget item number in XBSEG table
               L_TABIX = L_TABIX + 1.  "top record in XBSEG is for header
               READ TABLE XBSEG INDEX L_TABIX.
               IF SY-SUBRC = 0.
                 XBSEG-FKONT = L_FKONT.
                 XBSEG-TXJCD = C_MK.
                 MODIFY XBSEG INDEX L_TABIX.
               ENDIF.
             ENDLOOP.
      ENDIF.
    ENDIF. "describe statement
    CLEAR: WA_ZZSTP.
    *-- Validate the amount and GL account against the FKONT(financial budget item) number
    SELECT SINGLE FKONT
                  ZZWRBTR
                  ZZHKONT
                  ZZKOSTL
                  ZZPRCTR
           INTO CORRESPONDING FIELDS OF WA_ZZFSTP
           FROM ZFSTP
           WHERE FKONT EQ GL_ITEMS-FKONT.
    IF sy-subrc EQ 0.
    IF BSEG-WRBTR > WA_ZZFSTP-ZWRBTR.
           CLEAR: G_FLAG.
           G_FLAG = 'X'.
           MESSAGE W003(ZZFI) WITH 'Amount entered' 'cannot be' 'greater than ' WA_ZFSTP-ZZWRBTR DISPLAY LIKE 'E'.
           EXIT.
    ELSE.
             CLEAR: G_FLAG.
            G_FLAG = 'X'.
            SET CURSOR FIELD 'GL_ITEMS-HKONT'.
            MESSAGE W003(ZZFI) WITH 'Incorrect GL account' 'number entered for' 'given financial' 'budget item number'.
            EXIT.
           ELSE.
    *-- Check for cost center and profit center at line item level
             LOOP AT GL_ITEMS.
    *-- Both cost center and profit center is initial.
                IF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                    CLEAR: G_FLAG.
                    G_FLAG = 'X'.
                    SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                    SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                    MESSAGE W003(ZZFI) WITH 'Please enter' 'cost center' 'or' 'profit center'.
                    EXIT.
    *-- Either cost center or profit center is initial
                ELSEIF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS NOT INITIAL.
                    CHECK GL_ITEMS-PRCTR NE WA_ZZFSTP-ZPRCTR.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect profit' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ELSEIF GL_ITEMS-KOSTL IS NOT INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                   CHECK GL_ITEMS-KOSTL NE WA_ZFSTP-ZKOSTL.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect cost' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ENDIF.
             ENDLOOP.
           ENDIF. "GL Account
    ENDIF. "Amount check
    ENDIF. "SY-SUBRC check
    ENDIF.
    EXPORT G_FLAG FROM G_FLAG TO MEMORY ID 'ZER'.
    Please let me know how to make GLaccount,cost center and profit center fields editable.
    Regards,
    Sangeeta.

    Hi.. chaek the below links. may be useful to u.
    Making Table control records Editable / Non-editable
    Table control with both Editable and non Editable fields
    Regards,
    KP.

  • 1. How to view my work full screen? 2. How to make "F" keys behave proper?

    Hello All,
    Two softball questions for FCP batting practice:
    1. Somewhere along the way, I came across an explanation on how to make my canvas full screen. I found a post mentioning View, External Video, and something about cinema (not in front of it right now). I don't have an external monitor, so how can I accomlish this on my laptop?
    2. Speaking of laptops, many of the "F" keys don't work as described in the manual. For example, F12 brings up a dashboard with weather in Cupertino, CA. Not exaclty conducive to my workflow. Is there a place to tell the MacBook Pro that when operating this application, default to the "F" commands within the software?
    Thanks All.
    DG

    Hey Steve,
    Point well taken. In the past week, I purchased a camera, Final Cut, MacPro, Mic, Lights, Tripod, etc. I have purchased two books that were recommended on this site (both excellent), and a CD tutorial. I have been out shooting every day, doing tutorials and editing (to the best of my ability) every night. All of that being said, it's a tremendous amount of information, and some of the finer points get lost. I am pleased to say that I have completed my first piece on hunger experienced by seniors in our community. Very gratifying.
    So, I fully appreciate the apparent laziness inferred from my post, but trust me, I'm fully engaged, just overwhelmed.
    Shane, thanks for "pinch hitting". Both solutions worked.
    DG

  • How to make a key field manadatory, in a Z-Table (SE11)

    Hi,
    I've created a Z-table is se11 and one of the key fields is IWERK. Now the user does not want this field to be blank when they enter data into the table via SM30.
    Does anyone know how to make this field so that a blank entry is not acceptable.
    Many Thanks!

    Hi Robert!
    One way would be to adjust SM30 to a mandatory field (in SE11 of course), but this field sounds like you can assign T001W as a check table. In the foreign key definition, you can give a error message, which is called in case of wrong entries in screens -> there is no empty entry in T001W, you can only maintain valid values and got a value list.
    Regards,
    Christian
    P.S.: No, you need to change SE11->Table maintenance generator->Enviroment->Modification->Maintenance Screens->Element list->Tab Special attr. column Input. Set 'required'. Otherwise empty is still allowed
    Message was edited by: Christian Wohlfahrt

  • How to make modifier keys lockable? (like Caps Lock for Ctrl or Alt)

    Playing around with the non-modal text editor ne, I found myself wondering if one could simulate a modal interface (like vim has) by having something like "Ctrl Lock" or "Alt Lock" (analogous to Caps Lock) and thus a "ctrl mode"/"alt mode". I would like to try this, but I am not sure how to make it happen.
    My best guess is that this could be accomplished via XKB, but its documentation looks pretty intimidating. Is anyone here proficient in XKB and could point me in the right direction?
    Other ideas:
    – Is this something that a terminal emulator could do? Is there already one that can do it?
    – Or a shell?
    – For console applications, would it be possible to have a small wrapper that did nothing but intercept keyboard input and just pass everything through to the wrapped process, except that it would take into account the desired lockable modifier key? (I am thinking of tput here, but from my first search it appears that it doesn't do this sort of thing.)

    @Trilby: Thank you for the elaborate input!
    @drcouzelis: "sticky keys" normally means that modifiers remain active only until the next keypress, while I want a way to lock them in active state for an arbitrary number of keypresses. But still, "sticky keys" was a worthwile input for the search engine.
    The program xkbset, which can be used to set XKB options on the fly, has a function that comes very close to what I desire:
    $ xkbset h
    Usage: To set or unset various options:
    xkbset <options>
    where <options> may be all or any of (the '-' switches the feature off,
    otherwise it is switched on):
    To switch sticky keys on or off, and optionally set or reset:
    () two keys pressed at the same time stops sticky keys;
    () a modifier pressed twice will be locked:
    [-]{sticky|st} [[-]twokey|[-]latchlock]...
    I cannot select specific modiers to be affected with xkbset, but that would be fine with me. Sadly, it didn't completely work for me:
    – It doesn't affect Alt at all for me.
    – The effect seems to go away as soon as I change the window. (Maybe I need to invoke xkbset from .xinitrc for its effects to persist throughout the session? I will try that.)
    So I went on and tried to configure XKB manually. I got up to a certain point without studying the documentation in-depth, but now I have landed on an error message that seems to suggest to me that I would have to get to a better understanding about the layout files before I could understand it. Here is what I did:
    1. Got my current XKB configuration:
    xkbcomp :0 output.xkb
    2. Editet output.xkb to include the following at the end of the xkb_compatibility section:
    //Hoping this makes the ^-key into a Ctrl-Lock key:
    interpret TLDE {
    action= LockMods(modifiers=Control);
    3. Then I recompiled the configuration back into the running X server:
    $ xkbcomp out.xkb :0
    Warning: Compat map for group 2 redefined
    Using new definition
    Warning: Compat map for group 3 redefined
    Using new definition
    Warning: Compat map for group 4 redefined
    Using new definition
    Error: Couldn't lookup keysym
    Symbol interpretation ignored
    Warning: No symbols defined for <AB11> (keycode 97)
    Warning: No symbols defined for <JPCM> (keycode 103)
    Warning: No symbols defined for <I120> (keycode 120)
    Warning: No symbols defined for <AE13> (keycode 132)
    Warning: No symbols defined for <I149> (keycode 149)
    Warning: No symbols defined for <I154> (keycode 154)
    Warning: No symbols defined for <I168> (keycode 168)
    Warning: No symbols defined for <I178> (keycode 178)
    Warning: No symbols defined for <I183> (keycode 183)
    Warning: No symbols defined for <I184> (keycode 184)
    Warning: No symbols defined for <FK19> (keycode 197)
    Warning: No symbols defined for <FK24> (keycode 202)
    Warning: No symbols defined for <I217> (keycode 217)
    Warning: No symbols defined for <I219> (keycode 219)
    Warning: No symbols defined for <I221> (keycode 221)
    Warning: No symbols defined for <I222> (keycode 222)
    Warning: No symbols defined for <I230> (keycode 230)
    Warning: No symbols defined for <I247> (keycode 247)
    Warning: No symbols defined for <I248> (keycode 248)
    Warning: No symbols defined for <I249> (keycode 249)
    Warning: No symbols defined for <I250> (keycode 250)
    Warning: No symbols defined for <I251> (keycode 251)
    Warning: No symbols defined for <I252> (keycode 252)
    Warning: No symbols defined for <I253> (keycode 253)
    The "Error" part is where I am currently stuck. It tells me that my changes were ignored (I no that it's about them because it goes away when I comment them out), but I don't yet understand why.

  • How to make field key for user fields cant be changed after project release

    Dear Expert,
    How can we make field key for user fields cannot be changed once we release the project/wbs?
    Cheers,
    Nies

    Do you mean 'field key' in the project profile in SPRo?
    I think after a project is created a change in the field key wont affect the fields in CJ20N..
    Can you verify?
    Regards
    Ramesh

  • How to make our own Ajax based custom compnent

    hi
    i want to make my own Ajax based custom compnent.
    i know JSF custom comppnents, but dont know how to add Ajax functionality in it.
    what should i have to learn for this.
    can any one guide me. if some one have code example it will be appreciated
    br,
    Haroon

    You can read tutorials or manuals from the suppliers of AJAX for JSF components. And of course take a look into the code.
    Examples:
    http://getahead.ltd.uk/dwr
    http://icefaces.org
    http://www.exadel.com/web/portal/products/VisualComponentPlatform
    https://bpcatalog.dev.java.net/ajax/jsf-ajax/
    Overview:
    http://www.jsftutorials.net/
    http://www.jsfmatrix.net/

  • How to make 260 gtx 55nm VRM custom heat sink

    Warning: This will void your warranty
    The caveat above added by Mike, Forum Administrator
    How to Create a Custom 260 GTX 55nm VRM Heat Sink
    Introduction:  This guide was created to show how you can make a custom VRM heat sink from the stock heat sink to be used with an aftermarket cooler.
    Reason:  Many aftermarket companies, such as Thermalright and Arctic, fail to provide a good VRM heat sink for the 55nm 200 series GTX’s.  The solution often involves poorly sticking thermal tape or no solution at all, such as the Arctic cooler, which states it’s ok to leave the 260 GTX 55nm VRM chips uncovered.  To leave the VRM chipset uncovered maybe ok for stock clocked cards but what about an over clocked card or an enthusiast trying to push the performance envelope?  That is after all, what these aftermarket cooling solutions are all about; especially the Arctic cooler which can cool up to 250 watts!  Fortunately the solution is very easy and should take you no more than 10 to 15 minutes to address.
    Use:  To create a custom made VRM heat sink to be used with an aftermarket cooling solution such as the Arctic cooler and Thermalright cooler.
    Tools: 
    Dremel, with metal cutting wheel and sanding wheel.
    Thermal Pads, which you can buy in sheets from any performance pc store and should be 1.0 mm in thickness.
    Philips Screw Driver, very small size would be ideal.
    Before we begin I’d like to remind you that removing or tampering with the stock heat sink will more than likely void your warranty.  This guide was also constructed assuming an aftermarket cooler will be installed.  The card used in this guide is a MSI 260 GTX 55nm with reference PCB design (REV 1)  but will also work with other 200 series GTX cards.  When working on any electronic device, always make sure you are well grounded!!!
    Step 1:  Remove the screws with the springs only from the back side of the graphics card as shown in figure 1A.  There is a total of 13 spring screws that need to be removed.  Check to make sure that your card does not have two small additional securing screws which are located on the exhaust side of your graphics card with your DVI ports.  If your card does contain these additional screws, remove them before continuing on to step 2.
    Step 2:  Gently work the card from the heat sink.  NOTE: Do NOT force or pry heavily, you will damage your card.  It may take a little caressing depending on how much poor quality thermal putty was used from the manufacturer.
    Step 3:  Remove the fan power connector from the fan power port as shown in figure 2A.
    Step 4:  Remove and discard all the old thermal pads.  You should never re-use thermal pads and especially not the low quality manufacturer ones!  NOTE: keep in mind the location of the VRM thermal pads since you will be making replacements.
    Step 5:  Clean off the voltage regulator chips with a tissue or with a soft eraser as instructed by Arctic.  Personally I use a tissue very lightly dipped in alcohol to clean the surface of the chips.  The voltage regulator chips for the 260 GTX 55nm are shown in figure 3A.  NOTE: I will not be covering the cleaning of the GPU or Ram since it does not pertain to the VRM heat sink.
    Step 6:  Flip the heat sink so you are looking at the bottom where the thermal pads were attached.  There are 6 very little screws which need to be removed from the assembly.  Figure 4A shows the location of the screws attaching the plastic shroud assembly.  Once they are removed gently pry the plastic shroud off and set it aside. 
    Step 7:  Now turn the heat sink over and remove the 4 black screws from the top side of the heat sink.  The fan should come off freely and set that aside as well.  Your heat sink should look like figure 5A.
    Step 8:  Now we are ready to begin cutting the stock heat sink.  With a sharpie draw a black as shown in figure 6A.  This will give you a marker to follow when cutting. 
    Step 9:  Attach the metal cutting wheel to the dremel and begin cutting across the black line.  Danger: ALWAYS wear eye protection when cutting a metal object or any object.  The metal is very soft and not much force is needed to cut it.  Try not to damage the mounting holes when cutting (figure 6A).  You may need to lightly sand the cut edge depending on how rough or jagged it is after cutting.  When you’re done you should have a piece as shown in figure 7A.  This will be your VRM heat sink.  Important: MAKE SURE you clean the heat sink well and remove all metal particles.  Also allow the heat sink to dry well before installing!!
    Step 10: Next cut the new thermal pads to the shape of your VRM chips.  It should look like figure 8A when you are finished.
    Step 11:  Gently place the heat sink into place and attach the screws.  When you are done it should look like figure 9A. 
    Congratulations on your custom made VRM heat sink.  The great thing is that it never has the risk of falling off, such as thermal taped ones, and can be removed and installed as many times as you wish.  It also does not contain thermal adhesives which also do not facilitate removal as well.  The stock spring screws will also insure secure contact between the VRM chips and the sink.  The custom heat sink comes with nicely built in fins and much better cooling performance then individual dinky VRM heat sinks provided from the Arctic or Thermalright coolers. 
    p.s. It is possible to put old heat sink back on the card since each section has its own mounting screws but I would not recommend this unless absolutely necessary.

    I'm running a corsair 750 watt PSU
    Q660
    Gigabyte g31 motherboard
    1TB WD Hard drive
    OCZ 1066mhz of ram
    And I recently swapped the lighting with a gtx 260 and see what would happen in the same system. The GTX260 ran games smoothly, and would run furmark fine with the newest nvidia drivers. Swap back the gtx 275 lightning, and games are really slow and choppy especially when you add any kind of AA. The FPS is literally cut in half when I switched to the msi gtx 275. I think it's safe to say that the GTX275 is defective.

  • How to make F8 key to be just F8 key?

    I have problem with MacBook (US keyboard) - F8 is mapped as trigger for keyboard backlight just as on MBP, while MB doesn't have kb backlit at all. I discovered problem when trying to install Windows XP in Parallels - Windows setup asks to press F8 to agree with license before continuing setup. So far I tried everything to make F8 function as simply F8 key with absolutely no luck. Every time I oress it it not only brings grey transparent screen with some tool icon (presumably the backlit screen) but also bumps keyboard input out of Paralles back to OSX. Nothing so far works, no fn key use, disablig and re-enabling dasboard or expose, no luck.
    I would love to remap this key - please someone tell me how to do it.

    I think what you want is in the Keyboard & Mouse control panel. The setting "Use the F1-F12 keys to control software features" should make the function keys act as function keys. You would then use the "fn" key in the lower left to access the "hardware" features (like screen brightness, etc.)
    This really just reverses the meaning of the "fn" key, so if you are unable to use fn+f8 now, this might not work either. In that case, you might suspect a defective keyboard.

  • How to make restricted key figure global  (There are same topics)

    Gurus,
    Sorry to post this question again but I was not happy with other topics answers. I am developing a SAP BSC (Balanced Scorecard) version 6.0. In order to generate results I need to use 'Calculated Key Figures' (SAP BSC does not read Restricted ones). No problem so far. However I have a query from the Controlling area of my company where all financial KPIs are restricted in Rows (right side of Bex) instead under 'Restricted Key Figures' area on the left panel. They are not global. It is a lot of them. My option, for while, is to recreated all of them on the left side and than transform them in 'Calculated Key Figures'.
    There is other way to 'move' these 'Selection' to make them global on the left side? This would save me two weeks.
    Kind Regards,
    Gilson Teixeira

    Hi,
    In Query Designer,in left panel....expand 'KEY FIGURES' tree and rght click on 'Restricted Keyfigures'--->new restricted KF.
    regards
    MR
    Message was edited by: M.R Sashi

  • Re: How to create new subtypes for OM  Custom infotype

    Hi Gurus,
    I  facing  problem when creating for Subtypes in  OM , i need create Infotyes with Subtypes in OM.Check below steps how i created
    1. I create Structure in se11. HRI9119
    2. In PPCI , i create infotype 9119
    3.In SM30 , I Maintain table T777i, here i selected my infotype (9119), then i clicked on infotype per object type and assign subtype (9229, 9339) to the my infotype .
    4. After that, in same screen, i selected my infotype and assign TIME CONSTANT to my all subtype and infotypes.
    After this , any think required to maintain , Plz tell me.. i didn't find my subtype in PP01.
    Thanks and Regards ,
    Venkatesh.M

    Hi Venkatesh,
    The new subtype has to be maintained in table V_778U.Also you need to relate the new subtype to object type in table T777Z and miantain the time contraints.
    Please refer following path in IMG for further information
    Personnel Mgt > OM > Basic settings > Data model enhancement
    Hope this helps.
    Regards,
    Malathi V.

  • How to edit the customizing infotype

    Hi All,
    I want to make some changes in a customizing infotype i.e. 9003.I want to know the procedure.

    This might be useful
    [http://www.sap-img.com/human/how-to-create-a-hr-infotype.htm]
    http://www.sapdev.co.uk/enhance/enhance_infotype.htm

Maybe you are looking for

  • My Firefox will not open to the start page

    when I start fire fox the tab says "Problem loading this page" and I get this message in the window Unable to connect Firefox can't establish a connection to the server aThe site could be temporarily unavailable or too busy. Try again in a few moment

  • How to create a Page flip/Turn

    Hi to all, I am into the process of creating a Digital Scrap book(Interactive) with Action script. I have four QT movie files created with After Effects. I simply want to make an Interactive scrap book for the school children so that when they click

  • Buttons can only be pressed below the text and highlight is never visible

    So I'm running Photoshop 14.2.1 and Encore CS6 and no matter what I do whether it's dragging my buttons in from the Library or creating my own buttons in photoshop ever button in preview mode is only clickable when th curser is below it and not actua

  • Change customer for a project!!!!!!!!

    Dear Gurus, I have a project number for which was changed to a supply order. Just i created the project entering the details.No cost or anything assigned to this. Now i want to assign this project for another project contract i received now. I am abl

  • Attaching Survey to an Activity

    Hi, I have a rather interesting problem that I am trying to resolve.  Perhaps somebody has an idea. We have a BSP Survey on the the Company's external website which is filled out by customers who register new products.  This survey contains a hidden