How to get a manager name according to a name of clerk

Hi,
   i know the clerk name.(T-code: PA30 infotype:0001)
   how to search his/her manager name
Thanks in advance.

Hi,
Other way is Goto Infotype 0001 for that person(Clerk) & place the cursor on the org.unit & click "Org Structure" button on the top(beside the overview button). Then search for the org. unit of clerk & you will get the chief of that org. unit & you will get the manager personnel number.
Hope this helps.
Thanks,
Sarika.

Similar Messages

  • How to get an initialised Object according to it's name?

    How to get an initialised Object according to it's name?
    For example I have 5 HashSets (initialised, with data) hs1 hs2 hs3 hs4 and hs5
    Sometimes I want to get one of them according to it's number : "hs"+number
    How this can be done (method class.forName is dedicated to antoher thing).
    Thanks

    I forgot to write that I do not want to use a Map :)
    (sure, it' possible via Map, no question).
    But in Perl, for example, I could simply write
    $ab="col" + "or";
    $color="Beidge";
    and than I can use address to a variable $color in
    such a way : $$ab
    ... So if a Map is an only way... than it will be a
    Map... pity..I do not really know Perl so I can not comment on it; but, are there any compiled languages (at least compiled to the degree of Java) that support this construct? All of the programming languages that I can think of that have this construct are more along the lines of scripting languages.
    Just curious.

  • How to get my images always order by file name, and not by time of captur, in all the folders in the library?

    How to get my images always order by arquive name, and not by time of captur, in all the folders in the library?
    Sorry for the poor english, but im portugues.
    In the library we can change the order of classification of image by, time of capture, name of file etc... I'm wondering if its possible define to be always by the name of file.
    It ´s possible?
    And i have other question, in print label we have an option to auto rotate to feet in page to have the image using the maximum area in the page (auto rotate, zoom etc), its possible to change the orientation of the rotation to be always in  the other direction?

    The Muvos are USB Mass Storage devices and do not have the ability to display track information based upon ID3 tags.
    The Zens all read and display track info based upon ID3 tag information that is either gathered from an online source or entered by the end-user.
    If you want the track information displayed instead of the ID3 tag information, you could edit the ID3 tags and rename the title to whatever you have as the file name. Not sure why your file names would differ so much from the ID3 tag info though, almost all of my content has the same name for the filename as it does on the ID3 tag title.

  • How to get the page number according to MarkerID?

    I want to get the page number according to the marker element in fdk. I can get the marktext and markid,How to get the page number according to MarkerID in fdk?

    zhaopeng,
    You need to first get the ID of the paragraph containing the marker (with FP_TextLoc), then get the top-level frame containing the FO_Pgf object (FP_InTextFrame), then get the page containing the FO_TextFrame object (FP_PageFramePage). Here is a function that you can send various objects to in order to get the page ID, including paragraphs (this courtesy of Rick Quatro, originally posted to the Yahoo Framedev list):
    F_ObjHandleT GetPage(F_ObjHandleT oDoc, F_ObjHandleT oObj)
      F_ObjHandleT oFrame = 0;
      IntT iObjType;
      F_ObjHandleT oRow, oCell;
      while(oObj)
        oFrame = oObj;
        iObjType = F_ApiGetObjectType(oDoc, oObj);
        switch(iObjType)
          case FO_SubCol:
          oObj = F_ApiGetId(oDoc, oObj, FP_ParentTextFrame);
          break;
          case FO_Tbl:
          oRow = F_ApiGetId(oDoc, oObj, FP_FirstRowInTbl);
          oCell = F_ApiGetId(oDoc, oRow, FP_FirstCellInRow);
          oObj = oCell;
          break;
          case FO_Row:
          oCell = F_ApiGetId(oDoc, oObj, FP_FirstCellInRow);
          oObj = oCell;
          break;
          case FO_Cell:
          case FO_Pgf:
          case FO_AFrame:
          oObj = F_ApiGetId(oDoc, oObj, FP_InTextFrame);
          break;
          case FO_TextLine:
          case FO_TextFrame:
          case FO_UnanchoredFrame:
          case FO_Arc:
          case FO_Ellipse:
          case FO_Group:
          case FO_Inset:
          case FO_Line:
          case FO_Math:
          case FO_Polygon:
          case FO_Polyline:
          case FO_Rectangle:
          case FO_RoundRect:
          oObj = F_ApiGetId(oDoc, oObj, FP_FrameParent);
          break;
          //endless loop prevention, stops the process when the top-level frame is reached
          default:
          oObj = 0;
          break;
      //if we found the top-level frame, return its page ID, otherwise null
      if(oFrame)
        return (F_ApiGetId(oDoc, oFrame, FP_PageFramePage));
      else return(0);
    ...so, you would do something like this if you have the marker ID:
    F_TextLocT textLoc;
    F_ObjHandleT pageId;
    textLoc = F_ApiGetId(docId, markerId, FP_TextLoc);
    pageId = GetPage(docId, pageId.objId);
    Note: I'm not sure how this handles the case where a paragraph extends across two pages and the marker is located on the second page. My thought is that it might erroneously return the page where the paragraph begins. I don't know how to handle that.
    Russ

  • How to get ucm doc rules according to DocProfile by using ridc

    Hi experts,
    We need to fields of ucm docrules. I can get universal rules(all of the rules which defined in ucm) But we need relation between docprofile and rules that belonged to docprofile.
    As i said before, we can get docProfiles and docRules distributedly. (code snippet below, plz take a look) Could you please help me about the rules of docProfile
    Best Regards,
    public static void main(String[] args)
    IdcClientManager manager = new IdcClientManager();
    IdcClient client;
    try
    client = manager.createClient(urlConnection);
    IdcContext context = new IdcContext(username, password);
    DataBinder inputBinder = client.createBinder();
    inputBinder.putLocal("IdcService", "GET_DOCPROFILE");
    inputBinder.putLocal("dpName", "BudgetProfile");
    // inputBinder.putLocal("IdcService", "GET_DOCRULE");
    // inputBinder.putLocal("dpRuleName", "budgetTriger");
    ServiceResponse response = client.sendRequest(context, inputBinder);
    DataBinder asBinder = response.getResponseAsBinder();
    //DataResultSet dataResultSet = asBinder.getResultSet("DocumentRules");
    // List<Field> fields = dataResultSet.getFields();
    // for (Field field : fields)
    // for (DataObject dataObject : dataResultSet.getRows())
    // System.out.println(field.getName()+" : " + dataObject.get(field.getName()));
    catch (IdcClientException e)
    e.printStackTrace();
    }

    If you call GET_DOCPROFILE, you will get the DocumentRules ResultSet which contains the names of the rules used in this profile. You can then call GET_DOCRULE for each of these rules.
    Jonathan
    http://jonathanhult.com

  • How does Get-Info manage ext disk access & permission

    I was having a terrible time today trying to back up my HD to an external drive. I was using SuperDuper. The SD dialog box allowed me to choose 2 of my ext drives as targets. But the drive I preferred was 'greyed out'. I couldn't select.
    So, I thought that perhaps I didn't have read-write permission for it. I pulled up a Get Info dialog box, and this is how it is configured (see below).
    My user name doesn't even appear in the Sharing and Permissions box.  Nor do I see the little check box which asks IGNORE OWNERSHIP.
    I clicked on the little padlock icon and entered my password. But I still couldn't change the configuration. I just wanted to back up to that one disk named 2tb Boot-backup. Nothing more. The drive is a boot drive, incidentally. But I was running the OS on my main HD (iMac).
    Frustrated at this (the Missing Manual didn't help), I gave up and reinstalled Mavericks on that ext drive. It fixed the problem, at the cost of 2 1/2 hours.
    And I'm not any wiser about how Mavericks controls access. Screen shots below tell the story. My User Name does not appear in the Sharing list. Please teach me.  Where is David Pogue when you really need him?

    For a very long time before making my purchase choice, I neurosed about the processing power demands if Aperture. Few folks at MacRumors knew what specs would suffice. I must have exchanged 15 posts over there and learned little.
    At the time I had a 2007 iMac with 6Gb or RAM. I borrowed Aperture from a friend and played with it. Knowing that would I made a computer purchase from the Apple Store, free softeware would come with it. I prefer to be play straight. Not because of fears of the 'software pirate police.' I want the support and documentation.
    By having the actual program loaded in my box, I began paying watching the Aperture Tutorials on the Apple Support website. In the case of Aperture, there is a whole lot to learn. A huge amount. Maybe because it was my first PP and DSLR experience. It took a lot of time to get comfortable.
    Eventually, I discovered more AP tutorials on YouTube. And then, I found the so-called Silver Bullet. The Aperture forumlll. The answer I wanted was neither simple nor straightforward. But I was able to decide on the right Apple machine, with an adequate CPU, GPU and RAM.
    Aperture processes some function in the CPU. It processes others in the GPU. And RAM undergoes heavy pressure only at certain times.  While 'Importing' RAW files from an SD card, the CPU works hard. It is best to have clock speeds of at least 3.2Ghz. Along with the image, Aperture will import the embedded camera preview in Jpeg format. Things go faster if you select to import the file and preview. Regardless, camera previews are small and low resolution. Aperture then favors generating its own hi-res JPEG for use will browsing your library of photos.
    Editing an image, which is called an 'Adjustment' in the program doesn't take nearly as much processing power as one would expect. Aperture is a non-destructive program. The original RAW file is never touched. All the changes are merely tacked on and are reflected on the screen or when saved as 'Versions' only. The version is tiny compared to the master file.  A good metaphor would be baking. You might start out with a Lemon Cake in the oven. But then you put Chocolate frosting on top. The result looks and tastes different. But it is always a Lemon Cake.
    The GPU then takes over. Late generation GPU with at least 1000Mb of video ram, 32-bit color depth would be minimum. The NIVIDEA Geoforce GT 755 satisfies those demands. Though if I ever start playing with Video instead of Sill, I might wish for 64-bit color space.
    I probably have some of the details mixed up. But the fundamentals given are what I heard. At least one of the responders on the Aperture forum was on Apple team that wrote the software. That's all I know, and I'm not trying to get anyone to 'change religions'. SSD ain't going to make my image editing improve. Incidentally, on my iMac, Aperture loads in about 4 seconds.

  • How to get the last day according to fiscal period input in selection scree

    Hello expert
    how to get the last day of fiscal period input.
    the fiscal period inculdes 1-16
    when fiscal period is greater than 12, only calculate the last day of 12nd month
    your solution will be apprecaited, FM existing?
    thank you
    Kevin

    Hi,
    when you give a particular date in any month
    the following fm will give you the last date of that month
    here you can give
    R_FDATE-HIGH  as 01 and month as the period you wnat and year for current year
    concatenates '01'  month year  into r_fdate-high separated by '.'.
    then it will give g_ltdt for that month and year which wil be the last date of that month
        CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'
          EXPORTING
            DAY_IN            = R_FDATE-HIGH
          IMPORTING
            LAST_DAY_OF_MONTH = G_LTDT
          EXCEPTIONS
            DAY_IN_NO_DATE    = 1
            OTHERS            = 2.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    thanks & regards,
    Venkatesh

  • How to get only the graphics path without graphics names?

    Hi All,
    I need to get only the graphics path without graphics names like 'd:\Images\' instead of 'd:\Images\abc.jpg' in JS.
    Thanks,
    Praveen

    Something like this should get you close…
    #target indesign
    function main() {
         if (app.documents.length == 0) {
              alert('Please have an "Indesign" document before running this script.');
         return;
         docRef = app.activeDocument;
         with(docRef) {
              var x = rectangles[0].allGraphics[0].itemLink.filePath;
              var y = new File(x).parent.fsName;
              $.writeln(y);
    main();

  • How to get reporting manager and HR of an employee

    Hi everyone,
    I am new to HR , i have created an org unit (O) in PPOC_OLD tcode which is having three positons (S),
    Pos 1  is an HR pos which is assigned to a Holder (Pernr ) with relation Incorporates.
    Pos 2 is Project Manager which has also a Pernr as Holder with relation as Incorporates.
    Pos 3 is a Developer which has also a pernr attached to it with relation as incorporates.
    Now i need to create a reporting stricture that shows the developer repoting to its Project manager as well as to the Hr in Pos 1.
    I hope you all got the idea ..!!!
    Thanks
    Ravi

    Hi Ravi,
    <li>Get the Organization unit maintained for Employee from Infotype 0001(PA0001) field ORGEH.
    <li>Use below function module to get the manager of that employee.
    DATA: swhactor TYPE swhactor OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'RH_STRUC_GET'
      EXPORTING
        act_otype      = 'O'
        act_objid      = p0001-orgeh
        act_wegid      = 'B012'
      TABLES
        result_tab     = swhactor
      EXCEPTIONS
        no_plvar_found = 1
        no_entry_found = 2
        OTHERS         = 3.
    I hope that it helps.
    Thanks
    Venkat.O

  • How to get VCast Manager to stop launching

    I have clicked the "do not launch vcast manager when I connect my phone" but it still launches. Please help.

    Hi,
    I could create the object id using the oo01 transaction
    Now how should i proced to give  relationship..
    I want a simpleexampel where i can relate an manager to an existing empoyee.
    My scenario is as follows:
    a) I have created a person with following infortypes  (0000,0001,0006,0002) using the pa30 transaction.
    b)Now how shoild i creat manager and relatye it to the person which i ahev just created.
    Please help me with an example
    Best Regards
    MAnoj

  • How to get the Manager Name

    Hi,
    I want to display the Manager name of the Employee on the termination Date.
    In case the immediate supervisor is not there i need to display the 1st level of supervisor and if this is also not maintained i need to find the top level manager of the employee.
    Please help me how to find out the manager of the employee with the above mentioned scenario.
    Thanks,
    Poonam

    HI Poonam,
    DATA: gd_pos TYPE HRP1000-objid,
    gt_LEADING_POS TYPE STANDARD TABLE OF HROBJECT WITH HEADER LINE,
    gt_p1001 TYPE STANDARD TABLE OF HRP1001 WITH HEADER LINE.
    *Assign the position to gd_pos.
    CALL FUNCTION 'RH_GET_LEADING_POSITION'
      EXPORTING
        PLVAR                   = '01'
        OTYPE                   = 'S'
        SOBID                   = gd_pos.
        DATE                    = SY-DATUM
      AUTH                    = 'X'
      BUFFER_MODE             = ' '
      CONSIDER_VAC_POS        = ' '
      TABLES
        LEADING_POS             = gt_LEADING_POS
    EXCEPTIONS
      NO_LEAD_POS_FOUND       = 1
      OTHERS                  = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'RH_GET_PERSONS_FROM_POSITION'
      EXPORTING
        PLVAR                    = '01'
        OTYPE                    = 'S'
        OBJID                    = gt_LEADING_POS-objid
        STATUS                   = '1'
        BEGDA                    = date
      NODE_KEY                 =
      MASSN                    =
      MASSG                    =
      CHANGETYPE               = 'S '
      OLD_JOB                  =
      OLD_JOB_ENDDA            =
      TABLES
        I1001                    = gt_p1001
      I77INT                   =
    EXCEPTIONS
      WRONG_OTYPE              = 1
      PLVAR_ERROR              = 2
      POSITION_NOT_FOUND       = 3
      ORGUNIT_NOT_FOUND        = 4
      INITIAL_GSVAL            = 5
      OTHERS                   = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The manager emp no would be there in gt_p1001-objid.
    BR/Manas

  • How to get value of a Field if field name given in a String ?

    Hello,
    I've a String variable which contains a value such as X.Y.Z. The last one (Z) is a primitive type, others (X and Y) are my own classes.
    class C1
    C2 X;
    class C2
    C3 Y;
    class C3
    int Z;
    C1 var = new C1();
    When I encounter X.Y.Z in the String, I want to replace it with its value of var.X.Y.Z. How can I do ?
    thanks in advance....

    Thanks,
    But, X.Y.Z is a Field name not known during compilation, just know at runtime.
    The following working codes return the Field names(including sub-Fields in sub-classes) and their values in a Map:
    void getFieldValues(Object object, StringBuffer fieldName, Map oMap)
    throws java.lang.IllegalAccessException
      Field[] fields = object.getClass().getDeclaredFields();
      String  tmpString;
         for (int i = 0; i < fields.length; i++)
           if (!fields.getType().isPrimitive()) { tmpString = fieldName.toString();
    fieldName.append(fields[i].getName() + ".");
    getFieldValues(fields[i].get(object),fieldName,oMap);
    fieldName = new StringBuffer(tmpString);
    else oMap.put(fieldName.toString() + fields[i].getName(), fields[i].get(object));

  • How to get the loaded client sequence file path/name?

    I added a step in Process model, and wanted to get currently loaded client sequence file name/path. I used the variable of "SequenceFile.Path" but then I realized what I would get is the process model file path, not loaded client sequence file path/name. How can I get loaded client sequence file path/name?
    Thanks!
    Jacky

    I dont understand what you are trying to achieve.  Can you provide more information.
    If you are trying to dynamically load and run a client sequence file at run time you need to make a couple of calls to the TS API from inside the process model, Engine.GetSequenceFileEx to get a reference to your sequence identified by its pathname, and then Execution.ClientFile to tell the process model which sequence you want to run.
    Steve
    There are 10 types of people in the world that understand binary, those that do and those that don't.

  • How to get Unique calid for users with same name in multiple domain env..

    I found we need to use "-k legacy" option for creating users in non-hosted setup..
    I had two domains default as xxxx.com and the one that I created as yyyy.com
    When I have users with same name in two of the domains as user1..
    The calid for both of them is... user1 ....so they share the same calendar
    When Im in valid SSO of yyyy.com I get the mail account for user1 as [email protected] .....but the calid .. common as user1
    How I can get unique calid for users under two domains..
    whether I need to set Hosted domain support...Then how the mailid's differ with out using hosted domain support..
    And I need to login UWC without using @domain.com...
    Help me on this...
    Ashik

    Do you have UWC and Cal configured at least for virtual domain support?
    basically.. for discussion.. let's say you have three domains on your server.. 1st domain is the default domain. other 2 domains are virtual domains.
    if all domains were created with mail and cal support (-S mail,cal).. you would use the following options when creating users:
    1) for the default domain.. you must use the "-k legacy" option when adding users.
    2) for the other two domains.. when you create the user.. do NOT use a "-k" option.
    If you do not use the "-k" option.. it defaults to "hosted" which will cause the user's calid to be [email protected]
    If you Do use the "-k legacy" option.. it will create the calid as just "userid"
    With regard to logging into UWC without the @domain.com part of a username in a hosted domain.. the easiest way to avoid this.. is to point a host name under the hosted domain to the server.
    if you point webmail.xxxx.com to the server... and then access it via:
    http://webmail.xxxx.com/uwc/
    any users in the xxxx.com hosted domain will NOT need to use @xxxx.com when logging in... they can just use "userid"
    This feature does not take any special configuration (aside from adding a DNS entry for the hosted domain)
    Hopefully that helps.

  • How to get 4 first characters from a full name ?

    Hello,
    in my database I can choose the value Last_Name; this generates the full last name of someone. In a DECODE I would only like to get the first 4 characters of the Last_Name.
    How can I make this in a DECODE ?
    Thanks for you help.
    Anouk

    I was searching for the wrong thing I guess....
    Your solution works perfect; thanks!
    Greetings,
    Anouk

Maybe you are looking for

  • Itunes 7.0.2 won't launch just has hourglass for a few seconds...

    I am running a Dell Optiplex w/ Win XP Pro, Charter High Speed Security Suite (F-Secure) antivirus firewall antispyware stuff. Trying to upgrade itunes. Downloaded and installed without Security suite and firewalls etc. Installed fine. QuickTime open

  • Why does Photoshop keep slowing down?

    I've been using Adobe Photoshop CS5.1 for two years now, and for some reason it seems to have the problem of slowing down after using it for a while, so if I'm working on a project I have to keep closing it and reopening it to get it fast again. It's

  • Stacked Bar Chart with data from a Web Service

    Hi, I'm working on Dashboard Design (version 14.0.1.287) and I'm trying to create a chart linked to data from a webservice. With a Year in input, my webservice gives an Amount per Cities and Products Data retrieved look like this (Sheet1) : Paris    

  • Directory Structure for Discoverer

    Hi, I have couple of queries... 1. What is the directory structure for discoverer on Unix in Application Server? 2. Is there any extention for the woekbook saved in the database like .dis? I am working on discoverer 10g with Oracle Apps. Thanks...

  • Next note button in ios7

    Hello guys !! here is my doubt, i could not able to find next note button in ios 7(that goes to next note from opened note.) here is wat i mean visually