Re : Background Installation of BC Cubes

Hi,
can I install many cubes at a time in the background?. Can you please advise me on this.
can u give me for 1 BC Infocube 0SD_C03 How much time it will take to install, if i choose
before and afterwards grouping option.
Thanks
Subbu

Hi,
Quote: "SAP recommends you use the Install in background option because installing a large number of objects can take a long time. Modifying objects that are already active can take an especially long time to complete. Make sure that when you install objects in the background that the versions are not matched. It is always the delivery versions that are installed. These are not matched with any available customer versions."
To answer to your question "Why they recommend installing in background even though they don't support match option in background mode?"
background mode is a good option at the start of the project (start by using the standard version of the objects). Take the sap recommendations (do not install too many objects, used data flow before, then df after, not the two at the same time).
afterwords you will need to customize your objects (then, do not use background options again, because the system will not match the D version with your new and modified A version.
Hope it helps.

Similar Messages

  • Background installations?..

    I have downloaded Safari 3.1 for Windows, and during installation I had ticked off check boxes that confirm additional installation of Bonjour and Apple Updates. But after installation I had found that this programs have been also installed, but I do not want them. After deleting Safari thise programs still installed on my machine. And I have found background process - mDNSResponder.exe (Bonjour).
    How can I delete thise programs???
    PS Sorry for my english...

    Bonjour is a harmless program taken from apples bonjour info page.
    Safari, Apple’s industry-leading browser, uses Bonjour to find any web pages on your local network. With the help of Bonjour, iChat lets you see which buddies are available for audio or video chats on your local network and removes them when they leave. iTunes and iPhoto use Bonjour to help you share music and photos on your local network. Bonjour is also the underlying technology behind Back to My Mac in .Mac and Remote Disc in MacBook Air
    if you would like more info on it. see address below is harmless.
    http://www.apple.com/support/downloads/bonjourforwindows.html
    but if you would like to remove it since you removed safari you can do so in add remove programs.
    Message was edited by: Aopen

  • How to find the number of records per months  in cube

    Hi,
      how to find the number of records per months for my all cubes?
      Can i use the ListCube transaction to find totl number f records per cube monthwise ?
    Jimmy

    Hi,
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    Cheers,
    Kavitha Kamesh.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • No of records in a cube

    Hi BWers,
             How do i know the no of records a cube has? Also how do i avoid previous request getting deleted while doing full update. Thanks
    Dave

    Hi,
    Q1.How do i know the no of records a cube has?
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    2.Also how do i avoid previous request getting deleted
    >  while doing full update
    You can do as Rohini suggested.
    Cheers,
    Kavitha Kamesh.

  • Problem to install a cube

    Hi Guys,
    I'm trying to install a Cube from the nbusiness content and the next error is raised : Higher-level of 0RPM_OLGUID__0SOURSYSTEM for infoobject 0RPM_OLGUID_0COORDER is not contained.
    Thanks,
    I.

    Hi Ivan;
    The best way to install the BC cube is..first find out what are the componenets the cube has like InfoObjects, transfer rules, update rules..go to RSA1>transport connection> under the grouping you will have 5 options where you will decide before, after, only necessary or before and after components. If you will not be using the content queries then do only 'In dataflow before' option. It will help you to reduce the chances of getting errors.  
    In your case, I don't know which cube you are trying to install it seems like you are missing some dependencies for infoObject '0RPM_OLGUID_0COORDER'. So, What I would do it before the installation of the cube, just install for that specific InfoObject and install the cube later.
    Hope this helps you.
    Buddhi

  • KDE Desktop Cube with mouse

    Is there any way to activate the desktop cube with the mouse left, right or middle click or any combination of a mouse click and keyboard keys like it does in Compiz? The custom shortcut apparently only allows keyboard keys.
    Oh, and while I'm at it, is there a way to make the desktop cube switch animation use the same background that you set on the "Desktop Cube" options on the desktop effect options? It only shows a black background when you switch virtual desktops with the cube animation.

    Hey there!
    toad wrote:systemsettings - workspace behaviour - screen edges
    The most I can get with those settings are to change virtual desktop when the cursor touches the edges of the screen. What I asked was another thing... I'd like to activate the desktop cube (the one that's on System Settings -> Desktop effects -> All effects (tab) -> Desktop Cube) by using the mouse click instead (or in combination with keyboard keys, like in Compiz's Ctrl+Alt+Left Click). My question wasn't regarding the virtual desktop switching.
    toad wrote:systemsettings - desktop effects - all effects (tab) - desktop cube, select background wallpaper
    That does set a background to the desktop cube. However, it doesn't set any background when I switch virtual desktops with the Pager, or the desktop switch shortcut (Ctrl +F1, Ctrl + F2, etc), the background is black.

  • Activation Business Content end Incomplete

    Hi All,
    I tried activating a standard cube, using data flow before and installing it background, when completed I noticed the particular infocube is greyed out nit installed and M version is different from A version. I have checked on the source system assignment its ok.
    Please advise
    Thanks
    Nathan

    Hi,
    It is always better to Install the Business Content With option Install, as background installation cannot be traced where exactly it has gone for Short dump or where exactly the process failed.
    The dependent Info Objects to be Activated / Installed for Info Cube with all required Routines with Transfer Rules/Update Rules / Info Sources for Cube.
    Try to Group all necessary objects with Install option, and monitor the Business Content (Better to choose Transfer objects manually instead of choosing Transfer all without dialogue )
    Hope it helps and Clear.

  • Error message in Report designer "Activate Default Theme: 0TRADESHOW"

    Hi,
    While working in Report Designer, I repeatedly get an error message saying "Activate Default Theme: 0TRADESHOW. See Note 1071338". After following the instructions and activating this theme, the problem still persists.
    Anyone with a solution to this problem? We are running BI 7, package level 17.
    Regards
    Nils

    Hi all,
    I had the same issue and finally solved re-installing BC in BACKGROUND mode.
    For unknown reason, my first istallation generate the a 0TRADESHOW entry with version D in table RSTHEMES.
    Later attempts to re-install BC were not modifying this table.
    Until I tryied Background Installation. It promped for overwriting current installation, I accepted and A version get generated.
    best regards
    Carlos Serrano

  • Brand new Surface Pro 3 with Office Prof Plus 2013

    Just purchased today and brought home a brand new Surface Pro 3.
    The first thing I needed for work, Office, and so I started to install, via USB DVD drive, the program Office Professional Plus 2013 - the fully loaded flagship version of Office that I purchased in March of 2014.
    I was shocked that I am unable to install it. I first tried installing the 64-Bit Office version, since Windows 8.1 is 64-bit. Next I learned that I must uninstall the 32-bit trial versions of Office that came pre-loaded onto the Surface Pro 3. I even used
    the Microsoft Office Fixit utilities and the Support descriptions of manual removal of previous versions of Office.Resetting the Surface Pro 3, uninstalling all Office products from it, and installing as 32-bit did not help either.
    The errors I see are not describable, because nothing happens, the install just hangs with no messages. The machine keeps operating fine, but the Office installs do not work at all.
    All of these efforts have only led to frustration.It appears to me that the flagship 2014 Surface Pro 3 and the Office Professional Plus 2013 (purchased only this Spring) are incompatible. This came as a great shock for me because in all my history of installing
    current MS software on current systems, I have never had this problem. Maybe back in the days of Windows 3.1 it might have happened. Please, if anyone has any advice , please advise.

    Thanks Melon Chen for your quick and helpful reply. Somehow (I will explain below), I was at last able to install the Office 2013 Pro Plus Suite.
    Before I received your reply with detailed instructions I kept trying many other solutions .. eventually I made Office 2013 Pro Plus install, although I'm not exactly sure what ended up fixing my ability to install from DVD.
    here's what I did:
    1) I attempted to install Office 2013 Pro Plus after running Fixit Utility and again the clean boot, but those did not help. I received the same error message that I described (ie. no specific error coded message, only a message that Office 2013 Pro
    Plus failed to install.  After rebooting with the "clean" reset option ,  I noticed there was some of my personal setup information retained on the system (can't recall exactly what this was , but it was clear to me that the reset
    did not make my system in pristine factory image). I discovered an even cleaner reset is the following to reset the Surface Pro 3 'absolutely' to factory image using a downloaded factory recovery image that is available here: 
    -->
    http://www.microsoft.com/surface/en-us/support/warranty-service-and-recovery/downloadablerecoveryimage?lc=1033
    This also required creating a USB drive based install and this reset the Surface Pro 3 to factory condition as described here:
    -->
    https://www.microsoft.com/surface/en-us/support/warranty-service-and-recovery/usbrecovery
    Now, after all this, regarding the Office Pro Plus 2013 install, 64-bit, it failed yet again, but one good thing was that the error message stated something different ie containing the text
    " Background installation ran into a problem. ... We'll automatically resume...." . With this information, I explored the internet over the weekend and I found the following valuable site on the web:
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-office_install/unable-to-install-office-2013-error-codes-30102-1/fde35d75-bddc-4dd6-bd0a-e01d07420f49
    Although I did not observe the error codes (apparently, it is explained that MS has stopped showing many error codes) as depicted, but the symptoms were identical. And so reading the link, there was one user , Rohn007, who compiled a beautiful listing of this
    problem of installing Office 2013 Pro with suggested solutions; lo and behold, the solution describing
    multiple wireless devices seemed to solve the problem. In other words, by being a heavy MS early-adopter, during Office 2013 Pro Plus install, I had a couple of MS devices, like Lumia phone, pc, etc.. all linked to the same wireless router
    during my attempts to install to the Surface Pro 3.  I have only a single MSN user ID and password for all the devices. I could be wrong, but this situation with shared wireless apparently can mess up the installs of Office 2013 Pro Plus- but often it
    is disguised and murky because no error codes are generated. By turning off all the wireless connections except for the one connecting to the Surface Pro 3, I was AT LAST ABLE TO INSTALL OFFICE 2013. 
    In the end, I installed Office 2013 32 bit, but I really wanted 64 bit. I will try now and uninstall everything again. and then go for the 64 bit version.
    I was very worn out by this experience. A full 2 days trying to install a brand new Office 2013 onto the brand new Surface Pro 3 with Win 8.1 apparently all came down to the fact maybe that I had too many wireless connections going! In the end I am
    happy that I can finally discover this beautiful piece of hardware, but I am a bit scared since I also would like to install Adobe CS4 from DVD drive and I am worried that I will again have much trouble. Do you have any suggestions when installing the Adobe
    CS 4 Master Collection, are there suggested steps to take? I like the idea of running Event Viewer, do you think that cab be helpful during installs.

  • ERROR: -1639 INVALID COMMAND LINE ARGUMENT

    Trying to install software for Shuffle that Santa brought and get this error messsage...
    "Error: -1639 invalid command line argument. Consult the windows Installer SDK for detailed command line help."
    Install stops at this point.
    SOMEONE HELP... My kid is chomping at the bit !
    Thanks.

    Ok I'll do some more searching but I found something in the community forums.
    APPSearch can not return this data into a property, so instead, for some unspeakable reason, returns a value of Null, follwed by another Null. This means that the property is created, and populated with two null characters. Bad news if the property also happens to be a PUBLIC property. All public properties are passed as part of the command line sent in a stream to the background installer process by the Execute Action. Since this stream now contains a double null value in a property, the stream is prematurely terminated. This creates an invalid command line, and thus the 1639 error.
    This user solved it by using the MSi Cleanup installer util.
    EDIT: A little more info...
    This problem is almost impossible to detect through the MSI log files since our friends at Microsoft chose to limit the length of any line in the log. It is impossible to get a dump of the full command line that generates this error.
    EDIT2:Note that error 1639 only ocurrs when the install package is run from removable media. When the package is run from local storage, the behavior is far more obtuse. The background install process, failing to receive a complete command line, is forced to run as if there had been no UI session, which in turn causes the APPSearch action to run again as if the install was running in silent mode. This causes re-evaluation of all properties a second time, destroying the feature selections made in the UI session, and also forcing the install to run under user credentials instead of elevated, even though AdminUser, ALLUSERS and Privleged properties are set. This is a very serious error that causes total failure of the installation.

  • Business Content Questions - Urgent

    Can you please help me with the following questions... 
    1. I installed business content for CRM Sales Activities. I was also successful in loading transaction data. There is some master data that also needs to be loaded, but many of the master data datasources are not available when I checked RSA5 in the CRM system. How should I approach this problem?
       2. When installing business content, if "match (X) or copy" is selected and if we select background installation, will the system overwrite the objects or will it leave it in the existing version?
       3. When activating business content reports, I get the error "BEx transport request xx is not suitable or not available". What could this mean?
       4. After development, do I simply gather all the objects and transport them to QA/PRD or do I have to activate business content in QA/PRD systems also?
    Thank You.

    Hi,
    1.The datasources are:
    Opportunity - 0CRM_OPPT_H - Opportunities header
    0CRM_OPPT_I - Opportunities Items
    Activities - 0CRM_SALES_ACT_1 - Activities
    Master data -
    0CRM_OPPT_CYCLE_TEXT
    0CRM_OPPT_PHASE_TEXT
    0CRM_OPPT_TYPE_TEXT
    Business Partner
    0CRM_BPART_ATTR
    0CRM_BPART_TEXT
    Products
    0CRM_PRODSL_ATTR
    0CRM_PROD_ATTR
    0CRM_PROD_HIER
    0CRM_PROD_IDCMP_TEXT
    0CRM_PROD_TEXT
    0CRM_PROD_TYPE_TEXT
    This is not complete list.
    2.Please chk this links:
    Re: Confused on Install Business Content
    http://help.sap.com/saphelp_sem40bw/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/content.htm
    Re: Match (or) Copy
    About Match(X) or Copy in BC
    http://help.sap.com/saphelp_bw33/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/frameset.htm
    3.Try to get the authorizations if you are transporting from dev to quality or dev to prod.
    pls chk whether you stored in $tmp package.
    4.  yes,you can transport from development --->  Quality --.>production system for the activated  business content objects .
    Regards
    CSM Reddy

  • Change of the source system

    Hi
    all
    Background installation from  SAP r/3 was already done and the system is up and running.
    Now i would like to replace the SAP R/3 with ECC version , where I must replicate the same extractor now with obviously a different version of  ECC.
    I wonder if the source system change will effect the similar infoobjects which were already installed and assigned to a different source system.
    Please explain me the effect and defects, or if any changes on the master data already existing.
    thanks

    When you change the source system - all your transfer rules , data sources etc will be gone and you will have to do them again.
    The master data and transacton data will not be affected only that you will have to init the same again and deltas subsequently...
    You could instead - keep the old system connection alive and then create a new set of transfer rules , data sources etc for the new system - that way you can have the old Transfer rules , data sources active and then have the coding done the for same alive for reference as well..

  • How to stop adobe updater from wanting to update

    hi i have adobe reader and it keeps poping up i don't need updates for it what i have is fine to open my pdf files can anyone help with how to disable the updater from ever poping up in my tray

    If you are on a Mac I have a solution for you. If you have a Mac you don't need Acrobat, it's just slow extra weight trash. But sometime uninstalling can leave behind updater crap thats no better than a virus, shame on you Adobe.
    Launch Terminal.app (you can use spotlight and type terminal)
    Type: sudo nano /etc/hosts
    Enter your OSX password when promoted
    add a line in this file: 127.0.0.1   armmf.adobe.com
    press <control + x> and save the file
    What's this do?
    Adobe some how has some weekly background installer that contacts the URL armmf.adobe.com and downloads update software and then prompts you to install it or cancel, never a "don't remind me" option. So this just simply blocks any request from your computer to this one URL. If the updater can't call home then it can't bother you with a useless update it couldn't find. Simple.
    The hidden updater will still run and try to call home from time to time and I think someday Adobe should be sued with anti trust violations, but thats another day.

  • Error "Updating Respository" from MDM 5.5 to MDM 7.1

    Hi all,
    We have been using MDM 5.5 SP 6 for the last 2 years; right now we have a Sandbox environment (MDM 7.1 - 7.1.02.59) to check compatibility with our developments.
    We unarchive the repositories in Sandbox and "Update Repository" for each one, 4 of our 7 repositories works without problem in this option, but 3 of them display the message "Error Updating Database Schema", we cant find any logs where describes the step that is trying to do.
    Does anybody know which can be the problem?
    To explain more of the background installations:
    - MDM 5.5 is working with SQL 2005
    - MDM 7.1 is working with SQL 2005
    - The username that we use to Update all repositories is the same, so it's not a problem of authorization
    Thanks for your help.

    Hello,
    The log you have mentioned is the complete log or only a part of it.
    This seems to be problem from MDM side.
    I'm sure you have followed all the steps, still for my reference would appreciate if you could verify them
    take a fresh archive of the repository from 5.5,
    transfer it in the Archive folder in the MDM Distribution folder
    un-archive in the Console.
    Update the repository (This where the error is ??)
    Load the repository using updated indices
    It will be helpful if you raise it with SAP an OSS message.
    Regards,
    Abhishek

  • What was installed?

    I was looking at a first tab on ultimateguitar.com (on Firefox mobile on my nexus 4) when I saw the gray message box appear briefly at the bottom of my screen, telling me "installation complete". I'm wondering what was installed? the site apparently has an app but I didn't accept any installation and no new apps appear to be on my phone. I've also check Firefox for new add ons - none. Could this have just been a background installation of an update to an app I already have?

    also, the reason I suspect something to do with Firefox is that this gray box doesn't appear when installing apps from the Google Play market and does appear when installing add ons for Firefox.

Maybe you are looking for

  • How can I permanently delete subfolders in email Trash?

    I have been getting duplicate email messages in one of my email folders for several weeks.  I think it started when I upgraded to OS X 10.6.6.  I have RoadRunner as a mail server and have not had this problem before on either my iMac or a previous PC

  • External Monitor - detected but nothing showing

    Hello I have recently bought a miniDisplayPort-to-VGA adaptor so I could set up an external monitor. Whilst in Display settings the second monitor is being detected, I just have a black screen/no signal. My MB Pro obviously thinks its there, as the m

  • Flashplayer wont download onto my pc without me switvhing off firefox. How do i do that

    I am trying to download adobe flash player's mostrecent and it is asking me toswitch off firefox before it can continue with download. How do iswitch off firefox?

  • Store UTILMD Message type and EDIT

    Hi , I need to create some Ztables to store the message type details in INBOUND and OUTBOUND IDOCS send from XI to SAP r/3 and R/3 to XI.(UTILMD,MSCONS,CNTL,APERAK).Is it ok to create tables with the same structure of EDIDC and EDID4 or i need to cho

  • ITunes corrupting music?

    I've been using iTunes for a long time now, but am just so fed up with it and have naturally moved on to Enqueue. However, it still affects me because the other music software takes the files from the iTunes folder, and my iPhone still has to sync, s