Need FM for Org Mannagement, Employees from lower org units

hi,
I have a person/manager suppose in Org Unit 'A' from whome I need to find out employeees belonging to org units at lower level to 'A'.
Now I also have to check that I should get employees of the lower org units till I get a org unit with manger position if manager position is available stop otherwise need to keep searching the lower level org units.
I am in search of any function module available for such requirement.
Please reply me if anyone has any idea on this.
Its urgent.
thanks and regards,
Akash.

BBPU_GET_USERS_OF_ORGUNIT
Use this FM to get users below an ORG UNIT.
BBPU_GET_MANAGER_FLAG
Use this to get manager flag.
Revert to me for any doubts.
Regards
Vishal

Similar Messages

  • How to deassign a employee from a Org. unit by using function module?

    Hi,
    I want to deassign an employee from an orgnization unit in Org. model. Though I know I can do it manually in Org. Model. But since the number is big, I want to do it by using report. So do you which function module I can use to do it?
    Many thanks and Best regards,
    Long

    Hi,
    I feel following 2 Fms will be of use to you.
    1. BUB_BUPA_RELATION_MODIFY
    2. BUB_BUPA_RELATIONS_MODIFY
    I hope this helps.
    Regards,
    Venkat

  • Function Module for Translation of text from Lower to Upper Case

    Hi All,
    Can any one give me function module for translation of text from lower to upper case.
    If we use Translate statement for the program in the Extended Syntax check it is giving error.
    Thanks in advance.
    Regards,
    srinivas

    Hi Srinivas,
    You can use any of the Function Modules below.
    AIPC_CONVERT_TO_UPPERCASE
    2054_TRANSLATE_2_UPPERCASE
    HR_99S_CONV_UPPER_CASE
    Please reward if useful.
    regards,
    Raj

  • Function Module for fnding all employees under an Org Unit

    Hi,
    Is there any Function module to find the employees of an ORG Unit .
    I need to specify the Org unit Name and get the employees out of it .
    I looked at the FM
    HRCM_ORGUNIT_EMPLOYEE_LIST_GET .
    It has import parameters as
    OTYP
    OBJID
    PATH_ID
    What values do i need to pass.

    hi,
    chk this.
    call function 'HRCM_ORGUNIT_EMPLOYEE_LIST_GET'
    exporting
    plvar = p_plvar
    otype = 'O '
    objid = s_orgeh-low
    begda = p_effdt
    endda = p_effdt
    * PATH_ID = 'O-S-P'
    tables
    pernr_table = i_pernr
    exceptions
    path_error = 1
    root_error = 2
    no_employees_found = 3
    others = 4
    Thanks,
    Anver

  • How to transfer the employees from one org unit to another org unit in OM.

    Hi Experts,
    I have a task of changing the employees, Positions & Jobs, from one Organization Unit to another Org unit, in the OM. I have around 50 position & Jobs and employees to be moved. Please suggest me how do I go about.
    I tried doing through PPOME (Org. and Staffing) but it is a lengthy procedure please suggest if there is an alternate option to do so in OM.
    Thank you in advance.
    Regards,
    Subbu.

    Dear Sharad,
    First of all I recommend to open a new discussion and not to post in a old-date one.
    Anyway, You can do it either PA40 or OOPME.
    In PA40 you should select an appropriate action like :Org. Change", "Promotion" and so on. In fact it depends what do you have in you action list.
    In PPOME you can do it by drag and drop also. Just take care about effective date. First you should select the right date in top of the screen.
    Regards,
    Omid

  • Need CQ5 Developer and Admin training in Bangalore for few of employees from a reputed MNC

    Kindly reply to this post if any one can offer training. Please provide valid details to contact further
    Regards,
    Navyatha

    Its a million dolloar question which BILL GATES only can solve....!!!
    Learning functional module by training or books is just gaining theory knowledge. In order to understand various industry terminology and business processes either you should have worked in different industries or you get by experience.
    Wish you good luck....
    Regards,
    Jagadish

  • Need code for call a report from stored produre in oracle9i(using rwclient)

    dear all,
    i need a stored procedure to run the report 9i(.rdf) from pl/sql.But i have code in older version(rwcgi60).So i want stored procedure for rwclient.
    The below code not working in oracle9i version.its very urgent.Thanks in advance..
    create table report
    (id number not null primary key,
    filename varchar2(100) not null,
    report_connection_id number not null,
    destype varchar2(5) not null)
    create table report_connection
    (id number not null primary key,
    user_id varchar2(100) not null,
    pass varchar2(100) not null,
    database_server varchar2(50) not null,
    report_server varchar2(50) not null)
    alter table cm.report add foreign key (report_connection_id) references cm.report_connection (id)
    insert into report_connection values (1, 'scott', 'tiger', 'orcl', 'Rep60_Dev');
    insert into report values (1, 'test.rdf', 1, 'PDF');
    commit;
    procedure pr_example (p_id report.id%type) is
    cursor cur_data is
    select r.filename,
    c.user_id,
    c.pass,
    r.destype,
    c.database_server,
    c.report_server
    from report r,
    report_connection c
    where r.report_connection_id = c.id
    and r.id = p_id;
    v_blob blob;
    v_url varchar2(2000);
    v_pieces utl_http.html_pieces;
    v_buffer raw(2000);
    v_buffer_size integer := 2000;
    begin
    for v_rec in cur_data loop
    v_url := 'yourserver.domain.com/dev60cgi/rwcgi60.exe?report=' || v_rec.filename || '&desformat=' ||
    v_rec.destype || '&userid=' || v_rec.user_id || '/' || v_rec.pass || '@' || v_rec.database_server ||
    '&server=' ||v_rec.report_server || '&destype=cache';
    if v_rec.destype = 'PDF' then
    owa_util.mime_header('application/pdf', false);
    htp.p('content-disposition: filename='||v_rec.filename);
    owa_util.http_header_close;
    --you can add a bunch of elsif logic here for different destypes and setting the correct mime type.
    end if;
    --sets transfer timeout to be one hour
    utl_http.set_transfer_timeout(3600);
    --runs the report
    v_pieces := utl_http.request_pieces(v_url,64000);
    v_blob := empty_blob();
    dbms_lob.createtemporary(v_blob,true);
    for i in 1 .. v_pieces.count loop
    v_buffer := utl_raw.cast_to_raw(v_pieces(i));
    v_buffer_size := utl_raw.length(v_buffer);
    if v_buffer_size > 0 then
    dbms_lob.writeappend(v_blob, v_buffer_size, v_buffer);
    end if;
    end loop;
    wpg_docload.download_file(v_blob);
    end loop;
    end;
    Now run this url:
    http://yourserver.domain.com/pls/dad_name/pr_example?p_id=1
    regards
    mani

    JosAH wrote:
    A couple of years ago Sun supplied their javax.comm package (mysteriously versioned as version 2)
    but they stopped it for the PC Windows.
    There's an alternative: rxtx which offers an identical API as Sun did and their own native implementation for serial and parallel port handling; I have used both and the rxtx version is clearly superior to Sun's old version: http://www.rxtx.org
    This question popped up recently.
    tschodt wrote in [http://forums.sun.com/thread.jspa?messageID=10863769#10863769:}
    [Java Communications API|http://java.sun.com/products/javacomm/]
    Implementations of the API are currently available for Solaris SPARC, Solaris x86, and Linux x86.follow the Download link to find
    Sun no longer offer's the Windows platform binaries of javax.comm, however javax.comm 2.0.3 can be used for the Windows platform, by using it in conjunction with the Win32 implementation layer provided by the RxTx project. To use that, download javax.comm for the 'generic' platform (which provides the front-end javax.comm API only, without platform specific back-end implementations bundled). Then acquire the Windows binary implementation rxtx-2.0.7pre1 from http://www.rxtx.org.

  • Need information for file type conversion from Oracle

    Hi,
    I need a scenario where there is third party tool which supports file types (.lnb (Link Notebook Chart),.anb(Analyst Notebook Analytical Chart),.anx(Analyst Notebook Exchange Chart),.tcv(Text Chart Visualisation))
    I am having a Oracle database where I want to create a file from a Table so that the third party tool could understand
    the file supported types.
    Any help will be benefitial for me
    Thanks and Regards

    Hi,
    If I use as:
    DECLARE
    fileHandler UTL_FILE.FILE_TYPE;
    BEGIN
    fileHandler := UTL_FILE.FOPEN('test_dir', 'test_file.tcv', 'W');
    UTL_FILE.PUTF(fileHandler, 'Writing TO a file\n');
    UTL_FILE.FCLOSE(fileHandler);
    EXCEPTION
    WHEN utl_file.invalid_path THEN
    raise_application_error(-20000, 'ERROR: Invalid PATH FOR file.');
    END;
    If I use the file naming convention i.e extension type as .tcv will it support ?
    Thanks and Regards

  • Hi I need Event for removal of component from UIEditor

    Hi, JDev team
    I need a event to identify removal of component from UIEditor.
    I have one method of doing this.Apply viewSelectionListener to the UIEditor but i can'nt use this approach for some reasons.Is there any other way out??

    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums.
    You may leave comments at Apple Feedback.

  • Need to install a Bios, lost from low battery

    Hello,I need to install the Bios on my deckstop. I found a bios upgrade on the HP site then downloaded it on my thumbdrive. then I found a writeable dvd-cd and formatted it and copied the Bios to CD. I have my desktop set to boot from cd. But it will not start with Cd, it just blinks and blinks. My original problem was This PC had been stored . I finally got to set it up and it started right away. I kept it up for a few days, then shut it down, went to reboot and got corrupt 32\drivers\pci.sys. tried to restart again, will not go into safe mode. I sent away for recovery disk does not help I noticed the time was off . I fiqured I should change battery. I did. but it does not help. How can I get a Bios into my PC. Or how can I get back into my windowsThanks to all.Angie

    i need DVD - Win 7 64b 12NA1MRW601 SP1 Recovery Kit plz help https://h10025.www1.hp.com/ewfrf/wc/mediaOrder?softwareitem=C4G69AV&cc=us&dlc=en&lc=en&os=4063&product=5192579&sw_lang= dose not work got a new hard drive old one was not working i have a HP Pavilion HPE h8-1214 Desktop plz help it runs on windows 7 home premium i got it new no disk IN THE BOX plz help

  • Need help for focusing the cursor from one textbox to another textbox

    hii all,
    I have a problem in java script.
    Note:The textboxes are generated dynamically.it is not having fixed length.(the number of textboxes generated may be 3,2,4....etc.it is not fixed.
    To move cursor from one textbox to another text box ,I have taken the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,first i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to second textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    thanx .u helped me so much.
    i have to check another condition. see the code below
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str) {
    if(event.keyCode==13) {
    if(str == 4) {
    formHeader.box[0].focus();
    else {
    formHeader.box[parseInt(str)+1].focus();
    return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="0" disabled="false" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    suppose if some of the fields are disabled,then the focus must skip to the next one.i have written disabled for box2.if the cursor focuses in box1,then the cursor should move to box3 escaping box2.
    if u know plz tell me.

  • BAPI for deletion of employee from work center T Code IR02

    Any one can give me a BAPI to delete position/person from work center ?
    T Code IR02
    IR02 -> HRMS - > Expand - > select person - > delete.
    Thank you
    Mrudang

    Thanks for your fast reply!
    I have looked to both functions before. Beside that they are both not remote enabled (which is not such a big problem as I could copy them or build a custom BAPI around them) I'm not quite sure how they could solve my problem.
    If I got it right, I would first use CR_CAPACITIES_OF_WORKCENTER to get the KAPID and using it as input for CLOI_WC_CAPACITY_READ. But I have problems to understand the output of CLOI_WC_CAPACITY_READ. The data type of the capacity is a float ( FLTP ) and the number seems to be to big, eg. 9.800000000000000E+01= 98h for one day.
    Could you try to explain your solution once again?
    Thanks,
    Simon

  • Enroll for courses by employee from different legal entity - function in Microsoft Dynamics AX2012R3

    Appreciate if any one suggest the solution to perform course management in AX.
    I want employee to view open courses across all legal entities in AX2012R3.
    Employee should be able to view open courses of the different legal entities and should be able to participate for the course.
    Thank you for all quick responses.

    Unfortunately your post is off topic here, in the MSDN Subscriptions feedback forum, because it is not feedback regarding the MSDN Subscription. This is only one forum
    among the many that are on the MSDN Discussion Forums, and given the content of your post, you likely chose the wrong forum. 
    This is a standard response I’ve written up in advance to help many people (thousands, really.) who happen to post their question in my forum, but please don’t ignore it. 
    The links provided below I’ve collected to help with many issues we’ve seen.
    For technical issues with Microsoft products that you would run into as an
    end user of those products, one great source of info and help is
    http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products.  
    Office related forums are also here: http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
    For Technical issues with Microsoft products that you might have as
    an IT professional (like more technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
    http://social.technet.microsoft.com/forums/en-us, and search for the product in question.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the
    MSDN discussion forums at http://social.msdn.microsoft.com/forums/en-us, and search for your product, technology,
    or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
    http://community.dynamics.com/.
    DreamSpark students with problems using the Secure Download Manager should read this:
    https://social.msdn.microsoft.com/Forums/en-US/27085f1c-daf4-4ee3-99eb-5f1ac715d959/dreamspark-students-using-the-sdm-please-read?forum=msdnfeedback
    If you really think your issue is related to the MSDN Subscription, and I screwed up, I apologize! 
    Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots of the issue (do not include subscription information or product keys in your screenshots!), and/or links to the problem
    you’re seeing. 
    If you really have no idea where to post this question, then you shouldn’t have posted here, because we have a forum just for you! 
    It’s called the ‘Where is the forum for…?’ forum and it's here: http://social.msdn.microsoft.com/forums/en-us/whatforum/
     Moving your post to the off topic forum.
    Thanks
    MSDN and TechNet Subscriptions Support
    Did Microsoft call you out of the blue about your computer?
    No, they didn't.

  • I want to change my settings for country of region from Australia to United Kingdom and everytime i click on United Kingdom the writing appears in arabic. Is this normal?

    I have moved counties (Australia to UK). Everytime i try and change the settings so my country of region is United Kingdom, the writting appears in arabic. (i have tried this several times) Is this normal or an error in the settings?

    If the address and the Country/Region on your account is the UK (it should be on the first screen that you go to when you log into your account on your computer's iTunes via Store > View My Apple ID) then the payment details screen should be UK based - if I select Visa on the payment details screen then it defaults to my name and address (with UK) on my iTunes account.
    Does that first show UK as your country ?

  • Steps required while moving employees from one organisational

    Can any one explain and write down steps required while moving employees from one organisational unit to other organisational unit.
    regards

    Hi ganesh,
    Firstly create the new position for the employee if it is not already existing.
    Then goto SPRO : Personnel Man. -> Pers. Adm-> Customizing procedures -> Actions -> Define infogroups -> infogroup.
    Only Copy 0001 is enough.
    Then Setup personnel actions with this infogroup.
    Then go to PA40 and execute this action for that specific employee.
    You will only need to change the position assignment, org unit, job, vs all come from position info.
    Regards,
    Dilek
    Edited by: Dilek Ersoz on Oct 14, 2008 9:41 AM

Maybe you are looking for

  • Multiple images in a report?

    I have a CR XIr2 report that contains 2 embedded images, a smaller one and a bigger one. Both images were BMP files that I embedded in the rpt file using CR Developer. When I use JRC to export the report to a PDF the images will usually display corre

  • Entry Point Not Found

    After updating itunes when i try to launch the application it comes up with an error message reading, "the procedure entry point AVCFURLAssetInheritURIQueryComponentFromReferencingURIKey could not be located in the dynamic link library AVFoundationCF

  • Pdf color looks different in preview and acrobat?

    I notice that the colors in various PDF files I have look different in Preview and in Acrobat. Is there some weird color profile issue? To be specific, I can create a PDF file in various ways, of a slide deck I originally created using Keynote. It ha

  • Account type D is not defined for document type RE

    Hi can any one tell me use of the field " Account with vendor" in table LFB1? Regards

  • How to add 2 rows in the form layout?

    In the detail page,form layout only one row pick up from database and it displays please anyone have idea about how to display 2 rows or 3 rows in a page? how to add 2 rows in the form layout? It's very urgent Thanks in advance