Prompts for individual columns

Hi Experts,
Is there any option for creating prompts for individual columns. means i have to extract data for region,customer,amount1,amount2,amount1+amount2 and % of amount1+amount2.
But for amount1 i need to extract the data for this financial year and for amount2 is latest month data.
How to achieve this using prompts.Because client wants those prompts dynamical.
Please help me.

Hi,
If anybody doesn't have a better sollution... let's trick BI...
to have in one report one mesure that summerize for an entire year, and one masure that is for only one month and we want to filter on that particular month,
we need to set on measure 1 that it is at year level (so it will always summerize for entire year).
Now our problem that year is not YEAR(some_date) so for jan 2010 to dec 2010 to give us 2010.
We want to have from apr 2009 to mar 2010 to be 2009
so we trick the year map to be
finanial_year = case when month(some_date) < 4 then year(some_date) - 1 else year(some_date) end
so now in my measure if I set at levels to financial_year it will summerize from apr to march...
Hope It helpes
Regards
Nicolae

Similar Messages

  • To setup scrollbars for individual columns in JTable

    Hi,
    I need to setup individual scrollbars for the
    columns in JTable.
    Can anybody help?
    Thanks in advance.
    Rgds,
    sita

    Hi,
    I need to setup individual scrollbars for the
    columns in JTable.If i understand you correctly, you want to have a scrollbar for every column. If so, you will need a new instance of JTable and JScrollPane for every column, but that's a lot of work if you want to do it fancy.
    The good news, is you can reuse the table model.
    You could do something like that.
    for (int i= 0; i < model.getColumnCount(); i++) {
        JTable table = new JTable();
        table.setAutoCreateColumnsFromModel(false);
       //container
        someContainer.add(new ScrollPane(table), null/* or some layout constrains*/);
        TableColumn tc = new TableColumn(i, 120);
        tc.setHeaderValue(model.getColumnName(i));
        table.addColumn(tc);
    Can anybody help?
    Thanks in advance.
    Rgds,
    sita

  • Suppressing totals for individual columns

    In OBIEE 10.1.3.4 Answers, is there a way to suppress totaling for an individual column? I have a derived column - unit price - that I want to suppress totaling on, while retaining totals for quantity and amount. I can do it by casting the column to character, but figured there must be a better way.
    Never mind... foundit!
    Edited by: andrea.bender on Jul 14, 2011 6:42 AM

    To suppress totaling on a specific column, go into the report and edit the formula for column and set Aggregation Rule to 'None'

  • CREATING ITEMS FOR INDIVIDUAL COLUMNS

    HI GUYS!
    i am a new user to HTMLDB. I need help on creating a search item for every single column in the report using pop-up LOV´s(eg:like we have in EXCEL report sheets).
    The pop-up item should display the DISTINCT rows of the column...please give the SQL Query involved in the identification of LOV .

    Hi,
    Let me give you an idea.
    user data dictionery view "user_tab_columns" write a dynamic sql with all of the columns for given table and write another dynamic sql and use the column_name from "user_tab_columns" in the where clause and search the string or number.
    If you need more help I can but I would like you to try yourself.
    Hope this helps
    Ghulam

  • Can we create two dashboard prompts for the same column in the samepage

    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideas

    863997 wrote:
    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideasYou are correct. You cannot build two prompts on the same column. Use this link for instructions on how to build a "between prompt" because of this fact:
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables/

  • Display values for logical columns with several physical sources

    Hi all,
    I'm enocuntering some strange behaviour with the values displayed for a column (when we want to add it a as a filter, and in the dialogue box select 'Show All' values).
    Basically the logical column is mapped against several physical columns as the base fact table is aggregated to different levels. Additionally, one column in the fact tables has an attribute value, and these vary between the aggregated and non-aggregated table. This is not a problem.
    In the production environment, when we display the all values in the filters prompt for this column we are seeing the values being taken from one fact table. Naturally this means that not all the values possible for this column are being shown (i.e. values from the aggregated fact tables are missing). Now in one of our test environment where those fact tabels have additional data loaded, the values are being taken from one of the other fact tables. Unfortunately it is not necessarily the fact table with less data.
    My questions are:
    a) What dictates which fact table the server will use when the query in Answers doesnt use any dimensions (i.e. we are selecting just this attribute and selecting all the possible values by which it can be filtered)?
    b) Is there a way of obtaining all the values from the differente physical columns? I.e. that the display values shows the values of that logical column across all the physical fact tables? Maybe we would need to model that attribute as a logical dimension just for that attribute? Im not really sure this would work, as at the physical level the join between the dimension and fact would still have to go to only one particular fact table.
    Any info or help is much appreciated.

    Hi,
    Aggregate tables exist at physical level and are created by ETL procedures. Although i am aware that the dimension come into play when the application needs to decide which source aggregate table to use, it is not an issue here as in our query we are not involving dimensions. We are selecting just this one columen, and then the filter option on this column, then in the dialogue box we select 'All Choices', only the values from one of the source tables is being shown.
    This is not a probelm within reports, i think it is a product limitation in that in that option to list all values a user can filter by, it is not possible to display all the values from the different fact tables to which that column is mapped.
    Has anyone else encountered this behaviour?

  • How to create 'NOT in between' dashboard prompt on a column

    Hello Guys,
    I have a simple request where the dashboard prompt has to send in data for 'NOT in between'. OBIEE does not give this option by default..
    Any one who tried this .. can you please help with some pointers on this.
    Column1 less than 100 or greater than 2000 --> This condition has to be sent from the dashboard. So my option in SQL is to use NOT in between 100 and 2000.
    Thanks in advance
    Kris

    Hi kris,
    in the prompts you will have not between condition check out....if not write a SQL like this for the prompt
    SELECT FROM table_name WHERE column_name not between 100 and 2000*
    (OR)
    SELECT FROM table_name WHERE column_name >= 100 AND column_name<= 2000*
    you want values in that range then the SQL should be
    SELECT FROM table_name WHERE column_name between 100 and 2000*
    check this article
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables
    UPDATED POST
    in place of constant values play with your session variables or Presentation variables by writing this above SQL according to your requirment and you would get your solution.Give a try then comment is it working or not.
    Hope answers your question.
    Cheers,
    KK
    Edited by: Kranthi on Jan 24, 2011 10:43 PM

  • Prompt for a combine request

    Hello experts,
    I want to know that is there possible to create a prompt for a column in a combine request which associated the different attributes in each request?
    For example:
    Request 1 has column: Installed date
    Request 2 has column: Unstalled date
    In combine request, this two columns associated the column Date
    and in the combine request, i want to create a prompt for the column Date, is that possible?
    Thanks

    Hi,
    create a prompt for date column from your time dimension and set a presentation variable v_date...
    on reports don't use is prompted for what date coumn you need, just say 'is equal or is in' add presentation variable and set to v_date..
    if you find this post usefull please be free to award points
    Regards
    Nicolae
    Sorry Kart... you were faster.. (didn't sow your post)
    Edited by: Nicolae Ancuta on 02.06.2010 16:07

  • How do I set individual properties for a column in report layout at runtime

    How do I set individual properties for a column in report layout at runtime? I need to change this based on a user's input. This is for v10g.
    I need to change either the "Read from File" attribute or the "File Format" attribute for one column based on the user's input. IS this possible?
    Thanks in advance!

    Hi,
    define 2 columns and use format triggers to show the one or the other column.
    Regards
    Rainer

  • Alias name for the column name in Prompt

    Hi,
    I have a scenario where I am taking column names into prompt. I have used the following SQL in the SQL results under "Show" option of the Prompt.
    SELECT CASE WHEN 1=0 THEN AGE.AGE ELSE '"Orders"."By OrderDate"' END FROM " Real Time"
    UNION ALL
    SELECT CASE WHEN 1=0 THEN AGE.AGE ELSE '"Orders"."By ShipDate"' END FROM "Real Time"
    My problem here is I am getting the column names into the Prompt as "Orders"."By OrderDate" and "Orders"."By ShipDate", which is not acceptable and readable for mat for the user. Is there any way that I can assign an alias name for the column name such as OrderDate and ShipDate in the above SQL.
    Your quick respose is appreciated.
    Thanks,
    Rama

    hi,
    try an alternative one....in your administrator make new columns with alias to ones you want...so you wiil be able to show whatever you want.
    Otherwise,is it possible to show
    SELECT CASE WHEN 1=0 THEN AGE.AGE ELSE '"Orders"."By OrderDate"' as "xxxxxxxxxxxxx"END FROM " Real Time"
    UNION ALL
    SELECT CASE WHEN 1=0 THEN AGE.AGE ELSE '"Orders"."By ShipDate"' as "yyyyyyyyyyyyyyyy"END FROM "Real Time"
    Ending,you want the data from your columns?or just the name??
    hope i helped...
    http://greekoraclebi.blogspot.com/

  • Passing two values in a column prompt for display and filtering

    Hi All,
    Is there a workaround to use two columns in a prompt for display and passing the input value for a prompt value in dashboard prompt? For eg we want to display the description in the prompt but pass the id to the filter value or presentation variable, just like we have in bi publisher,LOV automatically grab the two value for display and actual value to pass to the query.Therefore, user will click the description and corresponding id will be saved in presentation variable from the prompt .
    Thanks,
    Sushil
    Edited by: 872073 on Apr 5, 2013 11:06 AM

    Check this
    http://www.rittmanmead.com/2010/08/oracle-bi-ee-11g-handling-double-columns-iddescription-interoperability/

  • Changing datasheet view column width prompts for logon

    Hello - I have a SharePoint 2010 farm at work that we are having undesirable logon prompts on at times. A reproducible example is the datasheet view of any library in our site. When a user switches from standard view to datasheet view & then resizes
    a column, a logon dialogue box pops up. They can enter their username or cancel - either way they are allowed to continue. This occurs the first time the user tries to make a change to the column width, but not on subsequent attempts. If the view is reloaded
    & they attempt to change the width again the logon box pops up again. Users only have read-only access to the view, so they cannot modify it. The 'Modify View' control in the ribbon bar is greyed out.
    Background info: Clients are using Windows 7 SP1, Internet Explorer 10 (in compatibility view mode), and MS Office Pro Plus 2010 SP2. SharePoint is 2010 SP1 & June 2011 CU V1 (I know, we need to patch). The site is setup to use NTLM integrated authentication.
    All PCs are configured via GPO to add the site to the local Intranet zone. The intranet zone is configured via GPO with medium-low settings & automatic logon in the intranet zone. I have verified the GPO propagation to client PCs and verified that
    IE settings are correct for windows integrated authentication to take place.
    Any help is appreciated
    ~james

    I am thinking this behavior is not by design. In my environment this is what happens:
    A standard user (no modify view rights) changes a column width & gets prompted for credentials. It does not matter what they do - cancel, use own credentials, or use someone else's credentials (with modify rights) - the results are the same.
    The view is not changed for everyone, just the local user. The change only applies to the current page load.
    Users with modify view rights see no logon prompt.
    I just installed Office 2013 with my test VM & the unwanted logon prompt is gone. My opinion is this is an unresolved issue with the Access Web Datasheet, 2010-version active-x plugin. It appears to have been fixed with Access 2013.
    I'm going to do some more testing, but this is looking like another reason for an upgrade to Office 2013.
    I tried changing the compatibility view settings, user agent string, Browser Mode, and Document Mode. None of the different combinations I tried had any effect on the logon prompt issue.
    Any other ideas?
    thanks

  • Insert prompt value as column in report...

    Hello,
    We use reports to populate the recipient list of our campaigns (the segmentation wizard does not meet our needs). The source code assigned to each campaign is as follow, 'YYYYQX', with YYYY being the year of the campaign and X being the quarter of the campaign. During the creation of the report, the year of the campaign is specified by the user through a prompt. The same applies to the quarter. I am trying to build the report in such a way that the data can be downloaded as a .csv file and reimported directly into Siebel, without manual editing, to populate the recipient list for the campaign. This means that I would need to extract values provided by the user through the prompt to automatically populate the source code column in my report. For instance, if the user picked year 2008 and quarter 3 as prompt values, the source code column should be "2008Q3" for each record included in the report.
    Any thoughts?
    Thanks in advance,
    JP

    Thom,
    Thanks for the quick answer! This helps me with the formatting part of the problem. The part which still remains to be answered is how to obtain the value specified by the user as a prompt. I use a prompt with a "less than" condition on the field which records when our contacts gave their consent to be entered into our system (we refer to it as consent date). I also use a prompt to filter contacts based on the quarter of the consent date.
    For illustration purposes, if the user runs the report for the 2008 Q1 campaign (i.e. prompt for year set to 2008, and prompt for quarter set to 1), the report will include all contacts who were entered in the system during Q1 of year 2008, 2007, 2006, 2005 and so on. In this specific instance, I would like to see "2008Q1" as a constant column labeled "source code" since it will be the corresponding source code for the campaign in which we will later on import the output of the report to create the recipient list. Right now, the only way I can think of getting the information to populate the "source code" column is to obtain data directly from the prompt, if at all possible. If not, any other way to get there would be great.
    I hope this makes sense!
    Thanks,
    JP

  • Prompt for setting Top N

    I have a report to list top N sources of data. For my report, I have 12 prompt fields excluding the prompt for setting the top N value. The report is working fine with the 12 prompts some of which are constrained. All the prompts have "All Choices" as default values. The moment I add the prompt for the top N, the constrained prompts do not show any value in the drop-down. To provide a little more perspective, this is what I have done to create the top N prompt:
    Used any random field and then changed the fx with hard value 1. Selected "Edit Box" for the control. The specific value has been set to 5. Using a presentation variable.
    However, if I add this prompt with its own "Go" button, then I do not see the issue described above. I would not like to have 2 "Go" buttons.
    Please let me know what I am missing here to make it work.
    Thanks.
    Bhusan

    As you said, 'All the prompts have "All Choices" ', this is one of the requirement's for the constrain to work. I believe that to get the constrain values, you might have used a SQL query
    and you are getting the values. In that case, as per my knowledge, you cannot constrain a dashboard prompt when you are using SQL Results.
    Constrained columns will be constrained by all other columns in the prompt. For example, if the prompt contains columns Year, Region, and District, and Constrain is checked for District, the values shown in District will be limited by the values entered in Region and Year.
    Thanks,
    Chandu.

  • 1 User Prompt for 2 rows in Financial Reporting ?

    Hello,
    for 2 years, I am struggling with following-
    we have very detailled (detailled in 2 or 3 dimensions - let's say here: CBU and CostCenter ) reports, which run very long
    in order to give user the overview/total as well, we want to give the total over all 2 or 3 dimensions only
    the user should be allowed to choose 1 or more values (CBUs) via user prompt
    current workaround is to have 2 user prompts (1 for detailled combinations) and (1 for total) and asking the user to fill the CBU 2 times
    if user is not chosing same CBU(s), then report is inconsistant:
    as many people have to use dozens of values and because there is no select all/ deselect all function - the handling is very annoying for the users.
    Sample Report Definition
    ...........................................Dimension 1...........................................Dimension 2
    Row 1 (of report definition): Descendants of Prompt for CBUs..............Descendants of Costcenter
    Row 2 (of report definition): Prompt for CBUs....................................Costcenter Total
    by this, we get a sample output like this: (Projects are the level 0 members of CBUs in CBU dimension)
    ...........................................Project A from CBU I.....................CostCenter X...............50
    ...........................................Project A from CBU I.....................CostCenter Y...............20
    ...........................................Project B from CBU II....................CostCenter X...............10
    ...........................................Project C from CBU III...................CostCenter Z...............100
    ...........................................Project D from CBU III...................CostCenter X...............200
    ...........................................CBU I..........................................CostCenter Total..........70
    ...........................................CBU II.........................................CostCenter Total..........10
    ...........................................CBU III........................................CostCenter Total..........300
    Problem is:
    I would like to define for
    Row 2 Prompt for CBUs
    and for
    Row 1 Descendants of Same as Row 2
    but then I get the error "5200 : Error executing query: +Server+/+Application+/+Database+/+User+/Error(1001005) Unknown Member [Same As Row  2] in Report
    any idea how to workaround with that ? (have same problem with *Children of Same as Row 2*
    I tried to combine *Same as Row 2* with *RelativeMember & Offset -1* definition in reporting is then: Relative to Same As Row 2 offset by -1
    - but no success - all I achieve is a true Same as - resulting in duplication of all data of Row 2 and nothing from row 1.
    Any other ideas, how to combine a same as function with functions like parent,children,descendants or relative member ? Did I do anything wrong in combining them or is the relativemember function not working in 9.3.1 ?
    Please note, that these detailled reports typicially run 10 to 20 minutes - so telling users to run 2 reports or including lot's of not needed data or first retrieving and then hiding again is not really helpful - I would also not ask, if this function was not used in dozens of reports.
    The user prompt function in financial reporting is the most used functionality in our reports- the users run approx. 100 reports a day - and fill between 3 and 10 user prompts (with a lot of default values & substitution variables) - this appeared the most efficient way for unexperienced users, who need different data every day.
    unfortunately, it does not allow the report designer to allow either 1 or many values
    it seems to struggle with our special request of "children of same as"
    and it has no "select all" / "unselect all" button - which would allow the user to select all/none of the Choices List, defined in the user prompt.
    Please do not recommend usage of Analyzer - this tool is far to slow, has no cancel button and the users simply go lost.
    Smartview is too risky for majority of our users, as they would use the refresh button only - and not zoom in & zoom out - and miss a lot of new combinations by using old smartview-excel-templates (from previous month/forecast)
    Any help on any of these items would be highly recommended.

    If I understand correctly you would only have one CBU on any given report.
    Instead of prompting for Row 2 and pulling the totals from the Outline. You could delete your current Row2 and have the report provide the totals based on the data results from ROW 1. Insert a row formula for Row 2 and sum the results for that paticular column.
    Formula:
    Sum([1])
    Edited by: ronnie on Apr 21, 2011 9:51 AM
    Edited by: ronnie on Apr 21, 2011 9:52 AM

Maybe you are looking for

  • Standard screen not getting displayed in a zcopied prg

    Hi Freinds, (In sap4.7  ) I had copied QA32 into a ZQA32 and had added some validation checks before user Chooses Defects Button,,this ZQA32 works till that point fine but when the Defects button is chosen,,it gives a call to Tcode QA11 ,with the ini

  • Matrix Option in Crystal Reports?

    Hi I used to work with Crystal for a long time before using Microsoft Reporting Services at my next job. I have now started another job that uses Crystal Reports 2010. I am having a problem trying to do something that is very easy to do in Reporting

  • Image in task list instructiuon

    Hi, Ho to put image into task instruction (in task list)? I have instruction in html. Fragment of code that suppose to show image looks like that: <img src="Images/logo-ucb.gif" width="215" /> Best regards, Greg

  • Wasted space in chat window

    I got the 7.2.0.103 upgrade this morning.. what's with the silly polka-dot column on the right side of the chat window?  Is there some slight-of-hand to get rid of it??  I want to maximize the width of the chat window, but after I make it more than a

  • Wireless is missing from Fn+F5 and Access Connections

    Hi, I just installed a new harddrive on my T60 and restored WinXP from recovery DVD, everything seems to be work fine, I have upgrade Windows to SP3 plus all hotfixes, and updated ThinkVantage software to latest version using System Update 3. Today w