How to control PNP LDB using personnel are alone

Hi all!
Any body can tell me, how control the pnp ldb using personnel area and employee group. bcaz in the standard selection screen it is given as
<u>selection.</u>
Pers.area/subarea/cost cente :
Employee group/subgroup
Thx,
palani

Hi Palani,
Open the ABAP report in change mode
     Select GOTO from Menu Bar
        Choose ATTRIBUTES from dropdown list
           New Window will pop-up
               Click on button "HR REPORT CATEGORY"
                  New Popup will apeear
                     Report selects using:                                              
                     Master data
                     YOU will find lots of "rep.class" to choose here...
Hope this will serve your requirement...
Best Regards,
Aslam Riaz

Similar Messages

  • How to control movie clips using mause scroller...?

    ....please look
    http://www.nagaoka-id.ac.jp/gallery/gallery.html
    ...how to control movie clips using mause scroller...?

    Hi Ldavinci, I have noticed your posts on that particular
    site before. Just chiming in here... don't be afraid of Flash Help
    menu. There's a wealth of information there and I've found it much
    faster than waiting for a response from the forum. Then if it still
    doesn't make sense, at least you have a basic idea of specifics to
    ask.
    If you search for mouse wheel, you'll see an example under
    the Actionscript 2.0 Language Reference on this topic. That said,
    here's the example:

  • Default Payroll Area using Personnel Area

    Hi,
    There is a feature called ABKRS i.e. 'Default value for payroll area'. I want to know if you can default the payroll area using personnel area / personnel sub-area because there is no field decision operation for personnel area/sub-area. Please guide me if there is any way out to it's solution.
    Thanks,
    Irfan Malik
    SAP HR Consultant
    SIEMENS Engineering Co. Ltd. Pakistan

    Hi,
    There is a provision to default the payroll area based on the Personnel area. If the PA / PSA decision parameters are not available at your end you can change the settings for ABKRS feature provided you have the rights to do the same.
    In PE03 for feature ABKRS, select attributes and hit Change.
    There you will see a Tab as "Struct" on the bottom left.
    Click it. You will see various parameters EE, ESG, PA ,PSA, etc.
    Only the ones that are selected will appear as decision parameters for the tree in ABKRS.
    So if PA PSA are not selected, select them, save and then activate the feature.
    Hope this helps.
    Regards,
    Shreyasi.

  • How to control SWF Video using JavaScript?

    Hi,
    I'm developing a web page which will use Flash Videos. I need
    to control the video without using a typical skin. The current tool
    I'm using to convert my wmv to SWF FLV is Coffee Cup. A hex edit
    suggests this is a Version 8 SWF.
    I am trying to write some javascript to control which Frame
    is displayed. I have seen code such as movie.TGotoFrame(...); and
    movie.GotoFrame, movie.StopPlay() etc. Unfortunately I cannot seem
    to use these methods. Eventually I suspected that my SWF simply did
    not make these methods available and when I run my video in my web
    page a RightClick shows a Context Menu that has no Reverse,
    Forward, Back options. Other SWF videos do have these options
    (obviously). This seems to prove that nothing I could code would
    make the GotoFrame work (ie no Forward (by one frame) option in
    menu suggests it could never work from javascript).
    Some Questions
    Is there a tool to examine a SWF to see what methods are
    available to javascript control? (expose the API) and is there a
    setting required in the <object> setup to enable javascript
    interaction?
    Is there something about SWF V8 files that is the problem or
    is likely that the CoffeeCup Web Video Player can only make
    partially functioning SWF Videos?
    What is the difference between GotoFrame and TGotoFrame and
    have these perhaps been superceeded by something else (there is an
    Adobe page which suggests they are only available up to Version 5
    (not sure if that means Version 5 of SWF files or Version 5 of the
    FlashPlayer - to add to my confusion).
    I'm not currently a Flash type developer and have no tools to
    speak off and don't know ActionScript. I'm thinking of heading in
    the Flash direction but not sure how to move forward.
    Cheers
    Stuart

    Thanks Alex,
    quote:
    You need to learn to move forward :)
    I have a Greek friend who when I asked him how he was getting
    on with his dissertation project stated "in Greece we have a saying
    - every start is different".
    In this case my start is to dip a toe in the Flash water and
    not get scalded.
    Anyhow,
    One clarification from the CoffeeCup forum helped me to
    understand that my SWF used an external FLV and that may explain
    why the rightclick context menu did not have the more movie
    specific Back, Forward etc. Sounds plausible. So assume external
    FLV.
    quote:
    it is very easy to add a small script into the root timeline
    of your SWF file
    A little hand holding here would be appreciated. I have
    downloaded the Flex SDK. Can I use this free tool to do what you
    suggest? Using MXML and ActionScript. If so, a little bit more info
    would help.
    quote:
    That's all, it should work. Of course, you can tell me that
    your movie
    already has an onEnterFrame() eventhandler at the root
    timeline.
    What's a problem? Just create an empty movieclip and add this
    script
    into its frame 1 (it maybe the only frame). But do not forget
    to
    change "this.xxxx" to "_root.xxxx" within such script.
    Hhhmmm. A bit stumped. I've had a look at the SWF using
    FlashDig. I noticed what appears to be Assembly Language (Push,
    Pops, Jumps etc) and presumably in amongst all of that may be an
    onEnterFrame. Perhaps linked to a DefineFunction2 node.
    Unfortunately the SWF is very large (60K) and there is no
    search/find tool so that makes finding functions a bit harder than
    expected. Struggling a little with the concept of _root and Level0
    etc.
    I assume you are suggesting manually building a replacement
    SWF (empty movieclip?) if the onEventHandler happens to be used for
    something else. Presumably set/getVariables only interacts with
    this function so if it is 'booked' in my SWF I would be in a spot
    of bother with your suggested approach?
    I wonder if you are assuming I have some sort of Flash tool.
    Possibly like this one shown in this tutorial
    WebWasp
    Panorama tutorial
    Note. The panorama is actually close to what I eventually
    want to do except I intend to make a video of a scene by rotating
    clockwise by 360 degrees. Then add buttons onto the SWF (or DHTML)
    which communicates with the SWF to move forward or back through the
    video. Moving forward would be like a clockwise rotation and moving
    back would create anticlockwise rotation. This explains the need to
    GotoFrame (or similar). From that perspective I don't need to
    become a Flash guru (for now) and can't justify buying all the
    expensive flash tools for this one (apparently) simple task: Frame
    by Frame control of an external FLV via the SWF.
    Note. I've started using SWFObject. Might this library help?
    In summary.
    How do I add the onEnterFrame ActionScript sample (or
    something similar) into a SWF using only the Flex SDK command line
    tools or similar in order to control an external FLV?
    Cheers
    Stuart

  • Plz Help! How to control mouse motion(use program to move/click the mouse)?

    Hi people, plz give me some help on this: I wanna control mouse motion at another program's window, eg. control mouse movement in Internet Explorer's window. For a particular pixel on the screen, I need to move the mouse onto it instantly, then click. Please note that the java program(no applet) is going to run at the background, the current active window is some other programs like IE, notepad, etc.
    Plz give me some clue about how to achieve this, thanks.
    Do I need to do this through windows API or it can be done purely in JAVA?
    Also, how to calculate the RGB color from a particular pixel on the screen?
    Thank you very much for your time, plz help :).

    The same question each day (exe) !!!
    There are many posts on this point!
    All the soft that allows the build a native executable file on Windows
    are not free!
    You can take a look at JET excelsior
    http://www.excelsior-usa.com/home.html
    Denis

  • How to control TTL device using LabVIEW?

    I have a device which requires TTL (+5V) to control it to be on/off. How can I provide this TTL to it using LabVIEW? I guess I should install a PCI board in my computer to connect to this device, but how to do my LabVIEW coding to control it?

    Hi,
    First of all if your board is NI board after corect instalation you need to view this board in the section Devices & Interfaces from the NI program Measurement & Automation Explorer.
    Also if the board is NI board or has the divers for LABView you need to find in the LabView the functions to command your board.
    Other posibility is if your board is no't compatibile wi NI, in this case you need to extract from DLL, the function to command the board.
    By

  • MDO select query: how to control sort order using parameter

    Hi experts, is there a way of controling the sort order of an MDO select query using some parameter?
    I was thinking about using some statement like CASE [Param.1] WHEN 'abc' THEN [ORDER_NO]...END in sort section of the query but it is not working.
    Of course I colud go for various select queries...but I am wondering if it can be done using only one?
    Any ideas?
    Thanks for any help

    Hi Marco,
    Yes this can be achieved dynamically using SortExpr under dynamic link assignment in MDOAction block if you are using a transaction to call it.
    Please check below thread:
    Re: MDO Query Action Block In MII Transaction
    Or else, this [Param.1] thing should work as well provided it doesn't get the logic part in it, just pass the columns names separated by comma. Haven't tried it though, will check it for you.
    Best Regards,
    Swaroop

  • SEPA - How to control payment method used for SEPA during invoice entry?

    Hi,
    To implement SEPA Credit Transfers, a new payment method must be created.
    But this payment method will coexist with other payment methods that can be used for EUR payments between non-SEPA countries...
    Is there a way to control during invoice entry that the user is using the right payment method? Thus, if the payment is to be made between two SEPA countries, is there a way to control that the payment method used is well the new SEPA payment method? These pmts would fall in error if OSS note 1406227 has been implemented (it creates a table that controls the validity of pmt methods per country of destination) but obviously, we want to control this before the payment run F110...
    Or is it only controllable via a user-exit?
    Thanks a lot!
    Rgds
    Vincent
    Edited by: Vincent_Belgium on Dec 30, 2010 3:22 PM
    Edited by: Vincent_Belgium on Dec 30, 2010 3:26 PM

    Hi,
    You need to Use User Exit MEVME001 in SAP as well please see the below link for more
    http://www.sap-img.com/materials/price-difference-po-iv-vendor.htm
    Regards
    Ninad Kshirsagar

  • How to control maxon motors using sinewave

    Hi, am using the maxon brushless motors controlled by epos2 24/5 contollers. I want to give an input like sinewave to run the motor .Could anyone help me on this. Thanks in advance..

    Hello,
    I have the same problem. I would like to do a velocity mode with a sinwave funktion. Did you slove the problem? 
    regards

  • I am completely in the dark about how to manage devices and use iTunes, are there tutorials available?

    I am completely in the dark about how to manage my iTunes and devices.
    I have a desktop with Windows 8 (ugh!!) and I have iTunes for Windows.  My wife has a iPod Touch and I have an iPad 2 and an iPhone 4S.  Currently, the only devices associated with my Apple ID are the desktop and the iPad.  How do I add the iPod and my iPhone to the devices and how do I put "puchased" iTunes on my wife's iPod when attached to the desktop?
    Thanks.
    SEE

    Try posting to the Enterprise forums... you'll probably get more appropriate responses and better exposure to individuals with similar setups/issues.

  • Firefox 8 - How to be able to use address area to do search with Google as the default??

    The instructions posted did not work...it took me to YouTube...is there a string I can use in "keyword.url" that will change the address bar search to Google instead of Yahoo?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

  • Restrict Personnel Areas

    Hi,
    How do we delimit the unused Personnel areas or subareas, and not display them in F4 option for the user (For actions & Master data maintenance).
    Your Quick response will be highly appreciated.
    Thanks & Regards,
    Bobby.

    Hi Bobby,
    Use a search help exit behind WERKS : H_T500P.
    Search helps are found in se11,entry help/check tab....click on H_T500P..it will lead to the search help screen...
    u will  have a name space to create search help exits...(try f4_shlp_exit for example)
    In your custom function module, restrict values.
    this workd for PA30 .
    rgds
    gayathri
    Edited by: Gayathri on Nov 20, 2009 10:48 AM

  • How to access xml file using c

    how to access xml file using c. are there any libraries regarding xml fastinfoset in c? Please let me know about any resources if u know? thanks!!!
    samitha

    There are different methods to access XML data which have pro's and cons. Let us know more about what you want to do and we can help you.

  • Create new Personnel Area

    Hi Gurus,
    Need some help with creating a New personnel Area on HCM module.
    I know how to define and assign a Personnel Area. But need some further infomation on any other nodes that need to be modified when creating a new PA.
    Any help will be welcome.
    Keshini

    Hello,
    Personnel Sub area has to created in Personal Arae(While creating PSA system asks you under which PA),that is the assignment also.
    Then Employee Group & ESG has to created.
    Finally Assignment of Personnel area to Company Code & Employee sub group to Employee group.
    After creating Enterprise Structure,you have to clearly define you Organization str with PPOC_OLD or PPOC.That will complete your Complete organizational view in reporting strwise also.
    Regards

  • How to avoid default selection screen in HR interfaces(using pnp ldbs)

    How to avoid default selection screen in HR interfaces(using pnp ldbs)

    Dear Rakesh,
    The report category is used to change the selection screen of programs that use the 'PNP' logical database.
    See links bellow:
    http://www.sapdevelopment.co.uk/hr/hr_repcat.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/229357553611d3967f00a0c9306433/frameset.htm
    Report categories for selection screen in HR programming
    Also visit the following blog:
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    Regards,
    Naveen.

Maybe you are looking for