Extraction into Time dependent info object

Dear all,
In r/3 the field is time independent and want to extract the data into time dependent infoobject in bw.
what is the procedure to do it.
Regards,
BPNR.

Hi BPNR,
You have two options:
1. Make the info-object time independent and pull the data from R/3.
2. Hard code the Date to and Date from fields in the infopackage to extreme values say 01/01/1900 to 31/12/9999 and extract the data from R/3.
Hope this helps.

Similar Messages

  • Query on Time Dependent Info object

    Hi ,
    I am trying to create a query out of a time dependent info object.The info object is 0employee and since it is time dependent it has the date from and date to automatically in the infoobject master data. However these fields do not come up as characteristics when a create a query out of this infoobject.
    Can you please let me know why or am I missing something ? I know I can get it if i use it in a cube or DSO but i want to create from this infoobject. Please help.
    Thanks ,
    Regards
    Ashwin G

    Hi
    0employee_attr datasource have start and end date is mapped 1:1. target is 0employee? but when i check at 0employee attribute tab i have seen any start  and end date attributes.
    If you have it in attr u should be able to assign as read from master data.
    Otherwise routine will be
    SELECT STARTDATE from /BI0/MEMPLOYEE where employee = source_fields-employee.
    for start date and
    SELECT ENDDATE from /BI0/MEMPLOYEE where employee = source_fields-employee.
    for enddate
    Reagards,
    Nagaraju.V

  • Error in master data load in time dependent info object

    hi,
    while loading master data(Texts) to time dependent info object i am getting error like      <b>"INFODEP1 : Data record 8 ('00000512 ') : Invalid "to" date '1-2-2004 '</b>     
    can anyone help where exactly is the error and how to remove it.
    Thanks
    Ashish

    hi,
      the date format should be yyyymmdd.
    regards
    pls assign points if helpful.

  • Time Dependent Info Object

    Hi All,
    I have an extractor that extracts data with DATEFROM and DATETO fo rthe time dependent HR employee related data for managers. But when it extracts into BI and loaded to Info Object the DATEFROM is not the same as what is extracted, it is 01/01/1000 instead of record specific.
    Any idea why it is showing like it is?
    Thanks,
    Alex.

    Beekay,
    You are right. But in my case I extract only 200 records with DATEFROM and DATETO as 12/10/2006 - 12/31/9999. So I should expect my extracted 200 records and the system generated 200 records. But I have only 200 records but all the DATEFROM fields are changed with 01/01/1000. My PSA and R3 extractors are having the actual real DATEFROM.
    Do you see where I have this issue?
    Thanks,
    Alex.

  • How to upload data into SAP BW Info Objects using SAP XI

    Hi,
    I need to upload master and hierarchy data into SAP BW Info Objects using SAP XI as EAI.
    Can anyone suggest me the best solution to do it.
    Thanks in Advance,
    Volker.

    Hi! Have you not checked the BW-XI Integration document? It is available on the main page of the SDN section for XI. Almost all the steps for the integration are there...

  • How to make Charc into time dependant

    Hi Gurus,
    i have a Characterstic like A which dont have any attributes but i want to make it time dependant when i right click and select change i don;t find any option...to make it timedependant...
    so i want to know is it possible if yes plz suggest me
    thanks in advance
    harish

    Hi harish
    Can u elaborate more ur question
    what whether matno is changing with time?
    Check these links also
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a634be07211d2acb80000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/13/c3e7379899d06fe10000009b38f8cf/content.htm
    may answer ur question
    regards
    NR

  • Constructing a View into time dependant data

    1. I have a table with data like this:
    PersonID
    DateTime
    Temperature
    Pressure
    2. I want to build a view into this table so that it shows up as follows:
    PersonID    DateTime1            DateTime2             DateTime3         .....
    1                Pressure1              Pressure2                Pressure3        ......
    1                Temperature1        Temperature2          Tempearture3  .....
    2                :
    how would I do this?

    Below query will work above SQL 2005,
    --create table routineCheck(PersonID int, [datetime] datetime, Temperature int, Pressure int)
    --insert into routineCheck values
    --(1,'01/01/2014', 61, 55),
    --(2,'02/01/2014', 60, 52),
    --(1,'01/05/2014', 62, 53),
    --(3,'01/08/2014', 60, 55),
    --(1,'02/07/2014', 63, 54),
    --(2,'01/12/2014', 63, 55)
    declare @cols nvarchar(max)
    declare @stmt nvarchar(max)
    select @cols = isnull(@cols + ', ', '') + '[' + cast(T.[datetime] as varchar)+ ']' from (select distinct [datetime] from routineCheck) as T
    print @cols
    select @stmt = '
    select *
    from (select PersonID, [datetime], Temperature from routineCheck) as T
    pivot
    max(T.temperature)
    for T.[datetime] in (' + @cols + ')
    ) as P '
    select @stmt = @stmt + ' union all
    select *
    from (select PersonID, [datetime], Pressure from routineCheck) as T
    pivot
    max(T.pressure)
    for T.[datetime] in (' + @cols + ')
    ) as P1 order by PersonID'
    exec sp_executesql @stmt = @stmt
    Regards, RSingh

  • Reporting on Time Dependent Master Date Info Provider

    Dear All.
    We have a info object Employee which is time dependent master data containing all the information with time dependency, when i create the query over this info object it give me the option to select the key date and it show the accurate information which is lying according to the key date.
    my requirement is to show all the records in the report which are there in master data but i am not able to show more then one record cause of the key date, can you please let me know how can i show all the records for any given employee id in the query.

    Hello Zeeshan,
    By standard if you create query directly on time dependent info object, it would display the active records as of the report execution (if no key date has been provided). In any case you can only see one record per the info object key, not the history.
    In order to fulfill this requirement, you may need to create infoset on this infoobject and select "date from" and "date to" as part of infoset fields.
    Then create bex query on the infoset and drag the "date from" and "date to" also into "rows" section of the query (apart from infoobject key, time dependent attributes). This will let you see the history of changes to time-dependent attributes of the infoobject.
    Cheers,
    Vasu

  • Which tables are hit when a query runs - time dependent objects performance

    Hello all,
    We are trying to see what are the effects of time dependent master data objects in query. We will have a key date as variable so user can see the data as a particular point.
    I am trying to see what are all the tables hit when a query is executed and how the time dependent info objects affect performance. Basically we are trying to see is - does the query hit the P or Q or Y tables of the infoobject. Is there any tcode or program that I can use to see which tables were hit and how much time the query took to execute.
    Also if the time dependent attribute is in free characteristic does it directly effect the query.
    If you can share some more experience with time dependent master data objects in query and its effects on performance that will be great.
    Thanks all in advance

    Hello Siggi, Thanks for inputs
    That is what I actually did before posting message here, the tables that are hit are /BI0/S...or /BI0/R and /BI0/T....    I never see the tables /BI0/P or /BI0/Q ... tables hit. I have a key date on variable screen at so when i put future or past date the /BI0/SDATE table is hit does it sound about right to you ?
    Is the /S table hit the most because the data is being seen from the SID's that are generated.
    Can you share your thoughts.
    Thanks again,
    Have assigned you points.

  • Urgent::::Data is not loaded for a perticular info object in ods

    Hi All,
    We have loaded data into an ODS( 0PRC_DS01) in development server. It was successfully loaded into it all info objects.Reports were working well.
    When we transported it to production, data loading was taking longggg  time (15000 for 9 hours).So, we have done two things to improve the loading speed.
    1) we have created an index based on the fields in the where clause RCLNT,RLDNR,RYEAR, DOCNR, POPER in JVSO1 table.
    (JVSO1 is an R/3 table from where key data coming to datasource 0EN_JVA_2.)
    2)We have updated the optmizer statistics.
    Now the problem is, data is not loaded to one perticular info object JOINT VENTURE PARTNER in dso. Which was loaded successfully in development.
    Please help us........We will assign points for helpful answers

    Hi Chek in the transfer and update rules whether u mapped the fields with target and also check whether u have routine. and check whether the data is coming for that object from the source.
    Khaja

  • Setting  of Search help(F4) in Info Object on BI Syatem

    Hi Guru's,
    Please find requirement,
    In R/3->
    There are 3 fields displaying upon cliking of F4 search help for a particular field.
    for ex: Display of 3 fileds are material no,description,created date for field material no.
    But on BI only material no is displaying,so through generic extract,I tried to get descriptiopn and created date for IO material no.
    whether these feilds can be displayed automatically upon cliking F4 search help on Material no, or do i need to do any setting on BI system.
    Thanks In advance,
    Sree.

    Hi Sreedhar,
    Please follow below steps:
    1.) T-code RSD1, get into your Material Info-object edit mode
    2.) Get into attributes tab.
    3.) Click on Detail/ Navigation attribute
    4.) Goto fourth column from left " Order For F4 Help".
    5.) Changes the values in this column, this column determines which attr is to be displayed ony our F4 help.
    Please note value "0" indicates that the particular attr will not be dispalyed in F4 help. By default "0" is assigned in this field.
    Let me know if it helps.
    -Amit

  • Replacing DSO with InfoObject for storing time-dependent master data

    Hi Gurus,
    currently I am storing time-dependent contract items in a DSO. The posting items are enriched with this master data as well as some other transaction data into another consolidated DSO, which includes the time-dependency (valid from & valid to) as well for better performance. But this means that we will have a large number of records, because 1 new posting item could end up with few posting items more due to the versions of contract item.
    Since there are many posting items (>50 millions yearly, daily peak 1-2 million) and the complexity with delta management, I am considering whether to use an InfoObject for storing the contract items. The number of contract items are not many, about 300,000 after migration and about 10,000 each month.
    Hence, I would like to ask whether this approach is feasible? Is there a size limit for a master data InfoObject?
    Thanks in advance.
    Regards,
    Meng

    hi,
    The Time dependent MD object will create the same number of records for the contract item (maybe more) as each contract item will have different record for different time frame.
    this can be better explained with example.
    let us say you have 1 contract item with 2 entries one valid from 2007-2008 and the other from 2008 onwards.
    In DSO this will create 2 records, in time dependent MD object it would also create 2 records.
    In the infopackage for the MD you would need to provide the interval (time range) for the MD.
    if you provide it as 2007 till 2999 then two records will be created one with 2007-08 and other valid from 2008-999.
    However as there would be other contract items which would have lower date say 2006 then this contract item would create 3 rows, 1 row for 2006-07 with blank values, 2nd for 2007-08 and 3rd for 2008-999. This way it has more number of records than the DSO.
    In case of MD object you may not be able to delete data as well in future if the object is used in some other place.
    There will be many pros and cons of the approach you are thinking and you would have to weigh them and decide.
    regards,
    Arvind.

  • Reg: No enries in SID table of attribute of a  Master data info object

    Hello SAP Gurus!!!
    I Hope everyone is doing good.
    I found some issues , when i loaded master data into master data info object in sap bi.
    I have an object which is holding master data (master data info object)---ZEMPID(employee id)
    I have attributes for this object are :   Emp name , Emp Phone number
    I loaded master data attributes into ZEMPID. I could see some entries in SID table of ZEMPID char info object  .
    But i am unable to see the entries in SID table of Emp name , which is a attribute of master data info object.
    According to my knowledge whenver we load data into sap bi , automatically sid values will get generated for that characterstic info object.
    so here in this case  Emp name is also a char info object , so whenever we load the data into master data info object , we have to see the entries in SID table of Emp name also  .But i am unable to see the entries in the SID table of Emp name. .
    So what might be the problem ?
    Awaiting for your valuable answers!!!
    Cheers!!

    Hi Rajavamshi,
    You are right whenever we load data in BI, it will create SIDs for info objects.
    But it will create SID in 'S Table' not in X/Y - Table.
    If master data is enabled for Emp name then it will create SID in X/Y table. I think the master data is not enabled for attribute(Emp Name).
    Please check in S Table, the SIDs will be there.
    If it is not the case, activate the attributes info objects and EMPID info object and load the master data and run ACR for EMP ID.
    If it is not working still, then do master data check in RSRV.
    Regards,
    Vignesh.B

  • Increasing the length of Char type Info-object ( impact )?

    Hi,
    We are on BW3.5 version and we have a custom defined Info-object ZP_REPORT(say )whose length is 3 now as all the three digit series will be used up in near future we have a requirement to increase the length of the characteristic.
    This Info-object is used Navigation attribute of 0Material. And also this info-object is used as Navigational characteristic in few Info-cubes.
    Can any one please let me know what would be the impact of increasing the length?
    1)Do I need to delete the master data from this ZP_REPORT?
    2)DO I need to delete the master data from 0MATERIAL?
    3)Will there be any impact on Info-Cubes?
    Thanks in advance.
    Regards
    Ajay

    Hi Ajay,
    It is always big challenge to change the existing info object lengh or type or anything that have gone live already..........
    But if we will be very careful at the time of changing length and transport, we can do it succefully......
    Lets come to your scenario... In my understanding
    i) Your scenario is going to change the info object length that info object is only available for attribute. It is not at all used anywhere in the dimenstion table. So your cube will not be affected.... If problem will come your master data only will be affected.... Verify more than one time your info object is not at all used in any cubes. (Go to infoobject change mode check in where used list)
    ii) Before changing the length in development, data should be available in development cube as well as master data.. Because you can verify it in development itself whether the data will be deleted or not at the time of changing the length and activate the info object.
    iii) At the time of transport transport only the particular info object. Dont sent any other info objects. That might have related with any cube.
    iv) For safety purpose check whether your info cube is having which type of load. Either Full load or Delta. Most of the cubes will be having delta. If it is full, then we dont have more worry on that.
    v) Finally if possible, create one backup cube and back master data and load data from your existing cube to that cube. If the data will be more that 2 GB it is not a simple task to take a backup..... This is only for safty purpose......
    Please let me know your status...............
    Best Regards,
    Vivek

  • WBS Element Time Dependant

    Hi Gurus,
    Can we make WBS Element has Time Dependant and extract the time dependent hierarchy from R/3.
    Thanks in advance.

    Account Assignment Category A is for the Direct Acquisition of Asset through MM. Here consumption posting is A. And stock is plant stock. There is not at all linkage with Project in that case.
    As stated, You need to use PS account assignment category & Cost Element cat. 90  for budget availability control
    Below Note will be helpful to you.
    Note 202053 - Statistical cost elements f.balance sheet accounts
    Note 75980 - Creat.cst elem: KS036 "G/L acc. & is a bal.sh.accnt"
    With Regards
    Nitin P.

Maybe you are looking for

  • How to mention index in select query?

    Hi All,    If I am using fields of two diffrent secondary index in a single select query on a table how I can mention that data should be picked according to first index used in the query? Regards Deepak

  • Nokia C3-01

    I just recently purchased a Nokia C3-01 and I somewhat cannot understand why the WLAN indicator above the screen disappears.  I can successfully connect to our WLAN at home and after a few minutes of browsing, the indicator would just disappear and a

  • WhileCopying from an existing document to change parameter value settings

    Hello, is there any option in sap while creating a purhase requisition by copying from an existing Prequisition and change the value?.

  • Loss of Mouse Scroll Wheel Function

    I took a leap and a leap of faith upgrading from Firefox 3.something to 11.0. I'm working through the little annoying differences in the user interface, but I'm having a problem with scrolling. I can't put my finger on any particular web site or page

  • Vista Home installer disc not found after partitioning

    I don't get an error message but the "installer disc could not be found" message comes up every time I click on Start Installation in Boot Camp and the disk ejects. I repartitioned and am up to date on 10.5.1. I tried setting the partition from 32 to