New specific hierarchy using table SETCLST, SETHEADER and SETNODE

Hi expert,
I want to know if they are any customizing point to configure a new specific hiearchy using standard table SETCLST, SETHEADER and SETNODE?
Thanks for your help.
Regards
Jonathan
Edited by: Jonathan on Aug 2, 2011 3:36 PM

We have a specific request to implement a specific hierarchy with specific data. The table with the specific data exist but now our user want to create a hierarchy with it. I know SAP use this standard table to create hiearchy with standard data.
My question is I want to know if they are any transaction to customise this tables to create the hiearchy?
Thanks for your help

Similar Messages

  • How to write SELECT statement using tables ekko,ekpo and eket?

    Hi,
    I got a problem in  performance tuning using below tables?
    how to write SELECT statement using tables EKKO,EKPO and EKET and in conditon ( WHERE clause)  use only fields 
                        ekko~ebeln       IN ebeln
                       ekko~loekz       EQ ' '
                       ekko~lifnr       IN lifnr
                       ekko~ekorg       IN ekorg
                      ekko~ekgrp       IN ekgrp          
                       ekpo~werks       IN werks
                       ekpo~pstyp       EQ  '3'
                       ekpo~loekz       EQ  space
                       ekpo~elikz       EQ  space
                       ekpo~menge       NE  0
                     eket~rsnum       NE space.
    Thanks in Advance.
    bye.

    Hi,
    ekko~ebeln IN ebeln
    ekko~loekz EQ ' '
    ekko~lifnr IN lifnr
    ekko~ekorg IN ekorg
    ekko~ekgrp IN ekgrp
    ekpo~werks IN werks
    ekpo~pstyp EQ '3'
    ekpo~loekz EQ space
    ekpo~elikz EQ space
    ekpo~menge NE 0          " Remove this from where clause
    eket~rsnum NE space.    " Remove this from where clause
    ' instead delete the entries after fetching into the table
    DELETE it_itab WHERE menge EQ '0' AND rsnum EQ ' '.
    Regards
    Bala Krishna

  • How to find which datasource are using  tables AFRU ,CAUFV and AUFM

    *how to find which datasource are using  tables AFRU ,CAUFV and AUFM*

    Hi,
    You can enter your table names in SE11 transaction and click "Display" and again click "Where -Used-List". Then it will show all the places where these tables are used(Datasources)
    Hope this helps.....
    Regards,
    SUman

  • New to Hierarchy use in Bex

    Hi,
    I am new to using hierarchy in BEX query.
    I have built a hierarchy in BW7.0 where under the First Node, we have 3 nodes and then each of these 3 nodes, we have 4 nodes under like shown below;
    Node1---
    Node11
                          |----
    Node111
                          |----
    Node112     
                          |----
    Node113
                          |----
    Node114
    Node12
                          |----
    Node121
                          |----
    Node122
                          |----
    Node123
                          |----
    Node124
    Node13
                          |----
    Node131
                          |----
    Node132
                          |----
    Node133
                          |----
    Node134
    My Client is intested to see KFs only for selected nodes which are Node1, Node11, Node114, Node13, Node133.
    He is not interested in data of other nodes.  Is this possible to present the data in Bex query for Selected Nodes?
    Also will this data for selected nodes be presented in hierarchical way?
    thanks,
    Su
    Edited by: SuKaur on Feb 29, 2012 7:27 AM
    Edited by: SuKaur on Feb 29, 2012 7:29 AM

    Hi,
    You can use variables for your scenario which you can create in Query Designer.
    But if you select ROOT node then all the data from other nodes will also be available.
    Regards,
    Amit

  • New to imac, used a pc before and am used to windows Vista.  what can i get for my imac which will allow me to continue using windows?  doesn't have to be vista in fact would prefer it if its the newest windows application

    what window programme can i get for my new imac.  would like the latest windows with outlook and all the other stuff.  also bought it from a friend and need to remove his name from it, but have followed all the instructions and its still there, can anyone advise please?

    If you have an intel Mac, you can use BootCamp, which is part of your OS and allows you to run Windows.

  • New Excel Features - Use of Integration,Formatting and Formulae in BI 7

    Hi Experts,
    I had a look at the Excel integration section of the BI 7 Features and found the some new enhancements for Excel.We are planning to upgrade to BI7 and want to get some expert opinions
    1. Excel Formulas allow access to any cell of the result set.
    2. combining Excel formulas and Excel Formatiing allows the design of high end formated solution workbooks.
    Can anyone explain me the difference between the Excel features in BW3.5 and BI7,with some real time examples.
    Does it mean that we dont need any macros to execute some of the calculations or if there a different use in BI7?
    Can i use all the features in MS Excel 2003?
    Can I use the Existing Bex Browser and create new BI7 workbooks or do i need for Enterprise portal?
    Thanks
    Mike

    Hi Experts,
    I had a look at the Excel integration section of the BI 7 Features and found the some new enhancements for Excel.We are planning to upgrade to BI7 and want to get some expert opinions
    1. Excel Formulas allow access to any cell of the result set.
    2. combining Excel formulas and Excel Formatiing allows the design of high end formated solution workbooks.
    Can anyone explain me the difference between the Excel features in BW3.5 and BI7,with some real time examples.
    Does it mean that we dont need any macros to execute some of the calculations or if there a different use in BI7?
    Can i use all the features in MS Excel 2003?
    Can I use the Existing Bex Browser and create new BI7 workbooks or do i need for Enterprise portal?
    Thanks
    Mike

  • Pagination using table growing property and multi-select table issues

    Hi,
    We're using the growing property on a table, thus the pagination is handled by the control it self.
    However, if we want to update some item in the table, in order to get those details reflected, we're refreshing the model, which is performance intensive.
    Is there any way we can update the UI only without creating any UI inconsistencies?
    Another question is that, is there any way to disbale the checkbox on the table items, based on some property from the backend. we tried to use editable property, but it hides the entire row.
    We need to disable the checkbox on the rows for particular items?
    Also, I need to know any resources on the mobile library where I can find the CSS related documentaion.
    Like we need to create a icon + text structure, which controls should be ideal to use? I have used
    <HBox><Icon src="abc"/><Text text="abc"/></Hbox>, but it creates alignment issues. Any ideas here?
    Thanks!
    Aamir

    855354 wrote:
    We are implementing pagination in our application and comparing the scrollable result set approach with using ROWNUM provided by oracle.The rownum approach scales better.
    Does this literrally mean that Oracle stores all the records in client-side memory cache? Well if it is scrollable it has to store all the rows somewhere, that is the disadvantage.
    Can we use fetchSize attribute or any other work around to limit the number of records in client-side memory?No. If you want that behavior that is how the rownum approach works.
    In the above case, when MAX_ROW_TO_FETCH is a large number (say 50000), then oracle will have to create a temporary table in memory with all the 50000 records and then will fetch from that table required records as per MIN_ROW_TO_FETCH.No, that is not how it works, where did you read that?
    In this case, reading rest of the records and storing in temporary in memory table will impact performance. Is my understanding correct or i am missing something here?Your understanding is not correct. The rownum approach does not work the way you think and behaves more like the way you want the scrollable result set to work.

  • I need to find a more complicate​d example, specifical​ly using arrays as inputs and outputs, to Code Interface Nodes.

    I am a beginner in C programming and I cannot understand how to use the structures that LabVIEW creates for its arrays in C. Can anyone point me to a good example?

    Check the following answer that I posted recently to a similar question.
    http://exchange.ni.com/servlet/ProcessRequest?RHIV​EID=101&RPAGEID=135&HOID=5065000000080000006D1E000​0
    Good luck!
    Vargas
    www.vartortech.com

  • Nano will not get off ok to disconnect screen, brand new have never used before. is charged and synched.

    help

    Hi,
    I have the same problem. Have you figured out how to fix it? My son has all of his stuff on the ipod.
    Thanks

  • Problem in using table name dynamically in PL/SQL

    I tried to create a procedure to use table name dynamically and got the following error. Anything wrong with my procedure?
    NFADV>declare
      2   cnt number;
      3   cursor cur is select table_name from user_tables where table_name in ('EMP','DEPT');
      4  begin
      5   for c1 in cur
      6   loop
      7    execute immediate select count(*) into cnt from c1.table_name;
      8      dbms_output.put_line('Count is : '||cnt);
      9   end loop;
    10  end;
    11  /
    declare
    ERROR at line 1:
    ORA-06550: line 7, column 21:
    PLS-00103: Encountered the symbol "SELECT" when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string> pipe
    <an alternatively-quoted string literal with character set specification>
    <an alternatively-quo
    ORA-06550: line 8, column 5:
    PLS-00103: Encountered the symbol "DBMS_OUTPUT"
    ORA-06550: line 8, column 45:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    . ( , * % & - + / at mod remainder rem <an identifier>
    <a double-quoted delimited-identifier> <an exponent (**)> as
    from into || multiset bulkThanks and Regards
    Kaustubh

    Hi,
    The wrong part is in execute immediate, it should be as follows:
    execute immediate ('select count(*) from '|| c1.table_name)
    into cnt
    (not tested)
    Regards
    AK

  • Add a new field to existing Table

    Hi , We want to add a new field to existing table from ECC  and populate historical data .
    We have already extracted data from ECC to VBAK Table . We have to add a new field - Incoterms in HANA . This field exists in ECC .
    Please guide.

    Hi Vicky,
        I dont think you can add new fields to the condition table once you have activated the condition table.
    SAP says you can only make limited changes to the condition table, like changing the description, fast entry screen, header and footer fields, but not able to add new fields to the table, and I think that is the correct approch or else for the same table you will have two sets of condition records.
    Please refer to the below link:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
    What you can do is create a new condition table with additional field and assign this table before the currently used table in the access sequence.
    Hope this helps.
    Regards
    Raj

  • How to restore my old hard drive into a new hard drive using my time machin

    My HD in my Mac Book died. Thank to the apple care Apple change it to me.
    Now I have a new HD with nothing on it.
    How do I use the backup in the Time Machine to restore my old hard drive?
    As far as what I knew I am supposed to have all my old data, applications, and more by doing something with Time Machine.
    Thanks

    hi,
    i have been through this. First if apple techs replaced the drive you do have something on the drive. your internal drive can boot the machine although your user settings, network settings and third-party software applications are net set up.
    here's what you do.. connect the time macine drive and turn it on. now boot your macbook. watch the 'welcome movie' and don't panic. you will recieve setup instructions from the macbook. you will of course designate the system language to be english. Now an option screen will appear. there are options for setting up the new computer include using a firewire cable and transfering stuff from another macbook. ignore that option. you will see an option to restore settings from a time machine drive. bingo! choose that.
    get the transfer started and go away. usb restoration of big internal harddrives by time machine is **** slow. (it should be slow for alot of technical reasons. don't blame apple.)
    make sure you have the macbook plugged into an electrical outlet, not running off battery because this can be an overnight process.
    so now you're good to go

  • How to add custom ringtones on new iPhone 5, using iTunes 11.04 on Mac OS 10.7.5

    how do I add custom ringtones on new iPhone 5, using iTunes 11.04 and Mac OS 10.7.5?

    Are you meaning rintones that you create from existing files?
    If so - then Google and you will get lots of hits on 'how to'.
    Once you have the ringtones in your iTunes library then make sure in iTunes prefs>General tab - the Tones option is selected. Once your device shows in the Devices list make sure you select from the Tones tab in the Devices window the tones you want to d/l.
    MJ

  • How to use tables in Muse?

    What is the best way to control page layout in Muse? I always used tables in HTML and Dreamweaver but tables don't seem to import to Muse. Is there a way to import tables to Muse or something similar in Muse?

    Generally the best way to control page layout in Muse is to arrange things in Muse Design mode the way you'd like them to appear on your website, and let Muse take care of generating the proper HTML to make your site look the same across browsers.

  • How to find the Commitment cost for a PM order using tables ?

    Hello all ,
           How to find the Commitment cost for a given PM order using table  .
    Thanks and regards ,
    Prem.

    Issue got resolved

Maybe you are looking for

  • How to insert into more than one table at a time also..

    hi, i am a newbee. how to insert into more than one table at a time also how to get a autoincremented value of an id say transactionid for a particular accountid. pls assume table as transactionid accountid 101 50 102 30 103 50 104 35 i want 102 for

  • Xilinx Compilation Error: HDLCompiler:432 Formal eiosignal has no actual or default value

    Hi, I have compiled several programs for sbRIOs previously but have not run into compilation errors before. I can't seem to find any support to see what is actually going poorly. Any help with this would be appreciated! The Compilation Status summary

  • Hr related tables

    hi all, can anyone tell hr related table's or  tcode name  apart from po13,po10,su01 ,pa0105 and  hrp1001 . Regards Alok

  • Insert a link to call a report program.

    Hello all! Im new in ABAP developing, and I have a Z Workflow that I need to put a link in a user decision step. When the user will accept or refuse an workflow in sbwp transaction, the user wants see a link and when he clicks in this link, a report

  • "Couldn't create destination temporary file:Permission denied"

    I am running the latest version of Final Cut Server on a Mac Pro Tower running Mac Server 10.6.X. I keep getting 2 Error messages every time my users are trying to send content to the server via Final Cut Server client application: (1) "Broken Pipe"