Can i use the char (defined as line iteam dim) in  Aggregates

Hi
I am maintaining aggregates on cube. can i use char which is defined as line iteam   dimenstion.if i use  how will be the effect.
thanks
Shaliny

Hi,
of course you can use it!
The behaviour is the same than with the other characteristics: you will have as many records as DISTINCT ocurrences of the combination of all CHARS you have included in your aggregate.
I suggest to first create your aggregate with a fixed value on another characteristic so you can have a feeling about how many records it will have and how long it will take to create it.
In general if you have flagged your char in a line itm DIM it means that this CHAR has very high cardinality (nearly the same number of records than the fact  table itself) therefore it wouldn't make sense to include it in a ggregate except if your filter it for particluar fixed value.
The only difference you have with this line itm DIM is that there is no DIM table as such; the chars is accessed firectly from the cube fact(s) table. This will be the same for your aggregate (no aggr dim table created, access form your aggr fact(s) tables).
hoping this help...
Olivier.

Similar Messages

  • Can I use the Command Line Interface on Unix?

    Hi,
    We use 9iAS on Unix. We want to use Discoverer Command Line Interface on unix to export the worksheet query result. Can anyone know how to do this? I couldn't find out the command similar to dis5usr.exe for windows version.
    Thanks.
    Richard Qiu

    Hello Richard
    You can use the Discoverer EUL Command Line for Java utility. This was released with Discoverer 10g (9.0.4).
    Please refer to the documentation for more information on how to use this command line interface: 'Oracle Discoverer EUL Command Line for Java User's Guide 10g (9.0.4), Part No. B10274_01 (PDF)' The document is available from OTN at http://otn.oracle.com/documentation/discoverer.html
    Regards
    Discoverer Product Management

  • Can I use the pdf fax with a DSL line

    Can I use the pdf fax with a DSL line and, if so, how do I get the pdf fax modem to appear in my printer options? No Modems appear in my Modem pop-up menu.
    Thanks,

    Should I be able to fax using the internal fax software if I set it up with the proper settings?
    Yes, if it's not a purely Digital line, dial that FAX number on your Phone, does it answer with a screech?
    Must I disconnect all my other lines in order to use this?
    No, you shouldn't need to... do you have DSL Filters on all lines except the DSL connection, like these...
    http://www.twacomm.com/info/DSL_Filters.htm
    Oh, it's not clear, do you have 2 actual Lines/Phone numbers, or do they share the same line?

  • I can no longer back-delete or hit return to make a new paragraph, nor can i use the arrows to go backwards and forwards in a line; it's like the fn key is stuck; i've taken it off and cleaned it, and it looked clean.

    I can no longer back-delete or hit return to make a new paragraph, nor can i use the arrows to go backwards and forwards in a line; it's like the fn key is stuck; i've taken it off and cleaned it, and it looked clean.

    Then it's time for a new keyboard.  If you are still under warranty, call AppleCare. 
    For DIY keyboard repair check out the following websites: 
    iFixit 
    YouTube “How To” tutorials.

  • I bought an iPad Mini on States 2 Months ago and yesterday i saw that the LCD have a black line in the middle can i use the warranty here on Power Mac Philippines ? Please Reply ASAP

    I bought an iPad Mini on States 2 Months ago and yesterday i saw that the LCD have a black line in the middle can i use the warranty here on Power Mac Philippines ? Please Reply ASAP

    Hi
    You should ask your relative to physically take the iPhone to the store rather than shipping it because as diesel vdub has said:
    "No Apple store will accept an iPhone shipped to them"
    All you have to do is safely pack and ship your iPhone from the Philppines to your California-based relative.
    HTH?
    Tony

  • How can we Restict the Char single value Variables with , , =

    Hi Experts,
    How can we Restict the Char value Variables with <, >, <=  (without selecting Inverval or only passing single value)
    For Example
    We have a standard Query 0FIAR_C03_Q1005, in this
    New Selection
    "1 - 15 Days, Posting Date<=Key Date, Clearing Date>Key Date"
    This is restricted  with the
    Clearing(0CLEAR_DATE)
    <Clearing key date(0P_KEYD3)  It is a single value SAP Exit Varible
    PostingDate(0PSTNG_DATE)
      <= Posting keydate(0P_KEYD3)  It is a single value SAP Exit Varible
    When seeing these 0P_KEYD3, 0P_KEYD3 variables in the New selection screen they looks like  >0P_KEYD3, <=0PSTNG_DATE
    if you define any custom variables these are looks like =ZV_DATE.
    to enable < , >, <= symbols for variables what we need to do.
    In other way
    Say we created one variable ZV_DATE single value, processing type as customer exit.
    for this we populated current day,
    Now Requirement is we need to display the all the records which are <= current date,
    instead of passing low and high values, i want to restrict the calday <=ZV_DATE
    New selection
    0calday
      <=ZV_DATE
    How can we achive this, this is how the business content report having the restrictions
    Please sugget me.
    Thanks
    Chandra
    Edited by: Chandra Gandla on Jun 18, 2010 11:01 AM
    Edited by: Chandra Gandla on Jun 18, 2010 11:01 AM

    Ok,
    In the InfoObject 0calday in the query designer under the filter area, under characteristic restrictions right-click over that InfoObject (0calday).
    In the next window (select Values for [0CALDAY]  Calendar Day in the dropdown box for "Show" choose Value Ranges. Under the word "Between"  dropdown box select "Less than or equal to"
    Below that word click on the button of the dropdown box Select from list.
    In the new window select instead of History Variables and double-click on your variable ZV_DATE.
    Click on the right blue arrow to move it to the right.
    And there you go.
    Tip: It exists a SAP standard variable named 0DAT which is exactly the current date (don't need to use ZV_DATE variable).
    Diogo.

  • Cffunction and how to ? can someone explain the code to me line by line

    Hello i went to get this online and i want to test it.
    the udf is supposed to
    * CSVFormat accepts the name of an existing query and
    converts it to csv format.
    * Updated version of UDF orig. written by Simon Horwith
    my question how to break it down.
    can someone explain the code to me line by line
    thanks

    silviasalsa wrote:
    > thanks
    >
    > but line by line
    >
    > what is
    > if(ArrayLen(Arguments) GTE 2) qualifier = Arguments[2];
    > if(ArrayLen(Arguments) GTE 3 AND Len(Arguments[3]))
    columns = Arguments[3];
    > returnValue[1] = ListQualify(columns, qualifier);
    > ArrayResize(returnValue, query.recordcount + 1);
    > columns = ListToArray(columns);
    > for(i = 1; i LTE query.recordcount; i = i + 1)
    > {
    > rowValue = ArrayNew(1);
    > ArrayResize(rowValue, ArrayLen(columns));
    > for(j = 1; j LTE ArrayLen(columns); j = j + 1)
    > rowValue[j] = qualifier & query[columns[j]]
    & qualifier;
    > returnValue[i + 1] = ArrayToList(rowValue);
    > }
    > returnValue = ArrayToList(returnValue, Chr(13));
    > return returnValue;
    > }
    >
    > thanks
    Apparently this UDF takes two optional parameters so that one
    can define
    (A) a text "qualifier" to use in the CSV file, this is
    usually the
    single quote|tick ['] mark - but sometimes one wants this to
    be a
    different character and (B) what columns to use in the
    output in case
    one does not want to use all the columns in the record set
    in the
    outputted CSV file.
    The if statements are checking for these optional parameters
    and if
    found setting the values in them to internal variables.
    These
    variables are then used in the rest of the logic to create
    the CSV output.
    HTH
    Ian

  • I'm in the trial period for Creative Cloud - I have about 19 days to go on Photoshop CC on my iMac.  Can I use the same CC trial on a second machine?  Specifically on a Windows 7 machine?

    I'm in the trial period for Creative Cloud - I have about 19 days to go on Photoshop CC on my iMac.  Can I use the same CC trial on a second machine?  Specifically on a Windows 7 machine?

    Nothing personal to you or Rajshee, but this is exactly why I absolutely despise these "community forums" (not just Adobe but any company).  I called the Tech Support phone line today after digging and digging for a phone number, and they told me the exact opposite, and they did it a lot faster than it was possible to get a forum response.  (That's really not personal, because you can't control that, but it's a fact.)
    Their answer: As long as I'm signed in with the same ID, I can try, say, Photoshop CC on my iMac at home and also try Acrobat Pro CC on my Windows 7 machine at work.  Same account, same login, one trial.
    This makes complete sense to me as I'm financially on the hook (potentially) for the same package.  If I give away my login to someone else, which I wouldn't do, I'm still on the hook.  This is why the cloud approach to software is such genius and I applaud it.
    BTW, 99% of the "community forum" wrong answers come on Microsoft sites, so don't feel bad. 

  • How can I use the pulse train from a 6602 to trigger an niFGEN and niSCOPE on each rising edge of the pulse train?

    Hello,
    Here is my application: I need to use a 6602 counter/timer to generate a pulse train of certain frequency and duty cycle. On each rising edge of this pulse train, I need to output an arbitrary waveform on Ch. 0 of an niFGEN (5422) AND acquire data from CH. 0 of an niSCOPE (5124). I also need to synchronize the niFGEN and the niSCOPE to the same clock used for the pulse train (6602/ctr0). This process needs to continue until the user stops the system.
    I can generate the pulse train using the 6602 just fine using ctr0, but the pulse train shows up on OUT0 by default. When setting up the niFGEN and niSCOPE to trigger on rising/positive slope edge, OUT0 is not an option for either device as a source for the digital rising edge (pulse train). The main options for both are PFI0-3 and RTSI lines.
    Questions:
    1.) Is there a way that I can direct the pulse train to a location (such as an RTSI line) where BOTH the niFGEN and the niSCOPE can use it as a start trigger for each rising edge? I noticed in MAX that a route can be made between ctr0's internal output and a trigger line and others. If this is a solution, could you please explain how to accomplish this?
    2.) Once I configure the niFGEN and niSCOPE to be triggered on a digital rising edge, how can I effectively have this happen for every rising edge from the pulse train? In other words, can I just initiate the FGEN outside of the while loop and it will generate a waveform for each rising edge it sees at the source until the while loop is exitted?
    3.) Is setting a reference clock for the niFGEN and the niSCOPE the same thing as synchronizing both devices using the same clock that generated the pulse train? It is not clear to me the difference, and why it would necessarily be useful.
    Images of my current front panel and block diagram are attached. If you would rather have the actual VI's just let me know. Any help and/or explanation on this is greatly appreciated. Thanks in advance.
    Attachments:
    Front_Panel_Control.jpg ‏278 KB
    Block_Diagram_Control.jpg ‏263 KB

    Hello Cgifford,
    Welcome to National Instruments Forums.
    To output your signal to the PFI lines,
    you can use external connectios between OUT0 and PFI lines. You can also use
    the backplane to do so by routing into the same RTSI line.
    1)
    On the SCOPE and FGEN, the name of the
    terminals are actually “PXI Trigger Line x/RTSIx” but on the 6602 you might
    need to route the signal using the property:
    You can also use the DAQmx route signal which perform the same opperation.
    2)
    This will depend on the frequency of
    your pulse train. If this is lower than about 10 ms, then you can probably
    place this on a loop and start and stop the acquisition every time. If the
    frequency is higher than this, you will have to use:
    -       Scripting on the FGEN side (read more)
    -       MultiRecord Fetch (more information in the scope help file
    section “Acquisition Functions Reading versus Fetching”).
    3)
    The short answer is yes. The longer one
    might depend on how tight you need the synchronization to be (us, ns, ps). For
    very tight synchronization, you should look into here.
    Message Edited by Yardov on 06-18-2007 03:14 PM
    Gerardo O.
    RF Systems Engineering
    National Instruments
    Attachments:
    property.JPG ‏7 KB

  • Macbook Pro 2.53 mid 2009 came with 60 watt magsafe can I use a 85 watt without issues also can i use the new aluminum tip one?

    My macbook came with a 60 watt magsafe charger with the white magnetic tip. It crapped out on me and now need to buy a new one but everyone says it uses a 85 watt which is false since i bought it new and the 60 watt charger came in  the sealed box.
    1. If I buy the 85 watt will it damage my macbook pro?
    2. can I use the new magsafe charger with the new aluminuin tip with my macbook pro?
    Look below in red is the proof
    15-inch Configurations
    Enclosure
    Precision aluminum unibody
    Processor
    2.53GHz Intel Core 2 Duo
    2.66GHz Intel Core 2 Duo
    2.8GHz Intel Core 2 Duo
    L2 cache
    3MB shared
    3MB shared
    6MB shared
    System bus
    1066MHz
    1066MHz
    1066MHz
    Memory
    4GB (two 2GB SO-DIMMs) of 1066MHz DDR3 SDRAM; supports up to 8GB
    Hard drive4
    250GB Serial ATA; 5400 rpm
    320GB Serial ATA; 5400 rpm
    500GB Serial ATA; 5400 rpm
    Slot-loading optical drive
    8x SuperDrive (DVD±R DL/DVD±RW/CD-RW)
    Graphics
    NVIDIA GeForce 9400M graphics processor with 256MB of DDR3 SDRAM shared with main memory3
    NVIDIA GeForce 9600M GT graphics processor; and NVIDIA GeForce 9400M graphics processor with 256MB of DDR3 SDRAM shared with main memory3
    Graphics memory
    256MB GDDR3
    512MB GDDR3
    Video
    Built-in iSight camera; Mini DisplayPort output port with support for DVI, VGA, and dual-link DVI (requires adapters, sold separately)
    Display
    15.4-inch (diagonal) LED-backlit glossy widescreen display, 1440-by-900 resolution
    Expansion
    One FireWire 800 port (up to 800 Mbps), two USB 2.0 ports (up to 480 Mbps), SD card slot
    Audio
    Built-in stereo speakers, built-in omnidirectional microphone, combined optical digital input/analog line in, combined optical digital output/analog line out
    Networking
    Built-in 10/100/1000BASE-T (Gigabit) Ethernet
    Wireless
    Built-in AirPort Extreme Wi-Fi (based on IEEE 802.11n draft specification)2; built-in Bluetooth 2.1 + EDR (Enhanced Data Rate) module
    Hardware accessories
    60W MagSafe Power Adapter, AC wall plug, power cord
    85W MagSafe Power Adapter, AC wall plug, power cord
    Limited warranty
    and service
    Your MacBook Pro comes with 90 days of free telephone support and a one-year limited warranty. Purchase the AppleCare Protection Plan to extend your service and support to three years from your computer’s purchase date. Only the AppleCare Protection Plan provides you with direct telephone support from Apple technical experts and the assurance that repairs will be handled by Apple-authorized technicians using genuine Apple parts. For more information, visit Apple support or call 800-823-2775.
    Apple and the global
    environment
    Learn more about Apple’s dedication to reducing the environmental impact of our products and processes. The Apple Product Environmental Specification details the environmental attributes of our products.
    Recycling
    Apple takes a holistic view of materials management and waste minimization. Learn more about how to recycle your Mac.

    Yes, you can use the 85 watt adaptor. You cannot use the new adaptors because your computer is not equipped with the proper MagSafe connector. But you can use the older MBP adaptors as well as a 60 watt replacement adaptor. All can be found at Apple's Online Store.

  • Can I use the same taskflow in the same page ?

    I have an ADF library which I want to input into a single page (jspx).
    In the single page, i drag a taskflow-A twice into showdetailitem1 and showdetailitem2. I used required parameter so I able to define each taskflow.
    Everything looks good for the first time, and no error so far, but some component like carousel and af:foreach only works for the one of these regions.
    My question is,
    - can I use the same taskflow in the same page (2 regions) ?
    - if yes, did I have to configure something to achieve this ?
    Thanks
    Riendy

    Hi
    Iterating over af:region will not work.  Instead, try if using dynamic task flow id works—
    <af:carousel ...>
      <af:carouselItem ...>
        <af:region value="#{binding.item1.regionModel}" ... />
      </af:carouselItem>
    <af:carouselItem ...>
        <af:region value="#{binding.item2.regionModel}" ... />
      </af:carouselItem>
      <!-- and so on -->
    </af:carousel>
    In the page definition file, you should have the following—
    <taskFlow id="item1" taskFlowId="#{backingBean.item[0].taskFlowId}" active="#{backingBean.item[0].active" .../>
    <taskFlow id="item2" taskFlowId="#{backingBean.item[1].taskFlowId}" active="#{backingBean.item[1].active" .../>
    So, you have a bunch of task flows ready to be displayed based on the what the backing bean returns.
    ~Sripathy

  • Can I use the install disk on two computers?

    I haven't actually installed it on my computer yet, I just allowed whatever was going to install itself to come up. If I have another computer, can I use the install disk to put OSX on there or not? If so, can I still use it in case I need a backup load of my computer?

    Only if you get a family pack license newer than the installer disk which came with the computer(s) can you install it on multiple computers. Check your license agreement.
    You can't use the disks which came with another computer on a second computer. These articles explain more along those lines:
    http://docs.info.apple.com/article.html?artnum=25517
    http://docs.info.apple.com/article.html?artnum=25784
    As for backup, I recommend looking at these various procedures:
    http://www.macmaps.com/backup.html
    Disclaimer: Reference to links I make to my Macmaps.com website are a for your information only type reference. I do not get any profit from this page, and it is open to the public.

  • How can I use the Time Machine Backups from my Old Computer?

    I have two months of Time Machine backups made using my old Macintosh computer which died and I no longer have. I have now purchased a new computer and am trying to use the Time Machine back ups from the original computer, but it will not recognise them. How can I get my new MacBook Pro to use the Time Machine Backups from my old Computer? I phoned the Apple help line and they said I cannot use them and would have to delete them. This sounds crazy if you can only use the Time Machine back up file with one computer and have to delete it when you buy a new Mac. Surely there must be some way to transfer ownership (not files) from an old to the new Mac?
    Thanks
    Richard

    Thanks Kevin for the suggestion posted on MacOSXHints how to "Repair Time Machine after logic board changes".
    http://www.macosxhints.com/article.php?story=20080128003716101
    It seems as though I am not alone with my frustration with the way Time Machine uses the MAC address of a computer to tell one system from another. This means that if you have your Mac repaired with a new logic board, or replace your system with a new one, you can't resume backups where you left off. Reading through the readers who used the fix using Terminal, it appears that the fix does not always work. I contacted Apple again, but they were no help. Surely Apple should come out with a solution as more and more people use Time Machine/Time Capsule.
    It is CRAZY that after a change computers or a switch in the computer logic board that you cannot resume your Time Machine back ups.

  • I have an airport extreme and express, if I use the extreme as a base station connected to my old router can I use the express to extend the signal while also creating a new network that only I can use?

    I have an airport extreme and express, if I use the extreme as a base station connected to my old router can I use the express to extend the signal while also creating a new network that only I can use? Essentially having two wifi connection off the same network? If so how do I set this up?

    Extending using a wireless connection always results in a performance compromise.
    If the Express is going to extend using a wireless connection, then the Express will need to be located about half way between the AirPort Extreme and the general area where you need more wireless coverage. The more that you have line-of-sight between the Extreme and Express, the better the network will operate.
    Remember......the Express can only "extend" the quality and signal speed that it receives, so it needs to be located where it can get a very good signal from the Extreme. Although Apple cleverly uses the term "extend", a more accurate term for the Express would be "repeater".
    If the Express will extend by connecting to the Extreme using a permanent, wired Ethernet cable connection......highly recommended for best performance.....then the Express can be located exactly where you need more wireless coverage. There is no signal loss at all through the Ethernet cable, so the Express gets a full speed signal no matter where it might be located.
    Post back to let us know which way to you want to go.

  • How can i use the airport time capsule as a external hard drive?

    how can i use the airport time capsule as a external hard drive?

    Why do you recommend not place things like iTunes libraries or photo libraries on the drive? It was what I am looking for...
    I suggest that you ask the experts over in the iPhoto Support Community about their opinions on placing an iPhoto or Aperture library on the Time Capsule....even if you plan to use a wired connection for your Mac and the Time Capsule.
    But, if Terrence Devlin answers, be prepared for a lecture about why you should not ever do this.
    If you place the iTunes library on the Time Capsule, be prepared for iTunes to give you messages about not being able to find the library.
    In addtion, LaPastenague has the answer for you in a nutshell......corruption problems.
    Bottom line....the Time Capsule is for your backups.....not "everyday" files and especially not libraries.

Maybe you are looking for

  • Post revaluation to selected depreciation area for an asset

    Hi, We are using depreciation area '01' for posting to GL accounts and '02' for fiscal reporting. It turned out that couple of assets had wrong depreciation key specified for depreciation area '02', which resulted in wrong depreciation calculated for

  • Drag and drop into iTunes

    I used to be able to drag and drop a mp3 file from mail directly to iTunes. Not anymore. How can i save these music files to iTunes now? When I use the Lion save feature it takes so many more clicks and I'm not sure how to set up the folders so that

  • Panasonic Viera

    We have a Panasonic Viera 42" bought in December 2010. This morning when it was turned off, it was fine. Tonight when my husband went to turn it on, there is no sound on any of the stations. It is not on mute, we have turned it off and on several tim

  • Query to fetch the list of Journal Entry without cancelled JE.

    Dear All, I have tried the following query to get the list of JE without Cancelled JE. SELECT T0.[TransId] FROM OJDT T0 WHERE T0.[TransId] NOT  IN  (SELECT T0.[StornoToTr] FROM OJDT T0) It is not working . can any one solve this? Thanks in advance, D

  • Comparison between Forms6i and Forms9i

    We have some client/server-based applications built in Forms6i and are considering to convert/rebuild them into Forms9i or JDeveloper as web-based applications. Has anyone done any comparison between Forms6i and Forms9i/JDeveloper? Or, can you point