Multilevel Attribute issues

Hello,I am trying to create a multilevel attribute utilizing the "date" type. In the cube we have defined a dimension that contains all leases. I would like to create a LeaseDate attribute that would contain both a beginning and ending lease date. Since a beginning date could be the same as an ending date I used the example found in the online help but unfortunately I am getting an error "adding member 3317". It only happens with the 0 level member is duplicated. Date file layout01-01-2000,Begin,L2000,Total Lease01-02-2000,End,L2000,Total Lease01-01-2000,End,L3000,Total LeaseIs there such a thing as a shared member within a dimension that is tagged as having the type of "attribute"?I used the example as stated above in the online help under the title "Working with Multilevel Attribute Dimensions"Thanks - Steve

Hi Murali
This is exactly the same what i tried to do,
Drill down to 4 levels State -> City-> store etc with 4 pie charts and similar push button to close each level to
go back to previous chart, first run from 1 to 4 works fine, then after closing all the levels and when i am at the pie chart 1
if i click any pie slice it will jump to Pie chart 4 straight,
I tried tracking the issue, all i could find is some how the previous dynamic visibility values are back even after erasing
the data with the PUSH button (Destination cell insertion with blank or 0).
did you find a solution for this issue ?
Thanks
Chandra

Similar Messages

  • Transaction Attribute issue in weblogic 8.1

    Hi,
    I have problem with the transaction attribute of my session bean in Weblogic8.1 and SQLServer. Following is the description.
    I have two beans, say SampleBeanOne and SampleBeanTwo. The transaction attribute of SampleBeanOne is "Required" and that of the SampleBeanTwo is "RequiresNew".
    In SampleBeanOne i am trying the execute the a batch of insert quires using PreparedStatement.addBach() and PreparedStatement.executBatch() in a loop that runs of 5 times.
    Inside the loop i am calling a method in SampleBeanTwo to get the next sequence. In that method i am updating the squence and selecting the new value.
    Now the problem i am facing is that when i call the executeBatch() in the PreparedStatement only the final insert statement added to the batch is called and the insert statement added gets vanished.
    If i change the transaction attribute of the SampleBeanTwo to "Required" the code is working fine. But i can't do that since the SampleBeanTwo is accessed throught out my application.
    The same peace of code is working properly with Websphere5 and SQL server combination.
    Kindly help me out in this issue.
    Regards

    Hi
    ThanX for your reply. I raised the issue to the BEA support, they said that the issue is the driver that i am using. It got resolved when i tried with the BEA provided driver. They call it the BEA branded driver for SQL Server.
    Regards
    Muthu

  • Navigational attribute issue in query

    Hi gurus,
    Here is a very tricky issue that I am facing. If anyone could please help me with a workaround for the same.
    I have an infoObject called ZDIV_CUS which is basically 0CUSTOMER with 0DIVISION compounded to it. Hence, when I load data into ZDIV_CUS, I would have one record for a unique combination of customer and division. In functional words, I would have one customer maintained for multiple divisions. ZDIV_CUS also has other navigational attributes as 0SALES_OFF, 0SALES_DIST & 0SALES_GRP. Also, I have 0MATERIAL, which has 0DIVISION as a navigational attribute in my cube.
    Hence the master data for ZDIV_CUS looks as follows -
    0DIVISION    0CUSTOMER    0SALES_OFF    0SALES_GRP    0SALES_DIST
    01           100000       L001          L01           L010100
    02           100000       L005          L08           L020150
    01           100001       L001          L01           L050150
    03           100001       L005          L02           L052542
    The transactional data in my cube is as follows -
    0MATERIAL    0CUSTOMER    0DIVISION    0SALES_OFF   0NET_SALES   0MATERIAL_DIVISION (Material master div)
    102152          100000       01           L002         110000       02
    102545          100001       02           L002         12000000     02
    The above data is all transactional except for 0MATERIAL_DIVISION which comes from material division.
    My query is built in such a way that the division comes from 0MATERIAL (restricted to variable in the selection screen). ZDIV_CUS and its navigational attributes are being used in my query. The initial display is shown as per ZDIV_CUS_0SALES_OFF (i.e. sales office from ZDIV_CUS)
    The problem is that say for eg for the above mentioned scenario, the user executes the query for division 01 and the below mentioned output comes up -
    0MATERIAL_DIVISION     ZDIV_CUS    0MATERIAL    ZDIV_CUS_0SALES_OFF     0NET_SALES
    02                     100000      102152       L001                    110000
    If we take a closer look, we would know that ZDIV_CUS_0SALES_OFF should pick up value L005 and not L001 since the division for which the query is run is 0MATERIAL_DIVISION and not 0DIVISION.
    Request help to resolve the abovementioned issue.
    Thank you,
    Sree

    Can any one answer for Issue-2. Even I am also facing the same.
    Thanks in Advance.

  • Attributes Issue in FIX Statement Calculation

    Hi All,
    I have issue with calculating FTE. I have a dimension call Employees and has an attributes (Full-Time / Part-Time). I'm trying to calculate FTE. Below is my code. It seems to be ignoring Attribute in the Fix Statement. when I run this calc script FTE for every employees is 0.5 since that's the last thing it does. If I comment out the second fix statement FTE for every employees is 1. I'm not sure why it's not it's ignoring my statement on the Attributes.
    FIX(@LEVMBRS("Time Periods",0),"FY11","WP","Working Version",@LEVMBRS("Measures",0),"USD",@LEVMBRS("Entities",0),@LEVMBRS("Sites",0),@LEVMBRS("Employees",0),@LEVMBRS("Job Codes",0),@LEVMBRS("Cost Centers",0),@LEVMBRS("SBU",0),@LEVMBRS("EE_Status",0),@ATTRIBUTE("Full-Time"))
    FTE(
    IF
    ("Base_Salary">0);
    "FTE"=1;
    ELSE
    "FTE"==#MISSING;
    ENDIF;
    ENDFIX;
    FIX(@LEVMBRS("Time Periods",0),"FY11","WP","Working Version",@LEVMBRS("Measures",0),"USD",@LEVMBRS("Entities",0),@LEVMBRS("Sites",0),@LEVMBRS("Employees",0),@LEVMBRS("Job Codes",0),@LEVMBRS("Cost Centers",0),@LEVMBRS("SBU",0),@LEVMBRS("EE_Status",0),@ATTRIBUTE("Part-Time"))
    FTE(
    IF
    ("Base_Salary">0);
    "FTE"=0.5;
    ELSE
    "FTE"==#MISSING;
    ENDIF;
    ENDFIX;
    Edited by: user8988798 on Mar 26, 2010 9:57 AM

    Having both @LEVMBRS("Employees",0) and @ATTRIBUTE("Full-Time") is your problem. You are saying give me all of the level zero members of employee and also give me the members that have Full time. Since attributes are tied to the base members you would just need @ATTRIBUTE("Full-Time") to get the full time employees

  • Attribute Issue

    Hi,
    I have created Material as Master Data infoobject, and have Standard Price (STPRS) as its Attribute.
    The Attribute(STPRS) is a Key Figure.
    Now the problem is....
    It dosen't show up in Bex Query creation under Attributes List of Master Data. Only all character attributes can be seen. Also other Key Figure Attributes can't be seen.
    Does it mean only Character infoobjects can be created as Attribs? (Logically I believe its not correct)
    If No, What's the reason for that?
    Rgds,
    Sandeep

    Hi Sandeep,
    This could be an auth issue. Please see OSS note 761089: Authorization of display attributes for details.
    You can pull the KF attributes into a query using formula variables.
    Hope this helps...

  • Trasient Attribute  - Issue ?

    Hi
    I have a transient attribute on my create page for description column , to display the value to user .
    I am displaying error or warning msgs on the top, when the user clicks on apply button.
    My issue is.. i get error msg on the top.. but the value of the transietn attribute disappers ?
    Any suggestions?
    Thanks
    Ravi

    Hi
    Thanks for your reply.
    I am bit confused.
    I created a transient Attribute in VO and on my create pg, I cratead a form Valule and attached the trasient VO , to this form value
    is that what u suggest ?
    but i still see, description column disappers when page submits ?
    Any suggestions?
    Thanks
    Ravi

  • Radius Attribute Issue

    Hi,
    I'm having some issues on implementing radius accounting. Below are my configurations
    aaa group server radius ClearBox
    server 192.168.111.8 auth-port 1812 acct-port 1813
    accounting accept ClearBox
    aaa accounting exec default start-stop group ClearBox
    aaa accounting network default start-stop group ClearBox
    aaa accounting connection h323 start-stop group ClearBox
    aaa accounting resource default start-stop group ClearBox
    aaa session-id common
    gw-accounting aaa
    radius-server attribute list ClearBox
    attribute 1,4-6,25-26,28-31,40-41,44,46,49,61
    radius-server host 192.168.111.8 auth-port 1812 acct-port 1813
    radius-server key 7 12481603171B5B55
    radius-server vsa send accounting
    I am using ClearBox as my radius server. It seems that the ff attributes (h323-connect-time,h323-disconnect-time,h323-disconnect-cause,) was not recorded on the ClearBox. See attached file for the screenshot. May be you can help me on this issue.

    Try to enable the following debugs:
    debug isdn q931
    debug ppp negotiation
    debug aaa authen
    debug aaa accounting
    debug radius

  • Cfindex: path attribute issue

    I am currently trying to index a network directory
    recursively so that all of our HR files will be in a verity index.
    This way a user could just search for "benefits" and view all
    related benefit documentation that were placed in the HR hierarchy.
    The issue occurs when trying to specify the path attribute for
    cfindex. The files are stored on a network drive, so that ideal
    path would be: "\\hrdata\documents". We do have an IIS mapping so
    that if you want to our intranet and typed "
    http://#ourintranet#/documents/"
    you could reach any file. If I do a cfdirectory action="list" or
    try to use cffile with the network paths, everything returns
    correctly so I know that CF can see the propper mappings. However,
    when I run the attached code it does not index any documents. Does
    anyone have any ideas? I have been working on this for quite awhile
    and I am really stumped.
    Thanks in advance:
    Brendan
    Currently we are using CF MX 7.02 with Hot Fix 3

    Brendan
    I know that lucene (sp?) works on a unix implementation and
    you can find some information over at coldfusionjedi.com, but are
    there any other possible solutions you can use? I am unaware of how
    you should proceed short of contacting the K2 (or whomever owns
    verity now).

  • Plant Attribute issue

    Hi all,
    i got the below issue,,
    DataSource 0PLANT_ATTR does not have the same status as the source system in the Business Information Warehouse.
    The time stamp in the source system is 03/10/2011 03:10:12.
    The time stamp in the BW system is 11/08/2009 23:39:40.
    can anyone give soultion what to do now..
    Thanks in advance
    Regards,
    Naresh

    Hi Naresh
    Try replicating datasource and once datasource changes are available in BW if you want to load new attribute values you need to change your transformation to extract the same.
    if you still continue to face this problem you can right click on datasource->display datasource in source system
    then login to ECC system from login prompt you get and then come back one step.
    in this process system automatically checks datasource and in case of incosistency does necessary changes.
    Hope this helps.
    Regards
    Sudeep

  • Navigation attributes issues

    Hi,
    We have an infocube with a navigation attributes 0CUSTOMER_ORDERTYPE. The ORDERTYPE is in the master data 0CUSTOMER and updated using a program (contrary to the other 0CUSTOEMR attributes).
    When we see the master data 0CUSTOMER, we see that the ORDERTYPE value for the customer number "1200" is not blanc (value is "DSM"),
    BUT when we see the the infocube (listcube),  ORDERTYPE value for the customer number "1200" is blanc.
    For information, the ORDERTYPE is updated using a program (and not using direct loading).
    Do you have any idea to explain this issue please?
    Thx.

    Is ORDERTYPE time dependent or time-independent attribute of 0CUSTOMER?
    In the infocube, Is ORDERTYPE present as a characteristic in one of dimensions of Cube or is it enabled in the navigational attribute section.
    If it is in the dimension section, then the value you see in the cube is as of the time of loading the data into the cube. It means if the data was loaded two months ago then the value reflects the value in the 0CUSTOMER master data two months ago. It may or may not be present at that time.
    If it is in the navigational attribute section, then mostly the current date or the keydate us specify in the listcube main selection screen is being used to look up the value of the ORDERTYPE.  Make sure 0CUSTOMER has a valid ORDERTYPE as of the respective keydate.

  • Set-ADUser based on .csv file - empty attributes issue

    Hi, after a few months without working with PowerShell my knowledge is slowly fading away but fortunately every time this happened before, I was able to rebuild my knowledge again and now it is the same story. However I want to optimize my simple
    code which populates three AD user object attributes: manager, officephone and fax with values stored in .csv file. Everything works well, but my code looks not so good in my opinion. Is there any more elegant solution?
    $AddressBook = Import-CSV -Path D:\AddressBookFinal.csv
    foreach($Employee in $AddressBook)
         if([string]::IsNullOrEmpty($Employee.ManagerUserName)) {
                  Set-ADUser -Identity $Employee.EmployeeUserName -Manager $null
        } else {
                  Set-ADUser -Identity $Employee.EmployeeUserName -Manager $Employee.ManagerUserName
        <#similar code here for checking value of OfficePhone and Fax attributes and populating             AD attributes depending on if attribute value in .csv file is empty or not#> 

    Hi BoxiKG,
    If there is any other question regarding this issue, please feel free to reply this post directly so we will be notified to follow it up.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Navigational attribute issue-time dependent

    Hi all,
    I am working with 0PA_C01, I included some additional navigational attribute(time dependent )to 0employee, but when i am checking all these navigational attribute at cube level or Report  , i can find only the latest values ,for eg i added  Designation as a time dependent navigational attribute for 0employee, and the designation for a employee is changing after 12.2008 from VP to SVP ,at the cube   and also in the report  i can find only the latest designation for all the calmonth ie before 12.2008 also  as SVP .
    I checked  the the time dependent Navigational attribute option to make designation as a time dependent navigational attribute ,and also ran the attribute change run .
    Can anyone suggest some information to fix it?
    Thanks
    Sandhya

    Dear Sandya,
    Results correct only in your report. Time dependent attributes displyas data based on keydate. if no key date specified, system takes current date as key date and displays data.
    So in your case latest data displaying. If you want to see any historic designations, you need to specify key date, which shold fall into that particular range.
    Create a User entry variable for keydate and use.
    Key date
    Each query has a key date. For time-dependent data, the key date determines the time for which the data is selected.  The default key date value is the date on which the query is executed, that is <Today>.
           1.      Click on the Key Date field. A dialog box with a calendar appears for you to select your key date.
           2.      Select a date from the calendar. If you select 01.01.1999 for example, time-dependent data is read from the 01.01.1999.
    Note
    The key date applies only to time-dependent data.
    Check: [Query Properties|http://help.sap.com/saphelp_nw04/Helpdata/EN/07/0ab63c71f41d5ce10000000a114084/frameset.htm]
    Srini

  • Indexing on attribute issue

    Hi:
    I have a container with large documents containing several documents with the following elements:
    <g:Value concept="J_DEBTOR" value="AL"/>
    I have an xquey with the following where clause:
    where ($series/generic:SeriesKey/generic:Value[@concept=xs:string('J_DEBTOR') and @value=xs:string('PA')])
    Without indexes defined, the query runs fine.
    If I add the following index on the "concept" attribute:
    addIndex "" concept edge-attribute-equality-string
    all goes well and the query performs as expected.
    However, as soon as I add a second index on the "value" attribute:
    addIndex "" value edge-attribute-equality-string
    the query no longer returns any results.
    This works:
    where generic:Value[@concept=xs:string('J_DEBTOR')])
    and this works as well
    where generic:Value[@concept=xs:string('J_DEBTOR') and @value=xs:string('PA')])
    If I 'and' both attributes, the query no longer returns results. It works as soon as I drop one of the two indexes.
    I'm running DBXML 2.3.8. Any suggestion?
    thanks
    Pascal

    After further testing, rewriting the condition as:
    where ($series/generic:SeriesKey/generic:Value/@concept='J_DEBTOR')
    and ($series/generic:SeriesKey/generic:Value/@value='PA')
    gets the query to work with both indexes.

  • Render attribute issue

    Based on user's role, I am trying to make hide/show a series of links using render attribute of jsf component
    sample code snippet is given below. The function isUserInRole is getting executed 4 times. Is there any work around to prevent this behaviour
    appreciate
    <h:panelGrid columns="1" width="70%" rendered="#{userBean.isUserInRole}">
         <f:facet name="header">
              <h:panelGroup>
                   <h:outputText value="Weekending Processing" styleClass="title_text_blue"/>
                   <f:verbatim>
                        <link href="/css/focis.css" rel="stylesheet" type="text/css"/>
                   </f:verbatim>
              </h:panelGroup>
         </f:facet>
         <h:panelGroup>
         <h:outputLink value="/pages/web/standard/contractorSummary.jsf" styleClass="nav_text">
         <h:outputText value="Review & Approve Invoices"/>
         </h:outputLink>
         </h:panelGroup>
         <h:panelGroup>
              <f:verbatim>
                   <h:panelGroup>
                        <h:outputLink value="/pages/web/standard/contractorSummary.jsf" styleClass="nav_text">
         <h:outputText value="Review & Approve Exception Invoices"/>
         </h:outputLink>
                   </h:panelGroup>
              </f:verbatim>
         </h:panelGroup>
         </h:panelGrid>
    thanks
    Jaison

    No because the attribute rendered is called in different phases of the JSF lifecycle.

  • Cfgrid and href attribute issue

    HI Gang-
    I'm building a relatively simple query driven cfgrid, read-only for the most part but I need one of the columns to be a href value that will serve as a drilldown. Everything working fine except that the name/value pair I need appended to the url is being persnickety.
    The url I'd like to build and have effected in the cfgrid is something like "index.cfm?action=drilldown&orderid=#dynamicValue#"
    I finally got it to work, but not as I would like. Turns out both cfgrid and cfgridcolumn tags each have the "href" and the "hrefkey" attributes, which made for a confusing 45 minutes of trial and error.  The closest I could eventually come to my target url of:
    index.cfm?action=drilldown&orderid=#dynamicValue#
    is actually
    index.cfm?action=drilldown&CFGRIDKEY=#dynamicValue#
    Not what I wanted but I can deal for now.
    Has anyone gotten a hold of building out hrefs in cfgrid using custom name/value pairs dynamically? Would love to know how you did it. Code postings would be even better!
    Many thanks,
    Rich

    Quite a challenge, that one. You can run the following example directly. Have a look at my use of the lastName column. You could also have a look at the ext library.
    <html> 
    <head> 
         <title>Grid URL Demo</title> 
         <script type="text/javascript"> 
         function init(){ 
             var grid = ColdFusion.Grid.getGridObject("ArtistGrid"); 
             grid.addListener("rowclick",onRowClick); 
         function onRowClick(g,rowIndex,e){
           var lastName = ColdFusion.getElementValue("ArtistGrid", "artistGridForm", "lastName");
           var url = "index.cfm?action=drilldown&lastName="+lastName;
           ColdFusion.navigate(url);    
         </script>     
    </head> 
    <body> 
         <cfquery name="getArtists" datasource="cfartgallery"> 
         SELECT artistId, firstname, lastname, address, city, state, postalcode, email 
         FROM Artists 
         </cfquery> 
         <cfset args = structNew()> 
         <cfset args.name = "ArtistGrid"> 
         <cfset args.format = "html"> 
         <cfset args.query = "getArtists"> 
         <cfset args.stripeRows = true> 
         <cfset args.selectColor = "##D9E8FB"> 
         <cfset args.width = 600> 
         <h1>Artists Grid</h1>       
         <cfform name="artistGridForm" id="artistGridForm"> 
            <cfgrid attributeCollection="#args#"> 
               <cfgridcolumn name="artistid" display="false"> 
               <cfgridcolumn name="firstname" header="First Name"> 
               <cfgridcolumn name="lastname" header="Last Name"> 
               <cfgridcolumn name="email" header="Email Address"> 
               <cfgridcolumn name="address" header="Address"> 
               <cfgridcolumn name="city" header="City"> 
               <cfgridcolumn name="state" header="State"> 
               <cfgridcolumn name="postalcode" header="Zip"> 
            </cfgrid> 
         </cfform>  
         <cfset ajaxOnLoad("init")>      
    </body> 
    </html>

Maybe you are looking for

  • IPhone crashes during restore

    I have an iPhone 5s, bought 14 months ago (without Apple Care, so out of warranty). Background Information: Since I updated to iOS 8.1.1, my iPhone has been crashing infrequently, in: Blue screen, Apple logo, back to blue screen, Apple logo, etc. Thi

  • Backspace safari nightmare

    On my iPad 2-3G, when I am in Safari, on a google blogg page, I want to leave a comment. If I make a mistake, use backspace and then the keyboard (virtual keyboard) breaks. Nothing else works. I Have to close safari and reopen and pray I don't make m

  • Images in NetBeans 5.0 Mobility

    Hi all, I am an experienced programmer but new to Java. I want to learn how to program MIDlet's for mobile phones. I have installed NetBeans 5.0 and the NetBeans Mobility Pack for supporting mobile applications. I have learned the basics like creatin

  • The sound in a movie i bought is behind where it should be.

    i bought a movie from itunes and downloaded it. the sound was super far behind from the picture and choppy. so i deleted it and redownloaded it from the cloud. still is behind but alittle better. what do i do?

  • Signature change in iPad app

    How can I change my signature in the iPad app? Also how can I delete documents from my list when I am done with them? Swiping only opens them...