BW- Rolling Reports- Very urgent.

Hi All,
I have very critical requirement i.e to design rolling report for a Module ,,say CO,,Can any1 tell me, how shud i start about it,, As i have never worked on rolling reports before, please guide me on to start with,,Any help wud be appreciated.
Thanks

Hi,
Rolling report will be mainly used for planning. Rolling Reports are used for Forecasting Plans,actual planned values for A particular periodThere was a report developed for a Project.
Lets say you have to forecast the sales upto the end of the year. So from Jan to Mar you will have actuals and from April to Dec you will have planning figures. This is normal scenario, but when you say rolling, then it have to re-plan the forecast figure from that month onwards.
Lets say you have data from Jan - Dec like
100 150 200 250 300 350 400 450 ...upto dec
Here Jan - March are actuals and april to dec is planned
in Feb, March is a planned data lets say you planned 175 but you got 200 as actuals.
Now you have to replan the following months since your feb planning is no more valid because of march data (Planned and actuals vary). So now they will again do a forecast based on March actuals and continue until the year end.
This planning some times will be based on Quarterly Rolling (Replan will be done in every 3 months), halfyearly Rolling(Replan will be done in every 6 months).
Pls chk this link;
http://help.sap.com/saphelp_sem60/helpdata/en/81/3b90467b396e40b2d904aa25a712bd/frameset.htm
Regards
CSM Reddy

Similar Messages

  • Report -very urgent

    Hi gurus,
      Can any one check the code .Iam not getting the output correctly .some garbage values it is taking .Kindly check and reply me it is very urgent for me.
    REPORT  Z_MARPOSS.
    TABLES : EKPO ,
             EKET.
    DATA : BEGIN OF ITAB OCCURS 2,
           EBELN LIKE EKET-EBELN,
           END OF ITAB .
    DATA : BEGIN OF ITAB1 OCCURS 2,
           MATNR LIKE EKPO-MATNR,
           TXZ01 LIKE EKPO-TXZ01,
           MENGE LIKE EKET-MENGE,
           WEMNG LIKE EKET-WEMNG,
           MOBMNG LIKE EKET-MENGE,
           END OF ITAB1.
       SELECT-OPTIONS MEINDT FOR EKET-EINDT.
       SELECT EBELN INTO TABLE ITAB FROM EKET WHERE EINDT IN MEINDT.
       LOOP AT ITAB.
       clear itab1-matnr.
       clear itab1-txz01.
      SELECT MATNR TXZ01 INTO CORRESPONDING FIELDS OF ITAB1 FROM EKPO WHERE EBELN = ITAB-EBELN.
       APPEND ITAB1.
       ENDSELECT.
       ENDLOOP.
       LOOP AT ITAB.
       CLEAR ITAB1-MENGE .
       CLEAR ITAB1-WEMNG .
       SELECT MENGE WEMNG INTO CORRESPONDING FIELDS OF ITAB1 FROM EKET WHERE EBELN = ITAB-EBELN.
       APPEND ITAB1.
       ENDSELECT.
       ENDLOOP.
    top-of-page .
    write : 50 'REPORT FOR STOCK OF PURCHASING MATERIALS' .
    uline .
    write : /2 'MATERIAL.' , 13 sy-vline , 14 'DESCRIPTION', 60 sy-vline , 61 'TOTAL QUANTITY' , 78 SY-VLINE , 79 'DEL QTY' , 95 SY-VLINE , 96 'REM QTY'.
    uline .
    END-OF-SELECTION.
    LOOP AT ITAB1.
    ITAB1-MOBMNG = ITAB1-MENGE - ITAB1-WEMNG.
    MODIFY ITAB1. "Update the Record
    WRITE : /  ITAB1-MATNR UNDER 'MATERIAL' ,
              ITAB1-TXZ01 UNDER 'DESCRIPTION' ,
              ITAB1-MENGE UNDER 'TOTAL QUANTITY' ,
              ITAB1-WEMNG UNDER 'DEL QTY' ,
              ITAB1-MOBMNG UNDER 'REM QTY'.
    ENDLOOP.
    thx & Regards,
    sunder

    Hi,
    In your code you are appending new lines at two places and at the end you are trying to display all the four values:
    SELECT MATNR TXZ01 ITO CORRESPONDING FIELDS OF ITAB1 FROM EKPO WHERE EBELN = ITAB-EBELN.
    APPEND ITAB1.
    SELECT MENGE WEMNG INTO CORRESPONDING FIELDS OF ITAB1 FROM EKET WHERE EBELN = ITAB-EBELN.
    APPEND ITAB1.
    For the above two Append Statement , Relate the four fields using modify statement in the second append using correct index values.
    Regards,
    Baburaj

  • Logic for Refreshing the ALV Report (Very Urgent)

    Hi Experts,
    My <b>ALV report</b> needs a <b>refresh button</b> on the output.
    The <b>Refresh button</b> should be available to allow user to keep this report on screen and <b>refresh regularly</b> rather than <b>going back</b> and <b>running it again.</b>
    I am using <b>Function modules</b> and not <b>OOPS Concept</b> here.............As i am<b> unaware</b> of OOPS Please provide me solution in <b>FM's Only</b>.
    Kindly send me <b>sample logic</b> for this, <b>Very urgent</b> if ur reply is helpfull.... u will be <b>rewarded heavily</b>.......................
    THanks in advance.
    Rajesh Kumar

    Hi,
    This mean to say that if you have a 'refresh' push button in your gui status, every time you press the button, the list should get refreshed.
    In ALV, to refresh the table you have to call the method "refresh_table_display". 
    It has the syntax very similar to creating the table. 
    It has two parameters. In the first one, you can mention if you want to refresh only the data (the icons are not refreshed) 
    or 
    if you want to refresh only the icons around the grid (the data is not refreshed - this option is mostly not used in day to day applications).
    the synatx is :-
    call method grid (name of grid )->refresh_table_display
    exporting
    IS_STABLE = <STRUCT OF TYPE LVC_S_STBL> (THIS IS FOR DATA REFRESHING)
    I_SOFT_REFRESH = <VARIABLE OF CHAR 01>  (THIS IS FOR ICON REFRESHING).
    Regards,
    Bhaskar

  • Time out error in oracle reports--very urgent

    Hi
    I have this oracle report on 9i which calls 14 other reports and runs them
    via a wrapper report which I run from a URL
    However I get this engine null crashed error or else Engine rwEng-0 is destroyed due to timeout error.
    From what I understand there is a timeout issue happening bcoz reports is taking a long time to run.Hence I increased the value of engineResponseTimeOut but it does not help either.Would you have any other idea to resolve this issue?
    Could someone plz tell me urgently how can this be resolved.This is on Oracle 9i.
    Thanks

    Hi Ravi kanth,
    You are using select * statement which is very time consuming and low performance. Dont use select * instead use select field1 field2.... into table itab  where field1 = s_field.  Use corresponding field names in the select statement.
    Follow the below rules.
    1) Dont use nested select statements
    2) If possible use for all entries in addition
    3) In the where addition make sure you give all the primary key
    4) Use Index for the selection criteria.
    5) You can also use inner joins
    6) You can try to put the data from the first select statement into an Itab and then in order to select the data from the second table use for all entries in.
    7) Use the runtime analysis SE30 and SQL Trace (ST05) to identify the performance and also to identify where the load is heavy, so that you can change the code accordingly
    <b>reward if useful</b>.
    Regards,
    sunil kairam.

  • Supress the -ve sign in report painter report - VERY URGENT

    Hi
    In a report painter report, can anybody please let me know how to display a negative value, for example, "-1234.56" as "(1234.56)".
    IT IS VERY URGENT

    Check If value is less than 0,
    then replace '-' with space ( to remove the '-' from the right end) and then Concatenate '-' and value into a variable.
    Regards
    Raj

  • PDF format of Reports (Very urgent)

    I am using developer 6i forms & report server to run my application on the web.
    My forms r working quite fine. My reports when I run my reports in HTML/HTMLCSS format the output comes well.
    But when I set FORMS60_REPFORMAT=PDF in registry to get the output of the reports in PDF format, the browser opens acrobat reader, but does not open the PDF file and an error comes 'Error while opening the document'.
    But in the temporary folder of reports server the output of the desired report is created perfectly well. When i open that file directly by giving the path of the folder separately the browser shows that document very well.
    I have tried IE4, IE5, IE6.
    When using Netscape 4.7 when report's URL is sent to browser, the browser shows save as window instead of directly opeing the file.
    Please help me out.
    Thanks

    Maybe this solution from Metalink will help you:
    fact: Oracle Reports Developer 6
    fact: Oracle Reports Services
    fact: Microsoft Internet Explorer
    fact: Acrobat Reader 4.0
    symptom: Running Report with Desformat=PDF and Paramform=HTML Returns Blank Page In Browser.
    cause: Problem documented in <Bug:784236> WHEN PARAMFORM = YES AND DESFORMAT=PDF WEB REPORT SHOW BLANK PAGE WITH IE
    and <Bug:761674> PDF STREAM TO IE DOES NOT WORK WHEN PARAMETER FORM ENABLED
    Problem closed as 3rd Party product problem
    fix:
    Use the following workaround
    1. Click on the Report name and bring up the property palette to show all of the properties for the whole report.
    2. Under Report Escapes->Before Form Value, change form method from post to get.
    This will then do it dynamically for the report without having to save a static paramform.

  • Tables for Sets in report writer/painter reports - very urgent

    Hi All,
    Does anyone know which table keeps the information of sets used in report painter/writer reports? I have to get the information like “values used in the set”, “set usage” etc.
    Your help is highly appreciated and rewarded with points
    Thanks in advance
    Kumar

    tables :setnode,
            setheader,
            setleaf.
    or Fms
    G_SET_FETCH
    regards
    Prabhu

  • Drill Down Reports - Very Urgent

    I have the following situation.
    I want to create a drill down report and pass parameters from the
    master report to the detail.
    I built 2 simple tabular reports Drill1 (master) and Drill2 (detail). I have placed a button in the repeating frame of the Drill1 report, and I wrote the following code in its trigger:
    srw.run_report('report=DRILL2');
    I have tested the report and it works just fine.
    But .... I want to pass as a parameter to the second report the value of a field. According to the documentation I shall change the button trigger to
    srw.run_report('report=DRILL2 paramform=No p_1=''' || :field1 || ''''); -- (the value is a string)
    I did so but it gives me the REP-0159 error. Am I doing something wrong?
    Note that I am using reports version 6.8.12.1
    Thanks
    Ioanna

    hi Ioanna,
    The Problem seems to be with the quotes in your srw.run_report command line . The appropriate commandline should be
    srw.run_report('report=DRILL2 paramform=No p_1='||:field1||' ... <rest of the cmd line >');
    ( note the quotes before / after ||:fie1d1|| .. )
    Regards
    Oracle Reports Team

  • About Oracle  Reports very urgent

    can you pls explain me about what isOracle reportcaching,interactivereports and batched reports.

    pls refer [     Publishing reports to web  - 10G  ]see link below
    caching
    reports o/p is cached in oh/reports/cache so that if later a report with same cmd line param is requested, the c ached report is returned.
    interactive report
    - didnt get fully. It may mean report with embedded links which in turn will submit request to run other reports and hence being interactive
    batch reports
    - submitting a number of reports in batches to reports server in batch mode (batch=yes) and potentially scheduled using schedule cmd line parameter.
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • REGORDING REPORTS VERY URGENT

    HI
    EXPERTS CAN U HELP ME FOR THIS
    THANKU
    <b>IF WE WILL DISPLAY THE DATA BY WRITING WRITE STATEMENT ON STARTOF SELECTION THEN WHAT IS THE NEED OF END OF SELECTION IN CLASSICAL REPORT
    </b>

    Hello,
    If you have 2 structures with same fields then you can do the following
    1) structure1 = structure2
    2) move-corresponding structure2 to structure1
    assuming structure2 contains the data
    eg:
    you have structure1 as
    data:begin of structure1,
           bukrs like bsak-bukrs,
           werks like bsak-werks,
           end of structure1.
    you have structure2 as
    data:begin of structure2,
           bukrs like bsak-bukrs,
           werks like bsak-werks,
           end of structure2.
    in this case if structure2 contains data...then
    a)structure2 = structure1.
    b)move-corresponding structure2 to structure1.
    move-corresponding is useful if you have a few similar fields also
    move also can be used for same structures and all similar fields
    Reward if useful
    Regards
    Byju

  • Filter in Bex Reports - Very Urgent, Please help!

    Hi,
    I have a report based on CRM transaction which has both header row and item row, the report also has filters like status and product, the status is the header level and product is at the item level, in which case the header row would not have the product details and item row would not have the Status Details. the records would be something like shown below
    Transaction Number       Status         Product
    1111111                        Open
    1111111                                          Product1
    In which case the filter applied on status and product would not return the expected result for ex if filter "Status = Open" is specified then we would just get only the header row and if Filter "Product = Product1" is specified we would just get the detail row, if both the filters are applied we would not get any rows.
    Is there any way to get both the header and item row if filters are specified, how such cases are implemented in Bex reports.
    Thanks
    Akila.R

    Akila,
    please state your query result properly...
    Transaction Number Status Product
    1111111 Open
    1111111 Product1
    would look like
    Transaction Number | Status | Product
    11111111 | Open | #
    11111111 | # | Product 1
    22222222 | Closed | #
    22222222 | # | Product 2
    The issue being that you want say... Open transactions then the the result should be
    Transaction Number | Status | Product
    11111111 | Open | #
    11111111 | # | Product 1
    whereas you are getting
    Transaction Number | Status | Product
    11111111 | Open | #
    and similarly for Product column as well....
    Options :
    1. It could be possible that your model is wrong -
    2. Have the filter include # as well.... include # into the filter by default - ask the users to do the same
    Arun
    Hope it helps...

  • E-mailing Report :VERY URGENT!!!

    Hi,
    I'm trying to e-mail a single report to different persons.In fact
    the report contains all the emp's data which is to be e-mailed
    to their respective managers.I'm using SRW.RUN_REPORT function in
    a parent report to fetch data from a child report.
    1) I tried to use this function in the PL/SQl of a group filter
    of parent report and alos in the Before Report trigger..neither
    worked.
    2) Please suggest some way/trigger to e-mail such report.
    You can also write me a mail at the given addr.
    Thankyou.
    null

    change your registry key entry which says
    REPORTS60_TMP to which ever dir you want

  • E-Mail Report (Very Urgent Please)

    Sir, I want to e-mail my report from the Oracle Reports Parameter form.But i got the error "REP-4220 : Problem in mail subsystem".MAPI is properly installed.All entries are coerrect in Win.ini file and system Registery.But the problem remains the same.Please let me know the answer How can i e-mail my report.I have Outlook Express of Window 98 Second Edition.

    You might want to delete the report server .dat file and restart the server and try
    his also could be one of the issues we had seen and fixed in 9.0.2.3. Please ensure you have the latest patch applied
    Thanks
    The Oracle Reports team

  • VERY URGENT!! How to Pass a "% " symbol from form to Report

    Hi
    I am using oracle 10g and passing a symbol "%" as a parameter to the report from a form. But it shows error as follows:
    REP-52006: Failed to decode the specified URL PARAMETER1=%.
    But it is working when it runs in the Report directly.
    Then Why we can't pass the symbol "%" to the report from form.
    Please reply me as soon as possible. IT IS VERY URGENT !!

    Hi,
    Try using a lexical parameter(&parm_1) for a string of values or a bind parameter(:parm_1) for a single value
    Thanks,
    Kimosabe

  • HT202786 my friend shared a video with me on icloud photo sharing and then she deleted it from her camera roll, how do I save it???(very urgent)

    my friend shared a video with me on icloud photo sharing and then she deleted it from her camera roll, how do I save it???(very urgent)

    DVDs are encoded into MPEG2, which iMovie cannot edit. So you need to convert the DVD back to something else. For highest quality, I recommend that you convert the DVD to Apple Intermediate Codec. There is a free tool called MPEG Streamclip that will do this. You will also need to install the Apple QuickTIme MPEG2 Playback Component.
    Here are the details.
    1) Download and install the Apple MPEG2 QuickTime Component ($20) - available online from Apple.
    2) Download and install MPEG Streamclip from Squared 5 (free).
    3) Start MPEG Streamclip
    4) Insert your DVD into your Mac. If DVD Player or Front Row starts automatically quit those.
    5) Open a Finder window. Navigate to your DVD to the Video_TS folder.
    6) Drag the .VOB files from the Video_TS folder and drop then into MPEG Streamclip.
    7) If MPEG Streamclip offers to fix timecode breaks, say yes.
    8) Use FILE/EXPORT TO QUICKTIME to convert the files to Apple Intermediate Codec (or h.264 if you prefer)
    9a) Optional: You can deinterlace your footage in this step, if you like
    9b) optional: If you know the date and or time of the footage, name your file
    clip-yyyy-mm-dd hh;mm;ss
    (let mpeg streamclip provide the extension). This will provide metadata that iMovie will use to put the event in the right year and month.
    9c) Optional: If you don't want to make one huge clip out of your DVD, you can make smaller clips by using MPEG Streamclip. Move the cursor to the "in" point of the clip, and press i. Move the cursor to the "Out" point of the clip, and press o. Then do steps 8 through 10 and repeat until you have done this for all clips you want.
    10) Save the resulting file in a place where you can find it, like your Desktop.
    11) Open iMovie.
    12) In iMovie, choose FILE/IMPORT/From File and choose the file you saved in steps 8, 9, 10.
    13) iMovie will generate thumbnails and you can edit.

Maybe you are looking for