Unable to use Navigational Attr in the query ?

Hi experts,
We are using BEx 3.X.
We have a report based on an infoset. We want to use some navigational attributes in the query and
restrict the values of these attributes.
But we are unable to use them as navigational attr. They are displayed as display attributes only.
We are unable to restrict them. This is because the query is on Infoset.
When i use the same navigational attr in a query based on a infocube, it is displaying as Navigational Attr.
We are in BI 7 but using BEx 3.X.
How to resolve this ?
Regards,
Nishuv.

Hi,
Master Data Read
A simple master data read should be done using generic BI functionality in the update rules. Choose the
option u201CMaster Data Attribute ofu201D in the update rule details for the selected characteristic and select an
attribute by using the F4 help. With this setting, the value of the characteristic to be updated is read from the
master data table of the specified characteristic.
Characteristic Material is provided by the InfoSource.
Characteristic Material Group is not provided by the InfoSource.
Characteristic Material Group is an attribute of characteristic Material
Therefore you can fill Material Group from the master data table of Material: Select the method Master Data
Attribute from and Material as source.
The generic master data read only works for characteristics that are available in the communication
structure.
For a more complex master data read or if the characteristic is not available in the communication structure,
you have to implement the master data read yourself in a routine for the specific characteristic. If so, the
function module RSAU_READ_MASTER_DATA should be used to read the master data.
In Infoset u can use max 2 cubes......and Infoobjects 'N' number u can use.......
Thanks/Tarak

Similar Messages

  • Navigation block and the Query Table Side by side in output

    Hi
    I am unable to get the navigation block and the query table side by side when i execute the WAD .Is it possible to place those 2 objects next to each other in the WAD output.In the WAD design those 2 are placed side by side.
    Regards,Pra

    I meant Html Table:
    In WAD in menu you can choose Insert -> Table -> Insert Table
    You need 1 row, 2 columns. In one of the column you should put navigation block and in the other table.
    Regards
    Erwin
    Edited by: Erwin  Buda on Feb 5, 2009 2:06 PM

  • Using item values in the query

    Hi,
    Is there a way I can use item values in the query...?
    as an example, something like this
    select a.*, :P20_CUST_NAME as CUSTOMER_NAME
    from
    table TEMP a;
    haven't tried it yet but want to get the feedback first before making an attempt...
    Thanks

    Yes, as long as that item has a value in session state..
    Thank you,
    Tony Miller
    Webster, TX

  • Problem with 0FIGL_VC1 when use constant selection in the query

    Please kindly help me. I have this problem for 2 weeks already.
    When I create a query from virtual cube 0FIGL_VC1 (balance sheets / p&l statements), if I use constant selection in any of key figure, my report could not display financial statment correctly. 
    My report layout
    Columns :  key figures  (including 0FIGL_VC1_CK001)
    Rows:  0GLACCEXT  (financial statement item) << as hierarchy
    Initially, the query is processed correctly.
    However, based on the requirement from my customer, I really have to use "constant selection" for some of my columns. Whenever I do so, the query display incorrectly. (Some nodes of financial statement item just disappear. (it seem like all contra item will disappear.)  
    Please help!

    If I dont use constant selection in the query, data are display correctly.
    But If I use constant selection in the query, some financial statement item dont display any value
    Example :
       Financial statement item(Display in hier)     Period1   Total Period1(Constant selection)
                 A                                                       10            60
                 B                                                       20            60
                 C                                                       30            60
                 D                                                       0              60
    - Financial statement item "D"  has some value.
    - Financial statement item "D"  is in the hierarchy,one gl account has been assigned to more than one group differentiated by debit/credit indicator.
    Please help!!

  • I have a Macbook with OS X 10.5.8. I am unable to use my iPhone with the iOS 6 upgrade on iTunes.

    I have a Macbook with OS X 10.5.8. I am unable to use my iPhone with the iOS 6 upgrade on iTunes.  Apparently I cannot downgrade to iOS 5 on my iPhone. Please tell me I don't have to pay anything to be able to use my products......

    Which version of iTunes?
    iTunes 10.6.3 - http://support.apple.com/kb/DL1575
    Unless this is a new iPhone 5 I believe the older ones will work with iOS6 and iTunes 10.6.3.  If it won't, you will need to upgrade operating system version.

  • Unable to use MSN Premium for the Share function within Elements 10

    I'm unable to use MSN Premium for the Share function within Elements 10 (it seems the program does not recognize MSN Premium for a valid email program for use within the Share function of Elements 10).  Is this something than can be resolved?

    No, unfortunately. You will have to either set up the adobe email or else just use the attachments button in the MSN premium instead of sending directly from PSE.

  • Error when using "inlist operator" in the query filter of Webi 3.1

    Hi,
    We are currently in the process of migrating Deski to webi (BOXI 3.1).
    The problem is, Deski is using the "inlist" operator which is working fine but after migrating to webi the inlist operator in the query filter is throwing the below error,
    *Error Message :*
    A database error occured. The database error text is: ORA-00907: missing right parenthesis. (WIS 10901)
    Appreciate your assistance on this.
    Thanks !
    Regards,
    Perialt

    Karthik ,
    Yes I am seeing an additional paranthesis in Webi SQL query.
    For example plz consider the product table below,
    SELECT
    Product.ID,
    Product.Name
    FROM Product
    WHERE
    Product.Name IN ( @Prompt('4) Name:','C','Product\Name-M',multi,free)  )
    As a work around in Custom SQL, If I remove the paranthesis the below query is running fine in webi
    SELECT
    Product.ID,
    Product.Name
    FROM Product
    WHERE
      Product.Name IN  @Prompt('4) Name:','C','Product\Name-M',multi,free) 
    But I want a permanent solution.

  • Performance hit using "where" clause in the query

    Hi All,
    I am facing a huge performance hit in the java code when using "where" clause in queries. Following are the details:
    1. SELECT * FROM Employee
    2. SELECT * FROM Employee where employeeid in (26,200,330,571,618,945)
    There is no difference in Query Execution Time for both queries.
    Business Logic Time is huge in second case as compared to first one (ratio - 1:20).
    Rows returned are more in first case as compared to second case.(ratio - 1:4)
    Business Logic is same for both the cases where I iterate through the ResultSet, get the objects and set them in a data structure.
    Does anybody know the reason of unexpected time difference for the business logic in the second case?

    Since you're mentioning clustering your index, I'll assume you are using Oracle. Knowing what database you are using makes it a lot easier to suggest things.
    Since you are using Oracle, you can get the database to tell you what execution plan it is using for each of the 2 SQL statements, and figure out why they have similar times (if they do).
    First, you need to be able to run SQL*Plus; that comes as part of a standard database installation and as part of the Oracle client installation - getting it set up and running is outside the scope of this forum.
    Second, you may need your DBA to enable autotracing, if it's not already:
    http://asktom.oracle.com/~tkyte/article1/autotrace.html
    http://www.samoratech.com/tips/swenableautotrace.htm
    Once it's all set up, you can log in to your database using sql*plus, issue "SET AUTOTRACE ON", issue queries and get execution plan information back.
    For example:
    SQL> set autotrace on
    SQL> select count(*) from it.ticket where ticket_number between 10 and 20;
      COUNT(*)
            11
    Execution Plan
    Plan hash value: 2983758974
    | Id  | Operation         | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |            |     1 |     4 |     1   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE   |            |     1 |     4 |            |          |
    |*  2 |   INDEX RANGE SCAN| TICKET_N10 |    12 |    48 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("TICKET_NUMBER">=10 AND "TICKET_NUMBER"<=20)
    Statistics
              0  recursive calls
              0  db block gets
              1  consistent gets
              0  physical reads
              0  redo size
            515  bytes sent via SQL*Net to client
            469  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> This tells me that this query used an INDEX RANGE SCAN on index TICKET_N1; the query can't do much better than that logically... In fact, the statistic "1 consistent gets" tells me that Oracle had to examine only one data block to get the answer, also can't do better than that. the statistic, "0 physical reads" tells me that the 1 data block used was already cached in Oracle's memory.
    the above is from Oracle 10g; autotrace is available back to at least 8i, but they've been adding information to the output with each release.
    If you have questions about sql_plus, check the forums at asktom.oracle.com or http://forums.oracle.com/forums/category.jspa?categoryID=18
    since sql*plus is not a JDBC thing...
    Oh, and sql*plus can also give you easier access to timing information, with "set timing on".

  • Using wild chatacters in the query

    Hi experts,
    I have a query like this:
    IF NOT i_name1 IS INITIAL.
        SELECT    kunnr
          FROM    kna1
          INTO    TABLE it_kna1
         WHERE    name1 EQ i_name1.
    ENDIF.
    Lets says KNA1 has some customer names like CABD, ZABY, PABQ, LABN.
    Suppose a customer enters the customer name as AB, how can I use the wild characters in the query to ensure
    that all these 4 names are fetched?
    Thanks,
    Ajay.

    hi ajay ,
        who told  it is not possible pls do this way
         Don't worry You can use   " Ranges : i_name1 like kn1-name1 .  PASTE BELOW   CODE IN YOUR FUNCTION MODULE
    IT WILL RUN LIKE A BULLET  .
    Ranges : i_name1 like knA1-name1 .
    MOVE 'I' TO i_NAME1-sign.
        MOVE 'CP' TO I_NAME1 option.
        MOVE I_NAME1 TO I_NAME1-low.
        APPEND I_NAME1.
    IF NOT i_name1 IS INITIAL.
    SELECT kunnr
    FROM kna1
    INTO TABLE it_kna1
    WHERE name1 EQ i_name1.
    ENDIF.
    rEGARDS
    dEEPAK .

  • Using dimension attributes in the Query Builder Bean

    All...
    I am developing an HTML client based tool using the JSP tags. I wish to create a report that selects the appropriate dimension value based upon an attribute.
    But...
    Using the query builder I can not select dimension values based upon dimension attributes. Is this possible? The only use I have found for the attributes is when I am sorting my selected diemsnion values.
    Thanks in advance
    Dylan.

    1. Java Client QueryBuilder has support for selecting dimension members based on an attribute.
    To use this functionality, go to Dimensional Panel -> Conditions tab. Drill on Match group of conditions. The attribute condition appears as the last available condition, but only for dimensions that have attributes.
    To test this, use BIBDEMO schema supplied with BI Beans and look at conditions for Product dimension.
    2. If you wish to display dimension attributes and their values in the HTML client UI,
    here is how you can retrieve attributes and their values for a dimension:
    (e.g. for Product dimension in BIBDEMO)
    String dimensionID = "MDM!D_BIBDEMO.PRODUCT";
    String hierarchyID = null;
    MDDimension dimension = metadataManager.getDimensionByUniqueID(dimensionID);
    MDHierarchy hierarchy = dimension.getDefaultHierarchy();
    if (hierarchy != null)
    hierarchyID = hierarchy.getUniqueID();
    // Retrieve all the attributes for this dimension
    MDAttribute[] attributes = dimension.getAttributes();
    if (attributes != null && attributes.length > 0)
    String attributeID = null;
    AttributeListStep attrStep = null;
    Selection sel = null;
    MetadataMap map = new MetadataMap(new String[] {MetadataMap.METADATA_VALUE});
    for (int i=0; i<attributes.length; i++)
    // Get the unique ID for the attribute
    attributeID = attributes.getUniqueID();
    // Create and evaluate an AttributeListStep
    attrStep = new AttributeListStep(dimensionID, hierarchyID, attributeID);
    sel = new Selection(dimensionID);
    sel.setHierarchy(hierarchyID);
    sel.addStep(attrStep);
    // Evaluate the AttributeListStep and get the DataAccess
    DataAccess da = query.createQueryAccess().getDataAccess(sel, map);
    // Walk the DataAccess and get the attribute values
    if (da != null)
    int extent = da.getEdgeExtent(DataDirector.COLUMN_EDGE);
    for (int i=0; i<extent; i++)
    // Get the attribute value
    strValue = (String)da.getMemberMetadata(DataDirector.COLUMN_EDGE, 0, i, MetadataMap.METDATA_VALUE);
    // Add the value to a drop down or another UI element...

  • Using RSRT to find the Query properties

    Hi All,
    Can anyone let me know to find out the Query properties using RSRT if we dont have access to BEX Analyser etc.,
    The properties like:
    <b>1.Variables built
    2.Exceptions built
    3.Conditions built
    4.Cell definitions built
    5.Types of Key figures built
    6.Query properties like Scaling factors, Show negative values as etc.,</b>
    As we have in RSRT for seeing List of Objects in Free Characteristics, Filters, Rows, Columns etc.,
    Will be waiting for Answers on this.
    Points will be rewarded for sure.

    Please go to RSRT --> select your query --> Selct query display as "HTML" and execute.
    The next page you will the actual resule display on HTML page with all properties like Exception, Condition ,Properties, etc
    Hope this helps...
    Regards
    Pankaj

  • Unable to make a copy of the query

    Hi All,
    I want to make a copy of a bw query. When I try to save the query as a new query I get the following error: -
    An unexpected 'assertion: failed to delete old query' error occured in wdbrlog.
    It seems to have happened due to an SP upgrade.
    Please provide your inputs on how to resolve this error.
    Thanks & Regards,
    Manisha

    Hi Guys,
    Thanks for your replies.
    RSZC is working. But the problem is user will not have access to this transaction, so user has to save as the query from the query designer itself.
    It is while the user tries to save the query from query designer, the error messages are obtained in the following sequence.
    - An unexpected 'assertion: failed to delete old query' error occured in wdbrlog.
    - Run time error '-214722149 (80040005)
    - Run time error -'429'
    ActiveX component can't create object.
    Then the system disconnects.
    I want to resolve this error so that the user can work direclty using query designer.
    Recently we had SP ugrade. The system details are: -
    SAP_BASIS  640   0017
    SAP_BW      350    0017
    Note 1060109 didn't seem applicable.
    Please let me know your inputs.
    Thanks a lot.
    Manisha

  • How do I revert back to IOS 10.8 on my 27" iMac?  Since I upgraded to 10.9 on Monday I am unable to use my buttons in the App Store window, notes or ibook window.

    How do I revert back to IOS 10.8 on my 27" iMac intel version?  Since I upgraded to 10.9 on Monday I am unable to use my mouse buttons in the App Store window, notes or ibook windows.  It works everywhere elese but not in any Apple application system windows.

    I'll try it. I don't have much confidence in it actually working since I'm having the same issue with all mouses (Bluetooth and wired) and my Bamboo Create.
    Can you also tell me how to revert back to IOS 10.8 in case resetting mouse preferences do not work?  I have already gone back and restored my system to before the up grade but it didn't restore the IOS system.

  • I have  2 IPads one for me and the other for my daughter. However, my Ipad was stolen during a bulgary and I reported it lost thru apple. However, now my daugher is unable to use her Ipad because the apple ap show it is lost. How can I change this?

    My home was recently burgarlized and one of my Ipads were stolen.(Thank God my daughter had hers at school). However, I went online to report my Ipad lost thru apple but now My daughter is unable to Log into the apple account and/or use her Ipad due to being lost. How can I correct this so she can use her Ipad?
    Thank you

    If you had a passcode set on your iPad your data should be safe.  The thief would have to force it into recovery mode and restore it in order to use it, which would completely erase it.
    This shouldn't keep your daughter's device from accessing the iCloud account however.  If you can no longer sign into the account on iCloud.com from your computer, contact Apple support for assistance.

  • Unable to use j2ee -stop or the deploytool

    I am a J2EE newbie. I have recently installed j2sdkee1.3.1 on Windows XP. The J2SDK version I am using is j2sdk1.4.0_01.
    I can start the J2EE server successfully and view http://localhost:8000/index.html.
    However, I am unable to stop the server using j2ee -stop. When I try to start deploytool, it hangs.
    Any suggestions

    I am havgin the same problem. When I try to stop I get error as:
    Shutting down the J2EE server.
    javax.naming.CommunicationException: Can't find SerialContextProvider
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:63)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:120)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.sun.enterprise.util.Utility.lookupObject(Utility.java:108)
    at com.sun.enterprise.server.J2EEServer.clientShutdown(J2EEServer.java:996)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:936)
    could you please help...
    thanks

Maybe you are looking for

  • Can't start gnome 3 session

    When I login either from gdm or lxdm the screen sits blue for 1~2min then a message pops up like "Oh no! Something has gone wrong... Please logout and try again" and I can only logout and nothing else. A couple of days ago I installed arch and starte

  • FABridge in AIR: Could not resolve fab:FABridge to a component implementation

    Hi all, I'm trying to use the FABridge in my HTML-based AIR app to communicate between a swf file and my JavaScript code. Browsing through the forums, it appears that ExternalInterface is not advisable in AIR, so I turned to FABridge instead. Can any

  • So Exactly What's Different, Other Than More Memory?

    The "just released" and long awaited new iPod touch seems to be pretty much of a dissapointment for most folks it seems.. where's all the anticipated features like the camera, or at least a microphone? Is the only real changes then just that it has 6

  • Database Adapter: Insert, relationships, sequences and problems of course

    Hello Everyone!! I'm trying to do an insert in an Oracle Express Database with a database adapter. I'm trying to do the insert in two tables: SOLICITUDES with a column called NUMSOLICITUD that is also the primary key of the table and it's populated f

  • Automatic restart of portal/java instance

    Hello! At the moment it seems as if we have to restart the java instance at least once a day for having a proper working portal. Is there any possibility to automate this restart so that it can be done at night? If it's not possible to realize this o