Need to reorder the rows in my report

Hi,
i have generated an report like
d1 f1
a 10
b 20
c 30
d 40
e 50
and also i created two rows by using calculated items in pivot table view as
d1 f1
a 10
b 20
c 30
g 40
h 50
e 50(b+c)
f 90(g+h)
in the dashboard my reports as
d1 f1
a 10
b 20
c 30
g 40
h 50
e 50(b+c)
f 90(g+h)
but my requirement is i need to rearrange the order like
d1 f1
a 10
b 20
e 50(b+c)
c 30
h 50
f 90(g+h)
g 40
any way to reorder the rows.its urgent can anyone reply me soon.
appreciate your response!
Edited by: Nandha on 10 Jan, 2012 5:09 AM
Edited by: Nandha on 10 Jan, 2012 5:11 AM

Hi,
Take dummy column and apply rank to the first column and make it hidden and apply sorting on the column..
Hope this works for you..
Regards,
Kishore

Similar Messages

  • Need to get the row selected in table control without ay action

    Dear Team,
    I have a requirement in which I need to pass the row selected of a table control to a variable.
    Here I need to get the row selected with out any other action
    then the action of selection of a row.
    Is it possible to read table control values using FM DYNP_VALUES_READ.
    thanks in advance,
    regards,
    Sai

    HI,
    Sai Kumar Potluri
    I tried in IDES it working.
    Here is the code.
    REPORT  ZPRA_TC_D.
    TABLES : SCARR.
    CONTROLS TC TYPE TABLEVIEW USING SCREEN 1.
    DATA : SELLINE TYPE I,
           SELINDEX TYPE I.
    DATA : ACT LIKE SCARR-CARRID,
           ANT LIKE SCARR-CARRNAME.
    DATA : ITAB LIKE SCARR OCCURS 0 WITH HEADER LINE.
    CALL SCREEN 1.
    *&      Module  STATUS_0001  OUTPUT
    *       text
    MODULE STATUS_0001 OUTPUT.
      SET PF-STATUS 'ME'.
    *  SET TITLEBAR 'xxx'.
    SELECT * FROM SCARR INTO TABLE ITAB.
    ENDMODULE.                 " STATUS_0001  OUTPUT
    *&      Module  MOV  OUTPUT
    *       text
    MODULE MOV OUTPUT.
      MOVE-CORRESPONDING ITAB TO SCARR.
    ENDMODULE.                 " MOV  OUTPUT
    *&      Module  USER_COMMAND_0001  INPUT
    *       text
    MODULE USER_COMMAND_0001 INPUT.
    CASE SY-UCOMM.
    WHEN 'BACK' OR 'UP' OR 'EXIT'.
      LEAVE PROGRAM.
    WHEN 'SEL'.
      GET CURSOR FIELD SCARR-CARRID LINE SELLINE.
      SELINDEX = TC-TOP_LINE + SELLINE - 1.
      READ TABLE ITAB INDEX SELINDEX.
      ACT = ITAB-CARRID.
      ANT = ITAB-CARRNAME.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0001  INPUT
    In Flow Logic.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0001.
    LOOP AT ITAB WITH CONTROL TC.
      MODULE MOV.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP AT ITAB.
    ENDLOOP.
    MODULE USER_COMMAND_0001.

  • How do I apply filters or limit the rows on my report using a Date field in SQL report builder 3.0?

    I have a status of completed and a date field in the dataset. The date field is either empty or contains a date. All 2015 dates are holding dates.
    So how can I limit the report to only pull completed status with an empty date or a holding date?
    I have not been able to set an OR option on a date field filter and if I add two filters on the date column one for empty one for > 12/31/2014 then it treats it as an "and" and pulls nothing from the list I have in sharepoint.
    any help will be appreciated.

    Hi MB,
    In Reporting Services, the relationship of  filters is “And”, and there is no option to change the relationship from “And” to “Or”. While we can use “or” operator within the expression to create one filter to integrated all filters to work around this
    issue.
    We can add a filter as follows in the dataset to limit the rows in your report:
    Expression: =Fields!date.Value is nothing or Fields!date.Value>"12/31/2014"    Type: Boolean
    Operator: =
    Value: true
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • How to display all the rows in a report

    How will it be possible to show all the rows in a report, in a table view , other than modifying the table properties for each report individually ?
    Is there some setting, so that for all tabular reports, all the rows will be displayed in one page?
    I have added the following to the instanceconfig.
    <Table>
    <ResultRowLimit>1000000</ResultRowLimit>
    <MaxCells>1920000</MaxCells>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>64000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>64000</DefaultRowsDisplayed>
    <DefaultRowsDisplayedInDelivery>2000</DefaultRowsDisplayedInDelivery>
    <DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
    </Table>
    Still I can view only 25 rows for the report.
    Thank you.

    Hi,
    Open your report--> Select Table view--> Edit view properties-->Row per page --> Give here 9999999.
    It will show all the rows in the report.
    Hope this help's
    Thanks,
    Satya

  • How to reorder the rows in a UITableView

    Hello,
    I have a UITableView in my application. I want to reorder the rows of my table view on a multiple touch event. Is there any way around to do this? I have seen the touch event in the UIViewController class, but if i touches on my table view it doesn't calls the touch event rather it goes to the didselectrow event of the table view. Any suggestion how to do this?
    Looking forward to hearing from you soon.
    Regards,
    Obaid

    Gentle reminder!!!!

  • Iinsert the row in standard report

    hello,
    i want to insert the row in standard report i.e. for remarks, kindly explain me how to do same, please explain me in step by step.
    thanks
    suja

    Hi Sujatha,
    If you would like to ADD a FIELD to a standard table, please follow the below given procedure.
    Go to SE11. Open the standard table.
    Click on button APPEND STRUCTURES.
    You might get a warning "No append defined for table MAKT". Hit Enter.
    Now enter structure name. E.G., ZTEST.
    Enter the description for the structure.
    Enter the FIELD NAME that you want to append to the table.
    Save and activate.
    <b>Reward points for helpful answers.</b>
    Best Regards,
    Ram.

  • To add/delete the rows in ALV report outpout

    Hi,
    Is there any way by which we can  add/delete the rows in ALV report output.
    Thanks
    Ankul

    Hi,
    Try out this way:
    data: i_modified TYPE STANDARD TABLE OF mara,"For getting modified rows
            w_modified TYPE mara.
    CASE e_ucomm.
          WHEN 'EDIT'.
          perform save_database.
          CALL METHOD ref_GRID->REFRESH_TABLE_DISPLAY.
        ENDCASE.
    FORM SAVE_DATABASE .
    data: i_selected_rows TYPE lvc_t_row,                "Selected Rows
          w_selected_rows TYPE lvc_s_row.
    * Getting the selected rows index
        CALL METHOD ref_grid->get_selected_rows
                    IMPORTING  et_index_rows = i_selected_rows.
    * Through the index capturing the values of selected rows
        LOOP AT i_selected_rows INTO w_selected_rows.
        READ TABLE it_tab INTO wa_it_tab INDEX w_selected_rows-index.
        IF sy-subrc EQ 0.
          MOVE-CORRESPONDING wa_it_tab TO w_modified.
          APPEND w_modified TO i_modified.
        ENDIF.
      ENDLOOP.
      MODIFY mara FROM TABLE i_modified.
    Thanks,
    Krishna

  • How to show all the rows of a report in one page

    My report has 30 rows, by default it just show 15 rows. I want to show all the rows just in one page, without cliking link or arrow to see the left.
    In the Layout and Pagination:
    Report Template: template: 15. Standard Report (PPR)
    Pagination Scheme: Row Ranges X to Y (no pagination)
    Display Position: Bottom - Right
    Number of Rows: 1000
    Number of Rows (item) 1000
    Maximum Row Count: 1000
    How to fix it?
    Thanks.
    Jen

    Ok, I think I got it. I needed to blank out Number of Rows(item), Maximum row count and only populate Number of Rows. I was sure I did that before and it didnt work.
    Do you think that the Sessions in Apex can cause unexpected results? I have found that when I make changes I have to log all the way out of Apex, close my browser and reopen everything to ensure that my change took. Does anyone else have this issue? I can move this into a different thread if need be.
    Thx!

  • How to chnage the row text in report

    Hi
    We have a  tailored requirement. Kindly help me out. In our report , the rows are defined and it has characteristic Account number ( GL ) . In our report GL  we want to change the description of rows ( GL account number ) for non account user. So the report will show different GL description then it has in table SKAT . Can any body tell me where can I change or put a new description for GL  (explodable  rows in report )   in report painter/writer ? Kindly give hints  as I am running out of time and ideas . My boss is becoming mad at this show stopper event.
    Thanks in advance
    Satya

    Hi Plakode
    You can change the description of GL for sure. Because in my report it is like that.
    The row description in layout can be changed easily too as described by some one here.But if the row block is expandble ( which is my case ) and some GL's description needs to be changed.That's my chalange.The fact of the matter is currently it fetches some desc from skat not all and I am at loss to find out the other place holder for Row line item description.
    Thanks

  • How to show all the rows in a report

    I have a report, and i want to show all the rows in a page, how to do it. Currently, i just show part of rows.
    Thanks,
    Jen

    Jen,
    I'm guessing you are using Application Express,...
    Go to the region where the report is located, go to report attributes. In the "Layout and Pagination" section there is a setting called "Number of Rows". Change the setting, and that's it.

  • How can i use the highlight row to select the row on a report

    The row is highlighted as I move the mouse how can I select this row without having to make a column a text link.
    thanks in advance

    Hi
    Try this out.
    Create or alter a report template. In the 'Before Each Row' section paste:
    <tr onMouseOver="cOn(this);" onMouseOut="cOut(this);">
    In the 'After Each Row' section paste:
    </tr>
    In the report page definition click on the page attributes and navigate to the HTML Header section. Paste the following script into this section:
    </script>
    <script language="JavaScript1.2">
    function cOn(td){
    if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#cccccc";
    function cOut(td){
    if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#ffffff";
    </script>
    In the report region navigate to the 'Layout and Pagination' section and select the report template you altered above.
    Now the report row will get highlighted when you mouse over. If you want to change colors, edit the color attributes in the javascript.
    Regards
    Kiran Akkiraju

  • Need help finding the row where BI load failed

    Hi all,
    We use an ETL tool to load data from our staging database into our production data warehouse environment. The environment is Oracle 10g Release 1 on Red Hat Enterprise Linux Server. The ETL tool is Business Objects Data Integrator. At hand the issue is that the data load failed due to an Oracle error
    ORA-12899: value too large for column
    When I examined the table definition in question, the load fails on one of the table columns in staging since the column is a VARCHAR2 with length of 5 and the ETL load wants to load a value for the table of length 13.
    One possible solution is to change the column definition to accomodate the data load. However, since this is a production system, I cannot do this right now.
    Is there a method to find exactly what row it failed on during the ETL load for the table in question?
    Thanks!
    B. Scott

    1) Yes, DML error logging is nice feature but it is New Feature in Oracle Database 10g Release 2.
    2) Some tools (e.g. Oracle Warehouse Builder) enable you to run your "mappping" (ETL job) in 2 modes - set based (single transaction INS/UPD/DEL/MERGE) or in row based mode (PL/SQL loop, row by row processing). OWB even enables failover mode (I failed in set-based mode, let's failover to row-based mode to find out where is the problem; the errors will be reported in log; you can set maximum number of errors before the mapping terminates with failure status).
    3) If you do not have this functionality in your tool than I suggest: Try to understand the transformation and investigate the source data. You can usually find the culprit in the source data. Sometimes you can even extract the SQL behind the transformation and run CTAS (create table as select) and find the exceptions.
    Regards,
    Pavel

  • How to reorder the rows in a table?

    Is it possible to incorporate reordering feature of the SelectOrderShuttle to a table like the following picture?
    http://picasaweb.google.com/lh/photo/c-UAWCac_2ySw_VQj16GEQ?feat=directlink
    Thanks.

    sb92075 wrote:
    The order of columns within row make NO difference to performance; with possible exception of LOB datatypeThat's not strictly true.
    Given a badly designed application you may find a change in column order can make a worthwhile difference to performance. The note in question is aimed specifically at Demantra, and make the following point:
    <ul>
    Due to the way the Oracle RDBMS stores data physically on disk, it is possible to reduce storage and improve performance by rebuilding large tables that have many NULL-value or empty columns, to the end of the row. This is known as reordering.
    </ul>
    This describes a classic bad design - blaming the problems on Oracle, of course.
    But if you do have very long rows (especially with more than 254 columns), and you do leave vary large numbers of columns null, then rearranging the most frequently null columns to the end of the row can make a difference. I've done it a couple of times.
    The OP seems to be talking about the (generally silly) guideline to rebuild the table in primary key order, though, and there is an entertaining (but apparently broken) script that gives a meaningless number that is supposed to show how badly ordered the table is with respect to the primary key. (Personally I would just look at the clustering_factor of the primary key - it's quicker, easier, and more likely to be appropriate).
    Regards
    Jonathan Lewis

  • Needed Idea for the creation of this report

    HI Experts............
        I need to genrate reports on the Transport status. Format of the report
    user entery is user id : user 001
      column 1              column 2          column3        column4
    No of request       devlopment     Q/A system   production
          8                           2                       4                   2
    I have found the table name which contains the transport data that is E070
    in this table i have field called status but it gives the status for transport object and not for the transport request
    i need to find current status of the transport wether it is in quality or in production or in devlopment .
    how to slove this problem
    it would b great help  if any one give a solution
    Thank u  
    gopu77

    <font type="verdana">
    sql>select * from chem;
    <br>
    FORMULA CHEM WT RT
    <br>
    fm1 ch1 10 100
    <br>
    fm1 ch2 12 200
    <br>
    fm2 ch1 2 1100
    <br>
    fm1 ch2 6 2100
    <br>
    report will be like this
    <br>
    <img src="http://k.jeneesh.googlepages.com/img1.bmp"/>
    </font>
    Message was edited by:
    jeneesh

  • Need ot diaply the row count as Formatted

    Hi!!
    I am using jdeveloper 11.1.1.5
    I had created a FinYrVO as a af:form and FinPer as a af:table
    My scenario In af:form i need to display as formatted below
    [Record / TotalNoofRecords] [4/50]
    In 50 records it was the 4 th record
    How can i show it
    pls verify the below link if i am not clear
    http://www.4shared.com/photo/03fso_1J/E047.html

    Hi,
    [Record / TotalNoofRecords] [4/50]
    You use an af:outputText component and set the component Value to (below EL contains some -1 checkings)
    row no. [#{(bindings.allDepartmentsIterator.rangeStart < 0 ? 1  :  bindings.allDepartmentsIterator.rangeStart+1) +( bindings.allDepartmentsIterator.currentRowIndexInRange ==  -1 ? 0 : bindings.allDepartmentsIterator.currentRowIndexInRange)}] of max rows [#{bindings.allDepartmentsIterator.estimatedRowCount}]Set the PartialTriggers property to point to the table so the text component is updated when the table row currency changes
    Frank
    Ps.: I used a different format in the EL but you get the idea I hope

Maybe you are looking for