Using a measure as a dimension / nested aggregates.

Hi,
I am working on a project for a bank, they offer customers the facility to make payments via multiple methods (Credit Card, Debit Card, Bank Transfer, Direct Debit, etc.) and they want to know how many customers use more than one payment method in a given time period (and plot that over time). Effectively their result set would look something like this:
Methods Used, No. Customers
1 , 234523
2 , 34345
3 , 978
4 , 3
In this query I have an aggregate fact including the Customer and PaymentMethod keys as well as keys for Date, Branch and other things. To answer this query in SQL is simple, I just need to use a subquery, grouping by my COUNT(DISTINCT PaymentMethod) and doing a COUNT(DISTINCT Customer), if I were to realise this in a SQL Query I get:
SELECT NoMethods,COUNT(Customer_SK) AS NoCustomers,SUM(Transactions) AS Transactions
FROM (
     SELECT Customer_SK,COUNT(DISTINCT PaymentMethod) AS NoMethods,SUM(Transactions) AS Transactions
     FROM f_Customer
     INNER JOIN d_PaymentMethod ON f_Customer.PaymentMethod_SK = d_PaymentMethod.PaymentMethod_SK
     WHERE Date_SK = 39622 AND Branch_SK = 286
     AND Customer_SK <> 0 GROUP BY Customer_SK
) x
GROUP BY NoMethods
My problem is that I don't know how to model this properly in OBIEE. The best situation I have managed to acheive is that I can call back the NoMethods and NoCustomers columns but they are pulled into Presentation Services at Customer_SK level (meaning one row per customer instead of aggregating). I managed to get it to aggregate by using a pivot table looking at one branch for one day but that's not a feasible solution as I need to run this report for all branches across months of time which would bring far too many records back to Presentation Services. In this case my NoMethods column is added into the fact table and is a COUNT DISTINCT of the PaymentMethod column from the PaymentMethod dimension, I have tried building a dimesion just for this purpose but that didn't seem to work.
If anyone has any suggestions they'd be much appreciated, thanks in advance.

I didn't get into detail of your particular example, but I've had a similar problem where I had to do something like AVG (AVG metric) - currently OBIEE doesn't allow for that, however, I was able to get the results I needed by applying AVG aggregation in Answers on the metric column. I know this might be too simplified, but try to give it a try. Unfortunately, the option that would work for sure for you (a workaround) would me creating a SQL view in physical layer with this pre-aggregated column, dragging it to BMM, and then selecting aggregation rule on it again in logical. Let me know if you'd like more info.
Message was edited by:
wildmight

Similar Messages

  • Nested aggregate measure definitions are currently not supported

    Hi,
    I created a logical column which is based upon an existing logical column.
    The column has the formula SUM(existing_logical_column) and I get the following error when I tried to check in the changes "Nested aggregate measure definitions are currently not supported"
    Is there any work around this problem.
    Kindly help !

    Hi Adil,
    Yes, I did create a hierarchy for the time dimesion.
    No, I was not able to specify the aggregate rule since the source of the logical column is another logical column
    But the time hierarchy works for rows that is not based upon the SUM aggregate at the answers level.
    Say I have 3 columns: Income,Expense, Bottom Line (formula : Income- Expense)
    Income is created based upon a case statement in the Logical Column and
    Expense is also created based upon a case statement in the Logical Column.
    Income 1000 Rupees
    Expense -300 Rupees
    Bottom Line 700 Rupees (where the Bottom line is a row based upon the Answers aggregate formula
    which is SUM(Income+Expense))
    When I add a column year, I get the following output
    Income 2009 500 Rs
    Income 2008 500 Rs
    Expense 2009 -150 Rs
    Expense 2008 -150 Rs
    Bottom Line 2009 700 Rs
    Bottom Line 2008 700 Rs
    The Bottom Line doesn't spread across the Year
    Hope this helps you to understand what my problems is.
    Thank you!

  • DAX - Aggregating measures by multiple dimensions.

    I have a pretty simple data warehouse (star schema). DimDate, DimProduct, DimCustomer, FactSalesOrders. I have created a Tabular Model with this data and have several measures in FactSalesOrders. Ultimately, I am trying to consume this data in SSRS
    with a DAX query. Therefore, I need to perform a "group by" function in DAX to group by several attributes from each of the Dimensions and aggregate the measures in the FactSalesOrders table. I've tried summarize, and addcolumns, but the performance
    is slow. 10 seconds to pull a simple "group by" DimDate.FiscalYear, DimProduct.SKU, DimCustomer.CustomerName. Analysis Services within Excel is able to slice this data in less than a second. I'm looking for some insight as to how to write the
    DAX query.

    Hi Mstaples123542,
    According to your description, you want to create "group by" function in DAX query. Right?
    In DAX, the only way to achieve "group by" is using summarize, addcolumns. There's no better way the get the same result with better performance. Since you are using SSRS, I suggest you just use the DAX to get the whole dataset without any group
    and order, then you group and order all data in the SSRS.
    If you have any question, please feel free to ask.
    Regards,
    Simon Hou
    TechNet Community Support

  • Grouping of measures in accounts dimension Essbase

    I am new to essbase .
    I am developing a cube for one of the requirements which has got
    following measures in accounts dimension
    1) Allocated quantity
    2) Picked Quantity
    3) Shipped Quantity
    4) Allocated Amount
    5) Picked Amount
    6) Shipped Amount
    Now I want to group these measures in 2 groups viz a) Qtys b) Amounts
    means
    Qtys : Allocated quantity
    Picked Quantity
    Shipped Quantity
    Amounts : Allocated Amount
    Picked Amount
    Shipped Amount
    wanted to show these groups along with its measures in Excel add in report .
    I am using Essbase Integration Services 11 to develop the metaoutline
    How to define these groups in accounts dimension
    Regards
    Amit

    If you have a way to differeniate these measures you can add user defined measures in EIS. One way you could differeniate them is to put in filtering sql the uses like clauses to select members with Quantity or amount in them and have them put under the headings you want

  • Nested Aggregates in Report Table with Groupings

    I've come across the well known problem of needing to nest aggregates in a report which has a table with groupings. I have come up against a bit of a problem with the suggested workaround posted in severla threads of using custom code and variables as a way round this.
    Basically I have several groupings in my report, the inner most of which  has a field which needs to return the MAX value of the rows contained within it.  Then depending on what this value is i need a count of these values that match a particular criteria eg if it ends in a "T" count it if it doesn't then don't.
    I have a businees area group surrounding that inner grouping and i need to sum to the rows that match that particular criteria, but i can't have a sum of the values because they are calculated using the MAX aggreagte.
    The partial way round it i have found is to use some custom code and create a variable that i can increment each time one of the rows matches the criteria i want
    Code Snippet
    Public Shared sum_monday As Integer = 0
    Public Shared Function SumMon(ByVal Value As Integer)
        sum_monday = sum_monday + Value
    End Function
    i use the code below to increment the variable
    Code Snippet=Code.SumMon(IIF(right(MAX(Fields!Monday.Value),1)="T",1,0))
    and in the group footer i use the code below to display the total
    Code Snippet=code.sum_monday
    the problem i have is that i can't work out how to reset the count for each grouping because at the minute its effectively a running total.  I need to have a sum of the particular group rather than a running sum including all the previous groupings.
    Apologies if some of the above isn't clear , i'm a bit useless at writing clear explanations
    Any help much appreciated.
     

    Hi Rob (catz)
    Thanks for your suggestion, i've come back to this report having left it for a while and i've just tried your suggestion but the problem i have is that i can't get the total to display in the outer group where i need it. The total appears in the next groups header instead.
    Group 1 Header   =Code.SumMon(0,0)     =code.sum_Monday
    Group 2 Header   =Code.SumMon(Fields!ACTUAL_MILES.Value,1)   =code.sum_Monday
    Group 1 Footer    =code.sum_Monday
    will result in
    Group 1 Header   0
    Group 2              21   21
                              13   34
                              10   44
                              15   59
    Group 1 Footer    0
    Group 1 Header   59
    Group 2              10   10
                              12   22
                              13   35
                              14   49
    Group 1 Footer    59
    Any suggestions welcome

  • New calculated member based on existing measure and a dimension value

    Hi
    I’m trying to create a new calculated member in my cube based on an existing measure and a dimension value.
    I can do it easily in DSW but I want to do it as a Calculated Member in Calculations tab from my cube.
    I have a dimension called Product in which one attribute is UOM (unit of measure) and a measure called Quantity. The relationship with the fact table is “Regular”.
    For each product we have a unit of measure and an associated quantity measure:
    Product Name   
    UOM     Quantity
    Product 1   
              Km  
             50
    Product 2   
              Kg   
             60
    Product 3   
              Kw 
              25
    Product 4              L               
    15
    Product 5              T     
             1.5
    Total                                     151.5
    The calculated member I want to create is “Kw” and has to contain the value from Quantity measure when Product.UOM is “kW” and should look like this:
    Product Name   
    UOM     Quantity   
    Kw
    Product 1   
              Km  
             50           
    Product 2   
              Kg   
             60
    Product 3   
              Kw 
              25           
     25
    Product 4              L  
                 15
    Product 5              T     
             1.5
    Total                                     151.5        
    25
    So far I tried using the MDX with “IIF” or “Case” but with no results.
    What statement I should use in this case?
    Thank you.

    Hi Cees,
    Thank you for your answer.
    I never used yet the “Scope” statement and yet it’s an elegant solution.
    I use it as in your example:
    CREATE
    MEMBER CURRENTCUBE.[Measures].[Kw]
    AS NULL,
    FORMAT_STRING =
    VISIBLE = 1 , 
    ASSOCIATED_MEASURE_GROUP =
    'TR Other';
    Scope [Measures].[Kw];
     Scope [Product].[UOM].[kW];
     This = [Measures].[Quantity];
     End
    Scope;
    End
    Scope;
    …and the calculations are solid…with one exception: when I took out UOM from the query there are no more any resuts:
    Product Name    Quantity    Kw
    Total      
    It’s only working
    if using UOM in the query.                         
    I also thought that a
    tulpe might be another solution as:
    ([Measures].[Quantity],[Product].[UOM].&[kW])
    On this last one I’ve got the expected results with one exception: when I use UOM in the query all the other UOM values are listed each one of them
    having the [Kw] measure calculation value.
    Product Name    UOM     Quantity    Kw
    Product 1              Km  
             50           
    Product 2              Kg   
             60
    Product 3              Km 
              25             25
    Product 3              Kg 
               25             25
    Product 3              Kw 
              25             25
    Product 3              L 
    25              25
    Product 3              T 
    25           
      25
    Product 4              L  
                15
    Product 5              T     
             1.5
    Total                                     151.5        
    25
    …and without UOM in the query I have what I’m expected:
    Product Name    Quantity   
    Kw
    Product 1              50           
    Product 2              60
    Product 3               25           
     25
    Product 4              
    15
    Product 5             
     1.5
    Total                       151.5        
    25
     Maybe we can work together to find a solution.
    Thank you,
    Oks

  • Where can I find information about using the measurement tool and log?

    Am try to use the measurement tool to measure perspective plain; any ideas?

    No one can remotely have "any ideas" to help you when you don't even mention what your problem is nor what your system and workflow are like.
    Of course, when you post here,one assumes you have done your due diligence, read the documentation, the user guide, the Help files in the Photoshop Help menu, as well as done Google and forum searches, etc, and we would expect some sensible, detailed information from you.
    Teaching someone Photoshop from scratch, step by step, exceeds the scope of this forum—or any other forum.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Nested aggregate functions are not allowed

    I need a calculation that divides a parcial value (based on a condition) by the total. It is something like that:
    CALCULATION 1:
    PARCIAL_VALUE = CASE WHEN DURATION >= :PARAMETER THEN MEASURE_VALUE ELSE 0 END
    CALCULATION 2:
    DIVISION = CASE WHEN MEASURE_VALUE = 0 THEN 0 ELSE PARCIAL_VALUE / MEASURE_VALUE END
    Calculation 1 only works if I use a SUM before the CASE. If I don't use the SUM, the calculation doesn't aggregate.
    I believe I also should add a SUM before the CASE of Calculation 2, but I can't. I got the error: Nested aggregate functions are not allowed.
    I tried to merge the two calculations, but I got the same error. I also tried to create a calculated item in detail level in the Administrator, but it didn't work too.
    How can I reformulate this calculation in order to avoid this error?

    I got the correct result with this formula:
    CALCULATION 1:
    PARCIAL_VALUE = SUM(CASE WHEN DURATION >= FIXED_VALUE THEN MEASURE_VALUE ELSE 0 END)
    CALCULATION 2:
    DIVISION = PARCIAL_VALUE / SUM(MEASURE_VALUE)
    It didn't return a division by zero error.
    The calculation works and correctly aggregates the data when I use a fixed value in the CASE. When I change the fixed value by a parameter, the calculation 1 works perfectly, but calculation 2 doesn't aggregate.

  • I am trying to use 2 MOTU 896's as an aggregate device in Logic Pro 8

    I am using Logic Pro 8 on a Macbook Pro OS 10.6.8.  I am trying to use 2 MOTU 896's as an aggregate device to have total of 16 inputs.  I am daisy chaining the 896's via firewire.  I can select channels 1-16 as inputs in Logic.  I am getting signal input in channels 1-8 in Logic.  However, I am getting no signal input in channels 9-16.  I've also tried using ADAT light pipe as output from the 2nd device to the 1st one and that didn't work either.  I have created the aggregate device under audio-midi setups and I've set the 1st 896's clock source to internal and the 2nd 896's clock source as the 1st 896.  I've also tried both 896's clock source as internal.  Has anyone had any success in using 2 896's as an aggregate device in Logic Pro 8?  I need to use this setup to record a large band.  I would greatly appreciate any tips that anyone has.  Thanks.

    David,
    Learning is not a bad thing, I'm just saying what you thought MIDI did is in error, you're not the first.
    Here's an article explaining what MIDI is and how it works, it probably seems less than you thought it capable of but the fact is, since it's standardization in 1983 it completely revolutionized electronic music. By the Way, the designers of the Prophet 8 (Dave Smith & Sequential Circuits) had a lot of input into the MIDI protocol, in fact, if you had to say one company/person came up with the basics of MIDI it was Sequential Circuits. They also came up with the first polyphonic, fully programmable analog synth. I had a very basic MIDI studio at the end of 1984.
    http://entertainment.howstuffworks.com/midi1.htm

  • I would like to know how to transform an API C++ application in MFC C++ application to use the measurement studio components or Labwindows CVI

    I don t know the way used to transform a C++ with API program in an MFC application using measurement studio or Labwindows CVI.
    Thank you for you help.

    You can use the Measurement Studio Add/Remove Components Wizard to add Measurement Studio components to your C++ application. For more information, see the "Adding and Removing Components from Measurement Studio Projects Using a Wizard" topic in the Measurement Studio reference. You can find it in the table of contents under:
    Visual C++ Help
    Tutorials
    Measurement Studio for Visual C++ 6.0
    If you're using the Measurement Studio update for Visual C++ .NET, this topic will be under:
    Visual C++ Help
    Tutorials
    Measurement Studio for Visual C++ .NET
    - Elton

  • Multiple fact tables using one measure

    Hi Experts,
    Multiple fact tables using single measure .For example Measure name is amount . This measure is using 5 fact tables. By using this info , i have to create bmm layer document . In bmm layer documents columns are like logical table name ,column name, logical sourc name . could you please help me out to draft the document ?

    Hi ,
    My question is five fact tables are there, day level two different fact tables , period and week fact tables are there .
    Above all tables are using single measure . how to design these fact tables with measure in bmm layer ?
    Please kindly give reply .
    Thanks in advance.

  • Pie chart with two measures and date dimension navigation not working

    Hi Experts,
    Pie chart with two measures and date dimension navigation not working. Any help is appreciated.
    Thanks
    V

    Hi Deepak,
    I had time dimension in the RPD.
    I have stacked bar chart with same time dim like year & month in the report. when I go to legand and set navigation it is working fine. But not with pie chart.
    I am not not sure what is the problem. When I click on Pie chart it is not navigating to the target report. Can it be any other issues..???

  • Issue with Reports using costume measures - BPC 10.0 NW

    Hello BPC Colleagues,
    I’m having a problem with some BPC reports using costume measures and I would like to have your inputs about this issue.
    When all the reports are executed using a costume measures the report execution fails after a long time of execution (7min). The report has 1200 accounts and 57 company codes.
    In order to create trial balance we create these costume measure. Basically the measures are standars (with a few changes) and it works for limited reports (few account and companies) but we I try to executed for several accounts and companies I have the following error:
    “The execution of report Default Report failed. Please contact your administrator.”
    Error while communicating with the server
    Framework message:
    The underlying connection was close: An unexpected error occurred on a receive.
    Summary of the BPC LOG:
    |An error occurred while receiving the HTTP response to https://BPCENV.APPSET.MODEL. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details.#
    We already increased the PSAPTEMP table and this didn’t fix the issue. At the beginning we were sure that this was an issue with table space but the error persist.
    I don’t think (maybe I’m wrong) that this is not an issue related to the costume measure or to authorizations since I can retrieve data if I reduce the request to less accounts an company, so in my point of view this looks like a performance issue.
    Just for you, below you will find the details about our measure that generate the problem:
    'IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER), [MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%],[%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",([MEASURES].[/CPMB/SDATA],CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
    Finally is important to mention that we are using BPC 10.0 NW (SP08)
    If you have any suggestion for me I will appreciate.
    Thanks you a lot!

    Hi Vadim,
    Once again, thanks for your help.
    We already modified the YTD standard measure but is with that measure that I have problem. Do you think that my new formula is not efficient and for that reason I’m having this problem? Is this correct?.
    Below you will find the standard and costume measure. In red I marked the difference between these 2 formulas:
    YEAR TO DATE CUSTOME MESURE:
    'IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER), [MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%],[%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",([MEASURES].[/CPMB/SDATA],CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
    YEAR TO DATE STANDAR MEASURE:
    'IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%],[%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA]),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),
    IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[%TIMEBASELEVEL%])),-[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
    If you have any suggestion to correct my formula I would really appreciate it.
    Regards,

  • What's the unit label of y-axis of PSD when using Spectral Measurement Express VI?

    Hi:
     What's the unit label of y-axis of PSD when using Spectral Measurement Express VI?
    Selected Measurement : Power spectral density
    Result : dB
    No Averaging..
    Is dB/Hz the magnitude label of PSD output? Thx!

    There could be an issue the the Express VI converting your waveform data into the dreaded Dynamic Data Type, which is just causing more and more memory to be used.
    So what I would recommend is use the DAQmx Configure Logging  VI to configure DAQmx to stream the data as you read straight to a TDMS file.  There are various other properties you can set to make the logging go across files.  You just set up the logging before running your task.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • From scorecard Pass parameter to be used as Measure in query of analytic Grid report in PPS in SP2013

    From scorecard Pass parameter  to be used as Measure in query of analytic grid report in PPS
    Any idea of how we can pass this parameter while connecting scorecard and report
    any use of MDX in connection formula ?
    Parameter needs to be assigned on click of scorecard cell

    Hi,
    That API has restrictions on its usage. Please see http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_util.htm#CHDICGDA
    The lines to be referred to are Also, this method requires that the parameters that describe the BLOB to be listed as the format of a valid item within the application. That item is then referenced by the function.Regards,
    PS: Your report must be on Page 98 , so it is able to reference the item P98_NAV_IMAGE. List being a Shared Component it may not be able reference that Item.
    Edited by: Prabodh on May 28, 2012 3:16 PM

Maybe you are looking for

  • How do I make Game Center go away on my ipod touch?

    My games run dramatically slower when Game Center opens them. I disabled it, turned off notifications, signed out & it still pops up when i open games & slows them down to where i can't even play. Please advise! I feel like Apple hijacked my device t

  • Enterprise Manager Configuration Failed

    Hi everyone, when i install a db using the Assistant Configuartion Database i get no error exept this:      Enterprise manager configuration failed due to the following error -      Listener is not up. Start the listener and run EM configuration agai

  • Adding keywords to multiple photos

    Any idea how to make this work better? I know it's possible in the "keywords" window but that's not very usable when you have 700 different keywords. I really miss the Keyword Assistant...

  • Adding Image problems

    Having some problems adding images. I was able to add the Ubuntu server image mentioned in the install guide and it is working  It appears on the nodes palette and I can create a topology with it and boot it. I was also able to add CSR image csr1000v

  • Aliging Fields in Custom Check-in Form

    Hi, I have created profile, it have total 6-fields. Check-in and everything working fine!!!! Am facing issue in aligning fields... Like i want to align sale, below price... While adding fields I've selected price as below of sale and also Am using ar