Comparing period and date

hi,
Are period and date , directly comparable.
that is...i have
seloption:SO_PERIOD: 02.2005 to 03.2006
and Ztable like this...
col1 col2
xxx 01.01.2005
yyy 01.02.2005
yyy 02.01.2005
yyy 01.03.2006
will the statement..
select col1 from ztable where col2 in so_period.....return all values
pls help.

Hi Saravanan,
No, it wont return any values as COL2 and SO_PERIOD are of different types.
But you can achieve this by collecting the start date and end date of SO_PERIOD into dates and use this range to select against COL2.
Check this thread which will have same requirement as you needed.
Re: How to convert the date format from MM/YYYY to MM/DD/YYYY.
Thanks,
Vinay

Similar Messages

  • Not able to see the history period and data

    Hello
    I have 2 time planning bucket periods - history of 24 months and future 14 months.
    have assigned both in the data view.
    i have loaded the data from infocube to planning area and i got the successful message.
    during the transfer i have used the key figure assignment feature and used my key figure which is zhistory.
    i have not used 9AVHISTORY.
    my issue is i am not able to see the history periods and hence not able to see the data in history.

    Hi
    The data get loaded and its also available in the planning area, as you defined the time bucket profile according it  i.e.24 month in past and 14 month in future. Its only while definition of data view you have not defined these flags you were unable to view this data.
    Hence as I mentioned data has correctly loaded in the planning area just not getting viewed.
    I hope this answers your question.
    Thanks
    Amol

  • Dynamic VARIANT FOR Fiscal Period and dates

    Hi
    We have a custom transaction with date and fiscal period as vairable parameters and need to know if we can generate a DYNAMIC VARIANT for these based on FISCAL PERIOD.
    Replies will rewarded

    Hi,
              Use transaction OB29, this is in the IMG.
    Or
    Path..
    SPRO -> SAP REFERENCE IMG -> FINANCIAL ACCOUNTING -> FINANCIAL ACCOUNTING GLOBAL SETTINGS -> FISCAL YEAR -> MAINTAIN FISCAL YEAR...
    <b>Reward points</b>
    Regards
    Message was edited by:
            skk

  • Compare periods and financial years

    Hi Experts,
    I am trying to figure out how to create a report for which I have sales figues for one quarter compared to another quarter and then have these compared to the previous year?
    In other words the report should look like this
                                1st Quarter 2009    |  2nd Quarter 2009    |   % diff    |    1st Quarter 2008     |     2nd Quarter 2008   |  % diff
    Item 1                                 
    Item 2
    Item 3
    Hpow would I accomplish this?

    This formula will do a 2 month previous balance.  
    if {Journal_Entry.Date} < dateserial(year(dateadd('m',-1,{?End Date})), month(dateadd('m',-1,{?End Date})),1) and {Journal_Entry.Date} >= DateSerial(year(dateadd('m',-2,{?End Date})),month(dateadd('m',-2,{?End Date})), 1) then
        if {Journal_Entry.Debit Or Credit} = 'Credit' then
             {Journal_Entry.Amount} * -1;
        else
            {Journal_Entry.Amount};
    While this one, is a month balance
    if {Journal_Entry.Date} >= DateSerial(year({?End Date}), month({?End Date}), 1) then
        if {Journal_Entry.Debit Or Credit} = 'Credit' then
              {Journal_Entry.Amount} * -1;
        else
            {Journal_Entry.Amount};
    This one is year to date
    if {Journal_Entry.Date} >= dateserial(year({?End Date}),1,1) then
        if {Journal_Entry.Debit Or Credit} = 'Credit' then
              {Journal_Entry.Amount} * -1;
        else
            {Journal_Entry.Amount};

  • Select where timestamp between date1 and date 2

    try a lot of variations but still dont work
    this was my last shot, then i come here ask for help
    the field DATAHORAS is timestamp
    data1 and dat2 will come from a form
    To_Date(S.DATAHORAS, 'dd/mm/yyyy hh24:mi:ss')
    Between Cast(To_Date(:data1) As TimeStamp) And Cast(To_Date(:data2) As TimeStamp)
    thanks in advanced

    No. You don't need to. But....
    Edit: I was originally using a stupid example using DUAL which was completely misleading - sorry.
    Originally I used the example below to show that you don't have to do an explicit conversion.
    Things will still work comparing timestamps and dates.
    SQL> select systimestamp, sysdate, sysdate+1
      2  from dual
      3  where systimestamp between sysdate and sysdate + 1;
    SYSTIMESTAMP                        SYSDATE              SYSDATE+1
    09-FEB-10 13.58.35.712017 +00:00    09-FEB-2010 13:58:35 10-FEB-2010 13:58:35But then I added an explain plan to show that implicit conversions were going on:
    1  explain plan for
      2  select systimestamp, sysdate, sysdate+1
      3  from dual
      4* where systimestamp between sysdate and sysdate + 1
    SQL> /
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 4192335797
    | Id  | Operation        | Name              | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |                   |     1 |     1   (0)| 00:00:01 |
    |*  1 |  FILTER          |                   |       |            |          |
    |   2 |   INDEX FULL SCAN| SYS_IOT_TOP_57625 |     1 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter(SYS_EXTRACT_UTC(SYSTIMESTAMP(6))<=SYS_EXTRACT_UTC(SYSDATE@
                  !+1) AND SYS_EXTRACT_UTC(SYSTIMESTAMP(6))>=SYS_EXTRACT_UTC(SYSDATE@!))
    15 rows selected.
    SQL>However, this example is misleading because it's not the same implicit conversion you get with a proper table with a timestamp column:
    SQL> create table t1
      2  (col1 timestamp);
    Table created.
    SQL> ed
    Wrote file afiedt.buf
      1   explain plan
      2   for
      3   select *
      4   from   t1
      5   where col1 between to_date('08-JAN-2010','DD-MON-YYYY')
      6*             and     to_date('09-JAN-2010','DD-MON-YYYY')
    SQL> /
    Explained.
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |    13 |     2   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| T1   |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("COL1">=TIMESTAMP' 2010-01-08 00:00:00' AND
                  "COL1"<=TIMESTAMP' 2010-01-09 00:00:00')
    Note
       - dynamic sampling used for this statement
    18 rows selected.
    SQL>Which is really what you want.
    It has an implicit conversion on the date parameters and no implicit conversion on the column which would prevent index usage if there were an index.
    Interestingly if you explicitly convert the dates to a timestamp, then you can get an extra filter predicate comparing the two parameters:
    SQL> explain plan
      2  for
      3  select *
      4  from   t1
      5  where col1 between cast(to_date('08-JAN-2010','DD-MON-YYYY') as timestamp)
      6             and     cast(to_date('09-JAN-2010','DD-MON-YYYY') as timestamp);
    Explained.
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3332582666
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |    13 |     2   (0)| 00:00:01 |
    |*  1 |  FILTER            |      |       |       |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter(CAST(TO_DATE(' 2010-01-08 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AS timestamp)<=CAST(TO_DATE(' 2010-01-09 00:00:00',
                  'syyyy-mm-dd hh24:mi:ss') AS timestamp))
       2 - filter("COL1">=CAST(TO_DATE(' 2010-01-08 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AS timestamp) AND "COL1"<=CAST(TO_DATE(' 2010-01-09
                  00:00:00', 'syyyy-mm-dd hh24:mi:ss') AS timestamp))
    Note
    PLAN_TABLE_OUTPUT
       - dynamic sampling used for this statement
    23 rows selected.oracle version 11.1.0.6
    Sorry about the mistakes in previous version of this reply.
    Edited by: DomBrooks on Feb 9, 2010 2:25 PM

  • Comparing a time period and a date via trigger....

    Hi ,
    There are among others three tables....
    Table material
       material_code number
       onomasia   varchar2(50)
       guarantee_end_date date
    Table supplier_contract
         contract_code number
         start_date date
         end_date date
        supplier number(5)
    Table supplier_contract_material
          contract_code number
          material_code numberThe table material , for each material contains the guarantee_end_date , whereas the other two contain info about the materials that should be replaced/fixed/ e.t.c by the supplier in the specific time period (start_date - end_date).
    The thing that has to be done is there have not be any overlap of the dates.... In other words , when a material is bought then this is covered for replacement by the end of the date (guarantee_end_date in the first table). After this date there should be contract with the supplier for this material for a specific period (start_date - end_date , in the second table).
    I want to secure the database that when the end_user tries to update this time_period(start_date - end_date) before or between the guarantee_end_date ("when i say between the guarantee_end_date " , i mean the condition guarantee_end_date between start_date and end_date is not acceptable) then an alert would be raised ....
    So , I wrote the following trigger:
    create or replace trigger trg_check_eggisi
    before update on supplier_contract
    for each row
    declare
    guarantee_end_date_var date;
    begin
       begin
         select guarantee_end_date 
           into guarantee_end_date_var
           from material a, supplier_contract_material b
          where a.material_code=b.material_code
           and b.contract_code=:new.contract_code;
         exception
          when no_data_found
           then return;
        end;
       if guarantee_end_date_var>:new.guarantee_end_date_var
         then
         raise_application_error(-20021,'NOT_APPLICABLE');
       end if;   
    end;The problem is that the error ORA-01422 is raised ... because more than 1 material may be contained in the specific contract....
    Do you have any idea...????
    many thanks ,
    Simon

    Hi  John,
    As you want to  display the planned value of Depreciation for future years,
    since this is not possible you can display the planned values only for that year and that too for subsequent periods,  you  will  see  the Yellow icon stating it is planned which is not yet posted in the posted value Tab,
    Since if  you  want to display planned values for future year you have to  post Depreciation for subsequent period and close the fiscal year and again same procedure follows....
    Regards,
    Imran M Arab

  • Facing issues with 3g Mobile Data Usage Current Period and Apps Volumes are differ.

    Hi All,
              i am facing some data mismatch with my iphones. the actual mobile data usage volume and data usage for Apps volumes are showing different data.
    for eg : Mobile Data Usage - Current Data Usage - Current Period volumes showing 342 MB but if i check the  Use Mobile Data For Apps Volumes for all Apps including System Service Data's and Uninstalled Data's are showing very less ( around 200 MB only ) compare with Current Period Volumes.
    Mobile Data Usage - Current Data Usage - Current Period  and Use Mobile Data For Apps ( Apps wise data usage ) Data's are not matching..
    Please let me know will it show like that only or its an issue ????  if you want i can share the screen shot as well.

    Hello kasinathadurai,
    Welcome to the Apple Support Communities!
    I understand that you have some questions about cellular data usage and apps that use cellular data. For this question, I would refer you to the attached article that will help explain how data usage, call time, and app cellular data is calculated. 
    Learn about cellular data settings and usage on your iPhone and iPad (Cellular Model) - Apple Support
    Have a great day,
    Joe

  • How do I control a data log session with period and sample time?

    I need a data logging system where the operator can select 2 logging parameters: Log Period and Sample Time. I also need a START and STOP button to control the logging session. For example, set the log period for 1 hour and the sampling time for 1 second. (I may be using the wrong jargon here.) In this case when the START button is clicked, the system starts logging for 1 second. An hour later, it logs data for another second, and so on until the operator clicks the STOP button. (I will also include a time limit so the logging session will automatically stop after a certain amount of time has elapsed.)
    It’s important that when the STOP button is clicked, that the system promptly stops logging. I cannot have the operator wait for up to an hour.
    Note that a logging session could last for several days. The application here involves a ship towing a barge at sea where they want to monitor and data log tow line tension. While the system is logging, I need the graph X-axis (autoscaled) to show the date and time. (I’m having trouble getting the graph to show the correct date and time.) For this application, I also need the system to promptly start data logging at a continuous high rate during alarm conditions.
    Of course I need to archive the data and retrieve it later for analysis. I think this part I can handle.
    Please make a recommendation for program control and provide sample code if you can. It’s the program control concepts that I think I mostly need help here. I also wish to use the Strip Chart Update Mode so the operator can easily view the entire logging session.
    DAQ Hardware: Not Selected Yet
    LabVIEW Version: 6.1 (Feel free to recommend a v7 solution because I need to soon get it anyway.)
    Operating System: Win 2000
    In summary:
    How do I control a graphing (data log) session for both period and sample time?
    How do I stop the session without having to wait for the period to end?
    How do I automatically interrupt and control a session during alarm conditions?
    Does it make a difference if there is more than one graph (or chart) involved where there are variable sample rates?
    Thanks,
    Dave

    Hello Dave,
    Sounds like you have quite the system to set up here. It doesn�t look like you are doing anything terribly complicated. You should be able to modify different examples for the different parts of your application. Examples are always the best place to start.
    For analog input, the �Cont Acq&Chart (buffered).vi� example is a great place to start. You can set the scan rate (scans/second) and how many different input channels you want to acquire. This example has its own stop button; it should be a simple matter to add a manual start button. To manually set how long the application runs, you could add a 100 ms delay to each iteration of the while loop (recommended anyway to allow processor to multi-task) and add a control that sets the number
    of iterations of the while loop.
    For logging data, a great example is the �Cont Acq to File (binary).vi� example.
    For different sample rate for different input lines, you could use two parallel loops both running the first example mentioned above. The data would not be able to be displayed on the same graph, however.
    If you have more specific questions about any of the different parts of your application, let me know and I�ll b happy to look further into it.
    Have a nice day!
    Robert M
    Applications Engineer
    National Instruments
    Robert Mortensen
    Software Engineer
    National Instruments

  • Return current period based off of current fiscal year and date

    Good Afternoon,
    Is there a way in the webi that I can create a dimension that always reflects the current Fiscal Month based of Fiscal year and date? I have a report that I am trying to show sales for a customer based off the current fiscal month. I would like this report when refreshed to be based off this fiscal month dimension instead of showing each fiscal month or changing it manually. What is the best way to do this?
    I have attached an image that shows current numbers by period (month) and then the YTD Totals. I would like to have my 'Period' column always reflect the current period and the Total column to reflect that months totals based off the period column. So for this period (3), instead of seeing 3 lines for each month I would just see the '3' and the total as $541,310.46, monthly as 412,502.09 and my YTD as 1,080,091.06.
    Any help is always appreciated!
    Thank you,
    Tiffany

    Hi,
    Create a variable
    FlagVar=If([Period]=Max([Period]) In Report;"Show";"Hide")
    And apply block filter of FlagVar=Show
    Are these coming TotalSales  MonthlyGoal YTDSales directly from universe? If they are calculated at report level then you might want to use NoFilter. like =NoFilter([YTDSales])

  • MDX - how to calculate the sales between a certain period and the currentmember with a max date

    Hi all,
    1)I need to calculate the sales between W1 and the currentmember, but the max date should be W20. How can I solve this in MDX?
    MEMBER [Measures].[Q1 act.period to date sales] AS
    Sum(
    [Date invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[1]
    [Date invoice].[Bonus calendar - Week].Currentmember
    *[CurrentSalesPeriod]
    ,[Measures].[Sales amount]
    This is the measure I have, I need to add the max date is W20. 
    2)Also, when I calculate the sales between [Date invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[40] and the currentmember, for example being [Date invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[20],
    he calculated the sales between this period. However, in theory this is not possible because W20 < 40. Is there any way I can put a constraint on this that he only calculates the sales if the currentmember is > the start period?
    Thanks in advance!

    Y, you can put a check on to determine if currentmember > start period.
    Firstly, your period keys are composite of year and period (indicated by the two ampersands in the fully qualified date above). If your period keys were non-composite (eg 201501) it would be a simple matter of 
    IIF([Date invoice].[Bonus calendar - Week].Currentmember.properties("key") > [Date
    invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[1].properties("key"),[Measures].[Sales
    amount],null)
    There are advantages of having two period attributes on the dimension, one with a fully unique
    key and the other with just the period of fy, but that's digressing.
    With your composite keys, you could use a calc like the following for the SUM()
    Sum(
    [Date invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[1]
    [Date invoice].[Bonus calendar - Week].Currentmember
    *[CurrentSalesPeriod]
    ,IIF([Date
    invoice].[Bonus calendar - Week].Currentmember.parent.properties("key") +[Date
    invoice].[Bonus calendar - Week].Currentmember.properties("key") > [Date
    invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[1].parent.properties("key")+[Date
    invoice].[Bonus calendar - Week].[Bonus week of year].&[2015]&[1].properties("key"),[Measures].[Sales
    amount],null))
    Richard

  • Compare current time and date with last modified?

    Compare current time and date with last modified?
    What is the ideal way to compared the last modified from the File class with the current date and time? last modifed value from File class is a long.

    798642 wrote:
    So what do I do to compare whether the current date and time and later than the lastModified ?
    if(file.lastModified() < System.currentTimeMillis()) {
    Like that?That tests whether the last modified time is before "now"--that is if the file was not modified in the future, so, yes.

  • Determining last date if period and year are given

    hi,
    what is the code if  the period and year are given and  to  print the  last date of that particular period and
    year.

    suppos period is perio = '2006002'
    Data sdate type sy-datum.
    Data edate type sy-datum.
    mm = perio+5(2).
    yy   = perio+0(4).
      concatenate yy mm '01' into sdate.
      call function 'SG_PS_GET_LAST_DAY_OF_MONTH'
        exporting
          day_in            = sdate
        importing
          last_day_of_month = edate.
    edate is your lst day of that period month.
    \[removed by moderator\]
    Regards
    Rajesh
    Edited by: Jan Stallkamp on Jul 21, 2008 2:35 PM

  • Comparing to_date(character) and date(Urgent)

    Hi ,
    I'm having data in one file like this.
    iso_sttl_ref
    DA_DEMO_03082005_03012005-S7
    I'm doing the substring of the above field and I'm converting into date by using to_date function and comparing with a date coming as parameter. but i'm getting an error not a valid month.
    Select distinct (case when ns.ptcpt_cd='DEMO' then substr(iso_sttl_ref,9,8)end)sttl_date,
         trunc(ns.start_dt_gmt)start_dt,ns.sttl_pub_cd,ns.ptcpt_cd,iso_sttl_ref
    from nm_settlement ns, nm_sttl_statement nss
    where ns.statement_id = nss.statement_id
    and trunc (nss.inactive_dt_sys) =to_date ('31-DEC-4000', 'DD-MON-YYYY')
    and to_date(to_number(substr(iso_sttl_ref,9,8)),'mm/dd/yyyy')>=TO_date('10/01/2005','MM/DD/YYYY')
    and to_date(to_number(substr(iso_sttl_ref,9,8)),'mm/dd/yyyy')<=TO_date('10/07/2005','MM/DD/YYYY')
    and ns.source_cd = nvl ('ISO', 'ESTIM')
    and ns.sttl_pub_cd <> 'S7'
    and ns.ptcpt_cd='DEMO'
    and ns.sttl_type_cd='DASTTL'
    order by ns.sttl_pub_cd
    Pls help me out from this problem . your help is greatly appreciated.
    Thanks & Regards,
    Ramana.

    Hi ,
    I'm perfectly getting numerical values no funny character also coming.
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Nov 22 13:06:46 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.5.0 - Production
    SQL> Select distinct (case when ns.ptcpt_cd='DEMO' then to_date(substr(iso_sttl_ref,9,8),'mm/dd/yyy
    y')
    2 when ns.ptcpt_cd='DEMORE' then to_date(substr(iso_sttl_ref,15,8),'mm/dd/yyyy')
    3 end)sttl_date,
    4 trunc(ns.start_dt_gmt)start_dt,ns.sttl_pub_cd,ns.ptcpt_cd,substr(iso_sttl_ref,9,8)
    5 from nm_settlement ns, nm_sttl_statement nss
    6 where ns.statement_id = nss.statement_id
    7 and trunc (nss.inactive_dt_sys) =to_date ('31-DEC-4000', 'DD-MON-YYYY')
    8 --and to_date( substr(iso_sttl_ref,9,8),'mmddyyyy')>=to_date('10/01/2005','MM/DD/YYYY')
    9 --and to_date( substr(iso_sttl_ref,9,8),'mmddyyyy')<=to_date('10/07/2005','MM/DD/YYYY')
    10 and trunc (nss.master_rpt_version_dt_sys) >=TO_DATE('10/01/2005','MM/DD/YYYY')
    11 and trunc (nss.master_rpt_version_dt_sys) <=TO_DATE('10/07/2005','MM/DD/YYYY')
    12 and ns.source_cd = nvl ('ISO', 'ESTIM')
    13 and ns.sttl_pub_cd <> 'S7'
    14 and ns.ptcpt_cd='DEMO'
    15 and ns.sttl_type_cd='DASTTL'
    16 order by ns.sttl_pub_cd
    17 /
    STTL_DATE START_DT STTL_P PTCPT_ SUBSTR(I
    02-OCT-05 30-APR-05 R155 DEMO 10022005
    03-OCT-05 01-MAY-05 R155 DEMO 10032005
    04-OCT-05 02-MAY-05 R155 DEMO 10042005
    05-OCT-05 03-MAY-05 R155 DEMO 10052005
    06-OCT-05 04-MAY-05 R155 DEMO 10062005
    07-OCT-05 05-MAY-05 R155 DEMO 10072005
    08-OCT-05 06-MAY-05 R155 DEMO 10082005
    02-OCT-05 19-JUN-05 S105 DEMO 10022005
    03-OCT-05 20-JUN-05 S105 DEMO 10032005
    04-OCT-05 21-JUN-05 S105 DEMO 10042005
    05-OCT-05 22-JUN-05 S105 DEMO 10052005
    STTL_DATE START_DT STTL_P PTCPT_ SUBSTR(I
    06-OCT-05 23-JUN-05 S105 DEMO 10062005
    07-OCT-05 24-JUN-05 S105 DEMO 10072005
    08-OCT-05 25-JUN-05 S105 DEMO 10082005
    02-OCT-05 18-SEP-05 S14 DEMO 10022005
    03-OCT-05 19-SEP-05 S14 DEMO 10032005
    04-OCT-05 20-SEP-05 S14 DEMO 10042005
    05-OCT-05 21-SEP-05 S14 DEMO 10052005
    06-OCT-05 22-SEP-05 S14 DEMO 10062005
    07-OCT-05 23-SEP-05 S14 DEMO 10072005
    08-OCT-05 24-SEP-05 S14 DEMO 10082005
    02-OCT-05 08-AUG-05 S55 DEMO 10022005
    STTL_DATE START_DT STTL_P PTCPT_ SUBSTR(I
    03-OCT-05 09-AUG-05 S55 DEMO 10032005
    04-OCT-05 10-AUG-05 S55 DEMO 10042005
    05-OCT-05 11-AUG-05 S55 DEMO 10052005
    06-OCT-05 12-AUG-05 S55 DEMO 10062005
    07-OCT-05 13-AUG-05 S55 DEMO 10072005
    08-OCT-05 14-AUG-05 S55 DEMO 10082005
    28 rows selected.

  • Oracle DB schema and data comparison tools that compare BLOBs

    I'm looking for schema and data comparison tool like DBDiff or DbTools, but it has to be able to compare BLOB and CLOB fields. I went thru few products available on the market but could not find any that does that.
    Can you please recommend tool that will help me with it.
    Thanks,
    E

    Hi.
    I use Comparenicus for Oracle from Orbium Software. It compares data and schema, CLOBs, BLOBs..
    It can also handle large tables which is very useful for some of my environments.
    Last (but not least) it has a unique feature for copying selective data from one DB to another. You can read about it this post:
    Efficient way to copy business data from Production DB to Test DB
    Enjoy..

  • FM to find the first & last date of month when we enter period and year

    Hi Gurus,
               I required an urgent need.
               I want a function module which gives me first and the last date of the month when I enter the period and the year.
               Reply me as soon as possible.
    Regards,
    Sagar

    Try this coding...  enter    02/2007 into the selection screen field and execute
    report zrich_0001 .
    data: start_date type sy-datum,
          end_date type sy-datum.
    parameters: p_spbup type spbup.
    start-of-selection.
      start_date = p_spbup.
      start_date+6(2) = '01'.
      call function 'LAST_DAY_OF_MONTHS'
           exporting
                day_in            = start_date
           importing
                last_day_of_month = end_date.
      write:/ start_date, end_date.
    Regards,
    Rich Heilman

Maybe you are looking for

  • How do i hide a column in table interface class

    Hi, I need to hide a column in Abap table interface class. When i tried to hide from web item properties it didn't work so i am thinking to hide first column in the table interface class Thanks, mala

  • Dual displays, mac screen broken?

    I have a mac os x 5.8, and I bought it new about a month ago. I have been using a dual monitor, and had no problems. I Turned it off the other night, and in the morning when i tried turning it back on, the screen on the macbook is not visible. It wil

  • Where can I download Java version 1.6.0_26-b03-384 for Mac OSX 10.6.8?

    Where can I download Java version 1.6.0_26-b03-384 for Mac OSX 10.6.8, please? I cannot find it anywhere on the internet and i need it because Firefox is complaing that the plug-in is inactive which is BS. Thanks.

  • My pc doesn't suspend to ram

    Hi, I've assembled a new pc with the latest whistles and bells ( i5 750, p55 motherboard, etc... ). I've installed arch on it and it works very well, except the graphics card ( an ati radeon hd 5770 ) that isn't officially supported by the free nor t

  • HT5312 Forgot security questions answer

    I do not remember security answers, I read article below and I see no link in my profile to reset them, I have a rescue email registered but no link or form which allows me to do so ? Anyone can help ? http://support.apple.com/kb/HT5312?viewlocale=en