Display Multiple Parameter Values in Specific Format

In CR XI, I have a string parameter that allows single and multiple values.
Values are Ward 1, Ward 2, Ward 3, Ward 4
Iu2019m still a newbie at Crystal and canu2019t figure out how to display the parameter values in the report header in a specific way. Join({?ward},",") works fine to show the values selected, but the format is awkward.
Would love to hear any suggestions on a formula that will display the parameter values in the header as follows:
For a single parameter value:     Ward 1
For two parameter values:     Wards 1 and 2
For three parameter values:     Wards 1, 2 and 3
If all four values are selected:     All Wards
Hope I made my question clear, and thanks in advance!

Thank you so much for your response; it does work, at least partially.Certainly is pointing me in the right direction.
Is it possible to modify the case statement to add more arguments? I tried, but it didn't work correctly, although that is likely user error.
For instance, if selecting a single value, it could any of the wards, not just Ward 1. And multiple values could be Wards 2 and 3, or Wards 1 and 4, or Wards 2, 3 and 4. There are at least a dozen different possibilities, and I need a formula  or case statement to account for all those possibilities.

Similar Messages

  • Module Pool for displaying the Grid values in Matrix format

    Hi Experts,
    I have one requirement which as follows,
    In Module pool program i need to display the Grid Values in Matrix format i.e,
    Row = Color
    Column = Size
    Like what we can see in Sales order or Purchase Order if you click Grid Entries Button.
    Can you Please Help me out.
    Thanks n Advance.
    Logu

    Hi
    the sources ate the function groups WMMB and WMMA.
    In a new release you should find the function module MGW_UTILITIES_MATRIX_SHELL_RA
    the report RWRFMATCHARVAL is a good example
    Regards
    Björn

  • Print Multiple Parameter Value in Crystal Report 2008

    Hello and Hi
    i want to select multiple warehouse  in a pramater , i select and report working but parameter print only first parameter  value on report.how can print all selected values on report

    Hi
    I am assuming you select warehouses  WH1,WH2,WH3,.......
    You have to create a formula in Crystal
    It should look like this
    Join({?YourParamaterName},",")
    Place the formula on your report.
    The last Part of the formula is the "notation break"  between every parameter returned. In this case a >   ,   <
    Return would be WH1,WH2,WH3,.......
    Join({?YourParamaterName},"#")  would return  WH1#WH2#WH3#.......
    Hope you get the idea
    If this solution helps, please rate me.
    Regards
    Burger

  • ADF inputText component not displaying the password value in desired format

    Hi All,
    I have an ADF <af:table component with a selectOneChoice as its partialTrigger. The problem is that when I navigate to the concerned page for the 1st time, the password textfield of the table displays the password in the desired format (dots), but when I change the value of the selectOneChoice component to another value and then reset it back to the original value with which the password should be displayed in dots format (as for the 1st time), the textfield is displayed as blank.
    Help appreciated.
    Message was edited by:
    user562826
    Message was edited by:
    user562826

    Thanks Frank,
    My system is a Windows XP Pro SP2 version 2002, I don't use JDeveloper, I am using Eclipse 3.2 and tomcat 5.5
    This is a step-by-step to reproduce the problem:
    I move from a .jspx screen by clicking a commandLink component which takes me to an edit screen with the following table component:
    <af:table id="methodProperties"
    emptyText="#{res['info.noitems']}"                                             value="#{mbAdminMethod.tableModel}"                                        binding="#{mbAdminMethod.adminList.table}"
    partialTriggers="methodType"
    var="row"
    banding="row"
    bandingInterval="1"
    width="100%">
    <af:column                                                  headerText="#{res['admin.methodPropertyName']}" width="40%" noWrap="true">
    <af:outputText value="#{row.name}"/>
    </af:column>
    <af:column                                                  headerText="#{res['admin.methodPropertyValue']}" width="60%" noWrap="true">
    <af:inputText id="propertyValue"
    value="#{row.value}"
    secret="#{row.password}"
    columns="40"/>
    </af:column>
    </af:table>
    The partialTrigger "methodType" is a selectOneChoice component.
    Once you navigate to this edit screen for the first time, the password is displayed in the right format (dots). While you are on this page and you select another value from the selectOneChoice, the page is refreshed. The problem is that, when you reset the value of the selectOneChoice component to the original value (which displayed the password in the right way), this time the password textField is displayed as blank.
    Thanks.

  • Displaying  page parameter value

    I have a LOV portlet that contains division names with no bind variables involved. In the same portlet region, I have a calendar component that show documents for a division.
    When the user select a division name from the Lov, the onChange event calls the same page passing the division name as a url parameter. The calendar has a bind variable mapped to the page parameter division_code.
    When the page redisplays, I want the default value of the LOV set equal to the page parameter value. How do I do this?
    Thanks,
    Ed

    Hi,
    Try using wwpro_api_parametes.retrieve.
    wwpro_api_parameters.retrieve
    This Retrieves a list of all the URL parameters (names and values) from every
    portlet instance that belongs to a provider.
    The names and values are returned, unchanged, into a table. If a parameter has more than one value, only the first is returned.
    Any user can use this procedure.
    Example:
    If a URL has these parameters:
    http://.......?empno=10&amp;deptno=10&amp;a.deptno=20a.deptno=25&amp;a.folderid=30
    Then this call:
    wwpro_api_parameters.retrieve(
    l_names,
    l_values
    Sets the following names and values:
    'empno', 'deptno', 'a.deptno', 'a.deptno', 'a.folderid' in l_names
    '10', '10', '20', '25', '30' in l_values
    Hope this helps.
    Thanks,
    Sharmila

  • How to display multiple prompt values selected, in the report

    Hi,
    I have a LOV : SELECT DISTINCT CO.V_MOVEMENT.ORIGIN_BRANCH_CODE FROM CO.V_MOVEMENT ORDER BY 1
    and a parameter associated with it which is multiple selection enabled. The parameter name is P_BRANCH.
    When I am displaying P_BRANCH at the top of my report (RTF), it's showing only one value whereas I need to display all the selected value as Comma Separated.
    Please help.
    Thanks & Regards,
    Antara

    The other option to fetch all the selected values to the report (RTF) is to create a dataset for the field and in the template create a repeating group for each value.
    Eg:
    1) The SQL is : ( In SQL Server, where :P_S_ORIGIN_BRANCH_CODE is Prompt )
    SELECT DISTINCT
    :P_S_ORIGIN_BRANCH_CODE as P_BRANCH
    2) XML is :
    <DATA_DS>
    <G_1>
    <P_BRANCH>RTM</P_BRANCH>
    </G_1>
    <G_1>
    <P_BRANCH>ABC</P_BRANCH>
    </G_1>
    </DATA_DS>
    3) In report we can display the values as below:
    RTM,
    ABC
    But The Required Output in RTF is : (Values seperated by ",")
    RTM, ABC
    Your help would be highly appreciated.
    Thanks & Regards,
    Antara
    Edited by: user450412 on Oct 10, 2011 4:11 PM

  • Problem with Crystal Reports not displaying all parameter values

    Hello,
    A co-worker of mine is developing a report in Crystal version 11.5.8.826.  One of the requirements from his user is that they would like to select from a list of users for applicable criteria to appear in the report.  He created a parameter with a dynamic list of values, entered prompt group text, selected "existing" as the data source (and chose the corresponding field from the table).  This dropped the UserID field into the "value" field in the table and linked the table to the parameter.  We selected "allow multiple values" as "true" and "allow discrete values" as "true". 
    Here is the problem.  When Crystal prompts us to select the parameters, it doesn't show all of the applicable list of users (it shows 8 out of 12 users).  When we run the query in a standalone sql generating tool (Toad or Golden), we see the full list of users.  Crystal Reports appears to be filtering the selection list of users for some unknown reason.  We have tried changing most every option that we could find within the parameter, but no luck. 
    The problem definitely appears to lie within the parameter- if we run the report without the parameter, we see the full list of users.  Once we add the parameter and attempt to select one or many users, the problem appears.
    Any thoughts?  What am I missing?  Any help is appreciated.
    thanks,
    Noel

    I'll answer my own question in case somebody is curious or happens to find this message via google or another search engine.  See this link.  You need to set your upper threshold within your Registry Editor.
    http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=8029

  • Passing multiple parameter values to a detail report.  How?

    Help!
    I have a Summary report and a Detail report.
    Summary report has a parameter that may have multiple values (ie returning an array).
    I need to pass these values to the Detail report.
    Anybody has managed to do it?
    Thanks in advance...
    Inga

    Thank you for your reply Sunil...
    The problem is as follows:
    I have a report portlet that has a parameter with multiple values. Ie I would have two status values passed into this Summary report that shows, say total sum for those statuses. I have a link from this report to a detail report, and i need to pass both of these values into the detail report.
    I have tried adding a parameter (p_status_param) in the SQL query that would be a part of link by building it in "PL/SQL after header section" and doing the parameter replace.
    SQL query:
    select
    '<a href="./RTS.RPT_OPEN_CALLS_BY_ASSIGNEE_01.SHOW?p_arg_names=p_assigned_user_id&p_arg_values='||cr.assigned_user_id||''||:p_status_param||'''><font class=portletText1>'||s.user_name||'</font></a>' full_name,
      cr.assigned_user_id,
      count(*) total_calls
    from 
      trts_call_request cr,
      trts_security s
    where
      cr.assigned_user_id = s.user_id
      and cr.current_status_id in :p_status
      and cr.assigned_user_id in :p_assigned_user_id)
    group by
      s.user_name,
      assigned_user_id
    PL/SQL:
    declare
        v_return    varchar2(32767) := '';
    begin
        for i in 1..l_arg_names.count loop
            if l_arg_names(i) = p_reference_path||'.p_status' then
                v_return := v_return || '&p_arg_names=p_status&p_arg_values='||l_arg_values(i);
            end if;
        end loop;
         myats30.wwv_name_value.replace_value(l_arg_names, l_arg_values, 'p_status_param',myats30.wwv_standard_util.string_to_table2(v_return) );
    htp.p(v_return);
    end;
    However, when you run the report, this is what you get (see what the parameter has been replaced with):
    ORA-00907: missing right parenthesis (WWV-11230)
    Failed to parse as RTS - select '<a href=./RTS.RPT_OPEN_CALLS_BY_ASSIGNEE_01.SHOW?p_arg_names=p_assigned_user_id&p_arg_values='||cr.assigned_user_id||''|| ( :zz21, :zz22, :zz23 ) _param||''"><font class=portletText1>'||s.user_name||'</font></a>' full_name, cr.assigned_user_id, count(*) total_calls from trts_call_request cr, trts_security s where cr.assigned_user_id = s.user_id and cr.current_status_id in ( :zz21, :zz22, :zz23 ) and cr.assigned_user_id in :p_assigned_user_id) group by s.user_name, assigned_user_id order by ASSIGNED_USER_ID ASC (WWV-08300)
    Any ideas how I could build this link programatically???
    Thank you...

  • Problem in displaying multiple column values using Narrative View

    Hi All,
    I have a requirement where in I need to display column 1 of an Answers report as a header and all values of column 2 below tht.
    There are multiple values from column 2 for every value in column 1
    Example:
    Group:
    Grp (This is column 1)
    Activity:
    Act1
    Act2
    Act3 (These are values from column 2)
    I have used narrative view for this which looks like:
    Group: @1
    Activity:@2[br/]
    But this displays the value of column1 along with every value of column 2. I want column 1 value to be displayed only once.
    Thanks in advance
    Radhika

    Hi see this link it may helpful
    Re: Narrative view not showing up in the report
    Re: how to transpose columns to rows in OBIEE
    Regards
    Naresh

  • How to display an ouput in d specific format?

    hi frnds.. i wud lik to display d output(may it be a name or a number) in d following format..
    O
    R
    A
    C
    L
    E
    how do i write a query to display d output in dis format??

    mythbe wrote:
    hi frnds.. i wud lik to display d output(may it be a name or a number) in d following format..
    O
    R
    A
    C
    L
    E
    how do i write a query to display d output in dis format??Well, question is do you need 6 rows back (each returning a letter) or 1 row. All solutions so far were splitting one row into six. You could insert NEW LINE after each character and return it as single not six rows:
    SQL> select regexp_replace('Oracle','(.)','\1' || chr(13) || chr(10)) from dual
      2  /
    REGEXP_REPLACE('OR
    O
    r
    a
    c
    l
    e
    SQL>  SY.

  • How to display a javascript value in xml format

    Hi,
    I want to display this string that returns from javascript in jsp in xml format.Can anyone help me on this.
    This is my code...I want to displat string jScriptCode in xml format.
    <HTML>
    <TITLE>test.jsp</TITLE>
    <BODY>
    <SCRIPT LANGUAGE="javascript">
    <%
    String jScriptCode = "<!-- \n";
    jScriptCode=jScriptCode+ "var TE = new ActiveXObject(\"HostAccess.TerminalEmulation\"); ";
    jScriptCode=jScriptCode+ "TE.MakeEntry(\"<FORMAT>OP/W*</FORMAT>\"); ";
    jScriptCode=jScriptCode+ "var strTemp = TE.ResponseLine(0); ";
    jScriptCode=jScriptCode+ "document.writeln(\"<CENTER>You are using \" + strTemp + \"</CENTER>\"); ";
    jScriptCode=jScriptCode+ "TE.Close(); ";
    jScriptCode=jScriptCode+ "var SD = new ActiveXObject(\"HostAccess.StructuredQuery\"); ";
    jScriptCode=jScriptCode+ "var request = \"<FlightInfo_6_0><FltInfoMods><ItemAry><Item><DataBlkInd>F</DataBlkInd><FltQual><AirV>UA</AirV><StartCity>DEN</StartCity><EndCity>IAD</EndCity><FltNum>1532</FltNum><StartDt>20011201</StartDt></FltQual></Item></ItemAry></FltInfoMods></FlightInfo_6_0>\"; ";
    jScriptCode=jScriptCode+ "var identity = \"<Application><VendorId>XMDL</VendorId><VendorType>G</VendorType><SourceId>GSLKPR</SourceId><SourceType>G</SourceType></Application><User><UserId>N92119</UserId><Pseudo>79G2</Pseudo></User>\"; ";
    jScriptCode=jScriptCode+ "var response = SD.ExecuteXMLQuery(request, identity); ";
    jScriptCode=jScriptCode+ "document.writeln(); ";
    jScriptCode=jScriptCode+ "document.writeln(\"<CENTER>The current Date and Time in Denver is <B>\" + response + \"</B></CENTER>\"); ";
    jScriptCode=jScriptCode+ "//-->";
    //System.out.println(jScriptCode);
    %>
    </SCRIPT>
    <%=jScriptCode%>
    </BODY>
    </HTML>
    Thanks
    Hitchchi

    In jsp page set content type to text/xml
    <%@ page contentType="text/xml" %>

  • Need Help: Dynamically displaying parameter values for a procedure.

    Problem Statement: Generic Code should display the parameter values dynamically by taking "package name" and "procedure name" as inputs and the values needs to be obtained from the parameters of the wrapper procedure.
    Example:
    a) Let us assume that there is an application package called customer.
    create or replace package spec customer
    as
    begin
    TYPE cust_in_rec_type IS RECORD
    cust_id NUMBER,
    ,cust_name VARCHAR2(25) );
    TYPE cust_role_rec_type IS RECORD
    (cust_id NUMBER,
    role_type VARCHAR2(20)
    TYPE role_tbl_type IS TABLE OF cust_role_rec_type INDEX BY BINARY_INTEGER;
    Procedure create_customer
    p_code in varchar2
    ,p_cust_rec cust_in_rec_type
    ,p_cust_roles role_tbl_type
    end;
    b) Let us assume that we need to test the create customer procedure in the package.For that various test cases needs to be executed.
    c) We have created a testing package as mentioned below.
    create or replace package body customer_test
    as
    begin
    -- signature of this wrapper is exactly same as create_customer procedure.
    procedure create_customer_wrapper
    p_code in varchar2
    ,p_cust_rec customer.cust_in_rec_type
    ,p_cust_roles customer.role_tbl_type
    as
    begin
    //<<<<<---Need to display parameter values dynamically for each test case-->>>>>
    Since the signature of this wrapper procedure is similar to actual app procedure, we can get all the parameter definition for this procedure using ALL_ARGUMENTS table as mentioned below.
    //<<
    select * from ALL_ARGUMENTS where package_name = CUSTOMER' and object_name = 'CREATE_CUSTOMER'
    but the problem is there are other procedures exists inside customer package like update_customer, add_address so need to have generalized code that is independent of each procedure inside the package.
    Is there any way to achieve this.
    Any help is appreciated.
    // >>>>
    create_customer
    p_code => p_code
    ,p_cust_rec => p_cust_rec
    ,p_cust_roles => p_cust_roles
    end;
    procedure testcase1
    as
    l_cust_rec customer.cust_in_rec_type ;
    l_cust_roles customer.role_tbl_type;
    begin
    l_cust_rec.cust_id := 1;
    l_cust_rec.cust_name := 'ABC';
    l_cust_roles(1).cust_id := 1;
    l_cust_roles(1).role_type := 'Role1';
    create_customer_wrapper
    p_code => 'code1'
    ,p_cust_rec => l_cust_rec
    ,p_cust_roles => l_cust_role
    end;
    procedure testcase2
    as
    l_cust_rec customer.cust_in_rec_type ;
    l_cust_roles customer.role_tbl_type;
    begin
    l_cust_rec.cust_id := 2;
    l_cust_rec.cust_name := 'DEF';
    l_cust_roles(1).cust_id := 2;
    l_cust_roles(1).role_type := 'Role2';
    create_customer_wrapper
    p_code => 'code2'
    ,p_cust_rec => l_cust_rec
    ,p_cust_roles => l_cust_role
    end;
    end;

    Not possible to dynamically in a procedure, deal with the parameter values passed by a caller. There is no struct or interface that a procedure can use to ask the run-time to give it the value of the 1st or 2nd or n parameter.
    There could perhaps be some undocumented/unsupported method - as debugging code (<i>DBMS_DEBUG</i>) is able to dynamically reference a variable (see Get_Value() function). But debugging requires a primary session (the debug session) and the target session (session being debugged).
    So easy answer is no - the complex answer is.. well, complex as the basic functionality for this do exists in Oracle in its DBMS_DEBUG feature, but only from a special debug session.
    The easiest way would be to generate the wrapper itself, dynamically. This allows your to generate code that displays the parameter values and add whatever other code needed into the wrapper. The following example demonstrates the basics of this approach:
    SQL> -- // our application proc called FooProc
    SQL> create or replace procedure FooProc( d date, n number, s varchar2 ) is
      2  begin
      3          -- // do some stuff
      4          null;
      5  end;
      6  /
    Procedure created.
    SQL>
    SQL> create or replace type TArgument is object(
      2          name            varchar2(30),
      3          datatype        varchar2(30)
      4  );
      5  /
    Type created.
    SQL>
    SQL> create or replace type TArgumentList is table of TArgument;
      2  /
    Type created.
    SQL>
    SQL> -- // create a proc that creates wrappers dynamically
    SQL> create or replace procedure GenerateWrapper( procName varchar2 ) is
      2          procCode        varchar2(32767);
      3          argList         TArgumentList;
      4  begin
      5          select
      6                  TArgument( argument_name, data_type )
      7                          bulk collect into
      8                  argList
      9          from    user_arguments
    10          where   object_name = upper(procName)
    11          order by position;
    12 
    13          procCode := 'create or replace procedure Test'||procName||'( ';
    14          for i in 1..argList.Count
    15          loop
    16                  procCode := procCode||argList(i).name||' '||argList(i).datatype;
    17                  if i < argList.Count then
    18                          procCode := procCode||', ';
    19                  end if;
    20          end loop;
    21 
    22          procCode := procCode||') as begin ';
    23          procCode := procCode||'DBMS_OUTPUT.put_line( '''||procName||''' ); ';
    24 
    25          for i in 1..argList.Count
    26          loop
    27                  procCode := procCode||'DBMS_OUTPUT.put_line( '''||argList(i).name||'=''||'||argList(i).name||' ); ';
    28          end loop;
    29 
    30          -- // similarly, a call to the real proc can be added into the test wrapper
    31          procCode := procCode||'end;';
    32 
    33          execute immediate procCode;
    34  end;
    35  /
    Procedure created.
    SQL>
    SQL> -- // generate a wrapper for a FooProc
    SQL> exec GenerateWrapper( 'FooProc' );
    PL/SQL procedure successfully completed.
    SQL>
    SQL> -- // call the FooProc wrapper
    SQL> exec TestFooProc( sysdate, 100, 'Hello World' )
    FooProc
    D=2011-01-07 13:11:32
    N=100
    S=Hello World
    PL/SQL procedure successfully completed.
    SQL>

  • How to show a parameter value in the paper layout

    Hi,
    I have a paper parameter form. I need to show the value of the parameter at the top of my report as part of the title. Any ideas?
    Thanks,

    It should display the parameter value in the field you created in the paper layout.
    Make sure you selected the source of the field.
    From the property inspector of the created field go to the source property and select the parameter name from the pop-up list.
    Regards
    Mostafa Abolaynain

  • Contradictory Display of parameter shared_pool_size?

    Hello All,
    I want to change the value of the parameter shared_pool_size. I am on Oracle 9i and I confirm that dynamic SGA is activated.
    I use brtools to change this parameter and use scope=spfile.
    After I change the parameter I go back to the Display parameter menu and when I display this parameter value it shows,
    Parameter value=<old value> Why?
    Value in spfile = <new value>
    when i give the cmd show parmeter from SQL prompt it displays <old value>. Why???
    Now even if i use scope='memory' or 'both' the outputs are,
    In brtools Menu,
    Parameter value=<old value>
    Value in spfile = <old value>
    and through sql prompt -> <old value>
    can someone please explain?
    I understand this parameter change doesnot require a restart because Dynamic SGA is activated but even a restart of DB doesnot help.
    Thanks,
    Bidwan

    Hello All,
    After executing the command SQL> create pfile from spfile;  i restarted the insstance
    SQL> startup
    ORACLE instance started.
    Total System Global Area  219750092 bytes
    Fixed Size                   454348 bytes
    Variable Size             134217728 bytes
    Database Buffers           83886080 bytes
    Redo Buffers                1191936 bytes
    Database mounted.
    Database opened.
    SQL> show parameter shared_pool_size
    NAME                                 TYPE        VALUE
    shared_pool_size                     big integer 92274688          <---Old Value      
    SQL> exit
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    F:\Documents and Settings\abcadm.HOME>brtools
    BR0651I BRTOOLS 6.40 (15)
    Information about database parameter 'shared_pool_size'
    1 - Parameter description (desc) . size in bytes of shared pool
    2 - Parameter type (type) ........ big integer
    3 - Modifiable attribut (modif) .. both
    4 - Defined in spfile (spfile) ... yes
    5 - Database instance (instance) . *
    6 - Defualt value (default) ...... no
    7 - Parameter value (value) ...... 92274688                    <---Old Value
    8 - Value in spfile (spfval) ..... 91274688                        <---New Value
    9 - Comment on update (comment) ..
    My Pfile :
    initABC.ora
    *.background_dump_dest='E:\oracle\ABC\saptrace\background'
    *.compatible='9.2.0'
    *.control_file_record_keep_time=30
    *.control_files='E:\oracle\ABC\origlogA\cntrl\cntrlABC.dbf','E:\oracle\ABC\sapdata1\system_1\cntrl\cntrlABC.dbf','E:\oracle\ABC\saparch\cntrl\cntrlABC.dbf'
    *.core_dump_dest='E:\oracle\ABC\saptrace\background'
    *.db_block_size=8192
    *.db_cache_size=81920000
    *.db_file_multiblock_read_count=8
    *.db_files=254
    *.db_name='ABC'
    *.dml_locks=4000
    *.enqueue_resources=8000
    *.fast_start_mttr_target=900
    *.hash_join_enabled=false
    *.log_archive_dest='E:\oracle\ABC\oraarch\ABCarch'
    *.log_archive_start=true
    *.log_buffer=1048576
    *.log_checkpoint_interval=0
    *.log_checkpoint_timeout=0
    *.log_checkpoints_to_alert=true
    *.open_cursors=800
    *.optimizer_features_enable='9.2.0'
    *.optimizer_index_cost_adj=10
    *.optimizer_mode='choose'
    *.pga_aggregate_target=31457280
    *.processes=80
    *.remote_os_authent=true
    *.sessions=96
    *.sga_max_size=209750092
    *.shared_pool_reserved_size=9011200
    *.shared_pool_size=91274688
    *.sort_area_retained_size=0
    *.sort_area_size=2097152
    *.statistics_level='typical'
    *.timed_statistics=true
    *.transaction_auditing=FALSE
    *.undo_management='AUTO'
    *.undo_retention=43200
    *.undo_tablespace='PSAPUNDO'
    *.user_dump_dest='E:\oracle\ABC\saptrace\usertrace'
    *.workarea_size_policy='AUTO'
    Can someone thow some light now?
    Thanks,
    Bidwan

  • How to pass multiple MDX values for a single parameter into a drill-through report?

    I'm thinking this will be an easy question for any experienced SSRS/MDX developers, at least I hope so!  I've created a report that gives the user the option to choose viewing data for the current/active week, or YTD.  Depending on which link the
    user selects, the report simply calls itself and needs to pass in the parameter value for Active week.  If it's active week, the parameter value will simply be "true".  If it's YTD, the parameter value needs to be both "True" and "False" so the current
    week's data is accounted for as well.  I've set everything up except for the final step, and I have no idea what to type into the Value field below.  I've tried different things: false, as you see below (it errors saying I'm missing the parameter
    value), the value in MDX format: =[School Dates].[Active Week].&[True] (it said I was missing a bracket), a 1 instead of the word true (again, missing a parameter value).  Nothing is working.
    So my question is kindof two-fold: 1) how do you pass in the value at all and 2) more specifically, how do you pass in multiple values (both true & false) ??

    I'm sorry for being so dense, but I'm not quite following, although what I've tried makes me think if I can follow you, it will work :)
    To answer your initial questions, you are correct with both your assumptions:
    1) detailType is the parameter that specificies YTD/Weekly, this is a "report defined" parameter that I am using to determine which Row Group to display (either YTD or Weekly)
    2) SchoolDaysActiveWeek is the parameter that is being set to either true or false -- this is a field in the cube that states whether that record is for the current week or not
    So in following your instructions, well that's the problem I'm not quite following :)
    1) When you say Delete the SchoolDaysActiveWeek parameter from the report only, do you mean to mark the parameter as Hidden?  If so, I've done this.
    2) I'm not quite sure where to use the statement you provided me.  You said to put it in the dataset, but I don't know which dataset.  I assume you mean the "main" dataset (as opposed to the hidden dataset that gets generated when you mark a field
    as a parameter).  If this is the case, the only place I could see that would allow you to use such a statement is in the Filter section of the properties.  I tried this, and it did not generate any errors, but it also kept my report groups from displaying
    -- it just showed a blank report, so I think it probably wasn't bringing back any rows to populate them with.
    I also tried going into the Expression section for the SchoolDaysActiveWeek parameter in the second screenshot and placing the statement there.  When I did this and ran the report, I would get the following error:
    The 'SchoolDaysActiveWeek' parameter is missing a value
    So what am I missing!? 
    Also, thanks for taking the time to respond!!

Maybe you are looking for

  • Restart and login issue

    My macbook is running  Mac OS X 10.7.1 (LION). Everytime I try to restart Mac OS and load until the login page, I try to enter the password. Once I key in the first few character, the system hang and the spinning ball will keep spinning non stop. May

  • A Lot Of Questions....Look

    p4 3.2 ghz 800mhz fsb HT 2x512 ddr333 pc2700 40gb WD @7200rpm + 40gb Maxtor @7200rpm ATI Radeon 9550 256ddr AGP Windows XP SP2 350w psu here are my system compnents WD 40gb:http://www.newegg.com/app/viewproductdesc.asp?description=22-140-118&DEPA=1 M

  • Authoring Tool - Where are the updated MPs for the Library After Applying Update Roll Ups

    All, Fairly recently, I took a client to SCSM 2012 R2 UR3. Today I dropped by to do some work for them on custom MPs, and when I attempted to open them with the SCSM 2012 R2 Authoring tool, I could not, because the 7.5.3079.148 MPs (UR3 version) are

  • Multiple video clips in STP2?

    Hi, Is it possible to import more than one video clip into a project? I don't seem to be able to... Steve

  • What is the WinRT equivalent of MediaPlayerLauncher

    WP8 has MediaPlayerLauncher, so what is the WinRT equivalent of MediaPlayerLauncher for WP8.1? Hong