HR-ABAP issue how to find manager in PA reporting

hi all,
my requirement is find the manager in PA reporting.
Retrieve the Manager Personnel number from the HRP1001 table.Use this personnel number and retrieve Name (ENAME) from IT0001 and Email ID (USRID) from IT0105 SUBTYPE as u20180010u2019
how to find the manager position and his relation ship.

Hi,
To get the position of the manager -
Use the FM
RH_READ_INFTY_1001
    CALL FUNCTION 'RH_READ_INFTY_1001'
     EXPORTING
  AUTHORITY              = 'DISP'
  WITH_STRU_AUTH         = 'X'
       plvar                  = '01'
       otype                  = 'P'
       objid                  = fs_pa0000-pernr (manager's id)
   subty                  = 'B008'
   begda                  = fs_pa0000-begda
   endda                  = fs_pa0000-endda
      TABLES
        i1001                  = t_i1001
  OBJECTS                =
     EXCEPTIONS
       nothing_found          = 1
       wrong_condition        = 2
       wrong_parameters       = 3
       OTHERS                 = 4
    IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    APPEND LINES OF t_i1001 TO t_pos.
this table t_pos holds the postion.
Regards
Lekha

Similar Messages

  • SAP ABAP HR,  How to find out relationship in OM

    Hi Gurus,
    in ABAP HR , how to find out relationships in organisation assianment
    please clarify my Query.

    HRP1000 : Stores all the OM object types for eg, O - Org Unit, S- Position, C- Jobs, K- Cost Centers etc
    HRP1001 : Relationship between the object For eg, S (Position) Belongs to O (Org. Unit) etc
    HRP1002 : Description for all the objects
    HRP1003 : Department or Staff of the respective object, particularly O, S and P
    Additional Data in SAP's HRP1001 tells you how to retrieve the u2018additional datau2019 for org management relationships (ADATANR in HRP1000, ADATA in P1001, tables T77AD and T77AR).
    Reward if helpful

  • How to find if the SQL Reporting services are stand alone or clustered ?

    Hi All,
    Can any one tell me how do i find if the SQL Reporting services are stand alone or clustered ?
    As there are no other SQL features installed on the server except for reporting.
    Is there any GUI or CLI command to check this ?
    Gautam.75801

    Hello,
    Do not open cluster administrator since SSRS cannot take advantage of Windows Clustering Services.
    You need see if the Network Load Balancing manager (NLB) (windows feature) is installed on the SSRS computer and open
    it to see if a NLB cluster has been configured.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to find Transaction code from Report/program name ?

    Dear all,
    How to find Transaction code if i know Report/program name ?

    Hi,
    In se 38 when u open ur program,in the application toolbar u have a button beside the where-used list button as display object list.on clicking this button,a window will be opened at the left most corner for repository browser,in this u can find any tranasctions,fileds,screens,dictionary structures defined for the program.
    if any transaction is created for the program u can find it under the transaction folder.
    revert back for further queries.
    Regards,
    Sravanthi

  • How to find out names of reports using a particular view

    hi guys,
    i am newbie here, i jsut want to know how to find out which reports are using a particular view
    many thanks in advance for your help

    If you go to the Properties for the Folder in Discoverer Administrator, there is a Dependents tab that should list any workbooks using the folder. This only works for workbooks saved to the database, so won't help with any created using Discoverer Desktop. If you are gathering statistics and have the The Discoverer V5 EUL business area and its workbooks installed, it can tell you about Folders Used as well. It contains information about queries run whether the workbook is saved to the database or to the file system, but wouldn't contain inforamation about workbooks that had been created but not run.

  • How to find out all the reports in production, ran how many times?

    Hi experts,
    I like to find out all the reports in production, ran how many time and by which user. Can I use st03n for this? if yes how and where to go?
    Thanks in advance.
    Sharat.

    Hi,
    You can use the statistics Cube 0BWTCT_C02. To get the Frequency of how many times a report has been executed, drill down the particular report by 0CALDAY and the frequency in 0FREQUENCY Keyfigure.
    Make sure the Cube is loaded,
    Thanks & Regards,
    Namrata

  • How to find Manager of the USER from org Structure

    Hello Experts,
    I have got the FM RH_STRUC_GET and SWX_GET_MANAGER to find the manager. I am unable to use this FM, Can you please let me know which FM can be used to find the manager.
    If RH_STRUC_GET is being used to find the manager what will be WEGID for this?
    Please help.

    Hi,
    Then Why don't you try with WEGID US_CHEF
    I think  You can just create a entry from the transaction as MANAGER with the below evaluations paths
    *     B     008     Holder     *     S
    S     A     003     Belongs to     *     O
    O     B     012     Is managed by...     *     S
    US     A     208     Is identical to     *     P
    Regards
    Pavan
    Edited by: Pavan Bhamidipati on May 30, 2011 2:28 PM

  • How to find manager server port address

    hi
    i want to know managed server (soa_server1) port address in order to seed/remove community using demoCommunitySeedServlet. where to find out that one information
    regards
    ashok.v

    Go to your %ORACLE_MIDDLEWARE_HOME%/user_projects/domains/ or your domain folder, edit %ORACLE_MIDDLEWARE_HOME%/user_projects/domains/<your_domain_name>/config/config.xml. Inside this file check the ->
    <server>
    <name>soa_server1</name>
    <ssl>
    <name>soa_server1</name>
    <listen-port>8002</listen-port>
    </ssl>
    <machine>LocalMachine</machine>
    <listen-port>8001</listen-port>
    <listen-address></listen-address>
    <server-diagnostic-config>
    <name>soa_server1</name>
    <diagnostic-context-enabled>true</diagnostic-context-enabled>
    </server-diagnostic-config>
    </server>

  • How to find manage server name in weblogic server?

    I have two managed server in weblogic server. I need to find out which managed server serving my request. Please let me know if any body knows about this.

    You do not need to do anything, if your Report server is on the same machine as the Forms server (which is usually the case) you simply use the url as
    /reports/rwservlet?report=myreport' and the server will automatically use the default report server.
    then you simply use
    web.show_document('/reports/rwservlet?userid=scott/tiger@orcl&report=myreport&desformat=htmlcss&desname=test.html'Tony
    Try it now
    Edited by: Tony Garabedian on Nov 5, 2008 2:00 PM

  • How to find Manage Internet Email icon?

    I want to find the Manage Internet Email icon that is in the setup menu, This icon  is no there. I all ready use the function of "show all icon"  and still is no there.
    What i can do?
    I have blackberry 8900 with ATT carrier, dont have blackberry plan, only have unlimited data plan.
    Solved!
    Go to Solution.

    You must have the BlackBerry Data Plan to get this icon on your BlackBerry... a generic unlimited data plan won't get it.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to find managed files in Aperture 3?

    Using Aperture 3. Went to create a vault and it says there are xxx managed files. I do not know where they are. Is there an easy way to locate them? I tried a smart folder but no option.
    Thanks

    Should be the same as in A2:
    Open the search HUD.
    Use the cog/Add Rule button to add a File Status search.
    Chose 'Managed'.
    This will show you all the managed images in the section of the Library that you are searching in.
    Although it's presumably referenced images that you want to search for - managed ones will be backed up by the Vault system.
    Ian

  • How to find Query Name from Report Name

    I am trying to find a the query name for program AQFKSYSTQV000045ZCHECKNUMBERLU I have looked in Standard Work Area under all of the user groups but no luck. It is currently only in our Production System. Please suggest any other places I can look.
    Thanks in advance for your help!

    I apologize for not seeming like I have a clue....I did search the Forum...and maybe I wasn't clear with my question....again I apologize.....I am somewhat familiar with query and I understand that the query name is probably ZCHECKNUMBERLU. My issue is that I cannot find the user group. I have broken It is not a user group under Global Area or Standard Area. For example....We have a query named ASETAQUISITION.  The program name is AQFKAM==========ASETAQUISITION...This query is located in the AM User Group....Easy Find. However, the program in question is AQFKSYSTQV000045ZCHECKNUMBERLU. I have broken this program name apart every way I can think of and I cannot find a user group in my global or standard Area. So I guess I should ask, by looking at that program name, how do you determine what the user group name is so I can find the actual query?

  • How to find library for a report

    Hi
    I am suppose to change some thing in a report.We have lot of  library and am not able to locate the one.I know the report name and trying to use GR32 but don't know the library name.Is there anyway to find out the lib name ?
    I also want to copy the existing report .How to do that ?
    Thanks in advance
    Satya

    Satya,
    After you execute the report, go to Extras-Technical Information. You will see there the Library name among other things.
    Thanks
    Jagdish

  • How to find Querry Name from report name?

    Hi.
    I run a custom transaction , but when i try to see it's program it give me dump. Then i used SE93 transaction to find out program but there was querry written as "AQCSSYSTQV000001ZPUBLICITY====' in program name.
    Now i have to find the Query Name by which the program name "AQCSSYSTQV000001ZPUBLICITY====" is generated?
    Thanks in advance.
    Tahir

    Hi!
    AQCSSYSTQV000001ZPUBLICITY====
    AQ means - ABAP Query
    CS - then 2 chars for the query area
    SYSTQV000001 - then 12 characters for the user group
    ZPUBLICITY - this is your query name
    You have to check you are in the correct workarea and user group, or you will not see your query.
    Regards
    Tamá

  • How to find my submitted bug report in Java bug database

    I just submitted a bug report in Java bug database and it told me that the submission is successful without its bug ID and no email notification is received from Oracle.
    And I cannot find the bug in bug database with the title I submitted.
    The bug's product/category is Java Plug-in in JRE7
    So how could I get the bug status? Will it be fixed and how is it going on?

    I just submitted a bug report in Java bug database and it told me that the submission is successful without its bug ID and no email notification is received from Oracle.Last time I did that it also said it wouldn't appear straight away. They have to qualify bugs you know.
    And I cannot find the bug in bug database with the title I submitted.How long ago?
    So how could I get the bug status?Wait till it turns up?
    Will it be fixed and how is it going on?How would anyone on this forum know?

Maybe you are looking for

  • RFC - XI - JDBC Scenario Updating Multiple Tables

    I'm an XI rookie who is looking for some assistance with my first interface.   I am using an RFC adapter on the outbound side and a JDBC adapter on the inbound side.  My function passes back four internal tables that I would like to map to 4 differen

  • How to use Item value in chart query

    Hi Folks, I am looking to use calander item value in sql query used to populate flash chart. I tried with following query where P2_DATE1 is the calander item name. This says no data found. I am not sure if I am missing some thing with BUTTON settings

  • Quicktime Not Playing Online Stream

    I've been trying to listen online to a radio station, at http://www.fan590.com/ (Listen Live link at top right). I've tried opening it normally, without downloading anything, and it doesn't work. I've tried downloading that flip4mac program but that

  • Deleted Alternative Apple ID

    I Have an alternative Apple ID. I never wanted it. It is an "@me" The problem is, I was receiving so much spam to that address, everything goes to "spam" Unfortunately, with my new laptop, my email alerts are being sent to "@me" - I do not know why.

  • Update on RDF Triple

    Hi, I have to update the set of triples. Is it possible to update the RDF Triple with update statement? I am not sure about the below syntax and statement (While trying the below statment getting an error ORA-00927: missing equal sign) example update