G/L Account Time-dependency features

Hi Experts,
We are facing a major problem regrading to some atributes of GL Accounts in project in an Insurance company.
First of all, we need the account Texts to be time-dependent because they do change throughout time, so the users can keep track of change and display the correct information in reports depending on time of evaluation.
The second point is related to the relationship of G/L account and Alternative account. This kind of thing also changes throughout time and need to be tracked because the Balance Sheet will be generated based on Alternative Chart of Accounts that will be reflected based on GL Accounts postings.
Has anyone ever faced a situation like this? What would be the implications/viability of using ABAP developments to make these things operational?
Any ideas?
Thanks in advance.
Fabio

Hi Fabio,
I believe this is not possible, As GL accounts do not have time -dependent fields.
You may achieve the same with a work-around like this
Create two accounts CLAIMS and REJECTED CLAIMS
If you need the balance in CLAIMS to be shown under REJECTED CLAIMS from 01.09.2009
- make a JV transfer posting from CLAIMS to REJECTED CLAIMS on 01.09.2009  instead of changing the account name,
Now if you execute the Balance Sheet as on 30.08.09 (key date <01.09.09) you
would see the balance under CLAIMS
but if you executed the balance sheet with key date >01.09.09 you would see the balance under REJECTED CLAIMS
Similarly you may  create two accounts (B1 and B2) and assign them to two different alternative accounts (A1 and A2 respectively) and make a transfer posting from B1 to B2 when you need to change this relation.
Hope it helps
Regards
Sach!n
Edited by: Sachin Bhutani on Sep 18, 2009 2:36 AM

Similar Messages

  • Time dependency

    Hi,
      Assuming i have entered data for entity1 from 2009.jan till 2009.dec and everything is aggregated up to parent1 and parent2, etc. If entity1 is sold in 2009.june and is no longer part of the group, what can i do such that aggregation is done from 2009.jan till 2009.june, but NOT from 2009.july till 2009.dec?
    in bw, i understand there's a feature called time dependency in master data. but what about bpc? should i just create a script logic, and run it in batch to make all the entries from 2009.july - 2009.dec to zero?
      any idea on this?
    cheers

    Hey Petar
    Do you think, the time dependency feature will be available in SAP BPC NW 7.0 sometime soon?
    I am working at a client implementing SAP BPC NW 7.0 and they have a unique requirement which relates to the same thing that is being discussed here.
    The client keeps moving their branches (Profit Centers) from one company (Company Code) to another, and wants to retain the view before and after the profit centers were moved.
    For example,
    In 2008 my entity hierarchy looked like
    CC1
    -- PC1
    -- PC2
    CC2
    -- PC3
    -- PC4
    And in 2009, PC2 moved under CC2, and the hierarchy looked like
    CC1
    -- PC1
    CC2
    -- PC2
    -- PC3
    -- PC4
    So, now the requirement is if they want to look at 2008 numbers they would want to see the hierarchy roll up of 2008 and if they look at 2009 numbers, they would like to look at the new hierarchy.
    Now, the point to be noted here is there are 100's of such transfers happening each year. So I am not sure what would be the best way to implement this.
    Please let me know.
    Thanks,
    Ameya Kulkarni

  • HFM Equity Accounting Rules - Time dependant

    Has anyone needed to amend HFM Rules for Equity Accounting, we are in the process of doing so, we a new app in which we will be Equity Accounting from Proportional. Elim Rule for JV's are time dependant to run after 2014. However after we have included the Sub Eliminate section for the new rule it does not run after 2014. I attach the section of the rule below: Any help would be grateful.
    Sub EliminateNew_EQ(sAccount, sICP, sCustom3)
    If POV_YEAR > "2014" Then
    ' Rules have been chanegd for Equity Accounting from 2014 onwards - plug accounts no longer populated and JV accounts now holding 100% of balances.
    sParent = HS.Parent.Member()
    sPlugAcct = HS.Account.PlugAcct(sAccount)
    IsEliminated = False
    'Checks if eliminations should be performed
    'If ICP member is not [ICP None]
    If (StrComp(sICP, "[ICP None]", vbTextCompare) <> 0) Then
      'If account is an ICP account
      If HS.Account.IsICP(sAccount) Then
       'If the account has a plug account
       If sPlugAcct <> "" Then
        'If the ICP partner is a descendant of the current parent (we've reached the first common parent)
        If HS.Parent.IsDescendant(sParent, sICP) Then
         IsEliminated = True
        End If
       End If
      End If
    End If
    'Performs eliminations if required
    If IsEliminated Then
      PConEntity = HS.Node.PCon("")
      ' Rules have been chanegd for Equity Accounting from 2014 onwards - plug accounts no longer populated and JV accounts now holding 100% of balances.
      'If one of these accounts
      Select Case sAccount
      Case "310401", "416701", "323301", "130101", "237011", "237021", "237001", "237043", "237045", "C100241", "C100225", "C100227"
             'Eliminate input account balance on C3#Input, C3#JV or C3#Sub members
       Call HS.Con("V#[Elimination]", PConEntity * -1, "")
       'If entity is a sub and ICP is JV
       If sCustom3 = "Sub" And Trim(HS.Entity.UD1(sICP)) = "JV" Then
        sParentICP = GetICPParent(sParent,sICP)
        PConICP = HS.Node.PCon("E#" & sParentICP & "." & sICP)
        If sAccount = "310401" Then
         'Post 1-PConICP normally(50%) to JV account and ConICP (normally 50%) to inter company plug account
         Call HS.Con("V#[Elimination].A#301102_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "416701" Then
         Call HS.Con("V#[Elimination].A#416002_JV.C3#Input",1,"")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "323301" Then
         Call HS.Con("V#[Elimination].A#323002_JV.C3#Input",1,"")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        'See subroutine description for details
        ElseIf sAccount = "130101" Then
         dData = HS.GetCell("A#130101.I#" & sICP & C1C2C3C4Top)
         If dData < 0 Then
          Call HS.Con("V#[Elimination].A#200202_JV.C1#Less1.C3#Input",1, "")
         Else
          Call HS.Con("V#[Elimination].A#119002_JV.C1#Less1.C3#Input",1, "")
         End If
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "237011" Or sAccount = "237021" Then
         Call HS.Con("V#[Elimination].A#236005_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "237001" Then
         Call HS.Con("V#[Elimination].A#237001_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "237043" Then
         Call HS.Con("V#[Elimination].A#237044_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "237045" Then
         Call HS.Con("V#[Elimination].A#237046_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "C100241" Then
         Call HS.Con("V#[Elimination].A#C100302_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "C100225" Then
         Call HS.Con("V#[Elimination].A#C100225_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        ElseIf sAccount = "C100227" Then
         Call HS.Con("V#[Elimination].A#C100227_JV.C3#Input",1, "")
         'Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
    'Commented out because code never runs DC 17/06/10
    '    ElseIf sAccount = "C100311" Then
    '     Call HS.Con("V#[Elimination].A#C100315_JV.C3#Input", 1 - PConICP, "")
    '     Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConICP, "")
        End If
       'If entity is a sub and ICP is a sub or entity is a JV
       ElseIf sCustom3 = "Sub" And Trim(HS.Entity.UD1(sICP)) <> "JV" _
       Or sCustom3 = "JV" Then
        'Post 100% of source value to IC plug account
        Call HS.Con("V#[Elimination].A#" & sPlugAcct & ".C3#Input", PConEntity, "")
       End If
      'Case other ICP accounts
      Case Else
    'Call WriteToFile("Posting to source account")
       Call HS.Con("V#[Elimination]", PConEntity * -1, "")
       Call HS.Con("V#[Elimination].A#" & sPlugAcct, PConEntity, "")
      End Select
    End If

    This has now been resolved after we put the Time dependancy with the Call Routines

  • Delivery cost in scheduling agreement having time dependent condition

    Hi experts,
    We have one peculiar requirement.
    We have palnt at indonesia.  We are doing import there from india.
    Our requirement is as follows.
    1. We should use scheduling agreement with time dependent conditions.  Because we want to track the price changes and sometimes we want to retro pricing effect and revaluate it.
    2. We want to add importers vat and import tax.
    3. But those tax amount should not get added into inventory
    4. During MIRO it should get accounted to vendor.
    We could succeed this by removing "Time dependend condition" check in document type config.
    But our client is definitely required the point no 1.
    But when we activate time dependent condition check, during MIRO those conditions are not appearing.  But if you remove that check, it is appearing in MIRO accounting.
    Can any one suggest suitable solution?
    Or SAP MIRO will not permit this scenario?
    regards,
    K.Sundaresan.

    delivery cost will not work if u remove the tick Time dependend condition for SA
    SAP MIRO will not permit this scenario
    so u will have to decide what is more important to u and act accordingly
    Solution will be u ask client what is mor imp for there company
    as SAP will not support MIRO for deliver for time dependent condition
    I had a talk with SAP on this and they have told that
    SAP will not support MIRO for deliver for time dependent condition
    AS in Case of imports in india we need to do MIRO before GR
    hope this hel;sp

  • Schudling agreement with time dependent excise base value taking wrongly.

    Sub: in migo excise base amount is not changing as per the scheduling agreement type LP ( time dependent ).
    I have created the scheduling agreement type LP with time dependent.
    I have maintained the price value in two validated period i.e
    01/07/08 to 31/07/08 price is 100 rs.
    01/08/08 to 31/08/08 price is 200 rs.
    I have maintained the delivery schedule on
    15/07/08 of quantity  1 nos.
    When I am doing the goods receipts for the scheduling agreement on
    Document date I am giving  15/07/08.
    Posting date I am giving 15/07/08.
    I am giving the posting date in the excise  also 15/07/08.
    After item ok.
    When I will the excise base value it is taking 200 and also excise duty is also calculating on 200.
    When I will post the document
    The stock account and GR/IR account is taking 100 only
    And excise duty is posting  for rs: 200 only
    Why the excise base value is not changing as per the validity period.
    What setting I have to do the change the excise base value  as per  the  validity date maintained in the time dependent .
    regards
    jrp

    Hi
    I was wondering in J1ID there is validity from date only no to date, Pls tell where you have maintained excise base amount based on from to period.
    In J1ID if you maintain any new accesable value for the later date it will consider that.
    Rgds
    Srini

  • Time dependent Attibute in my Infoobject ?

    Hi All,
    Scenario :I have one Char Infoobject with time dependent attribute in that . Data is loaded as Direct update with full load
    We are this to maintain History
    Question :
    1.When I go to maintain masterdata I get two attribute add along with my attribute as Valid From and Valid To, is it system genrated ?
    2.When I go to transfer rule ,we have maped this two genrated attribute as well - so In our system To date is constant as 31/12/9999 and Valid From is assign to 0calday.
    But when I see the data I get the entries for one particular material as multiple - and more ever it automatticaly adjust Valid To date = current calday -1 , the big problem for me I am not able to get How system is doing this adjustment for Valid From and Vaild To dates for previous entries . -
    Is this feature of Time depeneded attribute ???
    Note : When I see the infopakage I cant find start routine But I can find one date field from source made available only in Selection tab and which is assign to getyesterday (0)
    But which is not maped in transfer rule, I was thinking that it might be used to map to Valid to Date  through ABAP.. But I am not able to find code for the same ....
    Please advice and Give more info on Time Dependend Attibute .?

    1.When I go to maintain masterdata I get two attribute add along with my attribute as Valid From and Valid To, is it system genrated ?
    Is this referring an additional record generated by system with diff valid to and from dates ?
    Yes, system does that for Time dep m data
    Ex : Profit Center - 9999 -12/31/2006- 01/01/1000 - > System Generated  Record
    Profit Center - 9999 -12/31/9999- 01/01/2007 - > One in the source system created by user.
    That is how it works.
    But what is your concern because of this sys gen records ?
    You will only find the user created profit center in the report.

  • Functional Location Field In AS02 (Time dependent)

    Hi All,
    I need to know if it is possible to add or show functional location in time-dependent tab(tcode AS02), because i found TPLNR(functional location) in table ANLZ. Fyi, ANLZ is the source table of time-dependent tab in tcode AS02.
    Really appreciate your help
    Thanks

    Dear:
              First see  layout assigned to your class through OAOA and then go to the path SPRO....Financial Accounting...Asset Accounting...Master Data....Screen Layouts...Define screen layout for master data...select layout...logical field group...select time dependent data...field group rules.. There you will find 89 (functional area)... Make its status optional or mandatory whatever you require.
    This will show the field in AS01 for data input.
    Regards

  • Time Dependent Hierarchy for Cost Center

    I have searched the entire SDN for this so any help would be really appreciated.
    I am a BI consultant and I am trying to look around for the exact steps on how to make a Cost Center Hierarchy "Time Dependent" in ECC system.
    I am aware of changes to do in BI system but there is no way that I can know what needs to be done in ECC side since we dont have any FI Consultant to help us. All the posts show that there is something to be done on ECC but it seems even no body is sure on what to do.  I think the hierarchy is created in KSH1.
    Please provide any documentation or exact steps on how to do it. I will assign full points to the correct and precise answer.
    Regds
    Girish

    Hi,
    Creation of cost centre:
    Path: Accounting  Controlling  Cost centre accounting  Master data  Cost centre  Individual processing  Create (T. Code KS01)
    Cost centre: Dept A
    Valid from: 01.04.2009 to 31.12.9999
    Enter
    Name: Dept A
    Depart Cost centre: Department A
    Person responsible: A
    Cost centre category: 1 (Production)
    Hierarchy area: XXXXXX
    Business area: XXXX
    Currency: INR
    Save (or) (Ctrl + s)
    Ignore the warning message, press enter
    Cost centre: Dept B
    Valid from: 01.04.2009 to 31.12.9999
    Reference cost centre: Dept A
    Controlling area: XXXX
    Enter
    Name: Department B
    Description: Cost centre department B
    Basic data
    Person responsible: B
    Save (or) (ctrl + s)
    Ignore the warning message, press enter
    Cost centre: Dept C
    Valid from: 01.04.2006 to 31.12.9999
    Reference cost centre: Dept A
    Controlling area: XXXX
    Enter
    Name: Department C
    Description: Cost centre department C
    Basic data
    Person responsible: C
    Save (or) (ctrl +s)
    Ignore the warning message, press enter
    Creation of Cost centre group:
    Path: Accounting  controlling  Cost centre Accounting  Master data  Cost centre group  Create (T. Code KSH1)
    Cost centre group: XXX Produ
    Enter
    XXX Produ u2013 Production department for Co. area XXXX
    Select insert cost centre button (Shift + F4)
    Give the cost centre: Dept A, Dept B
    Save
    Hope It will clear.
    Regards,
    Kishore K
    Edited by: kishore babu on Nov 12, 2009 1:14 PM

  • Restriction of Time-dependent data (Cost Center) according to a specific role

    Dear experts,
    Has some one of you implemented a functionality to restrict Time-dependent data (for example, Cost Center) edition, according to a specific role assigned to an End user?
    I imagine it is possible, but we should develop an User-exit in order to get this goal.
    Let your comments here if possible, so that I can argue with my End user. I will try to give you points if you help me with this query.
    Thanks & Kind Regards,
    Daniel.

    Hello All!
    We have talked to Authorizations specialist and he indicated a customizing transaction in FI-AA module called ANSICHT (IMG -> Financial Accounting -> Asset Accounting -> Preparing for Production Startup -> Authorization Management -> Process Asset Views). In this customizing, it is possible to edit an existing asset view and turn on/off fields according to the company needs.
    Afterwards, you should request some adjustment in the roles that contain the A_A_VIEW authorization object.
    I am considering this question as "assumed answered'.
    Regards,
    Daniel

  • How to achieve time dependent hierarchy in SAP BO Disclosure Management

    Hi all experts,
    We are proposing a SAP EPM solution to a client. The overall solution consist of a planning tool (BPC 10 NW) and a disclosure management tool (SAP Disclosure Management 10).
    The Disclosure management tool will retrieve the planning budget figure from BPC 10 NW, and consolidate into a financial statement.
    Understand that in SAP BPC 10 NW there is a new feature call "Time Dependent Hierarchy" which allows defining the hierarchies based on a time range and the roll up behavior will be different based on the time the data belongs to. However in Disclosure Management it is currently not supported as a standard feature, therefore is there any workaround solution to achieve time dependent hierarchy in disclosure management ?
    Thank you !
    Regards,
    Elvin

    Hi Elvin, did you get a solution to your question.
    Can you share it. Thanks

  • Asset Master - Business Area field [time dependent tab]

    Business Area field is gray with or without value if i create an asset either from scratch or with reference .
    I did check with u201CDefine Screen Layout for Asset Master Datau201D. & u201CSpecify Chart-of-Dep.-Dependent Screen Layout/Acct Assignmentu201D
    Still not able to change the  field of business area in the asset master .
    Is there any other config setting needed to be changed , please let me know.
    Thanks & regards
    suman

    Dear,
    Suman.
    Please follow the path and make the changes :-
    SPRO ---> Financial Accounting New ---> Asset Accounting -
    > Master Data -
    > Screen Layout -
    > Define Screen Layout for Master Data.
    Select your respective Screen Layout. Go to Time Dependent Tab Double Click on Field Group Rules.
    Select MnNo & Sbno. And save. And then run AS02. I hope this solve your issue.
    Please revert for further clarification.
    Regards,
    Pankaj Bhalerao.

  • Time machine feature on Macbook

    Hi there -
    I have a question about the Time Machine feature on my Macbook. I want to back up my materials, especially my iTunes files, but I'm not sure if my Time Machine feature will work without an external hard drive. Can I start the Time Machine feature and back up my files on my Macbook hard drive? Or do I need to save it to an external hard drive?
    Not sure how to go about backing up my stuff with this.
    Thanks!

    Backing up to your own hard drive makes no sense. If your drive fails you have no backup. You should backup to an external Firewire drive. You can use Time Machine or other software.
    Basic Backup
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    1. Retrospect Desktop (Commercial - not yet universal binary)
    2. Synchronize! Pro X (Commercial)
    3. Synk (Backup, Standard, or Pro)
    4. Deja Vu (Shareware)
    5. PsynchX 2.1.1 and RsyncX 2.1 (Freeware)
    6. Carbon Copy Cloner (Freeware - 3.0 is a Universal Binary)
    7. SuperDuper! (Commercial)
    8. Intego Personal Backup (Commercial)
    9. Data Backup (Commercial)
    The following utilities can also be used for backup, but cannot create bootable clones:
    1. Backup (requires a .Mac account with Apple both to get the software and to use it.)
    2. Toast
    3. Impression
    4. arRSync
    Apple's Backup is a full backup tool capable of also backing up across multiple media such as CD/DVD. However, it cannot create bootable backups. It is primarily an "archiving" utility as are the other two.
    Impression and Toast are disk image based backups, only. Particularly useful if you need to backup to CD/DVD across multiple media.
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore. Also read How to Back Up and Restore Your Files.
    Although you can buy a complete FireWire drive system, you can also put one together if you are so inclined. It's relatively easy and only requires a Phillips head screwdriver (typically.) You can purchase hard drives separately. This gives you an opportunity to shop for the best prices on a hard drive of your choice. Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu. You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available. You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports. I would stress getting enclosures that use the Oxford chipsets (911, 921, 922, for example.) You can find enclosures at places such as;
    Cool Drives
    OWC
    WiebeTech
    Firewire Direct
    California Drives
    NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover. Usually the only tool required is a small or medium Phillips screwdriver.

  • Time Dependent InfoObject and InfoPackages

    Hi There,
    I did create a time-dependent infoobject ( bI7 object) however the timeframe in the infopackage does not show-up meaning I can not restrict the load _ unless I define the dateto and datefrom as selection when I create the datasource in R/3 ... Any explanation ? is it a BI7 feature ?
    Cheers,
    Erik.

    With Time-dependent InfoOject, it is usually possible to restrict in the tab "Upadate" the FROM and TO date from the extraction. Usually the default value when you create the infopackage is TODAY for FROM and 31.12.9999 for TO.
    In my case, when I create the infopackage these options do NOT appear in the screen. ....
    What is the reason for that ? Is there a reason for that ?
    Cheers,
    Erik
    Edited by: Erik MITON on Jul 25, 2008 8:38 AM

  • 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

  • Adding Time Dependency to an Attribute

    I have a requirement to report in BI based on the system status of a WBS element at any given point in time. For example, if i run the report with an end date of June 2010, I need to capture the status of any given WBS element (Open, TECO, etc) at that point in time.
    Now, I'm aware that I can set the "Time Dependent" flag on the 0STATUSSYS0 attribute of the WBS master data, but what else do I need to do to make this work? Do I need to enhance the extractor to account for this?
    Any information/documentation/how-to's would be extremely appreciated.
    Thanx in advance,
    er

    Hi,
    please search the forums, there is a lot of information about this issue. But in short, your extractor needs to deliver the information in time slices giving a from and a to date. In your queries you need to specify a key date to be able to access the appropriate time slice.
    regards
    Siggi

Maybe you are looking for

  • On iPhone 4, the screen goes dark and freezes when I start Safari

    All of a sudden, today I can't access the internet via Safari on my Verizon iPhone 4. If I click on a link in an email or start Safari, the screen goes dark and freezes. What's up with this and what the fix?

  • My new ipod touch 4G shows lock symbol, how to release?

    My new ipod touch bought from USA showing lock symbol and connect to itunes symbol, how to release the lock, please help me any one

  • Service Product/material

    Dear all. What is thr Diff between Service product and Service material..in Which scenario we can use it ...these..(I mean in Customer Service Point of view) Plzz give some information with general Example Thanks in Advance Regards LUckky Edited by:

  • Is Adobe encouraging software piracy?

    I have Studio MX2004 and have just bought a Mac as my PC got to the point of crashing or resetting itself with every program opened. I decided instead of constant PC repair bills that I would get a computer that works and is free of constant security

  • MDM55SP4 Hot fix2 - Linux-Windows & DB problems:

    Hi, We have the following system landscape - MDM Server is installed on one UNIX system, MDM Components are installed on a Windows 2003 Server SP1 – Terminal server and Database server is installed on a different UNIX system. All the systems are in t