BC Sets - in SAP Tree Menu ?

Hi Experts,
I have created BC sets based in IMG, But how to create BC Sets based in SAP Tree Menu.
I have to create BC sets for the Org Structure for which i have created all objects and relationships. Help me out on the same.
Regards,
Madhu Sudhanan

Hi Pablo,
I want to prepare BC sets for OM Structure. How to do that?
reagards,
Madhu Sudhanan

Similar Messages

  • How to download list of transaction from SAP area menu in SAP1 transaction

    Hello All,
    My requirement is I want to download the list of transaction under the SAP area menu in SAP1 transaction.
    I tried with SE43, entered area menu as S000, but it doesn't give me of the same hierarchy and some transaction were missing, for example IH08 is available in SAP1 transaction and not available in SE43.
    Could you please let me know is there any way to download the list.
    Regards,
    Thanga

    If you open SE43N, type SAP1 and Display (F7), Tree is shown with collapsed nodes. Print option in Menu shows the same tree as a list. The nodes do not get expanded by default.
    So in order to get expanded tree in list ( so that transaction codes can be seen), you need to expand the tree before choosing Area Menu > Print.
    This works for average area menu which is less number of transactions.
    Since you are looking for SAP1, it has lot of transactions, and on expanding it, information message is shown as:
    The tree could only be partially expanded for performance reasons
    Diagnosis: The hierarchy could not be completely expanded for performance reasons; it has too many subnodes.
    Procedure:
    Restrict the number of nodes to be expanded by expanding a lower-level node
    or
    Expand this node repeatedly until this message no longer appears. The hierarchy is then completely expanded.
    As a result, IH08 transaction which is under Quality Management node can't be seen in list view as overflow occurred before this node was reached.
    On debugging, it can be seen that the tree is expanded recursively by standard until an overflow flag is set.
    In order to get around this overflow protection, you can write a custom code.
    Below snippet is for demonstration purpose.
    1. Run FM BMENU_DISPLAY_RSTREE in SE37 with tree_id as QM01
    2. Run my snippet that calls same FM in the end
    Compare 2 outputs and see the difference.
    I am going 1 level deep and IH08 transaction can be seen in output.
    Similarly, you can write a code that recursively expands every sub-tree found so that entire list can be seen.
    DATA: ls_nodes  TYPE hier_iface,
          lt_nodes  TYPE STANDARD TABLE OF hier_iface,
          lt_nodes1 TYPE STANDARD TABLE OF hier_iface,
          lt_nodes2 TYPE STANDARD TABLE OF hier_iface,
          lt_refs1  TYPE STANDARD TABLE OF hier_ref,
          lt_refs2  TYPE STANDARD TABLE OF hier_ref,
          lt_text1  TYPE STANDARD TABLE OF hier_texts,
          lt_text2  TYPE STANDARD TABLE OF hier_texts,
          lv_tree_id TYPE hier_guid VALUE 'QM01'.
    * read top level node
    CALL FUNCTION 'STREE_HIERARCHY_READ'
      EXPORTING
        structure_id       = lv_tree_id
        read_also_texts    = abap_true
      TABLES
        list_of_nodes      = lt_nodes
        list_of_references = lt_refs2
        list_of_texts      = lt_text2.
    * read hierarchies of sub-trees
    lt_nodes2 = lt_nodes.
    LOOP AT lt_nodes INTO ls_nodes WHERE node_type EQ 'AMRF'.
      CLEAR: lt_nodes1, lt_refs1, lt_text1.
      CALL FUNCTION 'STREE_HIERARCHY_READ'
        EXPORTING
          structure_id       = ls_nodes-reftree_id
          read_also_texts    = abap_true
        TABLES
          list_of_nodes      = lt_nodes1
          list_of_references = lt_refs1
          list_of_texts      = lt_text1.
    * add sub-tree details to main tree
      APPEND LINES OF lt_nodes1 TO lt_nodes2.
      APPEND LINES OF lt_refs1 TO lt_refs2.
      APPEND LINES OF lt_text1 TO lt_text2.
    ENDLOOP.
    CALL FUNCTION 'BMENU_DISPLAY_RSTREE'
      EXPORTING
        tree_id       = lv_tree_id    " Unique ID - 32 Characters
      TABLES
        list_of_nodes = lt_nodes2    " Hierarchy Maintenance Tool Node Passing Interface
        list_of_refs  = lt_refs2     " List of References to Structure Items
        list_of_texts = lt_text2.    " General Structure Repository Node Text

  • How to create new entry in SAP easy menu ?

    Hi gurus,
    In the project I need to create a new tree like a tree in the SAP easy menu , Is there any ways for doing this ?
    For example:
    I want to have a menu like this
    -Root menu
             - Branch text 1
                       Transaction 1
                       Transaction 2.
             - Branch text 2
                       Transaction 3
                       Transaction 4.
    Thanks in advance,
    Points rewarded immeadiately

    Hi,
    try TCODE SE43.
    Regards, Dieter

  • SAP Standard Menu Text missing while Creating Role in PFCG

    All:
    I am having a weird issue to where the "SAP Standard Menu Text" is missing when creating a role in PFCG and using the "Copy Menu > From SAP Menu" function.
    When I click the button I get the following:
    1) Popup of the SAP standard menu tree
    2) The area for the folders where there should be text is missing
         - appears as the " [ ] " symbols
    3) "[ ]" symbols appears through entire menu tree for folders and transactions.
    Any ideas?
    - Thanks Matt

    Yes this is a bug....Please see note 1421375 for the solution

  • Help using dynamic XML with Tree Menu

    Can some one please help me? I don't know what I'm doing
    wrong. I'd simply like to be able to load an XML file of data and
    use this data to populate a Flex tree component.
    The XML file needs to reside on the server and will change
    from time to time, so I am loading it via an HTTPService call. The
    part that I can't get to work is the way the
    XML is displayed in the Tree component. It ends up blank or
    sometimes I just get the result of "[object Object]". I know my
    syntax must be screwed up somewhere, but because
    AS3 and Flex are new territory for me, I can't get it to
    work. I am feeling my IQ drop on a minute to minute basis. Please
    help me if you can! Thanks!
    In this example, I am expecting a list of the different
    groceries/categories to show up in the tree menu. Instead, I get
    nothing.
    HERE IS THE XML FILE, CALLED "groceries.xml":
    <catalog>
    <category name="Meat">
    <product name="Buffalo" cost="4" isOrganic="No"
    isLowFat="Yes"/>
    <product name="T Bone Steak" cost="6" isOrganic="No"
    isLowFat="No"/>
    <product name="Whole Chicken" cost="1.5" isOrganic="Yes"
    isLowFat="No"/>
    </category>
    <category name="Vegetables">
    <product name="Broccoli" cost="2.16" isOrganic="Yes"
    isLowFat="Yes"/>
    <product name="Vine Ripened Tomatoes" cost="1.69"
    isOrganic="No" isLowFat="Yes"/>
    <product name="Yellow Peppers" cost="1.25"
    isOrganic="Yes" isLowFat="Yes"/>
    </category>
    <category name="Fruit">
    <product name="Bananas" cost="0.95" isOrganic="Yes"
    isLowFat="Yes"/>
    <product name="Grapes" cost="1.34" isOrganic="No"
    isLowFat="Yes" />
    <product name="Strawberries" cost="2.5" isOrganic="Yes"
    isLowFat="Yes"/>
    </category>
    </catalog>
    HERE IS THE MXML FLEX FILE THAT ISN'T WORKING AS I'D LIKE IT
    TO:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" initialize="initializeHandler(event)" width="240"
    height="340">
    <mx:Script>
    <![CDATA[
    import mx.collections.XMLListCollection;
    import mx.collections.ICollectionView;
    import mx.controls.List;
    private function initializeHandler(event:Event):void {
    textService.send();
    private function resultHandler(event:Event):void {
    myTree.dataProvider = textService.lastResult.catalog;
    ]]>
    </mx:Script>
    <mx:HTTPService id="textService" url="groceries.xml"
    result="resultHandler(event)" />
    <mx:Tree id="myTree" labelField="@name" showRoot="false"
    x="20" y="20" width="200" height="300" />
    </mx:Application>
    Any help is deeply appreciated.

    You must specify a resultformat of e4x. The default
    resultFormat is object. Object only works when you have a very
    simple xml structure that can be consistently represented as a set
    of objects.

  • How to use open data set in SAP

    Hi SAP Gurus,
            Could anyone help, how to use open data set in SAP.
          I need to upload a file from Application server (ZSAPUSAGEDATA) to internal table (IT_FINAL).
    Thanks & Regards,
    Krishnau2026

    Hi Krishna.
    These are the steps you need to follow.
    tables: specify the table.
    data: begin of fs_...
            end of fs_    " Structure Field string.
    data: t_table like
            standard table
                      of fs_...
    data:
    w_file TYPE string.
    data:
      fname(10) VALUE '.\xyz.TXT'.
    select-options: if any.
    PARAMETERS:
      p_file LIKE rlgrap-filename.
    w_file = p_file.
    select .... statement
    OPEN DATASET fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    *OPEN DATASET fname FOR OUTPUT IN BINARY MODE.
    LOOP AT t_... INTO fs_....
    write:/ .....
    TRANSFER fs_... TO fname.
    or
    TRANSFER t_... TO fname
    ENDLOOP.
    CLOSE DATASET fname.
    Reward points wisely and if you are benefitted or ask for more detailed explanation if problem not solved.
    Regards Harsh.

  • Enhance SAP Help Menu

    Hi,
    I want to enhance SAP Help Menu and add my own function code there.
    We have created our own help files for end user & want to have a function under
    Help --> 
        Application help
        <i><b>myHelp</b></i>
        SAP Library
    Has anyone done some thing like this/ any ideas/ suggestions are most welcome.
    Thanks,
    Manoj
    Message was edited by: Manoj Mundra

    Hi Manoj,
    see www.synactive.com for own helps.
    Viktor

  • How do I set up Dreamweaver 5 menu in English?

    How do I set up Dreamweaver 5 menu in English?
    I live in Japan but my computer set up (Mac OSX 10.9.4) is English as a primary
    language then Japanese secondary.
    When I downloaded Dreamweaver 5, it was automatically downloaded
    as a Japanese version.

    If you want to change the dictionary in DW, go to Edit > Preferences (see screenshot).
    This won't change your Japanese version of DW to English version. For that, you need to uninstall and re-install the English language version.
    Downloads of older Creative Suite Products
    http://helpx.adobe.com/download-install.html
    Nancy O.

  • I tried to update the software of my iphone 3gs while charging with my Macbook Pro. While the phone was restarting after installation, in the setting up my phone menu, it stops midway with a message in itunes on the laptop that there is no simcard.

    I tried to update the software of my iphone 3gs while charging with my Macbook Pro. While the phone was restarting after installation, in the setting up my phone menu, it stops midway with a message in itunes on the laptop that there is no simcard.

    Then put a SIM in. You cannot activate an iPhone without a compatible Sim.
    If your iPhone was hacked/jailbroken the update restore the lock.

  • How to create tcode in SAP tree?

    HEllo All,
      I need to create a tcode in SAP tree.(Initial login screen).Theres a customer specific folder in  information systems folder.I need to create a tcode here.Please let me know how to do that.
    Thanks,
    Rakesh.

    Plz SEARCH in SCN before posting you will get lot of posts using SE43N transaction.

  • New SAP system menu option

    Just a quick question, if you add a new function code to the Standard SAP System Menu options via program MENUSYST / status MEN where do you add the abap code for this functionality?
    Regards
    Mart

    The necessary java code to achieve this needs to be put in the file: includes/bodyStart.jsp above the line that creates the navigation bar:
    <% String navBar = p.getMainNavigation();
    For example, let's say we want to add a new tab that gives us a shortcut to the debug/session pages, and a sub-tab below it that lists all configuration objects in the repository. Here's the code for it:
    // Add a tab..
    com.waveset.ui.PageNavigation DEBUG_PAGE = new com.waveset.ui.PageNavigation("Debug", "debug/session.jsp", 0);
    DEBUG_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.SYSTEM, com.waveset.object.Right.VIEW, true) });
    p.addPage(DEBUG_PAGE);
    // Add a sub-tab..
    String urlDebugListConfiguration = "debug/List_Objects.jsp?List_Objects_Type=Configuration";
    if (! DEBUG_PAGE.containsSubPage(urlDebugListConfiguration) ) {
    com.waveset.ui.PageNavigation DEBUG_LIST_CONF_PAGE = new com.waveset.ui.PageNavigation("List Configuration", urlDebugListConfiguration, 0);
    DEBUG_LIST_CONF_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.CONFIGURATION, com.waveset.object.Right.VIEW, true)});
    DEBUG_PAGE.addSubPage(DEBUG_LIST_CONF_PAGE);
    As seen above, appropriate rights can be coded to limit the visibility of these tabs to administrators with certain capabilities. For a complete list of rights, refer to the IDM documentation and the java-docs for com.waveset.object.Type and com.waveset.object.Right.

  • Create tree menu

    Hi, I'm trying to create a tree menu, When user click the links on left hand side, the content will be displayed on the right side of the page.
    I'm new to html db. Can anyone have some suggestion about this? Is there a how'to doc. or sample application for reference?
    Much appreciate your instruct.

    Sorry . .. I just read your other posting regarding menu trees
    tree menu
    and I think I started leading you down a path that is far more complicated than you are looking for. It looks like Jeff has answered you question regarding how to add a tree. The link that I gave you was for creating a dynamic drop down/out menu based on the Suckerfish dropdown menu.
    http://www.alistapart.com/articles/dropdowns/
    David

  • Searching for a good tree menu

    Hi all,
    I need to add a tree menu to my website.
    I cannot find a tree menu that works the way I need.
    I need a tree menu that:
    - can be styled with CSS;
    - highlight the current menu branch even with URL parameters:
    example:
    the link
    http://www.mysite.com/index.php?cat_id=1&prod_id=101
    should
    highligth the 'category 1' branch;
    and
    the link
    http://www.mysite.com/index.php?cat_id=1&prod_id=145
    should
    highligth the 'category 1' branch;
    then
    the link
    http://www.mysite.com/index.php?cat_id=2&prod_id=435
    should
    highligth the 'category 2' branch;
    - collapse/expand menu branch from links on page
    Can you point me to a site/tutorial to do this?
    I thank you in advance.
    tony

    On 06 Mar 2009 in macromedia.dreamweaver, sweetman wrote:
    > Hi all,
    >
    > I need to add a tree menu to my website.
    > I cannot find a tree menu that works the way I need.
    >
    > I need a tree menu that:
    > - can be styled with CSS;
    >
    > - highlight the current menu branch even with URL
    parameters:
    >
    > example:
    > the link
    http://www.mysite.com/index.php?cat_id=1&prod_id=101
    should
    > highligth the 'category 1' branch;
    > and
    > the link
    http://www.mysite.com/index.php?cat_id=1&prod_id=145
    should
    > highligth the 'category 1' branch;
    > then
    > the link
    http://www.mysite.com/index.php?cat_id=2&prod_id=435
    should
    > highligth the 'category 2' branch;
    >
    > - collapse/expand menu branch from links on page
    >
    > Can you point me to a site/tutorial to do this?
    http://projectseven.com/products/menusystems/tmm2/
    Not free, but will do everything you want.
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • ABAP Query to SAP Area Menu

    How to put ABAP Query Report to SAP Area Menu or Create transaction code for ABAP Query Report? Kindly help me.
    Thanks

    Please see the following thread. It should do what you need.
    Re: How to create TCode for Sapquery
    Once you get the tcode created, use SE43N to add the custom tcode to your area menu.
    <i><b>
    Kindly reward points if helpful.</b></i>
    Regards,
    Minami

  • How to do changes in Layouts setting and SAP scripts to meet requirment?

    hi SD gurus,
    Please explain me how create and work with Z output .
    where and how we do changes in Layouts setting and SAP scripts to meet the user requirments.
    pls forward func spec of Z output
    points will be rewarded
    thanx & regards

    you need ABAP skills to do this.
    basically you need:
    1) draw the layout on a piece of paper
    2) define the fields you need and find out the corresponding SAP fields
    3) check the document with the customer
    4) give this specification to the developer
    5) the developer will give you a program name and form name: place them in the message for the document.
    Roberto

Maybe you are looking for