Reading RH_STRUC_GET bottom to top

Does anybody know if it is possible to read te orginization structure from the lowest level to the highest level, so starting at Pa0001-orgeh to the highest level in the tree??

I tried to find evaluation path bottom-to-top in table T77AT but no-luck.I think you need to create one.
Also try following EP
WEGID      WTEXT                                                                               
BU_UP      PMG: Budget hierarchy (bottom up)                                 
CIC1       CIC bottom up                                                     
C_UP_C     Structure of career model hierarchically 'bottom up'              
KARRIERE   Career path along a reporting structure 'bottom up'               
LAUFBAHN   Display jobs in career model 'bottom up'                          
ORGA-UP    Organizational structure hierarchically 'bottom up'                                                                               
FYI –
http://fuller.mit.edu/ehs/creating_relationships.htm
http://fuller.mit.edu/ehs/relationship_cofig.ppt

Similar Messages

  • Read lines of a text file, From bottom to top

    read the last row first,
    from bottom to top,
    how to do it?
    Thanks for help

    If the index.txt contains
    1
    2
    3I want to save it as
    3
    2
    1But I got is
    1
    2
    3 3 2 1Please see my code, thanks
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    public class Reverse {
        private String[] x;
        public void process(String dir) {
            try {
             File f1 = new File(dir,"index.txt");
                    BufferedReader br = new BufferedReader(new FileReader(f1));
                    String line;
                    List<String> idList = new ArrayList<String>();
                    while (((line=br.readLine())!=null)){
                        idList.add(line);
                    x = idList.toArray(new String[idList.size()]);
                    f1.delete();
            catch (Exception e)
                   System.err.println("File input error");
                   e.printStackTrace ();
             try {    
             File fileIndex = new File(dir,"index.txt");
                     FileWriter outFileIndex = new FileWriter(fileIndex,true);
                     BufferedWriter outIndex = new BufferedWriter(outFileIndex);
                     for (int i = x.length-1 ; i>0; i--) {
                        StringBuffer buffer = new StringBuffer();
                        buffer.append(x);
    buffer.append("\n");
    outIndex.write(buffer.toString());
    outIndex.flush();
    catch (Exception e)
    System.err.println("File input error");
    e.printStackTrace ();
    public static void main(String args[])
    Reverse r = new Reverse();
    r.process(args[0]);

  • HT4623 I screwed up.  I was trying to SYNC and something (error msg) happened.  I tried to continue the SYNC and now my IPhone is dead.  All I can get when I turn it on is a picture, from bottom  to top, I have an WSB connector, an up arrow, and an iTunes

    I screwed up.  I was trying to SYNC and something (error msg) happened.  I tried to continue the SYNC and now my IPhone is dead.  All I can get when I turn it on is a picture, from bottom  to top, I have an WSB connector, an up arrow, and an iTunes icon.  I can't use the phone.  And it's my only phone.  What can I do to rectify this situation.

    It's telling you to connect to ITunes and restore your phone. This will have to be done with a USB cable and iphone connector that came with your charger.

  • Dynamic field flow direction Bottom to top

    Hi everybody,
    I have two wrapped fields. I'd like the field on the bottom to push up the first the page. Is it possible ? With javascript ? I know that the flow direction is Top to Bottom but is the reverse possible ?
    Many thanks

    Hi Ratnesh,
    Here is the link to share the file : https://workspaces.acrobat.com/?d=sHcPjp3SH48eN9cQP-vjjA
    In the box below, when I type several lines, the text is going from top to bottom. I would like it to go from bottom to top and push the box which is above. I guess it's not possible but ... a miracle
    Thanks for your help.

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • How do I  transfer adobe reader from a desk top computer to a laptop

    how do i transfer adobe reader from my desk top to a new lap top?

    You move it as you would move any other data files or documents; nothing special about PDF files.
    Easiest way is to copy them to a memory stick.
    Another way is to upload them to Files or Workspaces at Acrobat.com

  • TS1382 songs are playing from bottom to top instead of top to bottom in playlist - remedy?

    songs are playing from bottom to top instead of top to bottom in playlists...any remedy?

    Can you please post some screenshots ?
    Also have you tried to test by rotating the text frame ?
    Thanks,
    Sanjit

  • How to use Percent_Rank to knock out the bottom and top 10% of query?

    Hi,
    I'm trying to use Percent_Rank to knock off the bottom and top 10% of a query result, and then take an average of what's left.
    The query is of the form:
    SELECT 'Average Resolution Time Days' Service_Time_Type,
    ROUND(NVL(AVG(NVL(hds.hds_working_duration(jr.date_lodged, jas.job_close_date),0)),0),2) Time_Days
    FROM hds.hds_job_request jr, hds.hds_job_assignment jas
    WHERE jr.job_id = jas.job_id
    and jas.job_close_date is not null
    AND jas.job_close_date >= '01-JAN-2006'
    AND jas.job_close_date < '01-NOV-2006'
    I would like to add a: WHERE PERCENT_RANK ?????? BETWEEN 0.10 and 0.90, but I can't work out how to use it, can someone help?
    Thanks
    Adam
    Message was edited by:
    Adam Sawyer

    I worked it out:
    This is the query I ended up with:
    SELECT 'Average Resolution Time Days' Service_Time_Type,
    ROUND(AVG(duration),2) Time_Days
    FROM
    SELECT hds.hds_working_duration(jr.date_lodged, jas.job_close_date) duration,
    round(percent_rank() over (order by hds.hds_working_duration(jr.date_lodged, jas.job_close_date)),2) pr
    FROM hds.hds_job_request jr, hds.hds_job_assignment jas
    WHERE jr.job_id = jas.job_id
    AND jas.job_close_date IS NOT NULL
    AND jas.job_close_date >= '01-JAN-2006'
    AND jas.job_close_date < '01-NOV-2006'
    WHERE pr BETWEEN 0.1 AND 0.9
    ORDER BY 1
    Thanks for all your help
    Cheers
    Adam

  • Jumping to the bottom or top of a photo album?

    Just wondering whether there was a way on the iPhone to jump directly to the bottom or top of a photo album, like the Safari jump to the top tap? Would be very useful for photo albums in the hundreds.

    There is no quick way of doing it, either scroll or exit the album access a different album then access the previous album again and you will be back on top

  • Reading PDF reports from Top to Bottom instead of from left to right in WS

    When viewing a PDF Report in workspace and you choose next page, it goes left to right then down to the next section left to right when you have multiple members in the column. Is there a way to change this so that the view goes top to bottom for the first member then moves right and does the same for the other members. I thought I once saw a setting for this.

    Hi,
    We have also tried to the same requirement.  But we can't. 
    Only one thing we can do is, the end report can be set at the bottom with the property of "Align to bottom".  But the Horizonal, vertical lines and grid not fills from the last item to end of report beginning.
    I think this is most required to view the document perfectly or neatly. 
    Particularly in indian localization this is the must since the customer need to be declared the specific neat format to the legal departments.
    Hope SAP Support should solve the issue.  But I am wondering this question has been posted many times by many people but unfotunately nobody I think get the solution.
    Thanks & Regards,
    Venkatesan G.

  • Rescheduling bottom and top down

    Hi friends,
    we have around 25 levels of bom and every level has 8-10 items. when we execute either bottom up multi order or top down multi level heuristic, even though i select all the levels it scheduled only one level above we cannot reschedule one by one levels so is there any setting where it reschedules multiple levels simultaneously.
    Regards
    vinay

    Hi,
    In the seetings for the heuristics SAP_PP_009 (txn /SAPAPO/CDPSC11), there is a setting available under 'Basic Settings' called 'Component Check'. Please try the option 'Check Other Components'. Kindly read the help around that topic as well.
    Also check the parameter 'Execute Single-Level Planning' in the heuristics SAP_PP_010.
    Regards,
    Senthilrajan
    Edited by: Senthil_APO on Oct 5, 2009 11:27 AM

  • Report links from bottom to top

    Hi,
    Can someone please guide me one this issue: I want to bring the links ( return, download etc...) that usually displays at the bottom of report to top of report. Can someone help me on this issue?

    Hey user,
    I suppose this is not possible,as in the edit dashboard the report links are given by default nothing is being customized.It is been used what is given by the product.
    Lets see more comments on this issue.
    Hope helps you.
    Cheers,
    KK

  • When I click on a website in my reading list, why does top sites open rather than the site I've clicked on?

    When I click on a website in my Reader list in Safari, why does Top Sites open rather than the website I've clicked on?

    Go step by step and test.
    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Delete Cookies
    Safari > Preferences > Privacy > Cookies and other website data:
    Click “Remove All Website Data”.
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • Why do html page links on iweb suddenly start opening the pages at bottom not top?

    Why do html pointer to pages open those pages at the bottom not the the top on a web page I am working on with iWeb. Software seems a bit flakey as sometimes if I close the site down and then reopen it all is ok. Any ideas? Thanks. Sean

    Okay, I figured out the problem with those certain links not working on www.calgaryyouthrally.com. The grey background was apparently covering the links somehow on the first and last pages of the site (due to its becoming enlarged in IE8). I made some changes and took care of that problem.
    But, the enlarged grey background is bugging me. It is acceptable in Firefox and Safari. But in IE8 the grey extends well beyond the actual size that I made it. The grey shape with the white picture frame around it is what I have made in iWeb. But in IE8 the grey is extending well beyond the white picture frame border. What can I do to fix this? Any ideas? Again, the site is www.calgaryyouthrally.com.
    Thanks!
    Message was edited by: bawill
    Message was edited by: bawill

  • How to scan an image bottom to top?

    I know how to do the top to bottom, but the oposite complains about ArrayIndexOutOfBoundsException
    I try something like:
    for (int y = height; y > 1; y--){
    for (int x = width; x>1; x--){
    any ideas?
    Edited by: gmf on Nov 15, 2007 6:12 PM

    The Graphics origin (0, 0) is the top-left corner. x increases from left to right, y increases from top to bottom.
    It's the same in all visual development environments (like VB, VFP. VC++).(0,0)  (1,0)  (2,0)
    (0,1)  (1,1)  (2,1)
    (0,2)  (1,2)  (2,2)db

Maybe you are looking for

  • HT1338 Mail does not open after software update?

    My MacBook just updated with OSX 10.6.8 buildK549.  Now my Mail does not open. I get a message that the mail version 4.5  1084/1065 is not compatible with the OSX.  There was a new mail icon in the apps file but it did not open. Any suggestions? How

  • Which standard package checks po approval limit?

    Hi all, In 11i requisition approval workflow (REQAPPRV), 'Build Default Approval List' function i.e. PO_APPROVAL_LIST_WF1S.BUILD_DEFAULT_APPROVAL_LIST builds the default approval list based of position/emp supervisor hierarchy. It then calls po_appro

  • Recovering serial number for Web Premium CS4 on OSX Lion

    First of all hello everyone! After upgrading my MacBook to the newest OSX Lion I wanted to install one more time my Web Premium Suite CS4. Unfortunatelly my serial number registered on my Adobe account doesn't work anymore, I don't know why. From FAQ

  • PDF Conversion of Word document file too large

    I am going crazy trying to figure out why PDF document files I make on my Mac are so much larger (file size) than the same document converted on my Windows machine using Adobe Acrobat. I also tested the file size by having a friend use her CutePDF do

  • How to restart aministrator password

    I am trying to download Flash Player, but its asking me for administrator id and password, i forgot my ate password, therefore I'm having issues trying to recover my password or restarting the system to a new administrator, any further assistance? wo