Adding asset class dependent master data

Hi Guru's
For making end users life easier I would like to add the insurance type and series (=/= Index series for replacement values on depr area data) on the asset class.
In the screen layout of the asset I already set the maintenance level on asset class, but I can not find the correct transaction to customize add the insurance type and series to the right asset class.
The transaction "ANK1 - Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment" would work if I would have multiple chart of depr assigned to an asset class, but I have only one COD, so this is not working.
Can anybodt help me?
Thanks

I looked, but thought that Tr. AO41 - Modify asset classes = Tr OAOA - Change asset classes which is not the case .... :s
Thanks!

Similar Messages

  • Reporting Need on Time-Dependent Master Data

    Hi Gurus, I have asked this question earlier as well but I did not got satisfactory answer so I thought I should open another thread.
    I have this time-dependent Master data infoobject. I see that from the 2 extra fields are added DATETO and DATEFROM. I see in the transfer structure that theyare mapped to ENDDA and BEGDA from an R/3 table.
    At the reporting level, the InfoProvider doesn't show these 2 fields. I wanted to see how I can make them show up in the InfoProvider so that I can create report using them. Please help me out on this one. Please let me know if I need to clarify this more.
    Thnx.

    Hi Bigtoja,
        Immediately I can suggest 2 options ...
    1. Have these two fields as attributes of the info object ... this will make them appear on the info provider.
    2. Have an infoset built on it which will act as an info provider.
      Adn as far as your question goes ... What I am trying to figure out is ... does making an info object as an info provider exposes only the P table ... since P table will not have Date To and Date From? I will have to research as well ...
    Best regards,
    Kazmi

  • Activate time dependent master data

    Hello,
    we're experiencing problems in activating time dependent master data.
    We're using 0UCINSTALLA infoobject, in the P table all records have objvers = A, but in the Q table there are only a few A records, the most of them have objvers = M and changed = I.
    So, how can we activate those records?
    Thanks,
    Tudor

    hi David,
      I am having the same problem activating the 0mat_plant...
    It is says that the object status is inactive & try to activate it...
    The steps I did was....
    Hi All,
    I am adding a navigational attribute to 0mat_plant...
    & after that when I am activating 0mat_plant, it throws an error as follows:
    *Diagnosis:*Errors arose when activating InfoObject 0MAT_PLANT. An active version already existed before the activation.
    _System Response:_InfoObject 0MAT_PLANT could not be reset to the old active version. Since the generated objects no longer correspond to the old active version, they were reset to inactive.
    *Procedure:*The old active version of InfoObject 0MAT_PLANT can no longer be used. Remove the cause of the activation error and activate InfoObject 0MAT_PLANT anew.
    Pls help me with this issue ASAP...
    Thanks

  • Maintaining attribut time dependent master data

    Hi all,
    I have a question regarding normal system behaviour while maintaining BW Attributs with dependent master data. For example, I have created an infoobject like this:
    - cod 40029, class 10 valid from 01.01.2008 until 31.12.2008
    - cod 40029, class 10 valid from 01.01.2009 until 31.12.9999
    But afterwards when I try to maintain master data and change the 2nd row (valid until the end of 2010) the system changes the requested row but also creates an extra line with same data valid until 9999
    - cod 40029, class 10 valid from 01.01.2008 until 31.12.2008
    - cod 40029, class 10 valid from 01.01.2009 until 31.12.2010
    - cod 40029, class 10 valid from 01.01.2011 until 31.12.9999 (extra line)
    Is this the standard behaviour? the fact is that with this behaviour the user allways needs to "delete" the fields cod 40029 and classe 10 to make the row "unuseful".
    Regards,
    Pedro
    Edited by: Pedro Godinho on Jun 25, 2009 1:15 PM

    Hi Pedro,
    Yes this is the standard behaviour.
    I am not sure where you are using this and why you need to make it unuseful.
    If you are using it in BPS or IP. Create one more attrbute to this master data object, this would flag the usefulness of the timeslice.
    You would then be able to filtrer to only useful timeslices in your planning/reporting.
    Dont forget to make the flag attribute as navigaitonal attribute.This will allow selection for the flag in the report or filters in IP or BPS.
    Hope this helps,
    Best regards,
    Sunmit.

  • Enhancing a temi dependent master data datasource

    Hi Gurus,
    I need to enhance the 0PERSON_ATTR thats time dependent master data for the field division thats also i want to make it as time dependent.
    Now what things i need to take care while enhancing this ?

    Enhance the Extract structure for '0PERSON_ATTR' to add '0DIVISION'
    In User Exit, write code to populate the 0DIVISION filed from the corresopnding infotype.
    Following is sample code (we added Home Phone and Personal Cell) 
    Data Source '0PERSON_ATTR'  Home Phone and Personal Cell            *
    DATA: i_HRMS_BW_IO_PERSON LIKE HRMS_BW_IO_PERSON.
    CASE i_datasource.
      WHEN '0PERSON_ATTR'.
        LOOP AT i_t_data INTO i_HRMS_BW_IO_PERSON.
          refresh: T_P0006.
          clear  : T_P0006.
          I_TABIX = SY-TABIX.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              PERNR           = i_HRMS_BW_IO_PERSON-RFPNR
              INFTY           = '0006'
              BEGDA           = i_HRMS_BW_IO_PERSON-BEGDA
              ENDDA           = i_HRMS_BW_IO_PERSON-ENDDA
            IMPORTING
              SUBRC           = W_SUBRC
            TABLES
              INFTY_TAB       = T_P0006
            EXCEPTIONS
              INFTY_NOT_FOUND = 1
              OTHERS          = 2.
          IF SY-SUBRC = 0.
            DESCRIBE TABLE T_P0006 LINES W_LINES.
            IF W_LINES > 1.
              SORT T_P0006 BY ENDDA BEGDA DESCENDING.
            ENDIF.
            READ TABLE T_P0006 with key subty = '1' INTO L_T_P0006.
            IF SY-SUBRC = 0.
              CLEAR i_HRMS_BW_IO_PERSON-ZPERS_CELL.
              CLEAR i_HRMS_BW_IO_PERSON-ZHOME_PHONE.
              DO 6 TIMES
                 VARYING com_grp-comtype FROM L_T_P0006-COM01 NEXT
                                                          L_T_P0006-COM02
                 VARYING com_grp-comnum FROM L_T_P0006-NUM01 NEXT
                                                          L_T_P0006-NUM02.
                CASE com_grp-comtype.
                  WHEN SPACE.
                   do nothing.
                  WHEN 'HOME'.
                    i_HRMS_BW_IO_PERSON-ZHOME_PHONE = com_grp-comnum.
                    exit.
                endcase.
              ENDDO.
              DO 6 TIMES
                 VARYING com_grp-comtype FROM L_T_P0006-COM01 NEXT
                                                          L_T_P0006-COM02
                 VARYING com_grp-comnum FROM L_T_P0006-NUM01 NEXT
                                                          L_T_P0006-NUM02.
                CASE com_grp-comtype.
                  WHEN SPACE.
                   do nothing.
                  WHEN 'PCEL'.
                    i_HRMS_BW_IO_PERSON-ZPERS_CELL = com_grp-comnum.
                    exit.
                endcase.
              enddo.
              MODIFY i_t_data FROM i_HRMS_BW_IO_PERSON INDEX i_tabix.
            endif.
          endif.
        ENDLOOP.
    ENDCASE.
    Then in '0PERSON' infoobject 'Attributes" tab add '0DIVISION' as attribute and make sure 'Time-Dependent' check box 'ON'.
    Maintain mapping in the transformation.
    Hope this helps

  • Time-dependent master data in the cube and query

    Hello,
    I have a time-dep. masterdata infoobject with two time-dep attributes (one of them is KF). If i add this infoobject into the cube, what time period SID will be considered during the load? I assume it only matters during load, if i add the KF to the query it gets its value based on the SID in the cube.. right?
    Thanks,
    vamsi.

    If its Time Dependent Master Data object when you run your Master Data if that time any changes to the Master Data that value will be overwrite to the old value you will get the new value. When you run the Query execution the Infocube Master Data infoobject will having the SID that time it will to there it will be displayed at that moved what is the value you have in the Master Data table.
    This is what my experience.
    Thanks,
    Rajendra.A

  • Data not uploading in Time dependent Master data Infoobject

    Hello All,
    I have a master data infoobject for HR entity and have to load data from PSA to that info object.
    The HR entity infoobject already have sone data like below:
    HR Entity
    Version
    Date from
    Date To
    x
    A
    01.07.2013
    31.12.9999
    x
    A
    19.04.2013
    30.06.2013
    x
    A
    01.09.2012
    18.04.2013
    x
    A
    01.01.2012
    31.08.2012
    x
    A
    01.01.1000
    31.12.2011
    Now the data in PSA is as follows:
    HR Entity
    Start Date
    End Date
    X
    01.01.2012
    18.12.2013
    Once I loaded this data to the infoobject, i can not see this value which is the latest value of this HR entity.
    Can somebody please explain how the data gets loaded in the time dependent master data infoobject and why this entry is not getting loaded in the info object.
    Regards
    RK

    Hi,
    did you activate master data after your load?
    You can check also version 'M' records and see if your record is there.
    The load went green?
    The problem is, that your entry overlaps all exisitng time intervals, which can't be deleted or merged as there may be dependent transactional data. You have first to delete the transactional data for this entity.
    Then you can delete the time-dependent data and reoload it from your PSA.
    BW will build then correct time intervals.
    The easiest is to change the time interval in PSA, see example below:
    At the moment the time interval is not accepted. But you can add time intervalls before 31.12.2011 and after 01.07.2013, Then system will create remaiing time intervals, e.g. your new record is:
    HR Entity
    Start Date
    End Date
    X
    01.08.2013
    18.12.2013
    Result will be:
    HR Entity
    Version
    Date from
    Date To
    x
    A
    19.12.2013
    31.12.9999
    x
    A
    01.08.2013
    18.12.2013
    x
    A
    01.07.2013
    31.07.2013
    Regards, Jürgen

  • Error Message while adding Item in Item Master Data- [Microsoft][SQL Server Native Client 10.0][SQL Server]Conversion failed when converting the nvarchar value 's008 01' to data type int. (CINF)

    Dear Experts
    I am getting the following error message while adding item in Item Master data. I have modified the following SBO_SP_transactionNotification in SQL server after that could not able to add the item
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(20),                      -- SBO Object Type
    @transaction_type nchar(1),               -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    -- Return values
    declare @error  int                       -- Result (0 for no error)
    declare @error_message nvarchar (200)           -- Error string to be displayed
    select @error = 0
    select @error_message = N'Ok'
    --    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    -- Select the return values
    select @error, @error_message
    end

    Hi Rathna,
    Just put the SP like this, without the -- before the IF. A -- marks the line as a command therefore you need to uncomment and it will work.
    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    Hope it helps

  • What is time dependent master data?

    Can anybody explain me in detail with an example for time dependent master data?
    Thanks in advance.
    Sharat.

    hi,
    the master data value changes with respect to some time characteristics.
    say- Salesregion is a char that have sales rep as master data(attribute)
    saleregion  date from  date to              sales rep
    sr001        20/10/2007  20/12/2007          Ram
    sr002        21/12/2007  12/05/2008          Ram
    in the above example Ram is in two sales region in different dates.
    these type of attributes were time dependent.
    usually time period will be defined in the data range of 01/01/1000 to 31/12/9999.
    Ramesh

  • Dependent master data for the Transaction data

    Hi,
    Wish u Happy New Year to All.
    I use to schedule daily some 250 master data.Then i will run transaction data.Because of this the system performance is effecting.I want to know, where i can find dependent master data objects for the particular transaction data?
    Thanks in Advance
    Regards,
    Siv

    Dear Siva
    In the Info Source Over View for the particular data target can shown dependent master data objects.
    Regards
    Saravanan.ar

  • Problems with language dependent master data

    Hi,
    I created a InfoObject with language dependent master data and I am trying to upload data from a flat file.
    My flat file has a 2 digit language code (EN,DE,FR,JP,ES) and when uploading the data it seems that SAP BW is only using the first digit which leads to the situation that EN and ES get treated as duplicate records.
    Any help would be appreciated
    thanks
    Ingo Hilgefort

    Hi,
    ES is the Language for spanish..But the Flat file should have to represent 'S' for Spanish.
    Check in Table T002 for the symbols which represent Languages and that to be used in flat file.

  • Modify code to pull the time dependent master data

    I fully under stand the suggestion below for the requirement to add the time dependent attribute comp code
    thanks fo rthe help but please tell me if there is a way i can modify the abap code and make the user enter the value for the date on which he want to pull th emaster data for company code or keydate to and from and pull the master data, so how will i proceede should i create the variable on 0doc_date and how to modify the code. please help . i have opened another question with same desc as above to assign points
    thanks
    soniya
    The literal within <..> is supposed to be replaced by the actual field name (as I didn't know the fields). In this case, I am changing your code for costcenter/company-code.
    data : wa like /bi0/qcostcenter.
    select single * from /bi0/qcostcenter into wa
    where costcenter = comm_structure-costcenter
    and objvers = 'A'
    and datefrom le comm_structure-<keydatefield>
    and dateto ge comm_structure-<keydatefield>.
    if sy-subrc = 0.
    result = wa-comp_code.
    endif.
    abort = 0.
    You can use this code for update rule of company_code. You have to replace '<keydatefield>' with a field name that contains the date on which the company is to be derived. If there is a date in your comm_structure (eg aedat) which you can use, you can specify that field in place of this literal (instead of comm_structure-<keydatefld> use comm_structure-aedat). If you have no such field, and you wish to use current date for getting the company code from time-dependent master data, you can use sy-datum (ie replace comm_strucutre-<keydatefld> with sy-datum).
    And it should work.
    The 'master data attribute' option is one of the options when you create update rule (one of the radio button options).

    That the code is doing anyway.
    If your txn data in the cube doesn't have a date, how does it know it is Feb data, or, it is March data?
    If it has a date or month field, you should modify and use this code to update the company based on that date instead of system date.
    Other than that minor variation, it is already doing what you look for.

  • Time Dependency Master Data Load

    Hi:
    This is my first time to work on time dependency master data. I need help!
    I first deleted master data and cleaned up the PSA for material sales.
    Then I have turned on the feature of time dependent on the info object for material sales. Save it and activated the object.
    Then i have problems by loading the master sales attribute data in PSA. The error is: on every record of material, it has "invalid 'to' date '00/00/0000'" and "invalid 'from' data '00/00/0000'".
    Is every process i did wrong? What is the process to work on time dependent master data? and loading the data?
    Thank you!!

    Hi,
    After turning on the time dependence...you get an extra field in the key of the master data table Q table date to and a new field date from as a new field.
    These two fields needs to be mapped to date to and date from R/3 source as well.
    If there is no source field for these two then you need to make sure to get the values for these fields.
    Just check if you are getting any field like that from R/3...right now i think you have left the mappings for these fields as blank.
    Thanks
    Ajeet

  • 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

  • Loading time-dependent master data using update rules/transformations

    Hi
    I am trying to load time-dependent master data to an infoobject. It seems that I get an error message on duplicate records if I use a transformation or update rule. Does this only work with direct update ?

    In the DTP you have the option to ignore duplicate records....
    Just select that and then load data...

Maybe you are looking for

  • Report for Asset number and its Purahcse order number

    Hello Friends, Please give me details of report for Asset number and its Purchase order number . Regards Nilesh Vakil

  • Trying to upload raw cr2 files and Lightroom says "file is not recognized"

    Backstory: I photographed a VERY important commercial shoot today and I went to upload the photos to Lightroom. The first 30 images uploaded just fine, but the rest won't. Lightroom says the file is not recognized by the raw format support in Lightro

  • BI MOBILE Application pin

    For SAP BI MOBILE 1. We can force the user to setup the 8 DIGIT PIN. However - is there a way to not allow the user to change the "require application password  - after 5 minute" setting? Currently the user has to setup an application password but he

  • Cann't view model in the Publisher

    The Architect and Publisher (10.1.3.271679) are installed on same machine with XP SP2 and Oracle XE. Everything seems fine in the Publisher: able to login, find objects, and see models listed in the Explorer. However, when trying to view the model by

  • Upload using iPhone Safari browser

    Can the iPhone's Safari browser upload files? I'd like to use my company's web-based CMS tool for adding content, but the 'file browse' button is inactive (grayed out). Can't attach files in Gmail either... I was hoping this might be a 'feature' adde