Sort not Displaying 0 Value

Hi,
I have applied a condition for Sorting in ascending order as Top % and 100 for the selected Key Figure.
However, the report does not display Zero values for the key Figure after sorting.
How can i take care of this limitation?
Regards
Shweta

Hi Shweta,
if u r using condition for ascending then ur zeroes should come in that range , if it not then u have to increase  your value limit . But this will depend on your requirement ..
Regards..

Similar Messages

  • KE30 Report not displaying value in element line  , why ?

    Dear COPA Experts ,
    IN KE30 ,there is a line element displaying for main prodcut (Value field used is Qty ) ,in the Same way i have created new element line for displaying by-prodcut qty (value field used is Qty ) ,after report generated and executed ,but it does not displaying the qty value of by -prodcut . but when drilling down to line item ,this KE30 is displaying line items of by-Prodcut .
    the cost elements groups used for both are different and when run KE24 i was able to see by-Prodcut qty .
    Can any one suggest ,wehther i have missed any setting ?
    Thanks
    Partha

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Is it possible to easily view the actual (not displayed) value of a cell?

    Is it possible to easily view the actual value of a cell calculated by a formula, not the displayed value after it has been rounded off?
    For instance, if you enter the number 1.23456789 and display it rounded to 3 decimal places, you can still see the full, actual value in the formula bar:
    The problem arises when you reference that number in a formula: you can't see the underlying value (even though it's obviously known to Numbers):
    Is there a way to get the formula bar (or a tooltip) to show the full, unrounded value? Changing the display to more decimal places is not very convenient, especially on big spreadsheets. Maybe it could be done via AppleScript?
    A related issue arises when you try to look at the sum or average of a number: if the numbers being summed have the same number of rounded decimals, the sum displayed is rounded too. I find this very annoying: I want to see the actual value, not how my spreadsheet may be displaying it in that cell.
    Although, curiously, rounding to any number of decimals as long as they are not all the same displays the full, correct underlying values:
    Has anyone come up with workarounds for these issues?

    I did it with an AppleScript.
    Now any time I have a cell or cell range selected, I do one click (AppleScript menu > Display Value at Full Precision), and it shows me a popup alert that simply reads:
         rowname : columnname
         value
    Here's the script:
    tell application "Numbers"
              try
                        set selectedTables to (tables of sheets of front document whose selection range is not missing value)
                        repeat with selectedTable in selectedTables -- tables of each sheet
                                  if contents of selectedTable is not {} then -- the list is not empty, it's the selected sheet
                                            set selectedCells to cells of selection range of (get item 1 of selectedTable)
                                            repeat with i in selectedCells -- each selected cell
                                                      set {selectedRow, selectedColumn, selectedVal} to {row, column, value} of i
      --                                                  display alert "value of " & name of selectedRow & " : " & name of selectedColumn & " (" & address of selectedRow & ":" & address of selectedColumn & ")" message selectedVal
      display alert name of selectedRow & " : " & name of selectedColumn message selectedVal
                                            end repeat
                                            return
                                  end if
                        end repeat
              on error eMsg number eNum
      display alert eMsg
              end try
    end tell
    ( Props to Jacques Rioux who posted code to get me started at https://discussions.apple.com/thread/3964938 )

  • KOMK Fields not displaying values in sales order.

    Hi all,
    I have created an additional tab for VA01,02 and 03. I have added fields from VBAP table and KOMK structure.
    Now fields added from KOMK structure are displaying empty fields(no value). The fields areVAT REG NO (KOMK-stceg) and Tax Code (KONP-MWSK1).
    i have added fields with same name, so i have not coded anything. Do i need to code something for these fields?
    Please suggest the possible solution.
    Thanks in advance for your suggestions.
    Regards,
    NarsiReddy cheruku.

    Hi Edgar Soares,
    Thanks for your reply,
    Yes you are right, i am using BADI_SLS_ITEM_SCR_CUS.
    now i have added KNA1-STCEG to screen and in PBO module i coded as follows.
    (In top include i declared Tables kna1 and Tables VBAK.)
    data vat type kna1-stceg.
    data wa type kna1.
    SELECT SINGLE * from kna1 INTO wa.
    vat = wa-stceg.
    But it is not displaying Vat reg num on screen only displaying empty field.
    Please suggest where i went wrong.
    Thanks & Regards,
    NarsiReddy Cheruku.

  • Reg: Drop-Down list Box not  displaying values

    Hi Experts,
                     i am publishing a module pool program in the internet using SICF Transaction . In the internet my drop down list box is not displaying the default value  but in my sap it works fine .
    What may be the problem?
    Regards,
    Vikram

    Hello Thorsten Domsalla ,
                      My Problem is in my sap module pool program there is a drop down list box which disaplays  default values its working fine in sap gui but when i access through internet (SICF) Transaction the Drop down list box not listing out default values .
    i am using Integrated ITS Version 7.0 and Support package 08.
    Regards,
    Vikram

  • Multi-Select Box Not Displaying Values Passed From Grid?

    Coldfusion 8
    I inherited an application and am trying to maintain and improve it... hit a snag today.
    I have a multi-select box that is not displaying what I expect.  The values come from a ColdFusion grid which is based off a database query.
    Here is the code for the select - does not work - nothing is selected:
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.
    <cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Or if I assign a variable like this and use the multi-select code it seems to work as well.
    testlist = "22,26";
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="#testlist#" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    I have displayed the value of "User_IDs" in the grid and in the data entry part of the screen to see values of:  22,26
    to make sure that wasn't my issue.
    Do grids and multiselects require something additional?  Any advice on how to resolve?

    Problem was related to some javascript for the select box.  There was a function for a single select box but not a multiple select box - this fixed it: 
    if(theForm.elements[i].type == "select-multiple"){
                        var selectBox = theForm.elements[i];
                        var sbname = selectBox.name;
                        cpvalue = String(eval('record.data.' + sbname));
                        var NotifyArray = cpvalue.split(',');
                        for (var j=0; j < selectBox.length; j++) {
                            selectBox[j].selected = false;
                        for (var j=0; j < selectBox.length; j++) {
                            sbvalue = selectBox[j].value;
                            for (var k=0; k < NotifyArray.length; k++){
                                if (sbvalue == NotifyArray[k]){
                                    selectBox[j].selected = true;

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • BUG :  FORMS not displaying values stored in FLOAT datatypes.

    APEX 2.2.1.
    Error occurs on both V9.2.0.4 and V10.2.
    I'm working on a "report with form" combination and have been fighting a problem where the data entered into a form will save correctly and show in the report, but when you choose to edit the record to update it, the value will not display in the form at all.
    I went round and round, and finally discovered that the problem had to do with the FLOAT datatype being used to store the data.
    When creating a default "Report with Edit form" on the following two example tables, the form works correctly with SLA_SCHEDULE2 but not with SLA_SCHEDULE1
    CREATE TABLE SLA_SCHEDULE1
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE FLOAT(126),
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    CREATE TABLE SLA_SCHEDULE2
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE NUMBER,
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    The only workaround I have so far is to change the datatype of the column.
    Doug

    Based on the advice Scott gave above, I've created this function...
    CREATE OR REPLACE FUNCTION Get_Float_Value
    p_table_name           VARCHAR2,
         p_float_column_name     VARCHAR2,
         p_key_id_name          VARCHAR2,
         p_key_id_value           VARCHAR2
    RETURN FLOAT IS
    TYPE FLOAT_CURSOR IS REF CURSOR;
    f_cur FLOAT_CURSOR;
    FLOAT_VALUE FLOAT(126);
    SQL_STMT VARCHAR2(500);
    BEGIN
         SQL_STMT := 'select :a from :b where :c = :d';
         SQL_STMT := REPLACE(SQL_STMT, ':a', p_float_column_name);
         SQL_STMT := REPLACE(SQL_STMT, ':b', p_table_name);
         SQL_STMT := REPLACE(SQL_STMT, ':c', p_key_id_name);
         SQL_STMT := REPLACE(SQL_STMT, ':d', p_key_id_value);
    OPEN f_cur FOR SQL_STMT;
         LOOP
         FETCH f_cur INTO FLOAT_VALUE;
         EXIT WHEN f_CUR%NOTFOUND;
         RETURN FLOAT_VALUE;
         END LOOP;
         RETURN NULL;
    END Get_Float_Value;
    This allows you to call the function ANYWHERE you use a FLOAT, without having to create one function per table/column you might need to use it against.
    I know that I could have used a 'USING' statement on the cursor to do the replacements, but I always find it easier to debug replacement values using the REPLACE function.
    Doug

  • QuickWatch windows does not display Value and Type.

    The quick watch window is only displaying Name (screenshot below). It is not displaying Type
    and Value fields. I tried "Reset All Settings", repair, uninstall/install but the issue is not resolved.  I will appreciate any help.

    Hi ranjanks,
    Could you share us a sample? So we could debug the same app in our side, please also tell us the VS version in your side.
    For example, just a simple console app with a variable "int i", I could get it in my VS2013 version like the following screen shot. So if you debug a simple sample as mine, how about the result? If it works well, I doubt that it would be related
    to the specific variable of your app.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Select Order Shuttle Not Displaying Values

    JDev 11.1.2.3.0 ADF BC
    I have this following code
    <af:selectOrderShuttle value="#{bindings.EmployeesView1.inputValue}"
                                  label="#{bindings.EmployeesView1.label}"
                                  id="sms1">
              <af:selectItem value="#{bindings.EmployeesView1.items}" id="si1"/>
            </af:selectOrderShuttle>When I run, the shuttle does not display any values. If I change the component to <af:selectManyShuttle> it works and displays values.
    As I want to order the shuttle items, I need to use selectOrderShuttle component.

    Hi,
    this works for me
                            <af:selectOrderShuttle label="#{bindings.EmployeesView1.label}" id="sms1">
                                <f:selectItems value="#{bindings.EmployeesView1.items}" id="si1"/>
                            </af:selectOrderShuttle>Frank

  • JComboBox not displaying values

    Hi,
    I have been trying to work out why my combobox is inserting the values into itself, but will not display them. Eventually I want to add the values from a database, but this is just a test at the moment. I don't know swing all that well and am lost completly.
    String[] cboNames = new String[5];
            cboNames[0] = "Nita";
            cboNames[1] = "Mosa";
            cboNames[2] = "Karen";
            cboNames[3] = "Kim";
            cboNames[4] = "etc...";
            for(int i=0;i<cboNames.length;i++) {
                cboName.addItem(cboNames);
    System.out.println(cboName.getItemAt(2).toString() + " Second element");
    That prints out Karen as it should, but its not showing up in the combobox. Im using netbeans 4.1 to generate the swing code, if that makes any difference. Any help is rgeatly appreciated, thanks.

    import java.awt.Dimension;
    import javax.swing.JComboBox;
    import javax.swing.WindowConstants;
    import javax.swing.JFrame;
    public class TestJComboBox2 extends javax.swing.JPanel {
         private JComboBox jComboBox1;
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new TestJComboBox2());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
         public TestJComboBox2() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   setPreferredSize(new Dimension(100, 50));
                   jComboBox1 = new JComboBox();
                   this.add(jComboBox1);
                   String[] cboNames = new String[5];
                      cboNames[0] = "Nita";
                      cboNames[1] = "Mosa";
                      cboNames[2] = "Karen";
                      cboNames[3] = "Kim";
                      cboNames[4] = "etc...";
                      for(int i=0;i<cboNames.length;i++) {
                           jComboBox1.addItem(cboNames);
              } catch (Exception e) {
                   e.printStackTrace();
    hth.

  • List Managers Displays Return Value and Not Display Value

    Hi
    I have created a List Manager (based on a Popup LOV). My lov is as follows:
    SELECT pt.paper_code d, pt.paper_icode r
    FROM uo_sturec.paper_table pt
    WHERE pt.start_year <= 2006
    AND (pt.finish_year >= 2006 OR pt.finish_year = 0)
    AND pt.paper_type = 60
    ORDER BY pt.paper_code
    However, when I select something from the popup, it displays the pt.paper_icode in the field and when I click on Add, the pt.paper_icode is added to the selction box.
    What can I do to make the display value, pt.paper_code appear both in the field and the selection box?
    Kind regards
    Jo

    Hi Scott
    Thank you for your reply. However, I want the return value to be pt.paper_icode, because I'll be using this value to populate another item on the same page. Is there some javascript I could write to just change the display value of the List Manager while preserving its return value?
    Thanks.
    Jo

  • CJI3 report not displaying values correctly in the "Total Quantity" field

    Dear Friends,
    Need your assistance on the issue explained below,
    In our project there is a scenario where the actuals posted on a WBS are split/distributed to various WBS.These actuals that are split can be CATS entries,manual posting (KB21) or postings that come to R3 from a legacy system.The split happens by means of a custom program and is not standard.There is a tab seperated text file that contains the split percentages and the sender as well as the receiver WBS elements.Off late it has been observed that after the split is done the CJI3 report does not show the split quantities correctly and hence there is difference in the values displayed in the currency field.This is not a rounding off difference and is considerable.We have done all possible analysis from our side but i am unable to find how the difference occurs.
    To add to this i have even come across certain notes which describe the issue closely but none of it has helped so far. I have simulated the scenario with the same settings in the Quality server and it seems to work fine there without any glitches. We have even compared the program in both the Quality as well as the Production servers and there is no difference in the program as well.The values for the total quantity field are stored in the table COVP and it has been observed the report is fetching this data to display in CJI3.
    I have run CJEN too but this too does not correct the report. I was just wondering if any of our colleagues can provide me with some suggestions or insight in this issue.
    Regards,
    Gokul

    Hi Praveen,
    Thanks for the response.
    Actually i did debug the program with the help of our technical guys but found nothing wrong in both the quality and the production system. We compared the program in both the systems and it seems to be same. I am exploring this issue. Will update the findings here.
    In case anyone has any suggestion please do suggest.
    Regards,
    Gokul

  • Bc4juix:RenderValue does not display value

    After migrating to OAS 10.1.3 and JDev 10.1.3 we encoutered strange problem: in one table in TableDetail section we get empty cells. Everything works in JDev's embedded server and on one instance of cluster, but never on the other instance, and only for some rows (for some where clause it works, for some not, consistently). If I search some client using some criteria, it displays, using other it does not.
    Has anyone some clue? I compared configurations of both server and found no difference. If I use <uix:text> (commented out in example), it shows correct value, but ignores renderers, so it is not a good solution.
            <bc4juix:Table datasource="master" width="100%" formSubmitted="true">
              <uix:columnHeaderStamp>
                <uix:styledText textBinding="LABEL" />
              </uix:columnHeaderStamp>
              <jbo:AttributeIterate id="dsAttributes"  datasource="master" hideattributes="UixShowHide">
                <bc4juix:RenderValue datasource="master" dataitem="<%=dsAttributes.getName()%>" />
              </jbo:AttributeIterate>
              <bc4juix:TableDetail>
                <uix:rawText text="<center><br>" />
                <bc4juix:Table datasource="detail" proxied="true" width="800">
                  <jbo:AttributeIterate id="dsAttributesIn"  datasource="detail" hideattributes="UixShowHide">
                    <uix:column>
                      <uix:columnFormat bandingShade="light" />
                      <uix:columnHeader>
                        <uix:text text="<%=dsAttributesIn.getUIHelper().getLabel(CmIfaceModule.useApplicationModule()
    .getSession().getLocaleContext())%>" />
                      </uix:columnHeader>
                      <bc4juix:RenderValue datasource="detail" dataitem="<%=dsAttributesIn.getName()+'a'%>" />
                      <%--uix:text textBinding="<%=dsAttributesIn.getName()%>" /--%>
                    </uix:column>
                  </jbo:AttributeIterate>
                </bc4juix:Table>
                <uix:rawText text="</center>" />
              </bc4juix:TableDetail>
            </bc4juix:Table>Thanks, Viliam

    Hi Nik,
    In case of LOVs i had faced this problem , when i was using the LOV as the dymanic one .
    Ex:- select name d,id r from stud where id not in (select id from stud_joined );
    In this case , my lov was returning numeric value for already selected names and the name for the new one to be added .
    The fact behind this is ex:-
    Nandini 1
    Naina 2
    Nidhi 3
    Shijesh 4
    suppose this are students list .
    when i click lov and select a "Nandini "
    then its entry is made in the Stud_joined table.
    Now the Query will no longer has the name "Nandini " hence it will display id as 1.
    Hope , this may give a tip to find solution to your problem.
    Thanks & Regards,
    Nandini Thakur.
    Edited by: Nandini thakur on Nov 30, 2010 1:56 AM

  • Result region not displaying values properly from backend table

    HI All,
    We have a search page wherein we have added a new column called grade range in the table as well as in the search region.The new column is mapped to a altogether new column which
    is created in the database table with a default value.The table in the search page has Entity object assosciated with it which is taking care of all the DML operations.
    The name of the newly created item in the serach region is grade range which has three value coming from lookup like 12 ,13 and all,and also the new column
    created in the database table has default value of all.
    When we are trying to query the results in the search page with the filter criteria of any value for grade range, then we are able to see the records in the result table but with the column grade range being null. But When we update any record in the result table , then we are able to see the value for grade range column for updated records after submit.
    And this behaviour of the search page is after the data base refresh. Before that, it was working fine.

    Hi,
    I hope, these two characterstics are from different base cubes. SO you are getting two rows. I hope, it is not possible to display those two rows(what you explained in the example) in a single row. This is very common property of Multi provider. To solve this problem you have to enhance one of DS to include both characterstics and it should feed the data to one cube only. Then you have to built the query directly on that cube.
    With rgds,
    Anil Kumar Sharma .P

Maybe you are looking for