Hierarchy in F4 help

Hi,
     I have written a program which should accept material hierarchy as input. Please let me know if there is any function module to invoke the hierarchy tree structure in the selection screen of a program just as it appears in a BW query.

An example of a tree hierarchy is shown below:
643     RIMOS     RIMOS
                          1098     10_SHOP     SHOP_RIMOS
                                 625     910     FRESH
                                                     626     91010     MILK MILK PRODUCTS EGG SOY

Similar Messages

  • Hierarchy variable inpu help not displayed correctly in the portal

    Hi ,
    I have a problem when trying to select Hierarchy in the variable selection screen hierarchy  is not being displayed
    correctly in the portal/browser  . When running the same report in BEX Analyser  and in RSRT with HTML option the
    hierarchy displays correctly in the variable selection screen .
    In Portal Var selection screen Hierarchy is displayed side by side ie horizontally not level by level.
    Please help.

    Thanks Venkat, Problem is solved with the note u mentined

  • Tree hierarchy in F4 help

    hi all,
    I have a requirement like,
    in transaction VBG1/2/3. i have to add a 5th tabstrip "MC Hier" and this tab structure is same as the one of 4 structre, But in one field Merchandise Category when we click on F4 for data selection then it should show a tree structure.
    The search help should show a tree. The tree should start with one entry u201CRIMOSu201D. If there are children to a branch a + should be shown in the tree. Selecting the hierarchy number should put the hierarchy number in the u201CMC Hieru201D field.
    The hierarchy can be read by reading tables:
    KLAH
    KSSK
    SWOR
    An example of a tree hierarchy is shown below:
    643     RIMOS     RIMOS
         1098     10_SHOP     SHOP_RIMOS
              625     910     FRESH
                   626     91010     MILK MILK PRODUCTS EGG SOY
    please help me how to do it ...

    An example of a tree hierarchy is shown below:
    643     RIMOS     RIMOS
                              1098     10_SHOP     SHOP_RIMOS
                                     625     910     FRESH
                                                         626     91010     MILK MILK PRODUCTS EGG SOY

  • Product Hierarchy Change - Need help

    Hi,
    We have a CRM 4.0 ISA for e-commerce scenario. The Production environment is LIVE now and we have a Product Hierarchy (with more than 2400 categories in multiple levels). The Settypes assigned have both SAP standard as well as custom settypes. The catalog for webshop has been created with Automatic Assignment with categories transferred from the current Product Hierarchy.
    There has been a radical change in the business alignment because of which the categories are changing and the hierarchy is going to change completely.
    I need a solution where without shutting down the production (or with minimal week end shutdown), where we can create the new hierarchy and transfer the existing products to the new hierarchy. The problem that i am facing is that the SAP standard and Custom settypes that are currently assigned to the existing hierarchy does not allow me to assign to the new hierarchy that i am trying to create in the system in parallel. I would be good if i can some how create the new hierarchy and keep it ready before we can shut off the existing hierarchy.
    Also, do we have any way to transfer products in one hierarchy to another hierarchy? (We can recategorize within the same hieararchy, but need to know if we can do it inter-hierarchy)
    Also is it possible to bring the hierarchy and the assigned products  from DEV / QA system to PROD?
    Please help with your inputs.
    Shankar

    Hi
    As previously said, the changed product hierarchy value will beocme applicable only for the new documents you are going to create. For the old documents, the older PH levels exists, it wont get automatically change.
    Also, the infostructures also will hold the old values for the old transactions.
    So it will be better to archive /delete the data so far in those structures and hten enable it for hte new PH values. Else, you cannot arrive at a conclusion based on PH levels, as the same level will imply different things at different points of time.
    Hope this helps.
    Reward if this helps.

  • Regd:- hierarchy level query help.

    Dear Friends,
    i have query like below.
    select empid ,empname from employee; (Deptid FK with department master table.)
    now i want to display department name also in above query. from Select deptname from dept;
    in deprtment table master table data as below...
    deptid deptname
    1 IT
    2 SALES
    3 BOE
    4 ACCOUNTS
    but i want output like below...
    EMPID ENAME DEPTNAME
    101 JON SALES,BOE,IT
    102 JEK SYS,ACCOUNTS.
    how should written the query...?
    pls help.

    Try this
    with employee
    as
    select 100 empno, 'karthick' ename from dual
    union all
    select 101 empno, 'rajnish' ename from dual
    , dept
    as
    select 100 empno, 'IT' dname from dual
    union all
    select 100 empno, 'SALES' dname from dual
    union all
    select 101 empno, 'IT' dname from dual
    select empno, ename, ltrim(sys_connect_by_path(dname,','),',') dname
      from (
              select e.empno, e.ename, d.dname, row_number() over(partition by e.empno order by d.dname) rno
                from employee e
                join dept d
                  on e.empno = d.empno
    where connect_by_isleaf = 1
    start with rno = 1
    connect by empno = prior empno
       and rno = prior rno+1and
    Please consider the following when you post a question.
    1. New features keep coming in every oracle version so please provide Your Oracle DB Version to get the best possible answer.
    You can use the following query and do a copy past of the output.
    select * from v$version 2. This forum has a very good Search Feature. Please use that before posting your question. Because for most of the questions
    that are asked the answer is already there.
    3. We dont know your DB structure or How your Data is. So you need to let us know. The best way would be to give some sample data like this.
    I have the following table called sales
    with sales
    as
          select 1 sales_id, 1 prod_id, 1001 inv_num, 120 qty from dual
          union all
          select 2 sales_id, 1 prod_id, 1002 inv_num, 25 qty from dual
    select *
      from sales 4. Rather than telling what you want in words its more easier when you give your expected output.
    For example in the above sales table, I want to know the total quantity and number of invoice for each product.
    The output should look like this
    Prod_id   sum_qty   count_inv
    1         145       2 5. When ever you get an error message post the entire error message. With the Error Number, The message and the Line number.
    6. Next thing is a very important thing to remember. Please post only well formatted code. Unformatted code is very hard to read.
    Your code format gets lost when you post it in the Oracle Forum. So in order to preserve it you need to
    use the {noformat}{noformat} tags.
    The usage of the tag is like this.
    <place your code here>\
    7. If you are posting a *Performance Related Question*. Please read
       {thread:id=501834} and {thread:id=863295}.
       Following those guide will be very helpful.
    8. Please keep in mind that this is a public forum. Here No question is URGENT.
       So use of words like *URGENT* or *ASAP* (As Soon As Possible) are considered to be rude.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to display Hierarchy tree in F4 help ?

    Hello All
    Sorry , this time i have a pure ABAP question .I have requirement where i have to extract the cube data into a flat file as per user's selection selection screen.On selection screen , there are various characteristics of cube such as COmpany code , kind of business etc.This characteristics have both master data as well Hierarchy.User can select anything .If he selects hierarchy, then i have to show him hierarchy in F4 help.
    HOw is this possible?Please let me know if anybody knows any clue regarding this.
    Thanks and Regards
    Yogesh Mali

    Hi Yogesh,
    You want to show the F4 funtionality in a report or an Abap program. If you have to show it in a query/report then right click on the characteristic ->properties -> click on the hierarchy list and you will find a option for variable. Create the variable and it will be a selection option when the user executes the query showing all the hiararchies available when F4 is pressed.
    Bye
    Dinesh

  • XSLT Help Request - Building Hierarchy

    Hi everyone,
    We are receiving a file that has the following structure, where fields that start with H are header fields, and fields that start with D are detail fields (like a header and line items in an FI posting).
    H1, H2, H3, D1, D2, D3, D4, D5
    On the first line of the FI posting, the H and the D fields are populated (i.e. contains the header information, and the first line item information).  Then on the next lines, the H fields are all blank, and the D fields are populated.  So like this:
    H1, H2, H3, D1, D2, D3, D4 (for line item 1)
    , , ,D1, D2, D3, D4 (for line item 2)
    The file can also have more than 1 FI posting (i.e. more than 1 Header):
    H1, H2, H3, D1, D2, D3, D4 (for line item 1)
    , , ,D1, D2, D3, D4 (for line item 2)
    H1, H2, H3, D1, D2, D3, D4 (for line item 1)
    , , ,D1, D2, D3, D4 (for line item 2)
    We are trying to map this into a FIDCC1 idoc posting, which looks like this:
    <FIDCCP01>
      <IDOC>
        <Header>
          <H1></H1>
          <H2></H2>
          <H3></H3>
          <Item><D1></D1><D2></D2><D3></D3><D4></D4></Item>
          <Item><D1></D1><D2></D2><D3></D3><D4></D4></Item>
        </Header>
      </IDOC>
      <IDOC>
        <Header>
          <H1></H1>
          <H2></H2>
          <H3></H3>
          <Item><D1></D1><D2></D2><D3></D3><D4></D4></Item>
          <Item><D1></D1><D2></D2><D3></D3><D4></D4></Item>
        </Header>
      </IDOC>
    </FIDCCP01>    
    We can't make this work alone in the concent conversion, so was thinking that this could be done in XSLT.  We have created a data type that contains the fill H and D fields and are taking this into XI no problems, but we are having problems putting it into the hierarchy.  Any help is greatly appreciated.
    Thanks
    Peter

    Here is the input file, top line being the field breakdown
    12222333333334444566666666666666667777777777777777
    1FB0104052007ARP 20000000026590.000000000000000.00
    /////////////////20000000098765.000000000000000.00
    1FB0104052007USD 20000000012345.000000000000000.00
    /////////////////20000000054321.000000000000000.00
    Field 1, when it is a "1", is the start of the header line.  Field 5 will always be a "2", and is the start of the detail line.  Also all null fields are populated with a slash.
    My idea was to take this in all on 1 line where the structure contains both the header and the detail fields, because I wasn't sure if content conversion could do what I wanted.  When I do that, here is the result:
    <?xml version="1.0" encoding="utf-8"?>
    <ns:IFS_MT xmlns:ns="http://xx.com/xi/fin/gl/iams/ifs">
         <Detail>
              <STYPE1>1</STYPE1>
              <TCODE>FB01</TCODE>
              <BLDAT>04052007</BLDAT>
              <WAERS>ARP</WAERS>
              <STYPE2>2</STYPE2>
              <WRBTR>0000000026590.00</WRBTR>
              <DMBE2>0000000000000.00</DMBE2>
         </Detail>
         <Detail>
              <STYPE1>/</STYPE1>
              <TCODE>////</TCODE>
              <BLDAT>////////</BLDAT>
              <WAERS>////</WAERS>
              <STYPE2>2</STYPE2>
              <WRBTR>0000000098765.00</WRBTR>
              <DMBE2>0000000000000.00</DMBE2>
         </Detail>
         <Detail>
              <STYPE1>1</STYPE1>
              <TCODE>FB01</TCODE>
              <BLDAT>04052007</BLDAT>
              <WAERS>USD</WAERS>
              <STYPE2>2</STYPE2>
              <WRBTR>0000000012345.00</WRBTR>
              <DMBE2>0000000000000.00</DMBE2>
         </Detail>
         <Detail>
              <STYPE1>/</STYPE1>
              <TCODE>////</TCODE>
              <BLDAT>////////</BLDAT>
              <WAERS>////</WAERS>
              <STYPE2>2</STYPE2>
              <WRBTR>0000000054321.00</WRBTR>
              <DMBE2>0000000000000.00</DMBE2>
         </Detail>     
    </ns:IFS_MT>
    I am open to changing the file content conversion if there is a better way!
    The desired result is:
    <FIDCCP01>
         <IDOC>
              <E1FIKPF>
                   <TCODE>FB01</TDOCE>
                   <BLDAT>04052007</BLDAT>
                   <WAERS>ARP</WAERS>
                   <E1FISEG>
                        <WRBTR>0000000026590.00</WRBTR>
                        <DMBE2>0000000000000.00</DMBE2>
                   </E1FISEG>
                   <E1FISEG>
                        <WRBTR>0000000098765.00</WRBTR>
                        <DMBE2>0000000000000.00</DMBE2>
                   </E1FISEG>
              </E1FIKPF>
         </IDOC>
         <IDOC>
              <E1FIKPF>
                   <TCODE>FB01</TDOCE>
                   <BLDAT>04052007</BLDAT>
                   <WAERS>USD</WAERS>
                   <E1FISEG>
                        <WRBTR>0000000012345.00</WRBTR>
                        <DMBE2>0000000000000.00</DMBE2>
                   </E1FISEG>
                   <E1FISEG>
                        <WRBTR>0000000054321.00</WRBTR>
                        <DMBE2>0000000000000.00</DMBE2>
                   </E1FISEG>
              </E1FIKPF>
         </IDOC>
    </FIDCCP01>
    Thanks again!
    Peter

  • Custom Search Help for the field Equipment number

    Hi,
    I have enchanced sales order transaction and included a field Equipment number(EQUI-EQUNR).
    Here after pressing F4(Search help) standard search help is display.
    I have a requirement wherein, the standard search help should not appear and a customised search where a specific Equipment category type values should appear in the search help.
    Ex. Field equipment  category (EQTYP).EQUNR(Equipment Number).
    Please let me know how to work for the customised search help.

    Hi,
    You need to create a customized search help.
    [Elementary Search Help - Structure|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee38446011d189700000e8322d00/content.htm]
    [Creating Elementary Search Helps|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee5f446011d189700000e8322d00/content.htm]
    Then you need to attach the search help to the screen field..
    [Assigning Search Helps to Screen Fields|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee93446011d189700000e8322d00/content.htm]
    [Hierarchy of Search Help Call|http://help.sap.com/saphelp_nw04/helpdata/EN/0b/32e9b798da11d295b800a0c929b3c3/content.htm]
    regards
    Nitesh

  • How to make operation Average work on base level of a hierarchy?

    I used Oracle OLAP 11g Sample Schema OLAPTRAIN to make a test, and found something really confused me a lot.
    Here was my steps,
    I made a dimension "TIME" with a hierarchy "calendar": all years <- year <- quarter <- month.
    And then building up two cubes,
    Cube "AVG_TEST" using dimension "TIME" with operator Average.
    Cube "SUM_TEST" using dimension "TIME" with operator Sum.
    After maintaining both dimension and cubes, I tried to query views: AVG_TEST_VIEW and SUM_TEST_VIEW and noticed the cube value based on months level were same for both of cubes. It was pretty clear that operator Average didn't work at month level within cube "AVG_TEST", but using operator Sum.
    Could any one tell me why operator didn't work on the base level of hierarchy, instead of Sum? As I have a requirement to computing average value for day level, but can't add hour level to the dimension because of huge data quantity and the speed of maintaining cube. Is there a way to make operator Average work for the base level of hierarchy?
    Any help will be really appreciated!
    Satine

    Hey Brijesh,
    Thank you for your help!
    I am still confused with it. Even month is the leaf level of dimension, but the fact data is day level precision, not month, and the value at month level still should be computed with my specified operator Average, not Sum. I mean If it could be computed with Sum (actually the value at month level was sumed up data from fact table), then why couldn't with Average at the leaf level?
    My test code is from "Oracle OLAP 11g Sample Schema OLAPTRAIN", and data looks like,
    SQL> select * from sales_fact where to_char(day_Key,'yyyy-mm')='2005-04' and rownum=1;
      QUANTITY      PRICE      SALES DAY_KEY         PRODUCT    CHANNEL   CUSTOMER
             1        125        125 13-APR-05          5298         21     284846
    SQL> select day_key,month_id from times where rownum=1;
    DAY_KEY      MONTH_ID
    31-JAN-05    JAN2005Cube name is AVG_TEST, the fact data is from sales_fact.sales. From below, it is pretty clear the value at month level was sumed up data even specified Average operator.
    SQL> SELECT * FROM AVG_TEST_VIEW where time='APR2005';
           AVG TIME
    7849372.89 APR2005
    SQL> select sum(sales) from sales_fact where to_char(day_Key,'yyyy-mm')='2005-04';
    SUM(SALES)
    7849372.89Thanks
    Satine

  • Field values are repeating for search help.

    Hello Friends.
    I have a problem. When I create a search help for a field the identical field values are repeating. What should I do to trigger only the first time.
    for example:
    <u>Field-name</u>-                        <u>field-value</u>
    Supplier Nr ---                                 Commodity
    5001 -
                                               casting
    5002 -
                                               casting
    5003 -
                                               casting
    So when I create the search help for commodity it is showing 'casting' 3 times in a pop-up window. It should not repeat. Can you please give me the solution what should I do?

    Hi
    Search helps
    Standard search help
    Types of search helps
    Concept of search help
    Search Help Interface
    Dialog behavior of search helps
    Selection method for search helps
    Performance of search helps
    Attaching search helps
    Hierarchy of search helps
    Standard Search Help
    The input help (F4 help) is a standard function of the R/3 System. It permits the user to display a list of possible values for a screen field. A value can be directly copied to an input field by list selection.
    The fields having an input help are shown in the R/3 System by the input help key to the right of the field. This key appears as soon as the cursor is positioned on the corresponding screen field. The help can be started either by clicking on this screen element or with function key F4.
    If the number of possible entries for a field is very large, you can limit the set of displayed values by entering further restrictions.
    Further meaningful information about the displayed values is included in the display of possible entries, especially if the field requires that a formal key be entered.
    TYPES OF SEARCH HELPS
    Elementary search helps
    Describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    Collective search help
    Combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    Search Help Interface
    Search help interface determines how the exchange of values between the screen template and the selection method is implemented.
    The search help interface defines the context data that can be used in the input help and the data that can be returned to the input mask. Analogously to the interface of a function module, the search help interface comprises interface parameters.
    When you define an interface parameter of a search help, you must also define whether it should be used to copy data to the input help (IMPORT parameter) or whether it should be used to return data from the input help (EXPORT parameter). A parameter of a search help can also have both attributes at the same time.
    The location from which the IMPORT parameters of a search help get their values and the screen fields in which the contents of the EXPORT parameters of the search help are returned are defined in the search help attachment. The search help itself should always be attached to an EXPORT parameter of the search help. If this parameter is also the IMPORT parameter, its contents are only used in the input help if it is a search string (that is, if it contains a ´*´ or a ´+´).
    You must define the parameter types of a search help. You can do this by assigning them data elements.
    Value Transport for Input Helps
    NOTE:In the above example, screen fields A, B and C are linked with parameters of the search help. As a result, values can only be transported between the screen and the search help for these three fields. Existing contents of screen fields A and B can be used for selecting the hit list since they are linked with an import parameter of the search help. The values of parameters A and C can be returned to the screen from the hit list since these parameters are declared as export parameters of the search help.
    Description of dialog behavior
    A hit list might contain plentiful number of entries. A
    dialog provides the user with an option to restrict the
    entries displayed on the hit list.
    In an input help process, the set of possible entries is presented in the dialog box as a list for displaying the hit list. The user selects the required value from this list by double clicking. Since the possible entries are often formal keys, you must be able to display further explanatory information about the possible entries in the list.
    If the set of possible entries is very large, the user should be able to define additional conditions for the attributes of the selected entry. Restricting the set of data in this way both increases the clarity of the list and reduces the system load. Additional conditions can be entered in a further dialog window, the dialog box for restricting values.
    Specifying the dialog type of a search help defines whether the dialog box for restricting values should be offered and if so under what conditions.
    The attributes in the dialog box for displaying the hit list or in the dialog box for restricting values must be defined as internal parameters of the search help. An internal parameter can also be used in only one of the two dialog boxes. It can also belong to the search help interface.
    The internal parameter types are also defined with data elements. These data elements define how the parameters are displayed in the two dialog boxes.
    Reward if usefull

  • Hierarchy from flat file loading with errors - duplicate node names

    Hello experts,
    I am loading a product hierarchy from a flat file into a custom hierarchy
    object.  The issue is that it errors out saying I am loading
    duplicates within nodes, however all node IDs within a level are unique.
    It seems to be looking at the node name to determine uniqueness and I know
    we have some duplication within the text there especially when you factor
    in the 32 character limitation for the node name.  Does anyone have an idea
    as to whether it is possible to have it only consider the node ID instead
    of the node name to determine uniqueness?
    A colleague suggested using the link ID to fix this problem but I don't know how that field works or how to populate it.
    I'm working in a BI 7.0 environment (I don't know if that makes a difference since you still have to use the 3.x objects to extract the hierarchy).
    Any help would be appreciated.
    Nancy

    Hi Nancy,
    You may wish to check this OSS Note 1026749 - Hierarchies: Consistency check for duplicate nodes and 912115 (old one)
    Symptom -
    When you load or activate a hierarchy it terminates with error message RH 109 or RH 211. The hierarchy contains duplicate nodes and this is not allowed. The long texts of messages RH 109 or RH 211 do not describe the reason for the problem sufficiently or they are partially incorrect.
    There is uncertainty about in which cases duplicate nodes exist in a hierarchy and in which cases duplicate nodes are allowed.
    Hope this helps,
    Bye...
    Naga Timmaraju

  • How to Create Hierarchy From Flat file Structure

    Hi Gurus,
    There is a scenario for me regarding the Hierarchy.
    Required Hierarchy structure - Region>Director>Manager-->Sales id
    I have flat file which gives the info like user id , sales id , manager id, director id.
    But the transaction data Flat file has structure with sales id, region id, sales amt, sales qty.
    Note : Region id is another Master Data.
    How i can create hierarchy from the first flat file which doesnot have region info in that but it is available in the transaction data Flat file.
    Is there anyway we can create hierarchy based on the first Flat file structure which contains more that 1,00,000 records.
    Try to Suggest me in this regard .
    This is urgent.
    Regards,
    Mano

    Hi Mano,
                    Defining the source system from which to load data
    Choose the source system tree File  ® Create.
           2.      Defining the InfoSource for which you want to load data
    Optional: choose InfoSource Tree ® Root (InfoSources) ® Create Application Components.
    Choose InfoSource Tree ® Your Application Component ® Other Functions  ® Create InfoSource 3.x ® Direct Update.
    Choose an InfoObject from the proposal list, and specify a name and a description.
           3.      Assigning the source system to the InfoSource
    Choose InfoSource Tree ® Your Application Component ® Your InfoSource ® Assign Source System. The transfer structure maintenance screen appears.
    The system automatically generates DataSources for the three different data types to which you can load data.
    &#9675;       Attributes
    &#9675;       Texts
    &#9675;       Hierarchies (if the InfoObject has access to hierarchies)
    The system automatically generates the transfer structure, the transfer rules, and the communication structure (for attributes and texts).
           4.      Maintaining the transfer structure / transfer rules
    Select the DataSource for uploading hierarchies.
    IDoc transfer method: The system automatically generates a proposal for the DataSource and the transfer structure. This consists of an entry for the InfoObject for which hierarchies are loaded. With this transfer method, the structure is converted to the structure of the PSA during loading, which affects performance.
    PSA transfer method: The transfer methods and the communication structure are also generated here.
           5.      Maintaining the hierarchy
    Choose Hierarchy Maintenance, and specify a technical name and a description of the hierarchy
    Hope this helps
    Regards
    Karthik
    Assign points if Helpful

  • Work Center Line Hierarchy

    Hi Team,
    I am working on PP repetitive manufacturing process. In one of the SAP document it has been mentioned like, if it is complex production line, create line hierarchy. What is line hierarchy? What is the difference between line hierarchy and production line?
    In which transaction shall i create line hierarchy?
    Thanks
    Kumar

    Hi,
    Use the T-code CR21 to creating the line Hierarchy, also find the below link for more information about the Work Hierarchy.
    [http://help.sap.com/erp2005_ehp_04/helpdata/EN/b1/c037a1439a11d189410000e829fbbd/frameset.htm]
    Regards,
    Hrishi

  • Doubt in Hierarchial column

    HI
    I created a ragged hierarchy in obiee 10 g
    it is for goegraphy table which consists of 3 level
    country->state->city
    now i created a row with only country and state i.e city=null
    ex: india-> maharashtra
    so city is null now
    now in answers if i click on india it drills to maharashtra. then when i click maharshtra it drills to empty cell(null)
    Now if i do this in OBIEE 11g wat happens?( with goegraphy column and not using goegraphy hierarchial column)
    Kindly help me because i don have OBIEE 11g installed right now

    Well, you have the option to define a hierarchy as being ragged in 11g but it's not a default setting. From your initial question it wasn't clear that was what you meant - I thought you wanted to recreate the hierarchy like-for-like. Anyway, you can read more about the support for ragged hierarchies here:
    http://www.rittmanmead.com/2010/07/12/obiee-11gr1-support-for-ragged-skip-level-value-based-hierarchies/
    Regards,
    Paul

  • Link / MAP an Lov selection list to the Hierarchy Viewer.

    Hi,
    I have created both a hierarchy viewer and an LOV af:selectOneChoice; both are appearing correctly on screen. I simple (hopefully) just want to link the selection made on the LOV / combo box to the Hierarchy viewer, such that when a user selects a value from the Lov/ComboBox the hierarchy viewer is updated. I am new to ADF, in Javascript with EXTJS or Jquery this is simple, but I cant figure out how to implement this feature in the Hierarchy viewer.
    any help much appreciated.
    Darragh.

    thanks Ankit for replying; I change the SOC to an inputListOfValues instead, but the same idea applies
    I have two underlying View Objects. For the ViewObject on the HV I also have a View Criteria and once the user selects from the LOV I need to remove the default View Criteria and apply another. I know I can implement the following code
        ViewCriteria vc = getViewCriteria("setEmployee");
           vc.resetCriteria(); //removes any existing View Criteria.
           setemployeeidbind(x); //this is the employee number
           applyViewCriteria(vc);
           executeQuery();
    I want to execute the above code once the user has selected a new user. I decided to change SOC to a inputListOfValues and I created a managed Bean to caputure the returnPopupListener, I now have the employee number selected by the user. I was hoping to now refresh the HV, remove the current ViewCriteria and apply a new vew Criteria. So basically I want to implement the above code when the user closes the pop up search. I am using the following code to get the handle to the ApplicationModule and the ViewObject
             BindingContext bcc = BindingContext.getCurrent();
             DCDataControl dc = bcc.findDataControl("AppModuleDataControl");
             ApplicationModule am = dc.getApplicationModule();
             ViewObject VO = am.findViewObject("EmpDetails1");
    Now, I simply want to remove the existing view criteria and set the bind variable. As I say I am very new to ADF I really feel stupid asking these Questions as in PL/SQL / JavaScript etc this is very easy to do

Maybe you are looking for

  • Horrible colors in Safari 2.0.4

    Along with the new Mac Pro came Safari 2.0.4, and a surprise that I could do without. The images on my photo-site - www.Peermann.com - are way too contrasty and saturated when viewed in Safari 2.0.4; almost as bad as in ancient versions of Internet E

  • Problem with ALV amount field display

    hi friend!! i have a editable ALv out put and in that i am displaying Amount and quantity field. In O/p if i enter 100 its taking as 100,00 .Please tell me how to correct the same. Plz help me

  • Adding a field to Shopping card item level.

    Hi Experts, I want to add field in the shoppping card item level, i have refer OSS note 458591, as per that i have to create one structure with the name Ci_bbp_item_sc and add the required field in that, can anyone tell me that by simplay creating st

  • Playback quality on Video playback

    After purchasing pop videos i go into full screen mode but i find i loose the picture quality the bigger the screen ......... should it be dvd like in quality or is it something that is the norm . Are there specific settings i need to adjust ???

  • Encore 5.1 on OS 10.5.8 burns Blu-ray discs but crashes on DVD build of same project

    I've spent a few weeks creating a dual-layered Blu-ray Disc with 20 menus and 44 timelines ranging in length from 9 seconds to 18 minutes. The end product will be a dual pack containing both the replicated Blu-ray Disc and DVD. I pre-transcoded both