Regarding reporte execution time and date

hi all,
Is there any table in sap which can give me date and time of last execution of a report.
Thanks and regards .
Punit

Hi
I exactly don't know but i can provide you with the list of table names where BASIS people are gonna use them
http://www.saptechies.com/list-of-important-transaction-codes-tables-programs-reports/
check out this tabel  i hope it helps you
DBSTATC
Regards
Pavan
Edited by: Pavan Bhamidipati on Jul 18, 2008 7:57 AM

Similar Messages

  • SAP BO Report Execution time and Record count

    Hi All,
    We have a requirement to set the limits on report execution time and record count centrally. Can you please help me to identify where exactly we have to define the settings in CMC for BO4.
    Thanks in advance,
    Shalini

    Hi Shalini,
    Please follow these steps, also check in for any more details if any;
    Step 1: Launch CMC
    Step 2: Select Servers
    Step 3: Select Web Intelligence processing Server, right click and Goto Properties
    Step 4: Maximum List Of Values Size (entries) default value is 50000.
    Step 5: Increase this value if your "LOVS" greater than this value.
    Step 6: Save and close.
    Step 7: Restart the server.
    Hope this helps.
    - Ram

  • Function module to display the time and date in the report-sy-udate And s

    Hi.
    wish to have a function module which can display the system time and date through function module.
    the format that this function module should display should be like this:
    if its today-date and time then:
    05-Jan-08 01.25.57 PM
    please note that i want them to be in one single row in the top-of page
    kinldy help on this.
    thanks!

    hi,
    check this.
    https://forums.sdn.sap.com/click.jspa?searchID=19175181&messageID=4628668
    Thanks

  • HT4897 Regarding SENT MSG data time and date

    Hello
    I was very surprised when I went to print off eveal SENT email messages, only to find that the print off DID NOT include the time and date that the email was sent.  It did say "sent 2 days ago" . . . But the print off did not note the date I printed it ??
    I need to rely on this data for legal etc . . .
    Is this common to me.com ICloud emails ? Because, if so, I will have to move my emails back to GMAIL . . . After trying to consolidate my emIles to me.com.
    Is anyone else having this problem ?
    Thank you

    I've been seeing this problem too.
    I just send an email from the .Mac web interface and the email did have a date field when it was in my Mail In Box. But when I deleted the email, and it moved to my Trash, the date field disappeared.

  • Report execution time should displayed in Local Time

    Hi,
    I have a query related to the Report execution time.
    Our SAP Servers are available in US.  The Servers are configured in US Time.
    We have developed a Z report and used SY-UZEIT to display the Report Run Time.
    we also have a plant in India.
    When we execute this report for India Plant we are getting the execution run time for US.
    But we need to get the run time in India Time.
    Please help ASAP.
    Regards,
    Shankar

    Hi Shankaran,
    In your Z report, give a condition to check if the Plant is in India. If it is in india, then get SY-UZEIT and add the time difference to get IST.
    Display this time on your report.
    For implementing this, you will have to convert the Date and Time into Timestamp (use FM "LXHME_TIMESTAMP_CONVERT_INTO"), add the Time to this Time stamp (use FM "TIMESTAMP_DURATION_ADD" and convert it back to Date and Time (use FM "LXHME_TIMESTAMP_CONVERT_FROM"). 
    Reward points if useful.
    regards,
    Raj
    Message was edited by: Rajagopal G

  • Portal report execution time

    Hi experts,            
    Can any one tell me how to check the report execution time in portal.Its taking a long time to execute
    the report in portal.so i would like to evaluate the execution time in portal itself.
    I know how to check it at bi side but here iam intrested to know at portal itself and it varies
    at bi side RSRT and at portal level. At RSRT and in Analyzer its taking expected time only but in
    portal its taking long time.
    Regards,
    Shais

    Thanks Alot For your reply.
    Its working. when i run the statistics i got the below details .
    Step runtime: 7532 ms   -
    > is this the total time taken to execute the report?
    Remote runtime :6845 ms
    Local runtime :687 ms
    Handle types olap frontend events:
      - BRFC: 78 ms
      - DP: 237 ms
      - OLAP: 6443 ms
      - DFLT: 95 ms
      - DIAL: 0 ms
      - APPL: 391 ms
      - F4: 4 ms
      - CMD: 110 ms
      - ITEM: 109 ms
    what is meant by remote run time, local run time,BRFC .......... Can you explain me in details.
    Waiting for your reply,
    Regards,
    Shais.

  • RE:Reg time and date

    Hi,
             Create report  and send daily at 8:45am as the rest of the reports.
    Yesterday 7am to Today 7am, i have created the report but how to handle the time and date in the program

    hi,
    Chk this sample 1.
    There are two ways for you to handle,
    one manually setting up the job through SM36 which is better and convinient,
    secondly through program using FM's JOB_OPEN, SUBMIT, JOB_CLOSE.
      Find below steps in doing both:
    Procedure 1:
      1. Goto Trans -> SM36
      2. Define a job with the program and variant if any
      3. Click on start condition in application tool bar
      4. In the pop-up window, click on Date/Time
      5. Below you can see a check box "Periodic Job"
      6. Next click on Period Values
      7. Select "Other Period"
      8. Now give '15' for Minutes
      9. Save the job
    In SM37 u can check the status of the jobs that u have assigned to background...
    Here u mention the job name or the report name to check the status of the job...
    After mentioning the job name or program name u just execute it.. ( without any name also u can execute then it gives u all the jobs set by your user name..
    the status colud be released,active,finished etc..
    Procedure 2 via Program:
    Below is a sample code for the same. Note the ZTEMP2 is the program i am scheduling with 15mins frequency.
    DATA: P_JOBCNT LIKE TBTCJOB-JOBCOUNT,
          L_RELEASE(1) TYPE c.
       CALL FUNCTION 'JOB_OPEN'
         EXPORTING
           JOBNAME                = 'ZTEMP2'
        IMPORTING
          JOBCOUNT               = P_JOBCNT
        EXCEPTIONS
          CANT_CREATE_JOB        = 1
          INVALID_JOB_DATA       = 2
          JOBNAME_MISSING        = 3
          OTHERS                 = 4.
       IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
       SUBMIT ZTEMP2 VIA JOB 'ZTEMP2' NUMBER P_JOBCNT
              TO SAP-SPOOL WITHOUT SPOOL DYNPRO
              WITH DESTINATION = 'HPMISPRT'
              WITH IMMEDIATELY = SPACE
              WITH KEEP_IN_SPOOL = 'X' AND RETURN.
       CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
           JOBCOUNT                          = P_JOBCNT
           JOBNAME                           = 'ZTEMP2'
           STRTIMMED                         = 'X'
           PRDMINS                          = 15
        IMPORTING
          JOB_WAS_RELEASED                  = L_RELEASE
        EXCEPTIONS
          CANT_START_IMMEDIATE              = 1
          INVALID_STARTDATE                 = 2
          JOBNAME_MISSING                   = 3
          JOB_CLOSE_FAILED                  = 4
          JOB_NOSTEPS                       = 5
          JOB_NOTEX                         = 6
          LOCK_FAILED                       = 7
          INVALID_TARGET                    = 8
          OTHERS                            = 9.
       IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    Hope the above helps you.
    Regards
    Reshma

  • How to get system time and date with PHP

    Dear Mr.Craig,
      Thanx a lot. We are running SRM 5.0 (RAMP - Implementation).
      My initial requirement is to write a server-side script to display server date and time. Could you give more inside on how to achieve it?
    Regards,
    Deva.

    Perhaps that will help.
    [code]
    <html>
    <h1>Access System time and date</h1>
    <?
         // saprfc-class-library     
         require_once("saprfc.php");
         $sap = new saprfc(array(
       "logindata"=>array(
       "ASHOST"=>"localhost"          // application server
       ,"SYSNR"=>"00"                    // system number
          ,"CLIENT"=>"000"               // client
          ,"USER"=>"bcuser"               // user
          ,"PASSWD"=>"minisap"          // password
         ,"show_errors"=>false               // let class printout errors
         ,"debug"=>false)) ;                     // detailed debugging information
         $result=$sap->callFunction("MSS_GET_SY_DATE_TIME",
            array(     array("EXPORT","SAPTIME",array()),
               array("EXPORT","SAPDATE",array())));
         if ($sap->getStatus() == SAPRFC_OK) {
        echo "Time: ".$result["SAPTIME"];
        echo "<br>Date: ".$result["SAPDATE"];
        echo "<br>or<br>";
        echo "Server is showing: "
             .substr($result["SAPDATE"], 0, 4)
             ."-".substr($result["SAPDATE"], 4, 2)
             ."-".substr($result["SAPDATE"], 6, 2)
             ." and "
             .substr($result["SAPTIME"], 0, 2)
             .":".substr($result["SAPTIME"], 2, 2)
             .":".substr($result["SAPTIME"], 4, 2);
         } else {
              $sap->printStatus();
         $sap->logoff();
    ?>
    [/code]

  • Printing current time and date on a pdf document

    I wish for a pdf document to print the current time and date in the same place at the foot of each page, to the following format:
    Aug 04 2009, 5:11 pm.
    How do I do this please? Annoyingly I have managed it in the past, but when I open up my old documents and paste the relevant field into my new document, it either prints the old date/time or else prints the present date/time, but then doesn't refresh the next time I try to print - ie it stays at one date/time.
    I'd like to start again from scratch so that I have a better idea of how it works!!
    Regards
    Tony

    Eureka!
    I now have the answer, and hopefully this will help anybody else with a similar problem.
    In Acrobat:
    Create a text field and place it in the chosen place on the pdf form. Label it "datebox" in the General tab of Text Field Properties, and apply your character styles in the Appearance tab.
    Under the "Advanced" menu, go to "Document Processing" and then "Set Document Actions"
    Click on "Document Will Print" and then hit the "Edit" button. In the "JavaScript Editor" paste the following:
    var myfield=getField("datebox");
    var date=new Date();
    date=util.printd("mmm dd yyyy, h:MM tt", date);
    myfield.value=date;
    Hit OK.
    You have now given the instruction that whenever you print, the field named "datebox" will print the current time and date in the following format:
    Aug 05 2009, 9.37 am
    Regards
    Tony

  • Time and Date Wont change

    Help!!! I have a Palm z22 and everything works great except the time and date will not budge...I called customer service and they had me do a hard reset but it didnt fix the problem. I am at a loss somethiing so little but so annoying...If anyone can help please do..My next step is to send it back to be repaired, unless someone knows a quick fix or mqaqybe something I havnt done..The Z22 is brand new out of the oackage only 1 week ago.
    Post relates to: Palm Z22

    I have gone through the Manuel and I have been through this whole website. Nothing regarding time not working and how to fix it. I have attempted to I set the time several times and it doesn't work I have been in Preferences and tried to check the time zone/daylight savings time and several other things that may affect it to no avail. I have like I said tried a hard reset deleting everything and then hotsyncing again. I am at a loss. Is there something I should download? Maybe try a hard reset again? I am not a computer wiz this is my first palm pilot so I am lost.
    Post relates to: Palm Z22

  • In the advanced tab of languages and Region the time and date formats will not change

    For a certian Application I am using I need to change the format of the Time and Date. I had no problems in Mountain Lion. In the advanced tab of languages and Region the time and date formats will not change. I need the date format to read as 01/01/14 and time format to read 13:00. As I said this was easily done in Mountain Lion and all previous Apple OS. I suspect it's an issue with in the OS.

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • Report Execution Time

    I'm looking for a way to include the amount of time that a report took to create. I've looked at an option given in an existing thread:
    Re: How to calculate total time taken by a report
    but this method is extremely slow. I already have complaints about execution time and don't need another excuse added that it's taking longer to tell how long it runs. It seems there would a very simple, and quick, way of getting this information. I just want to put the execution time, or maybe just start and end time, on the trailer where I already list all of the parameters that were passed.
    Any help on this would be much appreciated.

    Can someone from Oracle at least tell me if this can be done or not???

  • How to get the start time and date

    Hi everyone! I have a question ,who will be glad to help me! Thanks in advance!
    As we know ,when we finish the UUT test ,it generate report . The report format maybe like"SeqFileName_Report[Time][Date]_00001.xml"
    My question is"how can I get the [Time] and [Date] in the test sequence"

    See this post.
    How To Display Time Information in Report/Results?
    http://forums.ni.com/t5/NI-TestStand/During-a-test-how-can-I-find-the-start-time-and-date-of-that/td...
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • How to query in SCCM 2012 to know how many active and inactive clients in a specific time and date

    Dear Everyone,
    Good morning. I need to perform a query to know how many clients PCs are active or inactive during the a specific time and date (let say, today 9pm). In my query, I want to know:
    1. How many client PCs is active at that time and date?
    2. How many client PCs is not inactive at that time and date?
    Any assistance is greatly appreciated. Thanks.

    Thank you Gerry for pointing out that it doesn't show real time date. I do agree with that. However, I am look at the (at least in this) report which supposed to [description] shows a list of computers not reporting any power activity for a specified date
    and time. Since I can only key in date in my selection (time option not given), I am expecting the report to show me whether there any client PCs that doesn't any power activity for the specified date. A list was generated, and a number of them shows HardwareInventoryScan,
    LastHeartBeatScan and LastPolicyRequest on the same date itself. I would like to know why these appears, so that I can learn from it.
    Due to the selection option given, I can't expect my original goal, but at least (hopefully) I can get to know (past event) how many and which client PCs is not powered on a particular date based on the date and collection selected.
    At least by getting explainations, I hope to learn something from this (how to read this report). Thanks in advance.

  • Nokia E71 time and date problems.

    I cant ever set the time and date of my nokia E71. Anytime i access the time and date settings, it just doesn't go through. Please help me out.

    Hi Faces1, 
    Welcome to Nokia discussions board! 
    In order to fix this issue, I advise you to perform a soft reset on your phone: type *#7780#. Default lock code is 12345. If the issue persists, perform a hard reset. First of all, back up your data using Nokia Suite (Tools > Back up). Once your data is fully backed up,  type *#7370# on the keypad. 
    Alternatively, you may also check for updates on Nokia Suite (by going to Tools > Updates).
    Then try to set the time and date again. 
    Let us know how you get on and feel free to post any other questions you may have. 
    Regards, 
    astra2025
    Press the 'Accept Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

Maybe you are looking for

  • Need fix - itunes 10.6.1.7 info box unstable when entering info

    When box is highlighted for typing, it sudenly stops being highlighted and you can not enter any data - frustrating!

  • Creation of Descriptive FlexField on Supplier

    Hello, I am trying to add a new segment under context "Global Data Elements" of a DFF. Currently this context has two segments referring to columns ATTRIBUTE1 adn ATTRIBUTE2 In the Segments Summary screen, when I try to select the Descriptive Flexfie

  • How to Configure the Datasource In JNDI and access it through Java Code

    I have declared under web.xml <resource-ref>       <res-ref-name>MSDataSource</res-ref-name>       <res-type>javax.sql.DataSource</res-type>       <res-auth>Container</res-auth>       <res-sharing-scope>Shareable</res-sharing-scope> </resource-ref> U

  • Ideapad y400 not shutting down

    my ideapad literally will not shut down. when i click "shut down" it does nothing. "restart" doesnt work either. however, hibernate and sleep work fine. some odd things have been happening too. like, my google chrome keeps saying "administrator has d

  • Combined date sorting with anychart (mm.yyyy)

    Hi there [apex 4.2, Oracle 11g] I have a table in which I extract the year and the month and both in combination (from a date type). This is needed to summarize for example the year in a chart. I need the combination of month and year because people