Refresh Drill down report screen

Hi,
I have a report that lists number of sales Order(Blocked, Incomplete) in two seperate lines. If you click(using AT LINE-Selection) on either of the line depending on whether you click on Blocked Sales Order/ Incomplete Sales Order a detailed report is displayed in an ALV format with the respective data. If I make changes to the sales order the ALV list is refreshed, but when I'm back on the summary screen I get the old summary displayed. If I use the routine to display the summary in the AT LINE-SELECTION section I get the new summary report. But then I need to hit BACK twice to get back to the initial selection screen.
Is there a way out to solve this that I do not have to hit BACK button twice.
Thanks,
ALAM.

use,
  RS_SELFIELD-REFRESH = 'X'.
write the above statement in YOUR USER COMMAND FORM routine.
here is the part of my code, which is doing updating the table & then again i am fetching the data .
FORM F_USER_COMMAND_MODIFY USING R_UCOMM LIKE SY-UCOMM
                          RS_SELFIELD TYPE SLIS_SELFIELD.
  DATA :     L_ANSWER TYPE C.
  IF R_UCOMM = C_FC_SAVE.
*--User Selected SAVE button.
    LOOP AT IT_ZBCAR50_TEMP.
*--Check the entered values are valid or not.
      IF NOT ( IT_ZBCAR50_TEMP-STATUS = 'A' OR
               IT_ZBCAR50_TEMP-STATUS = 'C' OR
               IT_ZBCAR50_TEMP-STATUS = 'E' ).
*--User Entered invalid value for STATUS field,so Display Error Msg
        MESSAGE E000 WITH 'Invalid value '''
                         IT_ZBCAR50_TEMP-STATUS
                         ''' for Status in the Record # '
                         SY-TABIX.
      ENDIF.
    ENDLOOP.
*--Modify ZBCAR50 Table with the changed values.
    MODIFY ZBCAR50 FROM TABLE IT_ZBCAR50_TEMP.
    IF SY-SUBRC  = 0 .
      COMMIT WORK AND WAIT.
*--Display message with Success in Updating database
      MESSAGE I000 WITH SY-DBCNT
                        ' Record(s) has been Updated'.
      CLEAR :
              IT_ZBCAR50,
              IT_ZBCAR50[].
*--Get Data again from database.
<b>      PERFORM GET_DATA. "here again i am fetching from Databse</b>
    ELSE.
*--Error occured
      MESSAGE I000 WITH 'Error occured in Modifying the database'.
    ENDIF.
  ENDIF.
ENDFORM.             "F_USER_COMMAND_MODIFY

Similar Messages

  • Drill Down Report in screen painter

    Hi Experts,
    I have a requirement in dialog programming/screen painter to create a 2 level drill down report. for eac page of the report, it should only contain 10 entries then to view the other entries (11 and up), the button for next page should be click (there is also back button).
    First question is how will I have the drill down report (alv list type?) in screen painter?
    Second question is how should I process the logic mentioned above (next and back) in screen painter/dialog programming?
    Thanks in advance for all teh support. Points will be rewarded.
    Cheers,
    Kurtt

    Hai,
    Go thru this Threads u ll get an idea,
    Drill down report help
    Re: regarding Drill Down Reporting
    drill down capabilities for an alv grid display field using oops concept
    Regards,
    Padmam.

  • Drill Down report in new window

    Hi All,
    i have report prompt ( Dashboard) and report . if i click on date column then it will display drill down report.
    My issue is drill down report iis displaying in current window. if i click on return to previous screen button then prompt are refreshing. user was confusing which parameters he was selected.
    I need solution like.
    1) After coming back also prompts are should not refresh . it should display prompts which were user selected.
    or
    2) drill down report should display in other window. ( then user will close that window he can see his selected prompts)
    how can achieve this one in OBIEE. please help me.
    Thanks in advance for your time.

    Couple things,
    you can create primary interaction as Action Link and then in the action link menu you can select option for the new window (that I what I did)
    Edit Action Links > More... > Edit Action > Options
    For the values, you can use presentation variables and they will carry the values (your fields also have to be prompted, but I think you already have that).
    Again this works for me just fine.
    Hope this helps.

  • ALV interactive drill down report

    Hi,
    I have a requirement to display the header details on an ALV report
    date -- level1level2level3...level4
    Here level1,2,3,4 contains the counts of item details based on level
    Now i need to display second drill down report, when user clicks on specific cell for levels.
    e.g.,
    when user clicks on count for level2, i need to show drill down report for level2 items for that date.
    Can any one give me some ideas for this ALV report...
    THanks in advance.
    points will be awarded immediately

    If you need to know how to do drill down, here is an example program.
    report zrich_0001.
    * Global ALV Data Declarations
    type-pools: slis.
    * Internal Tables
    data: begin of itab occurs 0,
          matnr type mara-matnr,
          maktx type makt-maktx,
          end of itab.
    start-of-selection.
      perform get_data.
      perform call_alv.
    *      Form  GET_DATA
    form get_data.
      select mara~matnr makt~maktx
              into corresponding fields of table itab
                   from mara
                     inner join makt
                      on mara~matnr = makt~matnr
                                 up to 20 rows.
    endform.
    *  CALL_ALV
    form call_alv.
      data: ifc type slis_t_fieldcat_alv.
      data: xfc type slis_fieldcat_alv.
      data: repid type sy-repid.
      repid = sy-repid.
      clear xfc. refresh ifc.
      clear xfc.
      xfc-reptext_ddic = 'Material Number'.
      xfc-fieldname    = 'MATNR'.
      xfc-tabname      = 'ITAB'.
      xfc-outputlen    = '18'.
      append xfc to ifc.
      clear xfc.
      xfc-reptext_ddic = 'Material Description'.
      xfc-fieldname    = 'MAKTX'.
      xfc-tabname      = 'ITAB'.
      xfc-outputlen    = '40'.
      append xfc to ifc.
    * Call ABAP List Viewer (ALV)
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = repid
                i_callback_user_command = 'HANDLE_USER_COMMAND'
                it_fieldcat             = ifc
           tables
                t_outtab                = itab.
    endform.
    *       FORM handle_User_Command                                      *
    form handle_user_command using r_ucomm     like sy-ucomm
                                   rs_selfield type slis_selfield.
      case r_ucomm.
        when '&IC1'.
        case rs_selfield-FIELDNAME.
          when 'MATNR'.
             set parameter id 'MAT' field rs_selfield-value.
             call transaction 'MD04' and skip first screen.
          endcase.
      endcase.
    endform.
    Regards,
    Rich Heilman

  • Drill-Down Report Printing Problem for Selection Parameters

    Dear Experts,
    Have tried to configure Drill-Down Report for Vendor Balances,
    Am having trouble when printing this drill-down report, Printing is coming OK but it comes with ALL selection parameters, for e.g, have entered 20 vendor codes for the balance display, system first prints all selection parameters and then it prints the output of vendor balances,
    User does not want selection Parameters to be printed with the Report Output. Please find below screenshot for the problem.
    Input Parameter Screen
    Report Output Screen
    Print Preview Screen (First Page - Selection Parameters)
    Your help is much appreciated, if anyone can guide me, how to switch off selection parameters from Print Output of Drill-Down Report
    Thanks
    Regards
    P

    Hello Ms. Preeti,
    Thanks for your reply, Have designed the report through FKI0 (FKI*)
    Have already looked these setting, but these are not helping really, PFB screenshot for settings am having in my system, if you have any idea which can avoid User Input Parameters from printing then it will be really great help
    Thanks for your help
    Kind Regards
    P

  • Drill down report...

    HI abapers,
    How to create drill down report in alv.
    When i double click the particular field, another report has to pop up and display the details of that particular field.
    for eg,
    When double click the amount spent field other report has to say, For which material the amonut has spend.
    Thanking You
    arvind

    hi arv,
    for me your scenario is not clear..
    you want to drill down the alv .. and show the report in the same program or you want to call another program when u try to hit the alv report..
    well for drilling down the same program.. you can use the following method
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
        I_INTERFACE_CHECK                 = ' '
        I_BYPASSING_BUFFER                = ' '
        I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                 =  GV_REPID
        I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND            = 'TOP1'     " drill down
         I_CALLBACK_TOP_OF_PAGE             = 'TOP2'
        I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    FORM TOP1 USING UCOMM TYPE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.
    READ TABLE GT_FINAL_TOTAL INTO GS_FINAL INDEX SELFIELD-TABINDEX.
    CASE SELFIELD-TABINDEX.
    WHEN SELFIELD-TABINDEX.
    perfrom itab2_operation. " in this form you will write the code to get the data for drill dispplay
    now defing fieldcatalog again : example :
        GS_FCAT-COL_POS = 1.
        GS_FCAT-FIELDNAME = 'EBELN'.
        GS_FCAT-SELTEXT_L =  TEXT-001.
        GS_FCAT-FIX_COLUMN = 'X'.
        GS_FCAT-OUTPUTLEN = 13.
        APPEND GS_FCAT TO GT_FCA
    and  call alv display again :
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
        I_CALLBACK_PROGRAM                =  GV_REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
        I_CALLBACK_TOP_OF_PAGE            = 'TOP2'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      = ''
      I_GRID_SETTINGS                   =
        IS_LAYOUT                         = GS_LAYOUT
          IT_FIELDCAT                     = GT_FCAT
    and if you want to call another progam when u hit..u have to use..submit key work
    like  SUBMIT  ZAFI013R VIA SELECTION-SCREEN AND RETURN.

  • How can I activate drill down report for planned line items please urgent?

    Hi Everyone,
    Please suggest me how can i activate drill down report for planned line items in internal orders. S_ALR_87012993. Please suggest me, I'll award full points. I am unable to do it in client system, which has already line items. I tried in my sys with new config it is working.
    Kind regards
    Arvey.

    Hi
    It is based on the reports attached in the Report Group - TCODE: GR53
    In the Report Group screen
    Press CONFIGURE – This is to attach any Drill Down reports.
    Press the “Insert Line” icon
    As is the screen may be used to insert a Report Writer report group. To add an ABAP, press “other report type”
    Double click on “ABAP Reports”
    Enter the name of the ABAP and ENTER
    <b>RCOPCA08                       Profit Center: Plan Line Items</b>
    VVR

  • Drill down reports from Before Report Trigger

    Hallo,
    I am using reports 6.08 and I want to run several subreports from the parameter form of a master report. However when I call srw.run_report() from the Before Report Trigger with batch=no I get the error message ... When I use batch=yes I cannot use destype=srcreen. When I use the same call from a button trigger it works fine.
    How can I call a drill down report from the Before Report Trigger?
    The master report should not create a report itself; only the drill down report should be visible. How can I exit the master report without raising an exception after running the drill down report?
    Thanks a lot - Ulrich

    Ulrich,
    The only place where it is valid to call a report using srw.run_report() with a destype=Screen (or Preview) is from a button of an already run report (to provide drill down capabilities).
    In your situation where you're really only using Reports as a parameter form (in the master case) I would suggest that you look to use a real Oracle Form as the master driver, and run_product calls to generate the required reports.
    Hope this helps,
    Danny

  • Drill Down Reports on Web CGI

    I have a drill down report that runs with no problems on reports
    runtime. When deployed on the web (we are using the Web CGI
    interface) the report runs and is displayed in the browser in
    Acrobat as it should. However, the button for the drill down is
    not available - it shows on the screen but is not pushable.
    Is there any work around for this?
    Thanks
    PAUL
    null

    Hi,
    You can use the srw.set_hyperlink to create a link or the item you want to have the drill down report , in the properties in the hyperlink property specify the Link.
    In web button's don't work.
    Hope it helps.

  • Drill Down reports in Project System

    Hi Gurus,
    I executed transaction code S_ALR_87013534, it works fine. When i exit from this report using back arrow button it goes to SAP main menu, but i want to be there in the transaction code like incase of other reports.
    It happens to all project system drill down reports.
    Can i know the reason and what should i do to overcome this.
    Will assign good points.
    Thanks
    Prashanth

    Hi Prashant,
    You can try T code CJE0 - report 12KST1G . Here at least you remain in the screen of CJE0 instead of going to SAP menu after exit from the report. But this also doesn't solve your problem.
    I have checked transaction code S_ALR_87013534. It is giving same problem. As suggested by Shrikant , you can raise OSS note to SAP.
    Regards,
    Amit More

  • Drill down Reports created In SPRO to execute in SAP Easy Access

    Hi
    In customizing which is transaction spro, at the following location Financial Accounting->General Ledger Accounting->Information System->Drilldown Reports you can create drill down reports.
    What I would like to know is where can the user execute them from in SAP Easy Access?? There is transaction FSIB (Background Processing) which allows you to execute it in SAP Easy Acces but it wants to print the report and not display it on the screen. Is there a way to display on the screen in SAP Easy Access??
    Thanks in advance

    Hi,
    To run a report either in foreground or background you need to know the report name. To run the report in foreground goto SE38 and give the report name and execute it. If you see the status message " This report is not a type P" then goto SE93 and findout the transaction with the help of report name description. so you can run the transaction. To add the transaction to your role technical consultant will take care.
    Bye,
    Jyothi.

  • Drill down reports in portlets

    I am using portal to create an MIS reporting system. I want to create drill down reports however if I try to drill down from a report portlet the other report does not show up in the same region or even on a page of that page group. Instead it uses the template specified for the report. Is there a way to drill down from one report portlet to another?

    Hi Prashant,
    You can try T code CJE0 - report 12KST1G . Here at least you remain in the screen of CJE0 instead of going to SAP menu after exit from the report. But this also doesn't solve your problem.
    I have checked transaction code S_ALR_87013534. It is giving same problem. As suggested by Shrikant , you can raise OSS note to SAP.
    Regards,
    Amit More

  • Creating Drill down report

    HI all
    i want to make Drill down report ,i created a button in the master report and used the built-in SRW.RUN_REPORT();
    the problem that is it keeps telling me that the Destype for the called report must be "file", "printer","Mail",
    but i need the called report Destype to be Screen ...
    please can any on etell me how to make it
    thanks

    HI all
    i want to make Drill down report ,i created a button in the master report and used the built-in SRW.RUN_REPORT();
    Below is the code which i wrote,
    procedure U_1ButtonAction is
    begin
    srw.run_report
    ('batch=yes
    report=E:\forms\Reports\emp.rdf
    destype=screen
    pdeptno='||to_char(:deptno1)||'');
    end;
    But the prob is it is not involing emp.rdf report and so i can just see output of main report.
    I would be really thankful if someone can help me in this
    Thanks

  • BW drill down report

    Hi friends,
    I have built a query which is analytical, now the business wants it to be a drill down. How can i make this drill down report? Can any please help me.
    Thanks in advance.
    Regards
    Ananth

    Hi Ananth,
    Drill down in analytical reporting means being able to see further details for a given record.
    So if you want the users to be able to drill down further and see more details of whatever is being reported in the initial screen you could add the required characteristic for drill down in the "Free characteristics" section of your queries. These are not displayed in the initial format of the report but the user has the facility to add/exclude them in the report format.
    Moreover if you would like them to drill down from one report to another, you could setup Report to Report interfaces (transaction RSBBS).
    Hope it helps.
    Regards
    Anurag

  • Drill down report in ALV

    Hi Friends,
    i am developing drill down report by using REUSE_ALV_GRID_DISPLAY FM. it is working fine for ME23N transaction. here parameter id is BES. for that i am using following syntax.
    set parameter id 'BES' field <clicked field value>
    call transaction 'ME23N' and skip first screen.
    Now, same for scheduling agreement ME33L, Here parameter id is VRT. but here clicked value is not populating in ME33L transaction field. I think here parameter id should be different.
    Does anybody have an any idea? please let me know.
    Thanks in advance,
    Parag

    Hi Parag!
    I am encountering the same problem with you.
    Here's my code and as you've said..its working in ME23N but not in ME33L.
    FORM ebeln USING selfield_value LIKE v_selfield-value.
    DATA: l_bstyp TYPE c.
      READ TABLE i_output INTO x_output with key ebeln = selfield_value.
      l_bstyp = x_output-bstyp.
    IF l_bstyp = c_f.
      SET PARAMETER ID 'BES' FIELD selfield_value.
      CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
      IF sy-subrc = 0.
      do nothing.
      ENDIF.
      ELSEIF l_bstyp = c_l.
      SET PARAMETER ID 'VRT' FIELD selfield_value.
      CALL TRANSACTION 'ME33L' AND SKIP FIRST SCREEN.
      IF sy-subrc = 0.
      do nothing.
      ENDIF.
      ENDIF.
    ENDFORM.                    " EBELN
    Have you resolved the problem?

Maybe you are looking for

  • Songs dont play in order

    my playlist will not play in order when I sync it to my ipod shuffle.  What am i doing wrong?  ugh!

  • I want to record a concert with my iPod touch

    Hi! I've got one iPod touch 4G with 8GB and I'm going to a concert on December and I wanted to record the audio of it with some quality, at least medium quality. Do you know any application that I can use for it? Or should I record it with an other d

  • Why is Time Capsule Internet Slower than Belkin Router?

    My Time Capsule is conneted via Ethernet to my Belkin Wireless router and is serving as my wireless backup drive. I am extending the Time Capsule "network" via an AirPort Express in order to boost the signal over distance. However I find consistently

  • Jsf-1_0-pfd-spec.pdf - 9.5 Standard HTML RenderKit Tag Library

    I am somewhat confused by section 9.5 in jsf-1_0-pfd-spec.pdf. It ends with "Each action included in the Standard HTML RenderKit Tag Library is documented in a subsection below, with the following outline for each action:" I however seem to miss thes

  • Question about creating a head shot with text

    A local actor wants me to create a head shot...The only photo application I have is iphoto. He wants his name to appear at the bottom of the 8 1/2 X 11 print. Can I add text to a regular photo and have it appear in the print? Or is there another way?