Using SetLeaf seteaf to get the top hierarchy of the setnode its setname

hi,
using setleaf I have to set its setnode. I have to get the top standard hierarchy setname of that setnode. Is there any function module developed or is there anyway i can get the data.
Kamlesh

Take a look at SAP program RGSEX001 - good example of several Set related functions.  Also other RGSEX* programs.
Andrew

Similar Messages

  • I have a mac OSX desktop version 10.6.8 and all of a sudden I can't get a full screen view in Safari when I ask for help the response is use the arrows on the top right of the screen ... I don't have them  ... can anyone help?

    I have a mac OSX desktop version 10.6.8 and all of a sudden I can't get a full screen view in Safari when I ask for help the response is use the arrows on the top right of the screen ... I don't have them  ... can anyone help?

    Hi Mary,
    I don't remember those arrows in 10.6, only 10.7 & up!?
    I have 10.6.8, as you do. To make your Safari full screen, make sure you have the left hand side of your safari page moved  all the way to the left.  Then move your cursor to the BOTTOM RIGHT CORNER of the safari page, and simply drag your page towards the lower right hand corner of the screen. NOTE: you will see a series of lines on the bottom right corner of the page, indicating where to place you cursor arrow.
    By wuzradioman here...
    https://discussions.apple.com/thread/4218928?start=0&tstart=0

  • Well I was using my iphone 5, When restart and it did not turn on gets stuck in the presentation of apple (the apple) and at the top left of the screen above the apple logo reincia Appears this text, down and then turns back on and i get the same error ,

    Well I was using my iphone 5, When restart and it did not turn on gets stuck in the presentation of apple (the apple) and at the top left of the screen above the apple logo reincia Appears this text, down and then turns back on and i get the same error , i try to restore with itunes restore mode and throws me error!, could anyone help? I'm going crazy!. Thank you!
    This is the mistake That I get up the logo and then reboots iphone and Continues to Appear;
    (NAND) _findflashmediaandkeepout: 601 physical nand block offset 1
    (NAND) start: 356 this 0x96959400 PROVIDER = 0x96b1de80 falshmedia = 0x96b1de80
    (NAND) WMR_Start: 149 apple PNN  NAND Driver, Read / Write
    (NAND) WMR_Start: 174 FIL_INT (OK)
    (NAND) WMR_open :371 vfl_open (ok)
    (NAND) s_cxt_boot:88 sftl: error, unclean shutdown; adopted 7775 spans
    (NAND) WMR_open:420 FTL_open      (ok)
    (NAND)_publishServices:642 FTL capabilities: 0x00000001
    (NAND)_ppnvflGetStruct:3469 checking borrowed blocks-count:23 max_count:23
    (NAND)_fetchBorrowedList:881 number of borrowed blocks 16

    Hi Guys!
    I'm German, so my english writing might not be perfect
    I had the same Issue on a 5 i bought. Exact same screen and writing. Battery was totally drawn, first thing I had to replace. The screen had been replaced and since then it wouldn't work anymore according to the previous owner.
    It took me a couple hours, after recieving a few errors like 4013 it just never completed the restore, got really hot as well. The Flexwire of the Dock Connector seemed damaged, replaced the dock, but that didn't help.
    I almost gave up, thought the Logic Board was bad.
    BUT! Then i deceided to check if it has anything to do with the Screen assembly, and it did.
    Long story short, on mine the front facing camera, and sensor assy were bad.
    Anyhow, the phone works ''perfect'' when i leave them unplugged. So I just ordered a new one and we will see if thats the problem or if the damage is in the Logic Board.
    If so, i can live without the sensor and front cam.
    Just wanted to share, good luck everyone.

  • Why does firefox 16.0.1 not allow me to click on buttons in the top 40mm below the banners, though i can get to them by tabbing to a buttons then press "Enter"?

    It doesn't matter what web-page I'm on, the top 40mm or so of the screen is a dead area for clicking on buttons or links. e.g. in Google I can click on a link lower down the page and get transferred to the new article - but if I were to move the item up nearer the top of the page the link would no longer operate.
    I can move to a link by repeated operation of the "Tab" key until the link or button is indicated, and then press "Enter" to use the link, but this is potentially very time-consuming if there are a lot of links on the page.
    I'm using a Toshiba Satellite L750 loaded with Windows 7, and Firefox 16.0.

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode

  • Locking Periods using the Second Hierarchy in the Time Dimension

    Hi,
    They are not usiing work status for this...
    I am at a client, and they used the second hierarchy in the time dimension to lock periods.  If they left the second hierarchy blank, no data can be written to it.  To open the open the period, they code the Second Heirarchy with CONS_OPEN.  Just wondering if anyone has information on this? 
    It was working fine, then we needed to run a transport to move BPC to a new machine, and it stopped working.  Not sure if anyone has done it this way before?
    Thanks,
    Chandra

    Dear Kacper,
    the way I understood, there are two separate questions in this post, namely:
    I'm using a shared resource in multiple actors, and the code accessing the resource can take quite some time to execute. How can can I ensure this does not mess up the timing of one or all accessors?
    I'm using a shared resource in multiple actors, and the code accessing the resource can generate errors if I try to access it from multiple places. How can I ensure synchronization between all accessors?
    As for the first question, the optimal solution to separate the resource prone to timing issues in a different thread/actor. Put anything that is not strictly timed (file access, network comunication) in a separate loop. For each actor, you will get queue references to communicate with, so instead of logging the measurements in the actors where they are made, just queue them up for a different loop to process.
    For the second part, the same logic still applies. Ideally, every singular resource should be handled by its own thread and nowhere else, so if anything else needs data from/to said resource, it can send a request to the dedicated thread or actor.
    If, for some reason, this is not sufficient, you have to handle synchronization in some other way. There are a lot of techniques here, for example:
    Create a named semaphore or lock as a part of the class. Have class functions use the semaphore before accessing the resource.
    Use actor messages. Have a "resource in use" or "resource released" messages sent to all users whenever obtaining or releasing said resource.
    Have a separate actor handle all resources, awarding them to threads needing them. This method also allows setting priorities between requests.
    These are just a few examples, there are many other options.
    Please let me know if this was helpful. 
    Kind regards:
    Andrew Valko
    National Instruments Hungary

  • I used the ticker tape mode to add subtitles to a clip. When playing it in the pc, the Subtitles are fine, however, when playing it on the tv, only the top half of the words are visible. Any idea why?

    I added subtitles to a movie clip using the ticker tape option. When viewing on the iMac, the words are visible, however, when playing it in the tv, only the top half of the words are visible. Does anyone know why?

    I would agree with Keith Barkley, it may be the TV Safe Area. You can see what spots might be blocked out or cut off by going to iDVD and opening the original DVD project, under the View Menu > Show TV Safe Area. If your title gets cut off by the cropping rectangle displayed, that may account for the cut-off.

  • Using an imac. Only the top fifth of the firefox homepage appears on screen. Have removed program and reloaded but with same result

    Have been using Firefox for some time on an imac. Appproxiamtely three weeks ago, opened it and got only about the top fifth of the home page and no functionality. Have unloaded/deleted the program and reloaded it but get exactly the same appearance (which was themed so I know it is the same). Cannot delete it further, new downloads do not replace it. Unusable

    Your user agent in the More system details list shows that you have the Firefox 3.6.15 version
    *Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-GB; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15
    Where do you see "3.6.13" ?

  • I have 3 iTunes libraries on my one one computer and since I updated to the new version I can no longer see who's library I am in. It used to show at the top of iTunes the name of the library I was in.  Is there a way I can tell which library I am in?

    I have 3 iTunes libraries on my one one computer and since I updated to the new version I can no longer see who's library I am in. It used to show at the top of iTunes the name of the library I was in.  Is there a way I can tell which library I am in without closing and reopening?

    No. Frequently the apps take up more storage space on the iPod that the file download size.

  • My iPad has a split typing keyboard near the top third of the screen.  How do I get it back at the bottom and full?

    My iPad's keyboard has jumped up to the top this of the screen and is split.  How do I get it back to it's normal position at the bottom and one full keyboard?

    Just to clarify this a little bit....
    Pull the two ends of the keyboard together - into the middle of the screen. You can also tap and hold down on the little keyboard icon in the lower right corner of the keyboard and select - Dock and Merge.
    If the keyboard is up on the middle of the screen, but not split, and you want to move it back to the bottom - tap and hold down on the little keyboard and icon and select - Dock
    If you don't want this feature - You can turn the split keyboard off in Settings>General>Keyboard>Split Keyboard>Off.

  • HT204365 when i am in the Top Charts "store", the categories drop down list, next to the library button at the top right corner disappeared..how do i get it back?

    on my ipad, in the ibooks app, the categories icon disappeared next to the library icon in the top left hand corner, when i go the the top charts in the store..how do i get it back?

    Try 1 of 2 things.
    Double tap the Home Button on the iPad > you should see the Dock tray with your apps in > hold on iBooks until you see the app jiggleing with a red circle and white line > tap that red circle > re-opoen iBooks.
    If that does not work repeat above but do not open iBooks after you close it, now power off your iPad and turn it back on. You can power it off by holding the power button on top of the device for about 5-10 seconds.

  • When I click the icon at the top left of the page, all I ever get is refresh or close , never the Moztlla Firefox page

    When I click on the icon at the top left of the page all I ever get is refresh or close. never the Mozilla Firefox page. I have downloaded Firefox , but never get any further. What can I do about this problem?

    Firefox supports Vista so that shouldn't be a problem. What version of Firefox are you attempting to install? (From the tags on this ticket it looks like 19.) Can you share the link from which you downloaded Firefox? Did you get it from http://www.mozilla.org/en-US/firefox/new/

  • Firefox is filling the entire screen so that the controls are off the top & bottom of the screen, & I have to log off the computer to get out of Mozilla.

    Usually, there are controls at the top & bottom of the screen, & I can log off whatever program I'm in, but now Firefox is filling the whole screen: I can go from one tab to another within Firefox; however, I can't get out of Firefox without logging off the computer.

    It is possible that the screen is too high and that the title bar and status bar do not show.
    Open the system menu via Alt+Space and see if you can resize that window.
    If that works then close Firefox to save that setting.
    See also http://kb.mozillazine.org/Resizing_oversize_window
    Also make sure that you are not in "View > Full Screen" mode.
    Window sizes and positions are stored in [http://kb.mozillazine.org/localstore.rdf localstore.rdf] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder].
    See http://kb.mozillazine.org/Corrupt_localstore.rdf<br />
    (caution: do not delete the localstore.rdf file in the Firefox program installation folder)

  • The arrow at the top Left  of the search line has been replaced by a   sign which can be used to add bookmarks. How can I restore the arrow at the top left to go back to the previous page?

    When Safari is opened on my MacBook Pro, the arrow at the top  left ( of the search bar where I type what web site I am searching) has been replaced by the sign + which I can click on to add a bookmark... How can I restore the arrow that I can use to access the previous page?
    What should I should do?
    Tx

    raymond ==
    Go up to the main Safari menu bar above, and select "View."
    Then when that bar comes down, select "Customize Toolbar."
    Then select the arrow icon, and just drag it into your toolbar.

  • On my work pc only, I cannot click on links in the upper part of the screen while using firefox. This "dead area" affects only about the top 20% of the page, while below that I can click on all links.

    This does not happen on my laptop computer or on any other program my work computer runs.

    That problem can be caused by the Yahoo! Toolbar or the Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    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.org/kb/Safe+Mode

  • Function module to find the top node in the Profit Center standard hierarch

    Hi,
    Please let me know the function modules/Tables to do the following.
    1. To find the Top node in the Profit center standard hierarchy which is displayed via KCH6N Transaction.
    2. To read/retrieve standard hierarchy displayed in KCH6N Transaction.
    Thanks in Advance,
    Madhuri.

    Hi Madhuri ,
    have a look @<b>SETLEAF</b> or SET* in se11 , u can get the Top Node by putting the Logic like this
    ex: i am searching for Top Node of A3
    <b>select setname from setleaf where  valfrom eq 'A3'.</b>and for that selected setname u have to do one more
    loop.
    <b>select setname from setleaf where  valfrom eq 'A2'.</b>
    then only u will net Node A1.
    this is a sample code only , dont check F2.
    let me know if u want more inputs of Set Ids.
    regards
    prabhu
    [email protected]
    NjoySAP

Maybe you are looking for