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.

Similar Messages

  • 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 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

  • Unable to retrieve the list of Standard Reports

    Hi,
    User needs an aging report in PW90 paper but gets an error message when clicking on to the report tab once logged into SAP portal.
    Error message:
    Unable to retrieve the list of Standard Reports. Please call the Help Desk to report the problem. Error encountered while connecting to R/3. java.lang.NullPointerException.
    I checked the java support in Internet explorer and deleted the cookies and temporary files but he kept having the same issue.
    Please Help on this !!
    Thanks in advance.

    Hi,
    Try to restart the portal server.
    Regards,

  • 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 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!

  • Highlight row in standard report based on value in column...

    I am trying to highlight rows of a standard report based on the value of the column TICKET_TYPE.
    I have been following the post: Highlighting a ROw in a tablular form based on a column in the row
    but having difficulty. I receive the following error:
    ORA-06550: line 1, column 34: PLS-00201: identifier 'SHRIMP' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored
    ERR-1025 Error processing PLSQL expression. SHRIMP = 'SHRIMP'
    My report query is:
    select T.TRIP_ID,
    T.TRIP_ID trip_show,
    T.TRIP_ID trip_select,
    T.DAYS_AT_SEA,
    T.NBR_OF_CREW,
    T.TRIP_START_DATE,
    T.VESSEL_ID,
    o.ticket_type ticket_type
    from TRIPS T, one_ticket_type o
    where t.dea_permit_id = :G_DEA_PERMIT_ID and t.trip_id = o.trip_id
    I have created a new template called one-ticket-highlight.
    row tempate 1 = <td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t14data" style="background:red">#COLUMN_VALUE#</td>
    row template 1 condition = use based on pl/sql expression
    row template 1 expression = #TICKET_TYPE# = 'SHRIMP' (**** I have also tried without the quote)
    any thoughts? thanks!!
    Edited by: KEH813 on May 25, 2010 11:10 AM

    Hi,
    You can achive the same using javascript without changing the page template.
    http://apex.oracle.com/pls/apex/f?p=27576:8
    here is the code for the same
    <style>
    .myclass{ background-color:red;text-align:center}
    </style>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js "></script>
    <script>
    $(function(){
       $("td [headers='DEPTNO']").each( function(i){
           if($(this).html() == $v('P8_DEPTNO'))  //value of the textfield
               ele = $("td [headers='ENAME']").eq(i)
               ele.removeClass('t20data');   //i'm using theme 20 so t20data .. u need to change this part
               ele.addClass('myclass');
    </script>Regards,
    Shijesh

  • 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 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 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 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

  • Adding the fields on standard report

    Hi EXperts,
    Please guide me, i am new for modifiying the standard programs.
    i want add the field custom field,i e  pendding days.from iw59.
    i copy the program to Z than i calculate the pendingdays.
    that varible also append the final internal table.
    but i cann't add the fieldcat,because there are not using manuallly.they are used as shown asbelow.
    So please guide me any one how i can display the field.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = g_repid
          i_internal_tabname     = 'OBJECT_TAB'
          i_structure_name       = tabname
          i_client_never_display = ' '
        CHANGING
          ct_fieldcat            = g_fieldcat_tab[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    END-ENHANCEMENT-SECTION.
    $$-Start: CREATE_FIELDCAT_F14_01----
    $$
    ENHANCEMENT 1  DIMP_GENERAL_MIOLXF14.    "active version
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = g_repid
          i_internal_tabname     = 'OBJECT_TAB'
          i_structure_name       = tabname
          i_client_never_display = ' '
    INSERT BA-Project
          i_bypassing_buffer     = 'X'
    END INSERT BA
        CHANGING
          ct_fieldcat            = g_fieldcat_tab[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    ENDENHANCEMENT.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
                  i_buffer_active          = g_alv_buffer
                  i_callback_program       = g_repid
                  i_callback_pf_status_set =  g_form_set_pf_stat
              I_CALLBACK_USER_COMMAND  = ' '
              I_STRUCTURE_NAME         =
                  is_layout                = g_layout
                  it_fieldcat              = g_fieldcat_tab[]
              it_excluding             =
                  it_special_groups        = g_fieldgroups_tab[]
                  it_sort                  = g_sortfields_tab[]
              it_filter                =
              is_sel_hide              =
                  i_default                = g_n
                 i_save                   = g_variant_save
                  i_save                   = g_a
                  is_variant               = g_variant
                  it_events                = g_events_tab[]
                  it_event_exit            = g_event_exit_tab[]
                  is_print                 = g_print
                  i_screen_start_column    = g_screen_start_column
                  i_screen_start_line      = g_screen_start_line
                  i_screen_end_column      = g_screen_end_column
                  i_screen_end_line        = g_screen_end_line
                  it_except_qinfo          = gt_qinf
         importing
              e_exit_caused_by_caller  =
             TABLES
                  t_outtab                 =  object_tab
             EXCEPTIONS
                  program_error            = 1
                  OTHERS                   = 2.
        IF NOT sy-subrc IS INITIAL.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  i_buffer_active          = g_alv_buffer
                  i_callback_program       = g_repid
              I_CALLBACK_PF_STATUS_SET = ' '
              I_CALLBACK_USER_COMMAND  = ' '
              I_STRUCTURE_NAME         =
                  is_layout                = g_layout
                  it_fieldcat              = g_fieldcat_tab[]
              it_excluding             =
                  it_special_groups        = g_fieldgroups_tab[]
                  it_sort                  = g_sortfields_tab[]
              it_filter                =
              is_sel_hide              =
                  i_default                = g_n
                 i_save                   = g_variant_save
                  i_save                   = g_a
                  is_variant               = g_variant
                  it_events                = g_events_tab[]
                  it_event_exit            = g_event_exit_tab[]
                  is_print                 = g_print
                  i_screen_start_column    = g_screen_start_column
                  i_screen_start_line      = g_screen_start_line
                  i_screen_end_column      = g_screen_end_column
                  i_screen_end_line        = g_screen_end_line
                  it_except_qinfo          = gt_qinf
         importing
              e_exit_caused_by_caller  =
             TABLES
                  t_outtab                 =  object_tab
             EXCEPTIONS
                  program_error            = 1
                  OTHERS                   = 2.
        IF NOT sy-subrc IS INITIAL.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Thanks advance

    Hi Srini,
    Thanks For giving replay.
    The problem was solved,
    But whan i was run iw59 the output is coming Properlay,
    than i copy the program and modifiyed as u said the out put fields are all not displayed.
    Some of the field only displayed,it is showing  the status main of userinterface zriqmel20 missing.
    but i copyed all the includes ,why it will shon like that,
    please guide me what is problem.
    Thanks advance.
    Edited by: krishnab121 on Jan 25, 2011 5:54 AM

  • Limit the rows in a report with expandable option?

    HI
    There is a table in which 50 reords are there.
    1     111
    2     222
    3     333
    50     444
    I want to show only first 2 records and for the rest i want to show an expandable '+' sign.
    1     111
    2     222
    +     XXX (will be some of the oters from 3-50)
    When user click on this '+' sign this table should be expanded to show all 50 records.
    How can we achieve this?

    Oh, I thought your requirement was to show the first two records out of 50 and then show the remaining on click of '+'
    Now your telling me that you want to aggregate 50 records into a 3 member parent , where 2 of those records are displayed and the other 48 are grouped under a '+' ?
    It sounds like you want to create a hierarchy using a parent column , something like
    Case when <attribute> in '1,2' then <attribute> else '+' end
    Create a hierarchy something like :
    Total
    new parent column ( Case when <attribute> in '1,2' then <attribute> else '+' end )
    attribute
    So the results wil aggregate up to the parent column, if you drill on the attribute member 1 or 2 then it will drill to itself, if you drill on the '+' it will drill to the child members (of which there would be 48)

  • How to highlight a row in a standard report?

    Friends,
    Hope you can help.
    I need to highlight a row in standard report dependent on some criteria.
    Having searched the forum I have been trying to implement the example given here.
    This is what I have done:
    1) Create a new report using the following query
    select decode(deptno, 10, 'class1', 20, 'class2', 30, 'class3') trclass , ename, job, sal, comm from emp
    2) Created a new Report Row Template from scratch and added the details given in the example above.
    3) Placed the CSS Style sheet code in the stylesheet box at the following location:
    Shared Components>Cascading Style Sheets>Edit Cascading Style Sheet
    3) Ran the page
    4) Employee report is displayed but nothing is highlighted.
    What have I done wrong?
    Thanks in advance for any help given (which of course will be marked helpful\correct!)
    Ian

    >
    >
    3) Placed the CSS Style sheet code in the stylesheet box at the following location:
    Shared Components>Cascading Style Sheets>Edit Cascading Style Sheet
    >
    What have I done wrong?The CSS needed to go in the page HTML Header.

  • Activation the Standard reports for SAP CRM IN BW 3.5 Version

    hi guys
    I am working on SAP BW 3.5 version
    I have Activated the Satadard Reports for CRM Campaign, Lead, Opportunity in BW 3.5  Business Content
    But I don't find  the any single Standard Report in BEX.
    I followed these Steps ;
    BEX - Open - Queries - Info Area
    If any One Knows please let me Know, Urgent Requirement
    thanks in Advance
    Suma

    did u try to see that reports in metadata repository
    login to bi system
    enter RSA1
    on the left panel select METADATA REPOSITORY
    select LOCAL OBJECTS
    then hit Query
    TRY TO find ur REPORTS WITH TECHNICAL NAME
    if it exists here than u shuld be able to seee in infocube.
    if that doesnot make sense
    go back to LOCAL OBJECTS SCREEN
    hit INFOCUBE
    locate ur infocube and select it
    now everything with respect to infocube active and available is visible
    all char catalog, keyfig catalog, queries etc....

Maybe you are looking for