No case for some selected values

Hi, I need some help on create VI model.
I need create model shown on Pic. 1.png, but I have problems with case structure, it report "Case Structure: No Case for Some Selector Values".
P. S. Sory for bad English 
Attachments:
Pic. 1.png ‏51 KB
DAC 8 bit.vi ‏49 KB
zavd5.vi ‏33 KB

Hi Orochimarko,
your uploaded picture is not the same as the VIs you also uploaded. Atleast when opening them with LV2011 they differ from the pic...
The case structure in your VI only has one case ("True"), but there is no False-case. So you get the error "no case for some values"...
Btw.  both VIs are crowded with Rube-Goldbergs. Even considering the old LV version they are saved with wouldn't allow for such bad programming behaviours...
@V-F:
What's the sense of making the only case of that case structure a "default" one? What's the sense of that case structure at all???
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • Prerequisites for multi selection value help

    Hi everyone,
    a couple of blogs and forum entries show multi selection value helps in VC. I, on the other hand, have so far been unable to do this. The only option I get in the first step of the value help wizard is the "single selection" type. Even if I start off with a blank form view and add a text input field I cannot choose anything apart from a single selection value help. Is there something I am completely missing? I stumbled upon a note bringing this into connection with OLAP source systems, but I can't quite see why this should change anything since the source system is not selected until step 2 of the wizard.
    Any idea on this? Thanks a lot,
    Tilman

    Hi Mario,
    thanks for the hints, I got it working now, regardless of whether you use an OLAP source system, variables or the respective input port, though. It seems to suffice to connect the query directly to a form view to get the additional options. My problem was then that I had a form view connected to a nested iview. I should be able to connect it to both a query and the iview, though.
    Thanks for your help,
    Tilman

  • Checkbox - not working for multiple selected values

    Hi,
    I've got a checkbox (with multiple static values) and a dynamic report which displays filtered data based on the checkbox selection... my report refreshes correctly for a single checkbox selection, but when I select multiple values it gives me an error message...
    Here is the sample query that I am using:
    select * from table_a
    where
    CATEGORY = :P22_CATEGORY
    Please advice...

    Hi,
    I think the type of check box you're referring to returns a colon delimited list of values. If that's the case, you'll need a query something like:
    select * from table_a
    where ':'||:P22_CATEGORY||':' like '%:'||CATEGORY||':%'There is a very description here: http://apex.oracle.com/pls/otn/f?p=ATSIN_DEMO:COLON_DELIMITED
    Hope this helps,
    Gregory

  • Multiple key cache lookup cases for the same values

    Hi,
    Just curious whether someone else on this forum has dealt with this use case: we'd like to use the Coherence cache to store objects of say class Foo with fields a and b (Foo(a,b)) using a as the key. The named cache is backed by a database and puts will insert into the corresponding Foo table and gets will either result in a cache hit or read through using a CacheStore implementation we'd write.
    Now, for the 2nd requirement, we need to look up the same objects using field b (or a combination of different fields for that matter). Currently we are thinking of a 2nd named cache that maps b onto Foo(a,b) with a possible optimization that the 2nd cache will map b onto a so the client doing the get can turn around and query the first cache using a. Puts in the first cache will add entries to the second cache to keep the 2nd cache up to date with a -> b mappings. The optimization prevents Foo being stored in two caches.
    Note that we will not store all entries for Foo in the cache as the sheer number of expected entries makes this option not feasible hence we cannot rely on a cache query (using indexes) to look the object up.
    Any comments on this approach or ideas on how to implement this differently?
    Thanks!
    Marcel.

    Hi Marcel,
    That is correct, QueryMap only operates on entries that are in-memory; there is no way to "query-through" a cachestore for example.
    Given that, I think that your proposed approach (of maintaining a separate b->a mapping) makes sense.
    thanks,
    -Rob

  • Public int indexOf(int ch, int fromIdx) doesn't work for some decimal value

    I have tested two strings below. These two string are identical, except the first string has a char 'ƒ, which has a decimal value of 131. And the second string has a char 'À', which has a decimal value of 192. I am expecting the same output, which is 11, but I got -1 for the test I did using the first string. In the API for public int indexOf(int ch, int fromIndex), values of ch is in the range from 0 to 0xFFFF (inclusive). It is highly appreciated if anyone could provide any insights on why -1 returned when the first string is tested. Thank you in advance.
    String strHasDecimal131 = "Test value ƒ, it has a decimal value of 131";
    String strHasDecimal192 = "Test value À, it has a decimal value of 192";
    int badDecimal = 131;
    int idxBadDecimal = strHasDecimal131.indexOf( badDecimal, 0);
    System.out.println( "index of Bad Decimal: " + idxBadDecimal );
    The output is: index of Bad Decimal -1
    int badDecimal = 192;
    int idxBadDecimal = strHasDecimal192.indexOf( badDecimal, 0);
    System.out.println( "index of Bad Decimal: " + idxBadDecimal );
    The output is: index of Bad Decimal: 11

    Thank you everyone for your inputs. Following are the print statements and the output: for character 'ƒ' and ' À':
    System.out.println((int)'\u0083' + ", " + (int)'\u00C0' + " print decimal value" );
    Output: 131, 192 print decimal value
    System.out.println((char)'\u0083' + ", " + (char)'\u00C0' + " print character value" );
    Output: ?, À print character value
    According to Latin-1 Supplement table, the first char in the output would have the appearance of ƒ, instead it has the appearance of ?
    System.out.println( (int)'ƒ' + ", "+ (int)'À' + " print integer value");
    Output: 402, 192 print integer value
    I also have tried to print out the decimal value of following char: € � ‚ ƒ „ … † ‡, according to Latin-1 Supplement table, these char has decimal value of 128 through 135 and hex value 0x0080 through 0x0087. And the output from java println is: 8364 65533 8218 8222 8230 402 8224 8225.
    System.out.println((int)'€' + " " + (int)'�' + " " + (int)'‚' + " " +(int)'„' + " " + (int)'…' + " " +(int)'ƒ' + " " + (int)'†' + " " + (int)'‡' );
    As I did before, I print out character of decimal value of 128 through 135
    System.out.println((char)128 + " " + (char)129 + " " + (char)130 + " " +(char)131 + " " + (char)132 + " " +(char)133 + " " + (char)134 + " " + (char)135 );
    Output: ? ? ? ? ? ? ? ?
    Not sure why java prints character for decimal value of 128 through 159 differently from what appears in the Latin-1 Supplement table. Any of your inputs are appreciately.

  • Scorecard doesn't display data for some selections

    Hi,
    I have configured a scorecard to display detail data (product quantities for 4 quarters) based on different parameter (product code) selection in other master scorecard. The detail dashboard doesn't display data for all the product codes. It's weird even data is there for the same product code where the scorecard is mapped in the excel however doesn't display. Appreciate if any of you can help me to overcome the issue.
    Technology: SAP Dashboard 4.1 SP4, Oracle 11g
    Thanks,
    Anurag

    Hi Anurag
    Have you taken an excel snapshot and checked if the master scorecard has the rows you expect to see in the detail sorecard?
    Thanks
    Runali

  • UI Component SelectManyChoice is showing some selected values by default

    Hi,
    I am working on JDeveloper 11.1.1.4.
    I created a viewObject DepartmentVO which fetches the distinct department values in a table.
    I created a Department.jsff fragment and its backing bean Department.java. And created a RichSelectManyChoice smc1 component in Department.jsff.
    DepartmentVO is binded to smc1 so that when the fragment loads smc1 component fetches the all department values. And the user can select many depatments.
    I am calling this fragment in Home.jspx page using bounded taskflow. The taskflow behaviour is set as "Always begin with new transaction" and "Share data control with calling taskflow" is checked because I am calling another taskflow which requires the data in this fragment. It is working and I am able to select multiple departments.
    Suppose I selected two departments Finance and HR. But the problem is that when I come to this page again (I mean when departments.jsff loads again) it is showing Finance and HR as selected. But it shoud show the list of vallues as none selected.
    Please suggest how can I achieve this.
    Thanks
    Edited by: 976777 on Dec 13, 2012 8:30 AM

    Hi,
    Check
    How to reset ADF SelectOneChoice?

  • x:forEach using expressions inside the select value

    Hey everyone. I am trying to use a <c:include> statement to include a jsp file multiple times. The included file parses and processes an XML file but I want to be able to pass in a string representing the XPath to select the elements I want to process. However the <x:foreach> does not allow expressions for the select value. Is there a way around this or a better way to do it? Thanks!
    John

    Sorry maybe I don't quite understand because I can't get this to work.
    This is the parent file code:
    <jsp:include page="includes/XMLParse/traveltimesMilwaukee.jsp" >
        <jsp:param name="select" value="Route[ID>999]" />
    </jsp:include>And this is the called file code where I am trying to use the path:
    <x:forEach var="r"  select="$dom/WisDotTrafficData/Routes/$param:select">This is the most pertinent error:
    javax.servlet.ServletException: javax.servlet.jsp.JspTagException: Error evaluating XPath expression "/WisDotTrafficData/Routes/$param:select": javax.xml.transform.TransformerException: A location step was expected following the '/' or '//' token.Below will be the whole error page but I want to put some comments right here. I also tried without the second $ but that didn't work - the loop never executed. I can't get the JSTL specs to load right now so I couldn't check those out but do you have any other suggestions or maybe you see what my mistake is? Thanks again!
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Exception in JSP: /milwaukee/traveltimes.jsp:86
    83:                     </tr>
    84:                     <tr VALIGN="TOP">
    85:                       <td>
    86:                         <jsp:include page="includes/XMLParse/traveltimesMilwaukee.jsp" >
    87:                           <jsp:param name="select" value="Route[ID>999]" />
    88:                         </jsp:include>
    89:                       </td>
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:506)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: Exception in JSP: /milwaukee/includes/XMLParse/traveltimesMilwaukee.jsp:14
    11:        on the first iteration and not on further iterations --%>
    12:   <c:set var="alreadyPrinted" value="0" />
    13:
    14:   <x:forEach var="r"  select="$dom/WisDotTrafficData/Routes/$param:select">
    15:
    16:     <%-- Prints the header if it has not been printed already --%>
    17:     <c:if test="${alreadyPrinted == '0'}" >
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:506)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
         org.apache.jsp.milwaukee.traveltimes_jsp._jspService(traveltimes_jsp.java:314)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: javax.servlet.jsp.JspTagException: Error evaluating XPath expression "/WisDotTrafficData/Routes/$param:select": javax.xml.transform.TransformerException: A location step was expected following the '/' or '//' token.
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:839)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         org.apache.jsp.milwaukee.includes.XMLParse.traveltimesMilwaukee_jsp._jspService(traveltimesMilwaukee_jsp.java:254)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
         org.apache.jsp.milwaukee.traveltimes_jsp._jspService(traveltimes_jsp.java:314)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.xml.transform.TransformerException: A location step was expected following the '/' or '//' token.
         org.apache.xpath.compiler.XPathParser.error(XPathParser.java:608)
         org.apache.xpath.compiler.XPathParser.RelativeLocationPath(XPathParser.java:1637)
         org.apache.xpath.compiler.XPathParser.LocationPath(XPathParser.java:1595)
         org.apache.xpath.compiler.XPathParser.PathExpr(XPathParser.java:1315)
         org.apache.xpath.compiler.XPathParser.UnionExpr(XPathParser.java:1234)
         org.apache.xpath.compiler.XPathParser.UnaryExpr(XPathParser.java:1140)
         org.apache.xpath.compiler.XPathParser.MultiplicativeExpr(XPathParser.java:1061)
         org.apache.xpath.compiler.XPathParser.AdditiveExpr(XPathParser.java:1003)
         org.apache.xpath.compiler.XPathParser.RelationalExpr(XPathParser.java:928)
         org.apache.xpath.compiler.XPathParser.EqualityExpr(XPathParser.java:868)
         org.apache.xpath.compiler.XPathParser.AndExpr(XPathParser.java:832)
         org.apache.xpath.compiler.XPathParser.OrExpr(XPathParser.java:805)
         org.apache.xpath.compiler.XPathParser.Expr(XPathParser.java:788)
         org.apache.xpath.compiler.XPathParser.initXPath(XPathParser.java:127)
         org.apache.xpath.XPath.<init>(XPath.java:176)
         org.apache.taglibs.standard.tag.common.xml.JSTLXPathAPI.eval(JSTLXPathAPI.java:285)
         org.apache.taglibs.standard.tag.common.xml.XPathUtil.selectNodes(XPathUtil.java:527)
         org.apache.taglibs.standard.tag.common.xml.ForEachTag.prepare(ForEachTag.java:50)
         javax.servlet.jsp.jstl.core.LoopTagSupport.doStartTag(LoopTagSupport.java:227)
         org.apache.jsp.milwaukee.includes.XMLParse.traveltimesMilwaukee_jsp._jspService(traveltimesMilwaukee_jsp.java:102)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
         org.apache.jsp.milwaukee.traveltimes_jsp._jspService(traveltimes_jsp.java:314)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  • Reverse sign of some characteristic values

    Hi experts,
    The user wants to see a key figure for some characteristic values as positive but, this value, is negative.
    We don't use this characteristic on selections or formulas, we use it on free characteristics, so we can't use the reverse sign option.
    is there any way to do it ?
    Thanks in advance.

    Hi,
    You can do this in both ways:
    Back End:
    Write a routine as follows:
    Considering the same example which you have given.
    If char value = A1 then key figure = KF x -1
    else result = KF.
    Front End:
    A. Create two restricted key figures:
    1. Restrict the first one for value A1, say RKF name is RKF1
    2. Restrict the second with value not equals to A1,  say RKF name is RKF2
    B. Create two calculated key figures:
    1. first calculated key figure will be CKF1 = RKF1 x -1
    2. second calculated key figure will be CKF2 = RKF2 x 1
    C. Now use table interface to join the two columns.
    You can refer the below attached document for Table interface....
    [http://help.sap.com/saphelp_nw04/helpdata/en/a2/06a83a4bd5a27ae10000000a11402f/frameset.htm]
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49dfeb90-0201-0010-a1a2-9d7a7ca1a238]
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f0aca990-0201-0010-0380-f3aac4127a57]
    Hope this will help you!
    Regards,
    Ishdeep.

  • Checking credit limit for some customers at the time of Delivery also

    Hi Experts,
    I have 1 controlling area. Now our new requirment is that for some selected customers we want to implement the credit checking at the time of making the delivery note. How can i configure that in SD.
    Appreciate some support
    SAPXPT

    Madhu,
    I have just pasted the result of CHECK_CM below.
    Please tell me one more thing.I am releasing my SD document by VKM1. Wheni check VKM2, it shows that the delivery document has also been released simultaneously.
    Settings for Credit Check                                                                               
    Delivery Type:                 LIKP-LFART = LF   Outbound Delivery                    
      SD Document Category:          LIKP-VBTYP = J    Delivery                             
      Requirement for Subseq.Functs: TVFO-GRPNO =  000                      (No Standard)                                                                               
    Key Fields for Automatic Credit Check                 (Table T691F, Transaction OVA8) 
      Credit Control Area:           LIKP-KKBER =  1000                                     
      Risk Category:                 LIKP-CTLPC =  005                                      
      Credit Group - Delivery:       TVLK-KKBER =  02                                       
      Credit Group - Goods Issue:    TVLK-KKBER =                                                                               
    Credit Status from Table VBUK                                                                               
    Overall Credit Status                    CMGST =  D      Released                     
    Static                                            CMPSA =         No Check/No Status
    Dynamic                                        CMPSB =         No Check/No Status
    Maximum Document Value            CMPSC =         No Check/No Status
    Critical Fields                                 CMPSD =         No Check/No Status
    Next Inspection Date                     CMPSE =         No Check/No Status
    Open Items                                    CMPSF =         No Check/No Status
    Oldest Open Item                          CMPSG =         No Check/No Status
    Maximum Dunning Level               CMPSH =         No Check/No Status
    Financial Document                      CMPSI =         No Check/No Status
    Export Credit Insurance                CMPSJ =         No Check/No Status
    Payment Card Authorization         CMPSK =         No Check/No Status
    USEREXIT_1                               CMPS0 =         No Check/No Status
    USEREXIT_2                               CMPS1 =         No Check/No Status
    USEREXIT_3                               CMPS2 =         No Check/No Status

  • Suggested carry case for MB Pro 15"

    Just picked up a MB PRo 15" a couple of weeks ago. I am looking for a case that I can carry it in that will protect it. I would also like the case to accommodate my iPad and a couple of Pelican 1010 Micro cases for some of the various network adapters that I need to keep with me. I have found a lot of the "sleeves" that do little more than server as a slip cover. Will need to have room for the chargers for both MB Pro, iPad and iPhone.

    I like the bags from WaterField (American-made in SF). Innovative, good looking, and well made bags. I like this sleeve with D-rings and a flap, but they have larger bags too.
    http://www.sfbags.com/products/sleevecases/sleevecases.htm
    Your kit looks like its around 8 lbs of Apple gear before "network adapters". Sounds like you might need wheels.

  • How to hide edit link for  some rows in report? (according to value of col)

    Helo,
    How to hide edit link for some rows in report? (according to value of column)
    regards
    siyavuş

    Hi siyavuş
    You can do this by taking the edit link off the report and putting it into your report SQL.
    Use something like Select CASE WHEN (condition)  THEN
    'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
    ELSE
    tt.value
    END edit_link
    FROM test_table tthope it helps,
    Gus..
    You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
    This allows forum users to quickly find the correct answer.
    ;-)

  • Unable to set the selected value for a ADF LOV

    Hi,
    I am developing an application using jdeveloper 10.1.3 and Struts.
    I have created a ADF LOV on my JSP Page as given below:
    <html:select property="lob" onchange="javascript:selectLOB(this.form)">
    <html:optionsCollection label="prompt" value="index" property="lob.displayData"/>
    </html:select>
    When i submit the form, i am able to get the value of the selected Value in the List.
    JUCtrlListBinding listBinding = (JUCtrlListBinding) formBean.get("Lob");
    Row r = (Row) listBinding.getSelectedValue();
    String SoLob = (String) r.getAttribute("LobLob");
    But i am unable to set the selected value back in the list when i return to the form again.
    I tried the following:
    int x = listBinding.getSelectedIndex();
    listBinding.setSelectedIndex(x);
    It would be really helpful if some one could let me know what needs to be done.
    Thanks,
    Subashini

    Gyan,
    I tried with the code you suggest , its trying to set the value of a field, but my requirement is to change the property for
    "Rendered" on the field so that based on search parameters we can hide result table column.
    After searching online, I modified the controller code as follows
    1.Created a new transient attribute (Testrender) with type "Boolean" and always updateable.
    2.changed the "Rendered" property value on the field I want to hide as ${oa.PoSearchVO1.Testrender}.
    3. Modified the controller code as follows :
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            OAViewObject testvo = (OAViewObject)am.findViewObject("PoSearchVO1");
            OADBTransaction txn = am.getOADBTransaction();
            if (testvo != null)
              OARow row = (OARow)testvo.first();
                if (a.equalsIgnoreCase("Approved"))
                     row.setAttribute("Testrender", Boolean.FALSE);
                else
                     row.setAttribute("Testrender", Boolean.TRUE);
            } But now when i run the page and populate the search field and click "Go" its hiding the field but throwing the following error and the search results are also bad.
    Its using only the value of one search parameter but not the second one .
    The search cannot be executed because the table has pending changes that would be lost. I think the vo is getting dirty when I update the transient attribute value. So I used txn.rollback ,then search is working fine but its not hiding the field.
    So can you please let me know how to proceed from here ?

  • Value and quantity is not displaying in Tcode MC.9 for some materials

    Dear Sir,
          For the material XYZ Material Type is FERT but when I check the stock in MC.9 with material type FERT, it is not displaying any value and quantity but when I donu2019t put any Material Type it is showing me the value with quantity. Even I tried to change the material type to FERT there also it gave me message as "No data exists for chosen selection". Why this massage is showing like this ?
    Please suggest.
    Regards,
    Sandip Sahu

    Hi,
    Some times there are some issues with S032 info structure. Check report RMCBMBEW and see if you can locate your material,
    Thanks

  • Is there a way to hide some reports based on the selected values in prompt.

    Hi Experts,
    Is there a way to hide some reports based on the selected values in prompt.
    For ex. if a year is selected in the prompt then the report should display year wise report.
    If a year and half year both are selected in the drop down from prompt section then 2 reports should come.. One for year wise and another for half year wise.Kindly look into this.
    Regards
    Ashish

    Hi,
    Use presentation values in prompts for year,half,qtr and month.Example- For year-y is presentation variable in the same way for halfyear-h,qtr-q and month-m.
    create four intermediate reports.Example-Report r1 with only year column,r2 with only halfyear column,r3 with qtr column and r4 with month column.
    Make column in each report(r1,r2,r3,r4) is equal to their presentation variables(y,h,q,m).
    Use four sections.
    Section1-Place report that should come when only year.
    section2-Place report that should come for year and halfyear.
    Section3-Place report that should come for year,halfyear and qtr.
    Section4-Place report that should come for year,halfyear,qtr and month.
    Apply guided navigation for each section selecting guided navigation-
    For section1-
    properties->Guided navigation->check this Reference Source Request(Yes)->select report r1(year)->check this Show Section(if request returns row)
    In the same way do for remaining section2(select r2),section3(select r3) and section4(select r4)
    Thanks,
    Srikanth
    http://bintelligencegroup.wordpress.com/

Maybe you are looking for

  • SharePoint Online and Open XML

    Hi, Using OpenXml I can generate word documents in SharePoint Foundation Sandbox just fine. However uploading the solution to SharePoint Online does not seem to be possible as DocumentFormat.OpenXml.dll is not allowed (due to problems with remoting).

  • Is there a webrowser that can alphabetize bookmarks?

    As much as I love mozilla-firefox, it has one quirk that ruins it for me - the inability to re-alphabetize bookmarks.  It can alphabetize them when it imports bookmarks, but not after.  So when I find a neat website, and add it to one of my categorie

  • Multiple SQLNET Listeners for One Oracle Home

    Is it possible to have multiple SQL NET listeners for one oracle home? I do not want have 2 oracle homes in order to accomplish this. Thanks in advance.

  • Photostream sync

    I have no photos in Photostream in iPhoto '11 ver 9.4. I have 1000 photos in Photostream that my iPad and iPhone see but the stream has not been updated lately. I turned on all of the preference to sync but nothing is happening. How do I fix this?

  • I don't have PHOTO listed in my ITUNES source pane so how do I add photos?

    I just installed the ITUNES CD onto my new computer Gateway Windows Vista. I read the manual to install photos and it says to click on IPOD and Photos under my source pane. I don't have listed Ipod or Photos. Under my source pane are listed: Library