Mension time of report delivery

while scheduling the reports where do i need to mension the executiontime of the report and deliver to users.
Ex: if i want to deliver my report to users at morning 600 am where do i need to mension this time in the delivers to deliver the report at that time(600 am).
Edited by: user12255470 on Jun 21, 2010 5:58 PM

hi,
by using BI Delivers
at morning 600 amunder the schedule tab u can schedule your report
if i want to deliver my report to usersRecipents-->Check in the A specific list of recipients click on select
thanks,
saichand

Similar Messages

  • How to reduce process time in report

    Hi all..
    Is there any technique to reduce process time in report on programmer side??
    Plz help me...

    Hi
    check this and ensure that your code is as per the stds
    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
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d0db4c9-0e01-0010-b68f-9b1408d5f234
    ABAP performance depends upon various factors and in devicded in three parts:
    1. Database
    2. ABAP
    3. System
    Run Any program using SE30 (performance analys) to improve performance refer to tips and trics section of SE30, Always remember that ABAP perfirmance is improved when there is least load on Database.
    u can get an interactive grap in SE30 regarding this with a file.
    also if u find runtime of parts of codes then use :
    Switch on RTA Dynamically within ABAP Code
    *To turn runtim analysis on within ABAP code insert the following code
    SET RUN TIME ANALYZER ON.
    *To turn runtim analysis off within ABAP code insert the following code
    SET RUN TIME ANALYZER OFF.
    Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    Avoid for all entries in JOINS
    Try to avoid joins and use FOR ALL ENTRIES.
    Try to restrict the joins to 1 level only ie only for tables
    Avoid using Select *.
    Avoid having multiple Selects from the same table in the same object.
    Try to minimize the number of variables to save memory.
    The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    Avoid creation of index as far as possible
    Avoid operators like <>, > , < & like % in where clause conditions
    Avoid select/select single statements in loops.
    Try to use 'binary search' in READ internal table. Ensure table is sorted before using BINARY SEARCH.
    Avoid using aggregate functions (SUM, MAX etc) in selects ( GROUP BY , HAVING,)
    Avoid using ORDER BY in selects
    Avoid Nested Selects
    Avoid Nested Loops of Internal Tables
    Try to use FIELD SYMBOLS.
    Try to avoid into Corresponding Fields of
    Avoid using Select Distinct, Use DELETE ADJACENT
    Check the following Links
    Re: performance tuning
    Re: Performance tuning of program
    http://www.sapgenie.com/abap/performance.htm
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    check the below link
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    See the following link if it's any help:
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    Check also http://service.sap.com/performance
    and
    books like
    http://www.sap-press.com/product.cfm?account=&product=H951
    http://www.sap-press.com/product.cfm?account=&product=H973
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    Performance tuning for Data Selection Statement
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    Debugger
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    Run Time Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617cafe68c11d2b2ab080009b43351/content.htm
    SQL trace
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f7c454211d189710000e8322d00/content.htm
    CATT - Computer Aided Testing Too
    http://help.sap.com/saphelp_47x200/helpdata/en/b3/410b37233f7c6fe10000009b38f936/frameset.htm
    Test Workbench
    http://help.sap.com/saphelp_47x200/helpdata/en/a8/157235d0fa8742e10000009b38f889/frameset.htm
    Coverage Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c7/af9a79061a11d4b3d4080009b43351/content.htm
    Runtime Monitor
    http://help.sap.com/saphelp_47x200/helpdata/en/b5/fa121cc15911d5993d00508b6b8b11/content.htm
    Memory Inspector
    http://help.sap.com/saphelp_47x200/helpdata/en/a2/e5fc84cc87964cb2c29f584152d74e/content.htm
    ECATT - Extended Computer Aided testing tool.
    http://help.sap.com/saphelp_47x200/helpdata/en/20/e81c3b84e65e7be10000000a11402f/frameset.htm
    Just refer to these links...
    performance
    Performance
    Performance Guide
    performance issues...
    Performance Tuning
    Performance issues
    performance tuning
    performance tuning
    You can go to the transaction SE30 to have the runtime analysis of your program.Also try the transaction SCI , which is SAP Code Inspector.
    1 Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    2 Avoid for all entries in JOINS
    3 Try to avoid joins and use FOR ALL ENTRIES.
    4 Try to restrict the joins to 1 level only ie only for 2 tables
    5 Avoid using Select *.
    6 Avoid having multiple Selects from the same table in the same object.
    7 Try to minimize the number of variables to save memory.
    8 The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    9 Avoid creation of index as far as possible
    10 Avoid operators like <>, > , < & like % in where clause conditions
    11 Avoid select/select single statements in loops.
    12 Try to use 'binary search' in READ internal table. Ensure table is sorted before using BINARY SEARCH.
    13 Avoid using aggregate functions (SUM, MAX etc) in selects ( GROUP BY , HAVING,)
    14 Avoid using ORDER BY in selects
    15 Avoid Nested Selects
    16 Avoid Nested Loops of Internal Tables
    17 Try to use FIELD SYMBOLS.
    18 Try to avoid into Corresponding Fields of
    19 Avoid using Select Distinct, Use DELETE ADJACENT.
    Regards
    Anji

  • How to print date/time in report page footer?

    Hi
    I have a report which users can print as PDF.
    However, I like to display current date/time in report footer.
    I can see the Page Footer in section but can't figure out how to print date/time there.
    Thanks for help.

    hi movilogo
    Please try this.
    Create hidden item P1_DATE
    Create On load process in page 1 and put this code
    begin
    :P1_DATE:=TO_CHAR(SYSDATE,'DD-MON-YYYY HH:MM:SS');
    end;
    Open your region in Page 1 put this code in Footer area
    *&P1_DATE.*
    Refresh your page.
    you will get the output like this.
    16-SEP-2009 11:09:17
    thanks
    Mark Wyatt

  • I need to see how many times a report is executed in the system.

    Hi,
    I need to know how many times a report and background job is executed in the system.
    How can I know that?
    Thanks for the help!

    hi
      For all reports and transactions execution info is stored in table MONI.
    Read the System log using the Transaction SM21. may be you can find some info here.
    U can use trx STAT, here the system stores the statistic only for a certain period (lst week, last month,...).
    Also try stad transaction.
    Reward points if helpful.
    Regards
    Nilesh

  • Time Machine reports issue backing up to Time Capsule

    Ever since I have upgraded to 10.6.4, I have been unable to complete a Time Machine backup. My backup volume is contained on a 2TB Time Capsule. Paraphrasing the error message, "Time Machine reports that it is unable to backup due to a problem with the disk, this problem may be temporary, try again later."
    Has anyone seen this? Any suggestions?

    The exact error message reported:
    The Backup was not performed because an error occurred while copying files to the backup disk.
    The problem may be temporary. Try again later to back up. If the problem persists, use Disk Utility to repair your backup disk.
    I used Disk Utility on the external disk, and also ended up just erasing the volume on this disk, and attempting a fresh backup. Still no go.
    The Time Capsule is connected directly to the iMac via Ethernet.

  • Excise tab not comes at the time of return delivery

    Hi,
    I am facing the issue that excise tab is not coming at the time of return delivery.However I am able to make the excise entries at the time of GRN.
    kindly provide the solutions.
    Regards,
    Dinesh

    Hello,
    While receiving of material through MIGO transaction then system will Shown "excise Invoice" tab in MIGO tcode. But While Return delivery of material, then system will  not shown Excise invoice in MIGO, because  the Return delivery is nothing but issue of material to vendor or outside the gate, So in this case we can use transaction code J1IS.
    Regards
    Mahesh Naik

  • Query spends most time on report CL_RSDM_READ_MASTER_DATA

    Hi Experts,
    I have created some queries on a custom cube with about 8M rows of data.  I have compressed and  partitioned the cube ()CALMONTH) and built a relavent aggregate that is being picked up by the query.  Also, it seems like the OLAP cache is working properly.
    However, the run times are still quite long (over 65 sec) for queries selecting larger data sets (say 2 months of data).  When I watch the query running in sm50, I notice it spends most of its time running report CL_RSDM_READ_MASTER_DATA.  In my cube, I have made several attributes on one characteristic (Account#) navigational, and some of the query filtering is done on these nav attributes.  Also, the report displays several of the attributes (nav and display) from this characteristic - I am not sure if that is causing the long reads from the master data P tables?  I have played around with creating indexes on the X table for some of these attributes but that seems to make no difference either.
    Any clues?  Am I missing something simple? 
    cheers,
    Darryl

    This note might be helpful.  Not sure if it applies to your environment or not.
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1237104

  • What is the user exit triggering at this time of saving delivery document

    Hi All,
    What is the user exit triggering at this time of saving delivery document
    regards
    Deekshitha.

    For the Delivery process following project are used, you can list out all exit
    V02V0001
    V02V0002
    V02V0003
    V02V0004
    V50PSTAT
    V50Q0001
    V50R0001
    V50R0002
    V50R0004
    V50S0001
    V53C0001
    V53C0002
    V53W0001
    VMDE0001
    VMDE0002
    VMDE0003
    VMDE0004

  • HT3275 My time capsule reports an error The backup disk image "/Volumes/Data-1/MacBook Pro.sparsebundle" is already in use.

    Help !
    The last few days my time capsule reports an error       The backup disk image “/Volumes/Data-1/MacBook Pro.sparsebundle” is already in use.
    To make things worse I seem to be loosing my screen so need to make a back up ASAP

    Make sure that no other Macs are backing up at the time.
    Pull the power cord from the back of the Time Capsule
    Count to ten
    Plug the power cord back into the back of the Time Capsule
    This will fix the issue about 98% of the time. If you are in the unlucky 2% category, please post back for more assistance

  • Time Machine reports, "backup failed." What do I do?

    Time Machine reports, "backup failed." What should I do?

    See if Pondini's great site helps...
    http://Pondini.org/TM/Troubleshooting.html

  • I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem my  Community

    I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem And it's been about a week my question is how long does it take  to credit my account back. It's my money and I want it now.

    It can take a while for your money to show up in your bank, but a week is a bit over the top. Try contacting iTunes Store Support to make sure the refund was issued.

  • ESS Time Statement Report not Active?

    I am running ERP2004 ESS with IDES. I think were on SP9. I have adobe document services installed and its working ok with other reports, however when I try to run the Time Statement report I get an error "Print program not activated for form SAP_TIM_99_0001".
    I tried going into transaction HRFORMS to active it, but it says there is an error in the code, some variable is not declared. The code is out of the box and can't be changed so I'm thinking these could be the possible problems:
         1. The SAP_TIM_99_0001 form delivered in the SP has errors and I need to apply a new SP level.
         2. I am not trying to active the program right. (Currently I am going into HRFORMS, selecting the report, then activating it)
         3. There needs to be some configue done that will help this compile right.
    Please let me know if you have any insight to this problem and if you have it working yourself.
    Thanks,
    Tom Ficker

    Hi Tomas Ficker
    I have the same problem but now in another version.
    I'm working with ERP2005 ECC 6.0 Portal: 2004s SP7
    When I try to open the Time Statement in the workset Working Time I receive the same error  message, but in this case, say that the Form SAP_TimeSlip is missing.
    I went to that transaction you mencioned and the Form is already Activated.
    Can you help me with this issue?
    Thanks a lot
    Sónia Santos

  • History of transaction codes used/no of times particular report is run.

    Please get me name of the table in which history of transactions entered are stored...or no of times particular report is run.

    Hi,
    You can use the transaction STAT..
    Thanks,
    Naren

  • Can't play rented movies.  They appear to download OK and the timer accurately reports days remaining to watch.  But whenever I try to play the movie I get this message, "An error occurred loading this content.  Try again later."

    Can't play rented movies.  They appear to download OK and the timer accurately reports days remaining to watch.  But whenever I try to play the movie I get this message, "An error occurred loading this content.  Try again later.". Have been using the Apple TV for 2 weeks and everything else seems to work OK.  The Apple TV reports its SW is up to date.  I've tried this with two movies rented frim iTunes directly from the Apple TV.

    If after you download the movie, you navigate away and do something else with your Apple TV the content you have downloaded will be overwritten and you'll need to download it again. It's a pain in the neck for many who have slow downloads but it's something that comes with using volatile memory rather than a hard drive for storage.
    Perhaps you're not doing this, but I thought it worth mentioning.

  • Tasks were deleted/moved by Project Managers after Time was reported by contributors

    So here is the most bafling situation I have at hands. We are running MS Project Server 2010. There are many projects where users are assigned and time is being reported. Few of the PMs managed to moved the tasks where time was already reported to other
    projects. Now I have timesheets that have UID that no longer exists.
    The actual steps of events might have gone in the following way:
    1. Project was setup with Tasks and users were assigned
    2. Project was then checked in and published
    3. Time was reported by the users and somewhere PM checked out the project
    4. PM never checks the project back in and the moves the tasks around
    5. PM then check-in and publish and -- voila  -- tasks with timesheet disappears
    If this is a client server technology then it should not have happened but it did.
    Questions
    - Has anyone else encountered a similar situation and how they went about fixing it besides the user training?
    - How to fix the ongoing issue?
    Many thanks for your help.

    Hi,
    a few questions up front:
    Do you use Single Entry Mode (SEM). What page are your users using: really timesheets or are they entering time on tasks page. Are users submitting their actuals or just saving? When the submit and PM is also Status Manager of these tasks, he gets an information
    that updates are pending when opening project plan. If he deletes tasks with actual work, he is also informed that it was no good idea.
    To avoid this situation, I suggest to
    turn on SEM, if not yet done
    follow
    http://technet.microsoft.com/en-us/library/hh694531(v=office.14).aspx and
    think about turning on "Only allow task updates via Tasks and Timesheets" in Server Settings - Task Settings and Display. With this enabled, your PMS will not be able to delete tasks with actuals.
    Let us know, how you are working right now and if my suggestions may be an option.
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find an
    appropriate solution faster.
    Thanks for your support!

Maybe you are looking for