How can i get report between two dates?

Hi
how can i get report between two dates?
for example i want get reports between 20/4/2002 & 27/4/2002.
my table has date column and i can get first date( exam : .... where date:=a and/or ....i don't know this part)
thanks alot.
Regards
The Oracle Reports Team
http://otn.oracle.com/

where exam_date between :from_date and :to_date
from_date and to_date are user_parameter

Similar Messages

  • Using the 6023E in LV 7.1, how can I get timing between two events to microsecond precision?

    I am a student and I have only been using LV for a few weeks so cut me some slack. I know similar questions have been on the forum 10 times but I am still having problems. I am sending a signal to a PIC microcontroller that controls the signal generation of a 40KHz acoustic ranging circuit. The output of the hardware goes high when an echo is detected. I need LV to start/restart a clock every time a signal is sent to the microcontroller and stop the clock when an echo is detected. It will use the time to computer the range. I am using the 6023E board and LV 7.1 and I know everything on my hardware is working correctly. I have a digital output going to the microcontroller and an analog input with a VI for detecting a voltage threshold listening for when an echo is received. I have looked through some other forum questions and examples and have come up with three different approaches. Originally I was trying to use the ms tick count VI but I've already read up on why that deos not work.
    The first VI posted below (ALIS2wavd) uses a timed loop. I can't seem to get the timed loop to run correctly with a 1 MHz clock. I am currently trying to use the DAQMx Create Timing Source.vi. Basically, the timed loop should run at 1 MHz and I would use the loop count to see how many times it runs before a signal is received. I also use the loop count to control how long I send the signal to the microcontroller, and how long to wait for an echo before starting over. In all of my VI's, the goal is to send a signal to the microcontroller for about .1ms and listen for an echo for 1-2ms.
    The second VI posted uses a VI for timing that I found on devzone. The timing VI that I found is also below. This really looks like a mess right now, sorry. You may want to look at the timing VI first. It uses counters to get a pre and post count and subtract to find the total time elapsed. I have the DAQmx read.vi's in the loop so that it will be subtracting the time of the first pulse from the time of the echo each iteration. At its closest point to working, this VI would return the same number for the range every time, meaning it was counting the same amount of time each iteration. I know the timing VI works accurately so I am guessing that there is a problem with my structure or the way I am using the DAQmx functions.
    In the last VI I am trying to use a counter to do something similar to what the timed loop VI should have been doing. I am setting up an egde count and controlling the transmit and detect time with this count. The value of the count when an echo is detected would be used to determine the elapsed time. Im not sure why this isn't working either.
    NOTE In all of these VIs there is an enable button and a PIC microcontroller frequency test. The VIs won't step into the case structure without both of these as true so you might want to get rid of them if you want to try to test anything. In trying to fix these VIs I may have made little changes that actually made the situation worse so keep that in mind too. Originally I was using just DAQ Assistant VIs to do the input and output but I switched the the DAQmx functions in the loops because I thought the assistant VIs might be causing the problem. Also, I noticed that there is a count events or time.vi on the traditional counter palette. I can't use the traditional functions at the same time as the DAQmx functions so I was wondering if there is an equivalent time counter VI for DAQmx that I just do not have?
    Attachments:
    ALIS2wavd.vi ‏627 KB

    timing VI
    Attachments:
    Time_with_Counters.vi ‏112 KB

  • How to get days between two dates

    Hi ,
    How to get days between two dates.
    Regards,
    Ramesh.

    Hi Ramesh,
    REPORT ZDATEDIFF.
    DATA: EDAYS   LIKE VTBBEWE-ATAGE,
          EMONTHS LIKE VTBBEWE-ATAGE,
          EYEARS  LIKE VTBBEWE-ATAGE.
    PARAMETERS: FROMDATE LIKE VTBBEWE-DBERVON,
                TODATE   LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
      exporting
        i_date_from          = FROMDATE
        i_date_to            = TODATE
      I_FLG_SEPARATE       = ' '
      IMPORTING
        E_DAYS               = EDAYS
        E_MONTHS             = EMONTHS
        E_YEARS              = EYEARS.
    WRITE:/ 'Difference in Days   ', EDAYS.
    WRITE:/ 'Difference in Months ', EMONTHS.
    WRITE:/ 'Difference in Years  ', EYEARS.
    INITIALIZATION.
    FROMDATE = SY-DATUM - 60.

  • How can we get Dynamic columns and data with RTF Templates in BI Publisher

    How can we get Dynamic columns and data with RTf Templates.
    My requirement is :
    create table xxinv_item_pei_taginfo(item_id number,
    Organization_id number,
    item varchar2(4000),
    record_type varchar2(4000),
    record_value CLOB,
    State varchar2(4000));
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'USES','fever','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'HOW TO USE','one tablet daily','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'SIDE EFFECTS','XYZ','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'DRUG INTERACTION','ABC','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'OVERDOSE','Go and see doctor','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'NOTES','Take after meal','TX');
    select * from xxinv_item_pei_taginfo;
    Item id Org Id Item Record_type Record_value State
    493991     224     1265-D30     USES     fever     TX
    493991     224     1265-D30     HOW TO USE     one tablet daily     TX
    493991     224     1265-D30     SIDE EFFECTS     XYZ     TX
    493991     224     1265-D30     DRUG INTERACTION     ABC     TX
    493991     224     1265-D30     OVERDOSE      Go and see doctor     TX
    493991     224     1265-D30     NOTES     Take after meal     TX
    Above is my data
    I have to fetch the record_type from a lookup where I can have any of the record type, sometime USES, HOW TO USE, SIDE EFFECTS and sometimes some other set of record types
    In my report I have to get these record typpes as field name dynamically whichever is available in that lookup and record values against them.
    its a BI Publisher report.
    please suggest

    if you have data in db then you can create xml with needed structure
    and so you can create bip report
    do you have errors or .... ?

  • Display the report between two dates

    Hi,
    I'm new to this application.i have created two date fields item.i want to display the report between two date fields.please help me.how to do?.
    By,
    Prem.

    Prem,
    See this example:
    http://htmldb.oracle.com/pls/otn/f?p=31517:99
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • How can i get acsess to my data if my iphone is shut and can´t open any more??how can i get acsess to the memory card, how can i get acsess to my data if my iphone is shut and can´t open any more??how can i get acsess to the memory card

    how can i get acsess to my data if my iphone is shut and can´t open any more??how can i get acsess to the memory card????please help

    You can't. There is no memory card. It uses flash memory that's soldered to the logic board. If you didn't back it up, your data is gone.

  • IOS 8.1 - after update how can I get my lost calendar data back?

    Hi, after the update to iOS 8.1 is my calendar empy. All my appointements are gone and there is no way to safe new appointments in it. I tried to use the backup  of the data, but it did not work. Any clou how can I get my lost calendar data back? And or get the calendar working again???
    Thanks!

    You sign into whatever iCloud or Mail account the calendar was synced to, and enable the Calendar option for those accounts.

  • How can i  get report no of user login in system

    Hello
    how can i  get report no of user login in system
    means user license login per day in system
    what is strategy of SAP against licenses audit
    how can i manage my license users ??????????
    Jayesh

    Hi Jayesh
    You can use the Audit Transactions. Set the Audit Profile with Tx SM19 and then report with Tx SM20.
    You can also use the programs CCUINIT and CCUEVAL. Report CCUINIT initialises the measurement of current users and report CCUEVAL will provide the report and the logs for you to download.
    Also regarding the licensing of users,
    Refer to http://www.sap-img.com/sap-overview/help-to-understand-sap-licenses.htm
    and https://websmp104.sap-ag.de/licenseauditing
    You will get everything you need
    Rohit

  • How can I get back the two arrow icon of isync on my bar? I'm using OS X 10.8.2 . Thanks

    How can I get back the two arrow icon of isync on my bar? I'm using OS X 10.8.2 . Thanks

    You can't. iSync has been discontinued since Mac OS 10.7 Lion. iSync has no connection with iCloud anyway.

  • HT1212 my niece's device is locked fro 23 million minutes!!!! How can i get round without losing data as at 8 she hasnt backed up!

    my niece's device is locked for 23 million minutes!!!! How can i get round without losing data as at 8 she hasnt backed up!

    If you restore you will have to restore to latest Apple's software, that frankly *****. I did it and I completely regret. On iOS 6.1.5 NOTHING works.

  • How to Calculate AGE by getting difference between two Date Fields

    HI Gems
    I need to calculate AGE from getting difference from two date fields. But when i am trying to wrte fromula as Current date - date1(some date field) then it is showing error.
    How can i get values.
    Thanks
    Manu

    You already asked this question:
    How to calculate AGE from two different date fields

  • How can we do reporting on Master data?

    Hi all:
    can any tell me "can we do reporting on master data". if so, HOW? can you please give me a step by step procedure.
    This is what i know:plz correct me if i am wrong.
    1. assuming that i want a report on 0sales_area.
    2. i need to make that DS available in Infoprovider tree.
    3. to do so, in infosource, i need to choose flexible updating for Master data, which in turn makes the Infoobject available in Infoprovider.
    4. then i need to create Update rules.
    5. and can get a report in BEx?
    Am I correct?
    please correct me
    Thanks
    kedar

    Kedar,
    Direct update is generally used for Master data infoobject & here no update rules are used, that means data from source system passes though transfer structure, rules, & communication structure directly to Data target i.e. InfoObject.
    Flexible Update - generally used for transaction data ( nowadays can be used for few master data as well) has another set of rule after communication structure i.e. update rule before moving data to data target.
    Also check
    Check these links:
    Re: Flexible Update Vs Direct Update?
    Flexible update of Master data
    Re: Flexible update Vs direct update.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/37dda990-0201-0010-198f-9fdfefc02412
    -Doodle

  • How can i get pr header note data into po while creating a po using pr no

    Hi all,
    Can any one tell me how can i get the PR header note's data in PO when i am creating a PO using that PR.
    and what is the name of table in which the header note's data is copied.
    Thanks
    Edited by: Saurabh.Shrivastava on Jan 17, 2012 3:54 PM

    Hi,
    Unfortunately I have to tell you that the described behaviour is not
    an Error but SAP Standard behaviour.
    Please see note 448814 question 7.
    In SAP Standard it is not foreseen to take over the header text of a
    PREQ to a PO !
    You can try to use BADI ME_REQ_HEADER_TEXT .
    I have found a document which gives coding for Purchase Requisition Header Long Text using Badi - ME_PROCESS_REQ_CUST:
    http://wiki.sdn.sap.com/wiki/display/ABAP/PurchaseReq.HeaderLongTextusingBadi-ME_PROCESS_REQ_CUST
    I hope it can help you!
    Best Regards,
    Arminda Jack

  • How can I get size of fetched data size when run a SQL ?

    Hi,
    When I run a SQL how can I get fetched data size?
    regards,

    We can get it using some calculations:
    1. SQL%ROWCOUNT attribute will fetch you number of rows returned in a SQL statement.
    Problem-->Now you need to get the size of 1 row.
    Solution-->
    Step 1.We can get size of table from dba_segment data dictionary.
    Select block_size from dba_segemnts where segment name like '%YOURTABLE%';
    Step2 . Get count of rows in your table
    Select count(*) from YOUR_TABLE
    Step 3.
    Get size of 1 row--> Divide result in Step1 by result in Step 2.
    Required result--> multiple result in step3 with SQL%ROWCOUNT..
    I hope this is what u want.

  • How can i get portal user creation date?

    Hi,
    In my web dynpro java application i must get user creation date.
    How can i get user creation date?
    Thanks.

    user.created()

Maybe you are looking for