Live cache NOT running on MAxDB.

Gurus:
I just get into SCM recently and only read some docs about SCM.
I believe the SCM I log in has not MaxDB at all.   It is running on a SQL exclusively.
Could you tell me how to verify my guess?
Thanks a lot!

hello,
SAP SCM runs on the OLTP database like Oracle MaxDB  MSSQL or DB2/4/6
liveCache another database connected to "most" SCM
you can quickly take look at transaction db59 where you will find livecache server and SID of livecache
(if there is one)
you can also test connection to liveCache if you find the liveCache there.
once connection to liveCache works fine you can use transaction LC10 to perform administration tasks.
(eqvivalent of st04 or dbacockpit for OLTP DBs)
Regards
ivan

Similar Messages

  • Azure In Role Caching Doesn't start on server with "Not running in a hosted service or the Development Fabric."

    I started to use Azure in-role caching and everything works great in Azure compute emulator on my local machine, but not on server. I've already dealed with some problems, like lack of msshrtmi.dll on server, but now can't understand why get this error:
    Not running in a hosted service or the Development Fabric.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.InvalidOperationException: Not running in a hosted service or the Development Fabric.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [InvalidOperationException: Not running in a hosted service or the Development Fabric.]
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitor.GetDefaultStartupInfoForCurrentRoleInstance() +535
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener..ctor() +34
    [ConfigurationErrorsException: Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Diagnostics.TraceUtils.GetRuntimeObject(String className, Type baseType, String initializeData) +1588
    System.Diagnostics.TypedElement.BaseGetRuntimeObject() +103
    System.Diagnostics.ListenerElement.GetRuntimeObject() +825
    System.Diagnostics.ListenerElementsCollection.GetRuntimeObject() +261
    System.Diagnostics.TraceInternal.get_Listeners() +256
    System.Diagnostics.Trace.get_Listeners() +79
    Microsoft.ApplicationServer.Caching.DataCacheServerLogManager..cctor() +97
    [TypeInitializationException: The type initializer for 'Microsoft.ApplicationServer.Caching.DataCacheServerLogManager' threw an exception.]
    Microsoft.ApplicationServer.Caching.DataCacheServerLogManager.ChangeLogLevel(TraceLevel traceLevel) +0
    Microsoft.ApplicationServer.Caching.ServiceConfigurationManager..cctor() +24
    [TypeInitializationException: The type initializer for 'Microsoft.ApplicationServer.Caching.ServiceConfigurationManager' threw an exception.]
    Microsoft.ApplicationServer.Caching.ServiceConfigurationManager.GetHostDefaults() +0
    Microsoft.ApplicationServer.Caching.OMCacheNodeProperties..ctor(IHostConfiguration props, Int32 maxNC, Boolean perfCounterRequired) +69
    Microsoft.ApplicationServer.Caching.LocalCacheStore..ctor(EvictionParametrs evictionParams) +50
    Microsoft.ApplicationServer.Caching.DataCacheFactory..ctor(DataCacheFactoryConfiguration configuration) +555
    Microsoft.Web.DistributedCache.DataCacheFactoryWrapper.CreateDataCacheFactoryFromConfiguration(DataCacheFactoryConfiguration config) +35
    Microsoft.Web.DistributedCache.CacheHelpers.RunCacheCreationHooks(CacheConnectingEventArgs fetchingEventArgs, IDataCacheFactory dataCacheFactory, Object sender, EventHandler`1 fetchingHandler, EventHandler`1 fetchedHandler) +7
    All I found about this error is that it occurs if you start local Azure compute emulator with in-role caching and without administrative rights. But in emulator everything works fine and problem occurs only after I publish to staging environment. (if switch
    to production, error remains).
    I use cache for resolving routes like /username and /countryname etc. So available usernames and country names will be cached and updated on changes in database. I have static class with static DataCache object which is created on first request to cache. But
    even home page doesn't start so error occurs before I try to create cache object.

    Hi Jambor, I don't have reference errors. I had them before but already fixed with copy local = true for few references. 
    I receive error only on azure host service. In local everything works great, app starts, cache works and I can see data in cache.  Yes, in local mode cloud project is set as startup and VS runs as administrator.
    I've added TraceListener creating code you suggested:
    protected void Application_Start(object sender, EventArgs e)
    System.Diagnostics.Trace.Listeners.Add(new Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener());
    and error code changed a little. But as I see problem is the same but caused when creating TraceListener from Application_Start instead of when initalizing cache:
    Not running in a hosted service or the Development Fabric.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.InvalidOperationException: Not running in a hosted service or the Development Fabric.
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace: 
    [InvalidOperationException: Not running in a hosted service or the Development Fabric.]
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitor.GetDefaultStartupInfoForCurrentRoleInstance() +518
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener..ctor() +34
    [ConfigurationErrorsException: Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Diagnostics.TraceUtils.GetRuntimeObject(String className, Type baseType, String initializeData) +1588
    System.Diagnostics.TypedElement.BaseGetRuntimeObject() +103
    System.Diagnostics.ListenerElement.GetRuntimeObject() +825
    System.Diagnostics.ListenerElementsCollection.GetRuntimeObject() +261
    System.Diagnostics.TraceInternal.get_Listeners() +256
    System.Diagnostics.Trace.get_Listeners() +79
    sub2o.MvcApplication.Application_Start() +497
    [HttpException (0x80004005): Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Web.HttpApplicationFactory.EnsureAppStartCalledForIntegratedMode(HttpContext context, HttpApplication app) +558
    System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +179
    System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +322
    System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +384
    System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +397
    [HttpException (0x80004005): Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +630
    System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +159
    System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +763

  • Live cache start and stop

    Hi Guys,
    I have some problem in live cache in APO , i was posting in APO forum could not able to find clear findings
    so i am diverting my questions here in this forum
    basically the APO and R/3 system are running smoothly with no problem in CIF
    but accidently we done the below steps
    Entered into transaction LC-10
    Click Live cache Monitoring
    click the folder - Administration
    click Operating under - configuration
    There are two Icon bar - start LiveCache and stop LiveCache
    First i clicked stop and then after few minutes i click start
    After some time i try to open the Product view in APO, the system says Live cache not available
    can some one help me in this regard
    Thanks
    Raj

    Hi,
    Here is the log you asked me
    veCache LC1 (restart)
    Mon 10/15/2007
    03:00 AM
    installation path = e:\sapdb\lc1\db
    OK
    OK
    DBMServer 7.6.03   Build 008-123-159-187
    starting LC1 into ONLINE
    OK
    Creating liveCache application procedures
    OK
    0,OK: everything works fine
    0,""e:\sapdb\lc1\db\bin\x_python" "e:\sapdb\lc1\db\env\lapps.py" -R "e:\sapdb\lc1\db" -d LC1 -u SUPERDBA,*"
    Installing APPS
      Droping Procedures
        LC1ADM
          SAPTS
          SAPLCK
          SAPAPO
          SAPATP
          SAPREP
          SAPSIM
          SAPRPM
          DBPINSTALL
      Creating Procedures
        LC1ADM
          dbpinstall
            FORCE_CHECKPOINT
            WAIT_FOR_CHECKPOINT
            FORCE_AND_WAIT_FOR_CHECKPOINT
          SAPAPO
            APS_COM_VERSION_GET
            APS_PROPAREA_CHANGE
            APS_PROPAREA_GET_DATA
            APS_PEGAREA_CHANGE
            APS_PEGAREA_GET_DATA
            APS_PROPAREA_GET_ALL
            APS_ORDERTYPE_GET_ALL
            APS_ORDER_GET_ALL
            APS_PEGID_GET_ALL
            APS_IPPE_GET_ALL
            APS_RESOURCE_GET_ALL
            APS_PLAN_VERS_GET_ALL
            BAS_PLAN_VERS_GET_ALL
            APS_PLAN_VERS_GET_ALL_DEFECT
            APS_PCM_GET_ALL
            APS_OBJECT_GET_ALL
            APS_OBJECT_EXISTS
            APS_CONTAINER_CHANGE
            APS_CONTAINER_GET_DATA
            APS_GET_ALL_CONTKEYS
            APS_PLAN_VERSION_CHANGE
            APS_PLAN_VERSION_GET
            APS_THROW_DBP_ERROR
            APS_SCHEMA_CREATE
            APS_SCHEMA_DELETE
            APS_SCHEMA_GET_ALL
            APS_SCHEMA_GET_ALL_DEFECT
            APS_TIME_GET
            APS_MIXIN_ATP_DELTAS
            APS_MLEVEL_ATP_PROT_DEL
            APS_REORG_ATP
            APS_REPAIR_ATP
            APS_GET_ATP_DATA
            APS_ALERTS_GET_DATA
            APS_ALERTS_IN_ORDER_NET
            APS_ALERTS_DELAY_ORDER_NET
            APS_TRACELEVEL_READ
            APS_TRACELEVEL_CHANGE
            APS_TRACELEVEL_GET_ALL
            APS_TRACE_WRITE
            APS_CUST_GET_DATA
            APS_CUST_CHANGE
            APS_CHECK_PERS_DATA
            APS_PERS_OBJ_EDIT
            APS_IPPE_CHANGE
            APS_IPPE_GET_DATA
            APS_IPPE_GET_ORDERS
            APS_IPPE_GET_BY_IO
            APS_ORDER_GET_TIMES
            APS_RG_OF_COVER_MATRIX
            APS_RANGE_OF_COVER_GET
            APS_OPT_GET_ACTIVITY_NET
            APS_OPT_GET_ACTIVITY_NET2
            APS_OPT_UPDATE_ACTIVITY_NET
            APS_BS_SEND64
            APS_PERFTEST_1
            APS_PERFTEST_2
            APS_PERFTEST_3
            APS_PERFTEST_4
            APS_PERFTEST_5
            APS_PERFTEST_6
            APS_PERFTEST_7
            APS_PERFTEST_8
            APS_PERFTEST_9
            APS_PERFTEST_COMB
            APS_PERFTEST_READ_100
            APS_PERFTEST_WRITE_100
            APS_PERFTEST_READ_1000
            APS_PERFTEST_WRITE_1000
            APS_PERFTEST_READ_8000
            APS_PERFTEST_WRITE_8000
            APS_PERFTEST_TRANSMISSION
            APS_IO_RESET_NETCHG_FLAG
            APS_ORDER_GET_DATA
            APS_ORDER_CREATE
            APS_ORDER_CHANGE
            APS_ORDER_DELETE
            APS_ORDER_MODIFY
            APS_FLEX_ORDER_CHANGE
            APS_CHARACT_MODIFY
            APS_CONSTRAINT_MODIFY
            APS_PEGID_SELECT_ORDERS
            APS_ORDER_GET_REQMTS
            APS_ORDER_GET_SUPPLY
            APS_PCM_DELETE
            APS_PCM_GET_ORDERS
            APS_PEGID_GET_IO
            APS_PEG_REFRESH_IO
            APS_PEGID_COUNT_IO
            APS_PEGID_GET_VIRT_PEG
            APS_PEGID_GET_ORDERS
            APS_PEG_CAT_GET_ORDERS
            APS_SEARCH_DESC_CHAR
            APS_FIX_PEGGING_CHANGE
            APS_PEGARC_TYPE_CHANGE
            APS_PEGPARAM_CHANGE
            APS_PEGID_GEN_PM_TRACE
            APS_ACT_STATUS_CHANGE
            APS_ACT_UNPLAN
            APS_ACT_GET
            APS_SFW_INITIALIZE
            APS_SFW_IONODE_SCHEDULE
            APS_SFW_GET_NEXT_SET
            APS_SFW_SCHEDULE_SET
            APS_SFW_TERMINATE
            APS_STOCK_TSERIES_CMP
            APS_STOCK_TSERIES_GET
            APS_ACT_SCHEDULE
            APS_ACT_GET_BY_RES
            APS_ACT_GET_BY_ORDER
            APS_ACT_GET_BY_PEGAREA
            APS_RESOURCE_GET
            APS_ORDER_GET
            APS_PEGAREA_GET
            APS_PROD_GET_BY_PEGAREA
            APS_CUS_ORDER_CHANGE
            APS_CUS_ORDER_GET
            APS_CUS_SCHD_GET_BY_PEG
            APS_CUS_SCHD_GET_BY_IO
            APS_DELIVERY_CONF
            APS_DELIVERY_MESSAGE
            APS_FORECAST_GET_BY_PEG
            APS_RESOURCE_CHANGE
            APS_RESOURCE_GET_DATA
            APS_CAPA_PROFILE_GET
            APS_PERS_OBJ_ANALYZE
            APS_RES_COLL_MERGE
            APS_RES_MAX_COLL_BUFFER
            APS_STOCK_CHANGE
            APS_STOCK_GET
            APS_STOCK_GET_BY_UID
            APS_SETUPMATRIX_CHANGE
            APS_SETUPMATRIX_UPDATE
            APS_SETUPMATRIX_GET_DAT
            APS_RESOURCE_GET_BRUTTO
            APS_TIMING_PATTERN_GET
            APS_BUCKETS_GET_NETTO
            APS_DATE_VECTOR_CHANGE
            APS_DATE_VECTOR_GET
            APS_TIMESTREAM_CHANGE
            APS_TIMESTREAM_GET_DATA
            APS_TIMESTREAM_GET_BY_RES
            APS_TLO_GET_RANGE
            APS_TRANS_ORDER_CHANGE
            APS_TRANS_ORDER_GET
            APS_DRP_AMOUNT_GET
            APS_DRP_FLOW_GET
            APS_DRP_IO_GET
            APS_DRP_CONTI_IO_GET
            APS_SNP_ORDER_GET
            APS_SNP_CAPA_GET
            APS_SPP_FORECAST_MODIFY
            APS_SPP_PUR_REQ_MODIFY
            APS_SPP_FORECAST_EXT_MODIFY
            APS_SPP_ORD_AMOUNT_GET
            SAPAPO_COMTEST_1
            SAPAPO_COMTEST_2
            SAPAPO_COMTEST_NEW_PLANVERS
            APS_SET_TEST_PARAMS
            SAPAPO_CLEANUP
            SAPAPO_RESET_GLOBALS
          SAPATP
            SAPATP_READ_TIMEAXIS
            SAPATP_READ_CSV_ARRAY
            SAPATP_SETUP_TIMEAXIS
            SAPATP_CLEAR_TIMEAXIS
            SAPATP_CHECK_AVAILABILITY
            SAPATP_LS_LOGFILES
            SAPATP_RM_LOGFILES
            SAPATP_CREATE_MATRIX_OBJECT
            SAPATP_DELETE_MATRIX_OBJECT
            SAPATP_GET_MATRIX_OBJECTS
            SAPATP_REORG_MATRIX
            SAPATP_GET_CHAR_KEY
            SAPATP_GET_CHAR_KEY_MULTI
            SAPATP_GET_CHAR_LIST
            SAPATP_READ_MATRIX
            SAPATP_MATRIX_FIND_VERSIONS
            SAPATP_READ_VPL_TIMEAXIS
            SAPATP_READ_BUCKET_PARAMS_SIM
            SAPATP_READ_TIMEAXIS_BOMID
            SAPATP_PAC_CHECK
            SAPATP_DELTA_EXIST_ANCHOR
            SAPATP_DELTA_GET_REMOVE_ATP
            SAPATP_DELTA_GET_REMOVE_ALLVPL
            SAPATP_DELTA_GET_AGGREGATES
            SAPATP_DELTA_GET_POSG_ATP
            SAPATP_DELTA_READ_TOTAL
            SAPATP_DELTA_READ_TRGUID_APS
            SAPATP_DELTA_READ_DELNRAPS
            SAPATP_DELTA_ADD_ATP
            SAPATP_DELTA_UPD_ALLVPL
            SAPATP_DELTA_UPD_ATP
            SAPATP_DELTA_COMPRESS_APS
            SAPATP_DELTA_REMOVE_TRGUID
            SAPATP_DELTA_UPD_POSG_ATP
            SAPATP_DELTA_GET_UPD_POSG_ALVP
            SAPATP_DELTA_CHANGE_POSGUID
            SAPATP_DELTA_REMOVE_DATE
            SAPATP_DELTA_GET_PLUIDS_F_TRG
            SAPATP_DELTA_GET_PLUIDS_F_DAT
            SAPATP_DELTA_CLEAR_ANCHOR
            SAPATP_DELTA_GET_ALL_ADMIN_ANC
            SAPATP_DELTA_DELETE_ALLOC_ANC
          SAPLCK
            LCK_ENQUEUE
            LCK_DEQUEUE
            LCK_RELOAD
            LCK_CONSISTENCY
            LCK_LIST_ALL
            LCK_LIST_SINGLE
            LCK_LIST_BY_AREA
            LCK_LIST_BY_OWNER
            LCK_LIST_BY_USER
            LCK_LIST_OWNERS
            LCK_DEQUEUE_OWNER
            LCK_STATISTICS
            LCK_ENQUEUE02
            LCK_DEQUEUE02
            LCK_LIST_ALL02
            LCK_LIST_SINGLE02
            LCK_LIST_BY_AREA02
            LCK_LIST_BY_OWNER02
            LCK_LIST_BY_USER02
          SAPSIM
            SIM_SIMSESSION_CONTROL
            SIM_SIMSESSION_COPY
            SIM_SIMSESSION_SAVEAS
            SIM_SIMSESSION_UNDO
            SIM_SIMSESS_HAS_DELTAS
            SIM_SIMSESSION_GET_DATA
            SIM_SIMSESSION_GET_DELTAS
            SIM_SIMSESSION_GET_ALL
            SIM_SIMSESSION_GET_ACTIVE
          SAPREP
            REP_INIT
            REP_CLOSE
            REP_CHECK
            REP_CHECK_MULTI
            REP_ACKNOWLEDGE
            REP_REVERT
            REP_RETHEAD_READ
            REP_RET_READ
            REP_CAPA_CHANGE
            REP_DEMAND_CHNG
            REP_PLNVERS_READ
            REP_PLVERS_READ
            REP_TX_READ
            REP_DELTAS_REORG
            REP_CONSI_CHK
            REP_DELPOS_DEL
            REP_NEWPOS_DEL
            REP_DELPOS_GET
            REP_NEWPOS_GET
            REP_REVERT_MULTI
            REP_INST_DELETE
            REP_INST_CREATE
            REP_DEM_INIT_REC
            REP_CHECK_EXIST
            REP_TIMELINE_CRE
            REP_INST_CHECK
            REP_CHK_LOCK_GET
            REP_CHK_LOCK_SET
            REP_CHK_LOCK_DEL
            REP_DELTA_DISP
            REP_POSGUID_DISP
            REP_CORR_QTY
            REP_CHECK_NEW
            REP_RESERVE_DEBUG
            REP_ACKN_RES_FOR_TX_DEBUG
          SAPRPM
            RPM_ACTS_FOR_WORKCENTER
            RPM_ADD_NODES
            RPM_BF_CALC_ORDER_STATUS
            RPM_BF_DELETE_ORDER_STATUS
            RPM_BF_MODIFY_STATUS
            RPM_BF_READ_ORDER_STATUS
            RPM_CHG_R_ORD_CF
            RPM_COPY_RES_ORD
            RPM_CREATE_MATRIX
            RPM_CUSTOMIZING_MODIFY
            RPM_CUSTOMIZING_READ
            RPM_DEL_RES
            RPM_DEL_RES_ORD
            RPM_DELETE_MATRIX
            RPM_DELETE_ONE_CONFIG
            RPM_MATRICES_FOR_CUOBJ
            RPM_MATRICES_FOR_ORDID
            RPM_MATRICES_FOR_ORDID_MUL
            RPM_MATRICES_REORG
            RPM_MATRIX_PROPERTIES
            RPM_MATRIX_PROPS_UPDATE
            RPM_MODIFY_CONFIGS
            RPM_MODIFY_ONE_CONFIG
            RPM_PARKED_ORDERS_READ_ALL
            RPM_READ_A_R_ORD
            RPM_READ_ALL_ACTIVITIES
            RPM_READ_ALL_CONFIGS
            RPM_READ_ALL_NODES
            RPM_READ_ALL_ORDERS
            RPM_READ_ALL_POSVARS
            RPM_READ_ALL_RES
            RPM_READ_ALL_TOKENS
            RPM_READ_CONFIGS_W_TOKENS
            RPM_READ_ONE_CONFIG
            RPM_READ_ONE_ORDER
            RPM_READ_ORDER_BOM
            RPM_READ_ORDER_BOM_MUL
            RPM_READ_ORDER_SEQUENCE
            RPM_READ_ORDERS_FOR_POSVAR
            RPM_READ_POS4RS1
            RPM_READ_POS4RS2
            RPM_READ_RES_ORD
            RPM_READ_RES4POS
            RPM_READ_ROW_BITS
            RPM_REORG_HARD
            RPM_REORG_PARKED_ORDERS
            RPM_REORG_SOFT
            RPM_REQS_FOR_MATERIAL_2
            RPM_ROWIDS_FOR_WORKCENTER
            RPM_SESSION_SWITCH
            RPM_STORE_ACTIVITIES
            RPM_STORE_ORDER_SEQUENCE
            RPM_STORE_ORDERS
            RPM_STORE_POSVARS
            RPM_STORE_R_BITS
            RPM_STORE_R_ORD
            RPM_STORE_RESTR
            RPM_STORE_TOKENS
            RPM_TIME_LINES_CREATE
            RPM_TIME_LINES_DELETE
            RPM_TIME_LINES_READ
            RPM_TRANSPOSE_PV_MATRIX
            RPM_TRANSPOSE_TOKEN_MATRIX
            RPM_TRANSPOSED_CONFIGS
            RPM_UPDATE_ROW_BITS_TABLE
            RPM_WRKCINFO_DELETE
            RPM_WRKCINFO_MODIFY
            RPM_WRKCINFO_READ
          SAPTS
            SAPTS_ADAPT_SEASONALITY
            SAPTS_AGGMULT_TIMESERIES
            SAPTS_AGGSINGLE_TIMESERIES
            SAPTS_ASSOCIATE_CH
            SAPTS_CALC_DATA
            SAPTS_CALC_SNP_INFLOW
            SAPTS_CHANGE_CH
            SAPTS_CHANGE_FIX_DATA
            SAPTS_CHANGE_KF
            SAPTS_CHANGE_PT
            SAPTS_CHANGE_RELMODE
            SAPTS_CHANGE_SH
            SAPTS_CHANGE_TG
            SAPTS_CHRANGES_IN_AGG
            SAPTS_CLEAN_OBJECTS
            SAPTS_COMTEST
            SAPTS_CONS_OBJECTS
            SAPTS_COPY_DATA
            SAPTS_CREATE_INCONS_OBJECTS
            SAPTS_CREATE_NEW_LAYER
            SAPTS_CREATE_REGISTER
            SAPTS_CREATE_RELATION
            SAPTS_CREATE_SNP_RELATION
            SAPTS_CREATE_TIMESERIES
            SAPTS_DELETE_KEZ_TS
            SAPTS_DELETE_REGISTER
            SAPTS_DELETE_RELATION
            SAPTS_DELETE_SNP_RELATION
            SAPTS_DELETE_TIMESERIES
            SAPTS_EXTR_CH_GET
            SAPTS_EXTR_CH_SET
            SAPTS_EXTR_KF_GET
            SAPTS_EXTR_KF_SET
            SAPTS_EXTR_PT_GET
            SAPTS_EXTR_PT_SET
            SAPTS_EXTR_TG_GET
            SAPTS_EXTR_TG_SET
            SAPTS_EXTR_TSBUF_GET
            SAPTS_EXTR_TSBUF_SET
            SAPTS_EXTR_TSBUS_GET
            SAPTS_EXTR_TSBUS_SET
            SAPTS_EXTR_TSH_GET
            SAPTS_EXTR_TSH_SET
            SAPTS_EXTR_TSKF_GET
            SAPTS_EXTR_TSKF_SET
            SAPTS_EXTR_TSRLSNP_GET
            SAPTS_EXTR_TSRLSNP_SET
            SAPTS_EXTR_TSRL_GET
            SAPTS_EXTR_TSRL_SET
            SAPTS_EXTR_TS_GET
            SAPTS_EXTR_TS_SET
            SAPTS_GET_AGGREGATED_DATA
            SAPTS_GET_AGGREGATED_DATA_RIW
            SAPTS_GET_ALL_DATA
            SAPTS_GET_ALL_DATA_RIW
            SAPTS_GET_DATA
            SAPTS_GET_DATA_RIW
            SAPTS_GET_INITIAL_DATA
            SAPTS_GET_REG_OBJECTS
            SAPTS_GET_TS_INFO
            SAPTS_GET_TS_INFO2
            SAPTS_INITIALIZE_DATA
            SAPTS_OBJECTS_BY_CHREF
            SAPTS_OBJECTS_BY_KFREF
            SAPTS_OBJECTS_BY_TGREF
            SAPTS_OBJECTS_GET_ALL
            SAPTS_OBJECTS_IN_AGG
            SAPTS_OBJECTS_QUERY_STATE
            SAPTS_QUERY_OBJECTS
            SAPTS_READ_CH
            SAPTS_READ_KF
            SAPTS_READ_PT
            SAPTS_READ_SH
            SAPTS_READ_TG
            SAPTS_REDISAGG_DATA
            SAPTS_REGISTERS_GET
            SAPTS_RELATIONS_GET
            SAPTS_RELATION_GET_DETAIL
            SAPTS_REPLACE_COMPLETE_TSKF
            SAPTS_SET_DATA
            SAPTS_SET_DATA_RIW
            SAPTS_SET_INITIAL_DATA
            SAPTS_SET_UNIT
            SAPTS_TIMESERIES_GET
            SAPTS_TRACE_FILTER
            SAPTS_UPDATE_TIMESERIES
    ==================================
    Installation successfully finished
    ==================================
    Enable user LC1ADM
    OK
    OK
    liveCache LC1 successfully started.
    Mon 10/15/2007
    03:00 AM
    The Problem we face is before this problem happen we created planning version name 000 , when we open the product view system says planning version is not available
    please advise me
    Thanks
    Raj

  • LC-10 - Live cache

    Hi Guys,
    IF i stopped live cache in LC-10 , what happen to the system , specially to the dynamic data's in live cache , how will it impact APO system and R/3 system
    if i want to bring back to original status of live cache what i have to do
    Right now i stopped and started again live cache, then i went to apo system and opened product view  of particular product system says live cache not available
    but the live cache i started again
    Please give some feed back on this issue
    Thanks
    Raj

    Hi
    Thanks for kind guidelines
    here is my exact problem, currently two system APO and R/3 is running smoothly with CIF
    Accidentally i stopped LiveCache  and started again
    but when i go to apo Product view , i entered the product and location to view those existing planned order and sales order
    But the system says that LiveCache not available
    Please explain what is the reason for it , i need to activate all the integration models in R/3 again
    please some one help me in this regard
    Thanks in advance
    Raj

  • Unable to delete Order does not exist in live cache but in table POSMAPN

    Hi Experts,
    We are facing an issue where purchase order is not available in live cache (which means no GUID) but exists in database table POSMAPN. We have tried to delete it using standard SAP inconsistent order deletion program and also using BAPI BAPI_POSRVAPS_DELMULTI but not able to delete it.
    Can anybody suggest a method by which we can get rid of this order from the system.
    Thanks a lot.
    Best Regards,
    Chandan

    Hi Chandan,
    Apologize me for taking your question in a wrong perspective. If you want to delete the same then you need to Re-CIF the order from ECC so that it would come and sit in Live Cache. Once done, try using the BAPI.
    If you are not successful with the above approach try running the consistency report /SAPAPO/SDRQCR21 in APO system
    so that it first corrects the inconsistency between ECC and APO (Live Cache + DB tables) and then use the BAPI to delete the PO.
    Not sure if you have tried this way. If this does not solve your purpose you need to check SAP Notes.
    Thanks,
    Babu Kilari

  • Live cache lock handler not available

    Hi we are frequently getting this error Live cache lock handler not available and this causes our process chains to fail.
    Can anyone please explain in details what this error refers to and direct to any good links for error resolution.

    Hello,
    1. As SAP customer, you could create the SAP message to the component BC-DB-LCA and get SAP support.
    2. If you set the flag 'activate livecache lock' in tcode /SAPAPO/MSDP_ADMIN for your planning area on SCM system, please run the connection test for the LEA connection in /ndb59 to check the LEA connection settings.
       The liveCache installation guide has additional information about LEA connection.
    Regards, Natalia Khlopina

  • No matter what I do, I cannot get Firefox to run Java correctly. I've deleted the cache, etc., etc., but my school programs will not run on Firefox.

    Firefox (v. 18.0.1) will not run my school programs any more since the Java scare. It also is choking at running screencast-o-matic.
    And this is happening on both my computers not just one.
    I have emptied Java cache, emptied the browser caches, downloaded the latest Java, Reinstalled it. Cleared caches again, etc., etc., etc.
    Firefox will not run Java and I have to use IE which is the only browser that I have gotten the scripts to function so that I can use my programs.

    Been there done that. Actually I have even install a fresh Firefox on virgin win8 64-bit laptop (without synchronising to my firefox in general) with the absolutely latest Java - didn't help either. And my test page is not the only one, but as I did this myself I know exactly the contents.
    Since then my Firefox is in sync... well more or less as it seems it only sync some ways but that is another matter... but at least most of my stuff is back in place.
    What I know is that the egg.html takes forever to load, and that the java part never shows. I think that this goes for most Java places, but I do remember that it was not always the case. Right now even the Oracle test page can't find Java, and I know it could at some point. Reinstalling tells me I already got Java, so it is there, likewise it is active in the plugin window. But some parameter some where must have gone haywire.

  • Production orders not updated in Live Cache

    Hi All,
    We are currently facing a strange issue. Planned orders created in APO are converted into Production orders in R/3. When they are CIFfed to APO, those prodcution orders are captured in Product view but are not updated in either /SAPAPO/OM16 or Production list (/SAPAPO/PPL1). In these two transactions the production orders are not visible but their respective planned orders are showing up.
    When delta report is executed for Production orders with "Consider Requirements/Receipts" as sub-object, these orders are captured with Error code 501 (Requirement/Receipt for the order exists only in R/3). When pushed to APO, these orders are updated in the Live Cache.
    Can anyone share your thoughts on what could be the root cause for this issue.
    Appreciate your thoughts
    Thanks,
    Sai

    Thanks Vikas and Senthil,
    Its not the issue with all the Production orders. The issue is with only few orders and we are in the process of tracing out the pattern.
    Our Primary concern is that the orders captured in the delta report are visible in Product view even without taking any action in CCR but are missing in OM16. Its only after taking the action those orders are visible in OM16.  I believe the data in the product view is read from Live Cache and the Live Cache contents are displayed in OM16. So, whatever orders visible in Product view have to be displayed in OM16 which is not happening.
    Please let me know if I am missing anything.
    Thanks,
    Sai

  • The slide show runs in "live mode" but will not run from the browser.

    Here is the link to the web page http://www.williamshomesteadranch.com/welldone.html
    This is the first time that I've tried to use a widget and it looks good, but will not run fromthe browser.

    The answer to the problem is very simple, the main images cannot be found. Please have a look at the following markup starting with line 305 or thereabouts:
          <ul id="ImageSlideShow" title="Jesse the Border Collie">
            <li><a href=Spry-UI-1.7/jackandjesse/jacksjesse251x270.jpg src="Spry-UI-1.7/jackandjesse/jacksjesse251x270.jpg" title="Jesse"><img src="Spry-UI-1.7/jackandjesse/jacksjessethumbnail.jpg" alt="photos-1.jpg" /></a></li>
            <li><a href=Spry-UI-1.7/jackandjesse/jackandjesseonbeach257x381.jpg src="Spry-UI-1.7/jackandjesse/jackandjesseonbeach257x381.jpg" title="Jesse and his Friend"><img src="Spry-UI-1.7/jackandjesse/jackandjesseonbeachthumbnail.jpg" alt="photos-2.jpg" /></a></li>
            <li><a href=Spry-UI-1.7/jackandjesse/jackjessesoccer251x378.jpg src="Spry-UI-1.7/jackandjesse/jackjessesoccer251x378.jpg" title="Jesse playing soccer with his friend"><img src="Spry-UI-1.7/jackandjesse/jackjessesoccerthumbnail.jpg" alt="photos-3.jpg" /></a></li>
            <li><a href=Spry-UI-1.7/jackandjesse/jackjesserestbeach365x246.jpg src="Spry-UI-1.7/jackandjesse/jackjesserestbeach365x246.jpg" title="Jesse and his Friend resting"><img src="Spry-UI-1.7/jackandjesse/jackjesserestbeachthumbnail.jpg" alt="photos-4.jpg" /></a></li>
            <li><a href=Spry-UI-1.7/jackandjesse/jackjessedwnbeach250x350.jpg src="Spry-UI-1.7/jackandjesse/jackjessedwnbeach250x350.jpg" title="A Walk down the Beach"><img src="Spry-UI-1.7/jackandjesse/jackjessedwnbeachthumbnail.jpg" alt="photos-5.jpg" /></a></li>
          </ul>
    Now take a closer look at the first image.
    The thumbnail is jacksjessethumbnail.jpg and, according to the markup, can be found at http://www.williamshomesteadranch.com/Spry-UI-1.7/jackandjesse/jacksjessethumbnail.jpg. Bless me, the thumnail is there. No problem here.
    The main image is jacksjesse251x270.jpg and, according to the markup, can be found at http://www.williamshomesteadranch.com/Spry-UI-1.7/jackandjesse/jacksjesse251x270.jpg. Lo and behold, the image cannot be found. The problem must be here.
    We can do the same analysis for each of the remaining images with the same result. This means that the main images have not been uploaded to the correct folder or that the path to the main image is incorrect.
    Assuming that the path to the main image is correct, using DW, have a look in your local folder as follows
    Then 1. single left click on the jackandjesse folder to highlight it, 2. click on the symchronise button, 3. make sure you have the correct selections in the Synchronize Files dialog and click on preview.
    Then click on OK as per
    and the files should be uploaded to the correct remote folder.
    Gramps

  • Data written to Live cache but not visible in SNP Planning Book

    Hello All,
    We have an issue this morning, Customer service cordinator placed a Purchase Order in SNP (VMI). Order was sent to ECC and a sales order was created. This morning when we check the sales order, it shows 4574 cases but in TLB Pur chase order, it only some 2000 something. I went to OM16 and checked the sales order and it had the entire 4574 cases written in the live cache. Any help on how to get the entire quantity to be seen is appreciated. Thank you.
    Regards,
    Rohit.

    Hi Ada,
    Thanks for the reply. The issue got resolved by itself.
    Regards,
    Rohit.

  • Error during Live Cache Server Installation on SCM 4.1 system

    Hi All,
    I have an SCM 4.1 ABAP system running on MSSQL2005 and Win2003 server.I would like to install Live Cache Server on the same Server.Livecache client was installed as part of SCM 4.1 installation.
    I have installed MAXDB software and now when im trying to install Live Cache Server Instance i get the below error
    Im performing the installation with user root and it is an Administrator.
    WARNING 2011-12-09 11:01:25
    Execution of the command "change 'user' '/install'" finished with return code 1. Output: Install mode does not apply to a Terminal server configured for remote administration.
    Installation start: Friday, 09 December 2011, 11:01:23; installation directory: G:\SCM_4.1_Media\Media_Live_Cache\New_Media\51031447_2\CD_SAP_SCM_4.1_liveCache_64bit\SAPINST\NT\AMD64; product to be installed: SAP SCM 4.1> Additional Services> Install a liveCache Server instance
    Transaction begin ********************************************************
    WARNING 2011-12-09 11:02:33
    Error 3 (The system cannot find the path specified.
    ) in execution of a 'CreateProcess' function, line (265), with parameter (G:\SCM_4.1_Media\Media_Live_Cache\New_Media\51031447_2\CD_SAP_SCM_4.1_liveCache_64bit\NT\AMD64\SDBUPD.EXE -l).
    Transaction end **********************************************************
    WARNING 2011-12-09 11:02:34
    The step Fill_sapdb_db_instance_context with step key LIVECACHESERVER|ind|ind|ind|ind|ind|0|LC_SERVER_INSTALL|ind|ind|ind|ind|ind|0|Fill_sapdb_db_instance_context was executed with status ERROR.
    Has anyone seen this error before ? Any pointers would be helpful.
    Regards,
    Ershad Ahmed.

    Subprocess starts at 20111209154957
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX db_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209154957
    OK
    > Subprocess starts at 20111209155027
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX db_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209155027
    OK
    > Subprocess starts at 20111209155221
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX db_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209155221
    OK
    > Subprocess starts at 20111209155323
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209155324
    OK
    7.5.00.31    f:\sapdb\liv\db
    7.6.06.10    f\sapdb\sdb\7606
    7.6.06.10    C:\Program Files\sdb\7606
    > Subprocess starts at 20111209155324
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209155324
    OK
    7.5.00.31    f:\sapdb\liv\db
    7.6.06.10    f\sapdb\sdb\7606
    7.6.06.10    C:\Program Files\sdb\7606
    > Subprocess starts at 20111209161349
    Execute Command : C:\Program Files\sdb\programs\pgm\dbmcli.exe -n XXXXXXXXX inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20111209161349
    OK
    7.5.00.31    f:\sapdb\liv\db
    7.6.06.10    f\sapdb\sdb\7606
    7.6.06.10    C:\Program Files\sdb\7606
    Regards,
    Ershad Ahmed.

  • Data movement from R/3 DB to APO DB and to Live cache

    Dear APO Experts,
    I have few questions on live cache and how it works, I understand that Live cache is memory resident database. below are my questions.
    1) What sought of data move from R/3 DB to APO DB and then to Live cache DB
    2) When data moves from APO DB to Live cache, till how much duration that data stays in live cache
    3) And how does data gets pulled in to live cache from APO DB
    4) Why do we require live cache logs while data never gets commited to hard disk
    5) Do we ever add a datafile to Live cache DB
    any info that you provide on this will be really helpfull to me
    Thanks,
    Chetan

    Hello Chetan,
    As you know, itu2019s MAXDB/liveCache forum.
    What is the version of your system?
    The is documentation available at:
       SAP liveCache technology
    < Please review document u201CWhat is SAP liveCache technology?u201D >
    Sap documents at service.sap.com/scm -> Technology:
    u201CliveCache overviewu201D and u201CIntegration overviewu201D
    For SAP liveCache documentation also see the SAP note 767598.
    Go to SAP link Best Practices for Solution Management: mySAP SCM at   SAP liveCache technology ...
    And Review the document u201CManage APO Core Interface in SAP APO (3.x) / mySAP SCM (4.x/ 5.0)u201D
    1. As you saw in the reference documents the data transferred from the connected R/3 system to APO.
    And the transactional data could be uploaded to the liveCache, if you downloaded them
    to the APO database cluster tables first. This procedure steps are running during the
    system upgrade < for example, from SCM 5.0 to SCM 7.0 ) u2013 report /SAPAPO/OM_LC_UPGRADE_70 steps. Or you want to migrate the          
    liveCache to another operating system or convert your system to Unicode,  
    and therefore you want to back up the liveCache data first so that you    
    can reload it into the liveCache afterwards - SAP Note No. 632357.                              
    2. Could you collaborate more on this sentence. Could you give examples?
    3.  u201CAnd how does data gets pulled in to live cache from APO DBu201D
        The data are not pulled from the APO DB to liveCache.
         When you changed the APO data on the system the LCA procedures have been called from ABAP. The objects stored in the class containers in liveCache can be accessed and manipulated only via LCA routines. The registration of the LCA routines is done automatically when the liveCache is started by the LC10. The LCA procedures in the LiveCache are written in C++                          
    and shipped to the customers as binary LCA libraries(LCA build) together with the LiveCache.
    < See more details in SAP Note No. 824489 or 1278897 as of SCM 7.0 >
    4. See the SAP notes:
                   869267     FAQ: SAP MaxDB LOG area
                 1377148     FAQ: SAP MaxDB backup/recovery
    5. You could run the quicksizer & estimate how much data you are planning to have in liveCache.
         Also the amount of data could be increased by the creation of the new data in APO by users
         Or another reason u2026
         In general you will add the datavolume to solve or prevent the DB_FULL issue,
         See u201C17. What do I do if the data area is full? u201C in SAP note 846890.
    Thank you and best regards, Natalia Khlopina

  • Live cache upgrade on Windows 2003, IA64 clustered environment

    Hi,
    We are currently upgrading the Live Cache from 7.6.03,    BUILD 008-123-159-187 to 7.7.03   BUILD 023-123-174-368.
    Note # 508979 is being referred to. The upgrade has completed successfuly on one Node A but is interruopted on Node B. The error log is as follows
    INSTALLER_INFO: Version = 7.7.03 Build 023-123-174-368
    INSTALLER_INFO: Changelist = 174368
    INSTALLER_INFO: MakeId = 285415
    INSTALLER_INFO: Type = kit
    SYS_INFO: Host name = FMSAP457
    SYS_INFO: System = Windows
    SYS_INFO: Architecture = IA64
    SYS_INFO: Version = NT 5.2
    SYS_INFO: Subversion = Service Pack 2
    CALL: SDBUPD -INSTANCE -profile APO LiveCache
    STDOUT:
         SAP liveCache INSTANCE UPDATE
    STDOUT:      *****************************
    STDOUT: starting installation We, Oct 08, 2008 at 01:26:46
    STDOUT: operating system: Windows IA64 NT 5.2 Service Pack 2
    STDOUT: callers working directory: Z:/SCM_51upgradeCD/SCM5.1_SPS6/lca600011_livecache-win-64bit-i386-7_7_03_23
    STDOUT: installer directory: Z:/SCM_51upgradeCD/SCM5.1_SPS6/lca600011_livecache-win-64bit-i386-7_7_03_23
    MSG: InstallRegistry: space check ok: 16843616 kb on W: (17719292 kb total) available
    MSG: install registry successfully locked
    MSG: read 16 PACKAGES
    MSG: net registry size = 133192 bytes
    WRN: InstallRegistry::reserveSpace(): file >= 1024 kb
    STDOUT: archive directory: Z:/SCM_51upgradeCD/SCM5.1_SPS6/lca600011_livecache-win-64bit-i386-7_7_03_23
    STDOUT:
    MSG: debug package SDBBAS.SDB is valid
    MSG: debug package SDBKRN.SDB is valid
    MSG: debug package SDBUTL.SDB is valid
    MSG: no installation data to migrate
    STDOUT: beginning to check sap db instances
    STDOUT: existing instance:
    STDOUT: 0:  LCA   "O:/sapdb/LCA/db"  7.6.3.8
    STDOUT: 1:  none
    STDOUT: please enter instance id:
    STDIN: 0
    STDOUT: please enter database manager operators name:
    STDIN: control
    STDOUT: please enter database manager operators password: STDOUT:
    STDIN:
    STDOUT: resume broken instance check
    x_server is running
    got following x_server data:
    version = W64/INTEL 7.6.3    Build 008-123-159-187
    dbmsrv uses db_online
    dbmsrv uses db_admin
    STDOUT: finding instance type...
    instance type is LVC
    getting catalog encoding...
    catalog encoding is UNICODE
    STDOUT: finding starting release...
    kernel executable is O:\sapdb\LCA\db/pgm/kernel.exe
    kernel version by GetBuildString 7.6.3    Build 008-123-159-187
    starting release is 7.6.3    Build 008-123-159-187
    STDOUT: finding apo starting release...
    sapapo lib is O:\sapdb\LCA\db/sap/sapapo.dll
    apo version by GetBuildInfo 5.0.0.13
    apo starting release is 5.0.0.13
    STDOUT: finding migration strategy...
    migration is using external livecache consistency
    from LVC 7.6.3    Build 008-123-159-187
    and  APO 5.0.0.13
    to   LVC 7.7.03
    and  APO 6.0.0.011
    STDOUT: looking for running instances...
    no instances found
    db_enum
    OK
    MSG: writing 16 packages
    MSG: net install registry size = 133192 bytes
    MSG: wrote install registry (156751 bytes)
    STDERR: MaxDB instance "LCA" not ready to update
    STDERR: looking for running instances...
    no instances found
    db_enum
    OK
    STDERR: SAP liveCache instance update exited abnormally at We, Oct 08, 2008 at 01:28:48
    MSG: install registry successfully unlocked
    Regards
    Abraham

    As a SAP customer: please open a support message for this!
    regards,
    Lars

  • Live Cache Integration Errror

    Hi Experts / Gurus,
    Can you please help me in this regard.
    I have installed SCM 2007 on my Laptop ( Windows 2003 - x64 Bit Version). Installtion went on well. i am able logon successfuuly.  when i am trying to test the connection DB59 - Application Server - > Live Cache, i am facing error.
    i am pasting the error logfile below
    connect test with DBMCLI DB_STATE                                                        Successful
    connect test with COMMAND MODE "DBMRFC DB_STATE                        Successful
    connect test with SESSION MODE  "DBMRFC DB_STATE                          Successful
    connect test with native SQL(LCA)                                                            Since Offline  Can not determine
    when i check the integration test, it says, offline mode, there is Diamond symbol shown..
    I am unable to do any  transaction which requires Live Cache.
    Please Advice.
    Thanks in Advance
    Venkata Ramjeevan    PMP, CSCP

    > Should i do anything with Max DB? Currently i am using Max DB 7.7 Version with Live cache 7.7... do i need to start Max DB separately. If yes, please guide me, how to do that..
    Why should you do anything with MaxDB?
    You got a problem with your liveCache instance - that's it.
    This has nothing to do with any other MaxDB instance here.
    And, just for the case you got confused:
    If you use a liveCache - there is just one software running.
    It's the MaxDB kernel.
    The only part that makes a liveCache instance different from a standard MaxDB instance is:
    liveCache comes with a bunch of build-in (yes, into the MaxDB kernel) C++-routines, that can be called by SCM.
    These C++-routines do all the work and run in the MaxDB Kernel process.
    If you cannot get it running, you may make use of the maintenance fee your company pays and open a support message ...
    regards,
    Lars

  • Live Cache 7.5. Installation SCM4.1 ERROR MDB-070020

    Hi,
    we`re trying to install live cache 7.5.00.21 on SCM 4.1.
    (Maxdb version of normal db is 7.6.05.09).
    We had an other version installed before, which we deleted because of other errors.
    Now we`re getting the following error message - any idea?
    WARNING 2009-01-16 11:19:37
    Execution of the command "/special1/TAD_NEU/lcinst/UNIX/HPIA64/SDBINST '-indep_prog' '/sapdb/programs' '-indep_data' '/sapdb/data' '-depend' '/sapdb/LCA/db'
    '-profile' 'APO LiveCache' '-o' '1100' '-g' '1100' '-b'" finished with return code 1. Output:
    starting preparing phase of package Base 7.5.00.21 64 bit
    cannot downgrade package
    skipping package
    starting preparing phase of package Server Utilities 7.5.00.21 64 bit
    cannot downgrade package
    skipping package
    starting preparing phase of package Database Kernel 7.5.00.21 64 bit
    cannot do update check - test file "/sapdb/LCA/db/pgm/kernel" not found
    installation exited abnormally  at Fr, Jan 16, 2009 at 11:19:37
    ERROR 2009-01-16 11:19:37
    MDB-070020 The database installer reported an error. Some database applications are probably still running.
    Check the log file sdbinst.log.

    Michael Schneider wrote:>
    > Hi,
    >
    > we`re trying to install live cache 7.5.00.21 on SCM 4.1.
    > (Maxdb version of normal db is 7.6.05.09).
    >
    > We had an other version installed before, which we deleted because of other errors.
    >
    > Now we`re getting the following error message - any idea?
    Sure - how did you uninstall the former installation?
    rm -f /sapdb/<DBSID> ??
    To correctly uninstall a MaxDB/liveCache you'll always have to use the SDBUNINST tool.
    Since there seems to be another installation on the same server, it's now a bit complicated to clean up the registration mess... You should open a support message for that. Then we'll see what we can do here.
    regards,
    Lars

Maybe you are looking for

  • HR programming dump

    Hi gurus, I can't seem to get rid of following dump in program i've coded... The goal is to get hierarchy father org. unit of current employee org. unit (IT0001) that has IT1002 (description) with subty = 9000. Short text: "Error in module RSQL of th

  • Subtitles in DVD Studio 4

    Hallo, I want to make a DVD with subtitles. I have a main menu with this buttons: Play Movie, Play Trailer, Language selection. The Movie has 4 Audio Tracks and 4 Subtitle tracks. I want it as default to play Audio Stream 1 and Subtitle Stream 1 when

  • Color flickering on exported QT video

    When I export video from FCP using Quicktime Conversion, my videos come out with this weird flickering color at odd places in the video. For example, you can see this weird flickering at about 42 seconds into this video: http://www.stonehomephoto.com

  • Uninstall Failure

    I am trying to uninstall CS3 from my Win 7 laptop and the uninstall has failed. Now I cannot uninstall, re-install, or repair the current installation. The program(s) were properly deactivated prior to doing the uninstall. The deactivated CS remains

  • Why get rid of one of you're best products front row

    Why get rid of one of you,re best products now you're computers are just like windows drab