Overlapping time intervals of data record 33 with 34 ,46 with 47 etc..

Hi Freinds,
when i was trying to load master data getting the below error message in DTP/Info package.
The time interval ['20070920 '/' 20070702] & (from/to) for the data records 33 and 34 & overlaps in charecterstics 0HRPOSITION &.
Can you please explain me how to correct this error.
Your input 'll be much appreciated and points 'll be assgin.
Regards,
Syam

Hi Gurus,
Please see the below error message which i got when i was trying to load master data attributes to HR infoobject.
Diagnosis:
    The time interval ['20070920'/'20070702'] & (from/to) for the data
    records 33 & and 34 & overlaps in characteristic 0HRPOSITION &.
System Response
Procedure
    If this message appears during a data load, maintain the attribute in
    the PSA maintenance screens. If this message appears in the master data
    maintenance screens, leave the transaction and call it again. This
    allows you to maintain your master data.
Procedure for System Administration
Out 1000 records getting error for 12 records.
I could n't find in infopackage that Ingnore Duplicate Records and that info object is time dependent.
Please put some inputs to solve this issue.
Points 'll awarded for helpul answers.
Thnaks,
Syam

Similar Messages

  • Overlapping Time intervals of data record 33 with 44,46 with 47 so on...

    Hi Friends,
    when i was trying to load the master data attributes to info object getting the bellow error message:
    Diagnosis
        The time interval ['20070920'/'20070702'] & (from/to) for the data
        records 33 & and 34 & overlaps in characteristic 0HRPOSITION &.
    System Response
    Procedure
        If this message appears during a data load, maintain the attribute in
        the PSA maintenance screens. If this message appears in the master data
        maintenance screens, leave the transaction and call it again. This
        allows you to maintain your master data.
    Procedure for System Administration
    Geeting error for 12 records out of 1200.
    Already my info object is time dependent master data.
    to ignore the dulpicate records i couldn't find any option in that info package..
    please let me know the error ...
    points 'll be assigned for helpul answers..
    Regards,
    Syam

    Hi ,
    You can go for PSA maintainance   or
    If u r using DTP then in DTP Ececution screen under Update tab there is a check box
    Handel the duplicate records
    click it and activate the DTP and Execute.
    Thanks
    RK

  • DTP got failes due to overlapping time intervals of data records

    Hi,
    Can any one suggest me how to solve this issue....
    the problem is when iam loding Master Data DTP, the DTP is showing error message that Overlapping time intervals of data records.I mean the start data and end data for these error records are same.
    Eg: For some employees the start date and end data are same.
    Please advice , what can be done...
    Immediate reply is realy appreciated.

    Hi Shaik,
    By checking this check box ...
    You won't get any duplicate records, before loading the data DTP removes the duplicate records and loads into Master data.
    So, you can avoid the duplicate records by checking this.
    Regards,
    Ravi Kanth

  • Time overlapping of data record 3 with 4

    Hi all
    While Running the DTP for loading master data from PSA to INFO OBJECT i am getting this error "Time overlapping of data record 3 with 4 ".
    can anyone help me for resolving this
    thanks
    Preethi.....

    The datefrom/validfrom and dateto/validto of those two records have some overlapping period. Browse the PSA table to see the date from and dateto values.
    Analyze why the extractor is bringing records with overlapping periods. If its a custom datasource make sure the view/functionmodule is generating proper non-overlapping records   using RSA3

  • 'Overlapping Time Intervals' error while loading the Master Data

    Guys,
              Need you help with this. I am trying to load the Master Data (attribute) for InfoObject 0FMD_FRSITM using DTP from DataSource 0FMD_FRSITM_ATTR and am getting an error 'Overlapping Time Intervals'.
    This is happening due to overlapping Valid From/Valid To date's for the same Financial Statement Item (0FMD_FRSITM) with different Editions.
    If I select the option 'Ignore Duplicate Records' while loading the data, it is successful. But not all the records are loads and Editions are missing.
    Below is an example of how the data looks like.
    FRSITM         Valid To                  Valid From                 Edition
    1001             12/31/9999             04/01/2010                2010.1.1
    1001             01/31/2010             03/01/2010                2010.1.2
    1001             12/31/9999             02/01/2010                2010.1.3
    In the above scenario, the Valid To Data for record 1 and record 3 is the same (12/31/9999) and the record 3 is being ignore when I select the option 'Ignore Duplicate Records'.
    And also I see that the Edition is not the Key Field.
    Any suggestions or ideas? Appreciate your help.
    Thanks.

    FRSITM Valid To Valid From Edition
    1001 12/31/9999 04/01/2010 2010.1.1
    1001 01/31/2010 03/01/2010 2010.1.2
    1001 12/31/9999 02/01/2010 2010.1.3
    1. While selecting ignore duplicate, make sure to-date is not part of symantic key.
    2. if system comes across two same records it picks up the latest one.
    3. It shall merge the timelines is overlap is found.
    4. I hope Edition is time dependent attribute
    I believe infoobjet key is FRSITM Valid To.
    In your case because first record has more period and may be the latets record system ignore the earlier one with the same time interval.
    have a look at Q table and you shall be able to figure out for your self.
    Hope it helps
    Vikash

  • Denormalization with overlapping time intervals

    The table keeps statuses for objects, along with times each status started and ended. Like:
    ID   From   To   Status
    ===  ====   ==   ======
    23   T1     T2    S1
    23   T3     T4    S2
    23   T5     T6    S3The statuses may start and end at arbitrary moments of time, and each object may have several statuses at the same time. So the time intervals in the above table may look like this:
    T1------------T2
        T3----------------------T4
             T5----------T6So, for example, from T! to T3 the object has only S1, while from T5 to T2 it has all 3: S1, S2, and S3.
    I need to denormalize the table and show in the same line all statuses the object is having at different time intervals, that is
    ID   From   To   Status1  Status2  Status3
    ===  ====   ==   ======   =======  =======
    23   T1     T3    S1
    23   T3     T5    S1       S2
    23   T5     T2    S1       S2       S3
    23   T2     T6    S2       S3
    23   T6     T4    S2

    SQL> with t as (select trunc(sysdate) dt from dual),
      2       t1 as (select 23 ID, dt From_dt, dt+10 To_dt, 'S1' Status from t union all
      3              select 23 ID, dt+3 From_dt, dt+18 To_dt, 'S2' Status from t union all
      4              select 23 ID, dt+7 From_dt, dt+14 To_dt, 'S3' Status from t)
      5              select * from t1
      6  /
            ID FROM_DT     TO_DT       STATUS
            23 04.08.2007  14.08.2007  S1
            23 07.08.2007  22.08.2007  S2
            23 11.08.2007  18.08.2007  S3
    SQL>
    SQL> with t as (select trunc(sysdate) dt from dual),
      2       t1 as (select 23 ID, dt From_dt, dt+10 To_dt, 'S1' Status from t union all
      3              select 23 ID, dt+3 From_dt, dt+18 To_dt, 'S2' Status from t union all
      4              select 23 ID, dt+7 From_dt, dt+14 To_dt, 'S3' Status from t),
      5       t2 as (select id,from_dt begdt from t1
      6               union all
      7              select id,to_dt from t1),
      8       t3 as  (select t2.*, lead(begdt) over(partition by id order by begdt) enddt from t2)
      9       select t3.*,
    10              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S1') Status1,
    11              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S2') Status2,
    12              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S3') Ststus3
    13               from t3
    14        where enddt is not null
    15        order by 2
    16  /
            ID BEGDT       ENDDT       STATUS1 STATUS2 STSTUS3
            23 04.08.2007  07.08.2007  S1             
            23 07.08.2007  11.08.2007  S1      S2     
            23 11.08.2007  14.08.2007  S1      S2      S3
            23 14.08.2007  18.08.2007          S2      S3
            23 18.08.2007  22.08.2007          S2     
    SQL>PS
    there's a problem in vizualization on the forum.
    all GREATEST() < LEAST()

  • Changing time dependent master data records

    Hello All,
    I have a time dependent master data infoobject that has 39 million entries.
    Now we decided that we no longer need it time dependent.
    Hence we want to maintain constant value ( 01.01.1000 to 31.12.9999) going forward.(as changing the object's time dependency will have huge impact)
    But for the historical data, we want to fix this and maintain only one record per value which will be the last record.
    Can you please provide inputs on how this can be achieved as i tried various combinations of load( load to a copy object taking only last record, changing its valid to to 01.01.1000 and loading back) and its not working.
    e.g the value XXX has following entries currently:
    Object
    Valid To
    Valid From
    XXX
    15.06.2007
    01.01.1000
    XXX
    19.09.2007
    16.06.2007
    XXX
    28.01.2008
    20.09.2007
    XXX
    30.03.2009
    29.01.2008
    XXX
    31.03.2009
    31.03.2009
    XXX
    15.04.2009
    01.04.2009
    XXX
    31.12.9999
    16.04.2009
    we need to get to the below format:
    Object
    Valid To
    Valid From
    XXX
    31.12.9999
    01.01.1000

    Hi Dhanya,
             The approach u did (load to a copy object taking only last record, changing its valid to to 01.01.1000 and loading back) will not work on Master data because it is not a DSO, with the Proper keys in place, to overwrite all the previously existing data records. This approach will only work if the infoobject is not time dependent and in that case the question u posed will not arise at all .
    SOLUTION:
    One thing is Inevitable as Prashanth has prescribed, u have to delete the transaction data first at all the places, where and all it was used.
    Then just delete the entire master data from the info object and just do a FULL DTP load from the underlying datasource putting a FILTER like "VALID_TO = 31.12.9999" so that only the last record of a particular Value will be loaded. (No need to do a full load from the source because even in the source it might had been the same old Values and might not have been revamped.)
             Even for further delta's, it will be safer to maintain this filter at the DTP level if u r not sure of the  constant value maintenance at the source.
    Thanks & Regards
    Sasidhar

  • Time overlapping of data record

    Hi All,
    I am facing the problem Time overlapping of data record while loading Infopackage.
    Error: Record 46 :YGTMARKET : Time overlapping of data record 46 with 47 : '['99991231'/'19000101'] '[to/fr
    whats the remedy?
    Thanks
    sonal

    Hi,
    Please look at /BIC/TYGTMARKET table in SE16.
    Find the record with a key = 47 and notice what values have Date_from and Date_to fields. The interval they determine, overlap with 01.01.1900 - 31.12.9999.
    You need to supply correct date_to & date_from values.
    Assign points if helpful

  • Time overlapping of data record..very urgent

    Hi All,
    while loading time dependent data(texts..0HRPOSITION), i am geeting the following error....
    Processing (data packet): Errors occurred
       Data Package 1 ( 7418 Records ) : Errors occurred
              Update ( 0 new / 0 changed ) : Errors occurred
                   Data records for package 1 selected in PSA - 2 error(s)
                   Record 7415 :0HRPOSITION : Time overlapping of data record 7415 with 7416 : '['20100924'/'20070618'] " .
                   Record 7416 :0HRPOSITION : Time overlapping of data record 7415 with 7416 : '['20100924'/'20070618'] ....
    Could anyone let me know how to rectify this error and reload the IP..I am workning on production system.....its very urgent
    Thanks in advance.
    Manjula

    Hi Manjula
    !)0HRposition infobject and check what is the time previously for that record..
    2)Edit the PSA for the 7415 or 7416  and change the vlaue to the previous record time which u found in the infoobject
    3) i think ur doing a full load.  so better edit the PSA and repload the data from PSA
    Regards
    AK

  • Getting Duplicate data Records error while loading the Master data.

    Hi All,
    We are getting Duplicate data Records error while loading the Profit centre Master data. Master data contains time dependent attributes.
    the load is direct update. So i made it red and tried to reloaded from PSA even though it is throwing same error.
    I checked in PSA. Showing red which records have same Profit centre.
    Could any one give us any suggestions to resolve the issues please.
    Thanks & Regards,
    Raju

    Hi Raju,
            I assume there are no routines written in the update rules and also you ae directly loading the data from R/3 ( not from any ODS). If that is the case then it could be that, the data maintained in R/3 has overlapping time intervals (since  time dependency of attributes is involved). Check your PSA if the same profit center has time intervals which over lap. In that case, you need to get this fixed in R/3. If there are no overlapping time intervals, you can simply increase the error tolerance limit in your info-package and repeat the load.
    Hope this helps you.
    Thanks & Regards,
    Nithin Reddy.

  • Close an opened item out of the Open Time Intervals

    Hello everybody,
    I was told that there is a link between "open time intervals" (that you can parameter with Tcode FMIR) and the "closing operation" using Tcode FMMC.
    Can someone tell me if it is normal to be able to close an opened items even if this item is not in an open time interval ?
    if yes, how can I restrict this closing operation only to open time intervals ?
    In advance, thank you for your answers.
    Best regards,
    Marc Chevilliet

    Hi Eli,
    My problem is that my client is able to close open items (old ones) whereas  there is no open interval for the date of those items. You are telling me that it is normal for them to be able to close it.
    Now my question is : How can I forbid this action ? Because they don't want to be allowed to do an action on an item from closed budget (understandable ).
    Thank you
    "I'm bit surprised by your statement that you have open commitments which are not treated. What kind of commitments are there? Is it EMFs? " -> About that, I think I didn't express myself clearly, that seems to be a misunderstanding.

  • How to avoid 'duplicate data record' error message when loading master data

    Dear Experts
    We have a custom extractor on table CSKS called ZCOSTCENTER_ATTR. The settings of this datasource are the same as the settings of 0COSTCENTER_ATTR. The problem is that when loading to BW it seems that validity (DATEFROM and DATETO) is not taken into account. If there is a cost center with several entries having different validity, I get this duplicate data record error. There is no error when loading 0COSTCENTER_ATTR.
    Enhancing 0COSTCENTER_ATTR to have one datasource instead of two is not an option.
    I know that you can set ignore duplicates in the infopackage, but that is not a nice solution. 0COSTCENTER_ATTR can run without this!
    Is there a trick you know to tell the system that the date fields are also part of the key??
    Thank you for your help
    Peter

    Alessandro - ZCOSTCENTER_ATTR is loading 0COSTCENTER, just like 0COSTCENTER_ATTR.
    Siggi - I don't have the error message described in the note.
    "There are duplicates of the data record 2 & with the key 'NO010000122077 &' for characteristic 0COSTCENTER &."
    In PSA the records are marked red with the same message (MSG no 191).
    As you see the key does not contain the date when the record is valid. How do I add it? How is it working for 0COSTCENTER_ATTR with the same records? Is it done on the R/3 or on the BW side?
    Thanks
    Peter

  • Discrete time range over date range  (using CR X1)

    Post Author: sjr
    CA Forum: Formula
    Can anyone show me how to select data over a discrete time range i.e. 6 p.m. till 11 p.m. per day, over a period of a month ?
    Using the data time parameter gives me data from 6p.m. on startdate right through till 11p.m. on endate.

    Here's a more detailed description...
    Create two formula fields to split the date and time from the data records (ds prefixed):
    dsDate
    dsTime
    Create two formula fields to split the date and time from the parameter fields (pm prefixed):
    pmStartDate
    pmStartTime
    pmStartDate
    pmStartTime
    Use your new formula fields in the record selector. Get to this off the Report menu button (in CR 2008):
    Report | Select Expert... | Record.
    You can pick the formula fields in the Forumula Editor to create something like:
    ({@dsDate} > {@pmStartDate} and
    {@dsDate} < {@pmEndDate}) and
    ({@dsTime} > {@pmStartTime} and
    {@dsTime} < {@pmEndTime)
    Tim

  • SQL Developer Data Modeler - integration with subversion

    I just discovered the release of SQL Developer Data modeler, and found this to be very interesting.
    We are still using Oracle Designer for database design, but we are looking for a replacement (for several reasons).
    My question is quite simple:
    Given that the modeler uses a filebased repository, and also given that we have several developers potentially working on a data-model at the same time, how does Data Modeler integrate with subversion for source control etc.?
    Can the repository itself be under source control, and checked in/out directly from Data Modeler?
    Or will only the output files be candidates for version/source control?
    Let me admit right away that I have not read much of the data modeler docs, and I have also not downloaded/installed it (yet), but does anyone have pointers to docs on this , or general input/knowledge around it.
    On a side note, I must say that it puzzles me that a company like Oracle, that delivers one of the best databases doesn't use its database engine to host the repository, but instead chooses to go for files (I assume xml) "scattered all over the place"....
    Well, I guess they a have a reason for it..
    Anyway:
    Sql Developer Data Modeler and Subversion anyone?
    Jens

    Hi Jens,
    It's early days and the initial implementation is indeed file based. Though I'd say not xml files "all over the place", but in ordered folders. Yes, as a database company it does make sense that we'd have a repository for managing and versioning metadata. However the tool supports Oracle and other databases and many companies use open source version control tools, such as Subversion and so anyone using the Data Modeler today can use it with Subversion regardless of the database they are designing for.
    We do plan to have a repository, but in the 6+ months of the early adopter program found that many of the early adopters were happy to place the files under source code control using Subversion and in so doing also managed the multi-user development.
    Integrated Subversion support is planned for a future release.
    Sue

  • How-To allow records with Overlapping Time from SAP R/3

    Hi guys,
    Made reference to SAP Note 336229.
    Maintained my Transfer Rules of <b>Data Source 0HR_PA_PA_1</b> to <b>Info Source 0HR_PA_PA_1</b> and all is green! Unfortunately, still <b>NO</b> data and error IDOC message is " <i>The data request was a full update. In this case, the corresponding table in the source system does not contain any data</i>."
    "<i>The extractor of the DataSource reads the master data tables of the Employee (0EMPLOYEE) and person (0PERSON) InfoObjects and makes changes to these time-dependent attributes available as headcount changes</i>"...<b>says SAP</b>
    Info Object person (0PERSON) works!!!, however Info Object(0EMPLOYEE) is giving me problem whereby <b>in SAP R/3</b> Data Source (Employee - Education and Training) 0EMPLOYEE_0022_ATTR <u>allows</u> time overlapping of records, <b>BUT BW</b> generates an error " The time interval ['99991231'/'19930104'] & (from/to) for the data records 46 and 47 overlaps in characteristic 0EMPLOYEE "
    For example, lets assume there is Employee X with the following entry in SAP R/3.
    Begin Date||| End Date ||| SubType
    01.09.2003||| 01.09.2004||| Professional Cert.
    01.09.2003||| 01.09.2006||| Degree
    SAP R/3 allows this overlapping of time records however, BW does NOT. How can I tackle this overlapping issue in SAP BW?
    With much appreciation!

    Hi guys,
      Please assist to resolve this.
      I attempted to assigned 0DATETO and 0DATEFROM to my attributes of 0EMPLOYEE, but it gives me the following error
    <b>  Characteristic 0EMPLOYEE: Attribute 0DATETO cannot be used w. time-dependent attribte</b>
    <b>  InfoObject 0DATETO cannot be used as an attribute if attibutes already exist that are time-dependent. Attribute 0ANSALARY is such an attribute. A field in the InfoObject 0DATETO is automatically generated in the master data table.</b>
      Once again, what I want is to be able to allow the Records with HighDate in R/3 into my BW Cubes.
      Please please assist !

Maybe you are looking for

  • Mozilla updated last night and now crashes on update. It does not start in safe mode.

    I run WIndows Vista and have never had a problem with Mozilla before. This happened two nights ago as well. My IT departmnt does not support Mozilla but last time agreed to install a previous version. Problem solved. They will not help again. Is ther

  • LE-TRA Freight Costs on Re-dispacth

    Dear friends,  I'd like to count on you all to figure out how to solve one problem faced here. Well, several customers are closed when the truck lives the plant  and the truck do not drop the good in the customer side. the truck return to the plant a

  • Missing AppleTV in iTunes w Vista

    Hi everyone, My new AppleTV will not appear in my iTunes Devices list. I'm trying to connect to the ATV using a Dell Desktop running Vista Home Premium. The ATV and my computer are connected via a Linksys WRT54G2 router. The ATV connects to the inter

  • Something happened after install security update 2008-006(PPC)

    Hi there, I have just installed the security update 2008-006(ppc) for my old powerbook, G4 1.5Mhz. Now every time when i go to network in the system preferences, i immediately got this message "Your network setting have been changed by another applic

  • Error while upoloading document

    In cProjects 4.0, I have tried to upload the document to a document template. I have followed the following steps 1) I have installed Java Plug in 2) I have trusted the Applet from SAP 3) On uploading the document, I could pickup the file from my PC.