Failure - Unable to Start App - Fiori App

Hi,
I am getting the and error Failure-Unable to Start App when i am trying to start any App from my Launchpad.
Below is the error we are getting
2014-09-05 17:52:45 Failed to resolve navigation target: #PurchasingDocumentItem-display - Could not resolve link 'PurchasingDocumentItem-display' sap.ushell.renderers.fiori2.Shell.controller"
Any help would be appreciated.
Thanks
Sarves
Tags edited by: Michael Appleby

Hi Sarves,
Can you please try clear cash.
You can also clean up your Model and RDP Cache by running (/iwbep/cache_cleanup) in ECC and in GW try (/iwfnd/cache_cleanup) please try it.
Regards,
Gurpal

Similar Messages

  • Failure - Unable to start App and Service SRA001_PCAPPROVAL failed. Contact your system administrator

    Hi,
    We are getting "Failure - Unable to start App" and "Service SRA001_PCAPPROVAL failed. Contact your system administrator" error.
    we have already activated the service and assigned the required role to User.
    Regards,
    Trilochan
    Tags edited by: Michael Appleby

    Hi Masa,
    we are able to see these services:
    but we are not able to find service SRA001_PCAPPROVAL in
    Activate and Maintain services (/IWFND/MAINT_SERVICE) .
    Could you please guide us how we can get those Odate services for application ,what are the activities we have to perform.
    Regards,
    Trilochan

  • SAP HR Process related to Mobility Apps/ Fiori Apps

    Hello Gurus
    I would like to know HR Process available related to Mobility Apps/ Fiori Apps. Can someone pls through some light here and also if any links available.
    RegardsVj

    Refer here..
    SAP Fiori for SAP Business Suite - SAP Library
    SAP Fiori for HCM
    http://www.watch-the-wave.com/run/content/sap-fiori-hcm
    https://experience.sap.com/fiori/
    Regards.

  • Failure - Unable to start Fiori App (MyTimeSheet)

    Hello Experts,
    Currently I'm struggling with a Fiori App, MyTimeSheet. I'm not able to access it from the launchpad. I get "Unable to start app" error all the time. Could you help?
    Thanks in advance.
    Best regards
    P Pawlak

    Please use refer below link to provide more information on the issue.
    SAP Fiori LL11 - Consultants should know about OData troubleshooting

  • Failure - Unable to start App in Fiori apps

    Hi Experts,
    When i am going to access time sheet app in fiori apps, we got below error can you please guide,
    Can you please guide for this issue. its urgent requirements.
    Thanks in advance.
    Thanks
    J Jana
    Tags edited by: Michael Appleby

    Hi Sekihara,
    I have implemented below sap note:
    1993075 - MyTimesheet (oData): Consolidated note for functionality fixes version 2
    Thanks
    J Jana

  • Failure - Unable to start app in new launchpad

    Hello Friends,
    We are in NW Gateway 7.4 and when I logged as User and trying to access Approve Purchase Requisition, I am  getting error "Unable to start app". When I looked at error log and in Network element found the below errors. Am I missing something and what I don't understand is the error in Gateway log shows this
    1. "No service found for namespace , name sra001_pcapproval, version 0001"
    2.  Back-end error occurred "T100 Info:GBAPP_APV_MSG-013"
    Network Element error:
    Gateway error:
    Regards,
    S.Srikanth
    Tags edited by: Michael Appleby

    Hi Masa,
    When I gone through the error log for Approve Purchase Requisition, I am getting error "Backend error occured. T100 Info:GBAPP_APV_MSG-013".
    When, I checked with URL http://xxx:8000/sap/opu/odata/sap/gbapp_prapproval;mo/LaunchPageCollection from network element in NW Gateway client, getting below error
    <?xml version="1.0" encoding="utf-8" ?>
    - <error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"> 
    <code>GBAPP_APV_MSG/013</code>  
    <message xml:lang="en">Workflow Task Type is not passed as filter criteria</message>  
    - <innererror> 
    <transactionid>9E830DE47F50F17D910F0A4197385754</transactionid>  
    <timestamp>20140717082602.1410000</timestamp>  
    - <Error_Resolution> 
    <SAP_Transaction>Run transaction /IWFND/ERROR_LOG on SAP NW Gateway hub system and search for entries with the timestamp above for more details</SAP_Transaction>  
    <SAP_Note>See SAP Note 1797736 for error analysis (https://service.sap.com/sap/support/notes/1797736)</SAP_Note>  
    </Error_Resolution>
    - <errordetails> 
    - <errordetail> 
    <code>GBAPP_APV_MSG/013</code>  
    <message>Workflow Task Type is not passed as filter criteria</message>  
    <propertyref />  
    <severity>error</severity>  
    </errordetail>
    But, when I checked in NW gateway client with the below URL, I am able to see the PR for approval in user inbox.
    http://xxx/sap/opu/odata/sap/GBAPP_PRAPPROVAL/WorkflowTaskCollection?$filter=TaskType eq'TS00007986'
    Regards,
    Srikanth

  • Unable to start the android app while clicking the appropriate file

    Hi I have developed andoid app and now I am porting it on bb z10 using eclipse plugin. I have set intent filter in AndroidManifest.xml which should allow any file with .camem extension to start the app. It happens in original android app in android mobile but it does not happen in ported BB app in BB z10 phone. Please help. My AndroidManifest.xml is given below:
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ca.secure.mail"
    android:versionCode="1"
    android:versionName="2014Q2 Sprint1" >
    <uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="16" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <application
    android:name=".util.DatabaseManager"
    android:enabled="true"
    android:icon="@drawable/app_icon"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/EmailTheme" >
    <activity
    android:name=".ui.ReadHTMLActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:excludeFromRecents="true"
    android:label="@string/app_name" >
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.htm" />
    <data android:mimeType="text/html" />
    </intent-filter>
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.camem" />
    <data android:mimeType="application/octet-stream" />
    </intent-filter>
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.camem" />
    <data android:mimeType="application/camem" />
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.SaveArcotIDActivity"
    android:configChanges="orientation|keyboardHidden|screenSize" >
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="esend" >
    </data>
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.PasswordActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.SplashScreen"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:excludeFromRecents="true"
    android:label="@string/app_name" >
    <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.DecryptedContentActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.TutorialActivity"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.RRFActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name="com.ca.mam.emmlib.app.LibLoginActivity"
    android:exported="false"
    android:label="@string/app_name" />
    </application>
    </manifest>

    You're in the Device Support Forums. You might be best to post this in the Developer Forums for better exposure to those who could assist you. Chances are a moderator will move it for you.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Fiori Approve Requisitions error - unable to start app

    Hello Experts,
    We have implemented the UIX01EAP (SAPK-10002INUIX01EAP) Fiori component. I have followed the link Approve Requisitions.
    I have activated the OData Service GBAPP_PRAPPROVAL, activated the UI5 application MM_PR_APV, assigned the Business Role SAP_MM_BCR_Buyer_X1, Technical Role SAP_MM_TCR_T_X1 in the Front-end Server and the authorization role SAP_MM_PR_APV_APP in the Back-end server to the relevant User ID.
    I have also followed the Configuration Tasks given in the above link including maintaining the Workflow Task under Customizing for Materials Management under Purchasing Purchase Requisition Approve Requisitions App Specify Workflow Task IDs for Approve Requisitions App.
    After this when I login to the launchpad URL using the approver user, I am able to see the Buyer (MM) group on the home page and also the Approve Requisitions tile with the correct number of pending workitems.
    But when I click on the Approve Requisitions tile to open the app, I get an error popup saying Failure - Unable to start App and get the below error in Chrome console.
    Can this be due to some missing role/authorization? Or can this be an issue with the Approve Requisitions app itself?
    Regards,
    Saurabh

    Thanks for your response Masa.
    I am getting the below response when I run the service /sap/opu/odata/UI2/INTEROP/ResolveLink service:
    Regards,
    Saurabh

  • Fiori app in new window

    Dear all,
    We have installed the PPM Fiori apps on our system; we have managed to get these four apps on the launchpad. However when we click one of the tiles the error "Failure - unable tot start app" occurs. If we do the same but now right click and open in New Tab or New Window the app is started without any problems.
    Has anyone experienced the same behaviour?
    Regards,
    John.
    Tags edited by: Michael Appleby

    Hi John,
    Hare are mandatory notes for SP09.
    UI Add-on SP09 is available. SAPUI5 library is 1.22.*.
    2019136 - Corrections for SAP NetWeaver UI Add-On 1.0 SP09
    2029407 - Central Note for SAP Fiori Launchpad - UI Add-On 1.0 SP09
    2026517 - UI theme designer for ABAP: UI Add-on 1.00 SP09
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Approve Request Fiori app - UI Extensions not working

    We have configured the standard Approve Requests app to show Customer Invoice approval and it works fine. And there are 3 requirements I am trying to achieve in our sandbox on top of the Approve Requests (CA_ALL_APV) app.
    1. Add a custom UI field in the info tab of the details page.
    2. Enable to show the attachment and notes tab (standard app has these 2 not visible)
    3. Enable multiple approval(I think i'll start another discussion for this requirement since standard doesn't support mass approval-which is such a negative for this app)
    After downloading the application and adding it to an SAPUI5 project in eclipse, I made the following changes:
    For requirement 1, I created  InfoFields.fragment.xml where i have the below code:
    <core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core">
        <Label  text="Vendor ID"/>
          <Text  text="1234"/>
        <Label  text="Custom Field 2"/>
          <Text text="Custom Text 2"/>
    </core:FragmentDefinition>
    Additionally for requirement 1 along with requirement 2, i created a customizing object under the metadata object with the below code in Component.js:
    customizing : {
      "sap.ui.viewModifications": {
      "cross.fnd.approve.requests.view.S3": {
      "ARAttachmentIconTabFilter": {
      "visible": true,
      "cross.fnd.approve.requests.view.S3": {
      "ARNoteIconTabFilter": {
      "visible": true,
      "sap.ui.viewExtensions" : {
      "cross.fnd.approve.requests.view.S3":{
      "CustomerExtensionForInfoTabContent": {
      className: "sap.ui.core.Fragment",
      fragmentName: "cross.fnd.approve.requests.view.InfoFields",
      type : "XML"
    After making the changes, I uploaded the WebContent folder of the project back to the backend with the report /UI5/UI5_REPOSITORY_LOAD.
    I named the new BSP application ZVCA_ALL_APV5.
    How i tested? I tested it in 2 ways:
    1. From SE80, Right Click and test. This does not load anything. A blank page is shown. The console in the IE developer tools shows no errors.
    2. Change the URL in LPD_CUST to point to the new BSP. The run the fiori launchpad. this will show the tile for Approve Requests with the correct number of workitems as 2. But once you click on the tile, an error popup is shown which reads 'Failure - Unable to start App'. The console in IE has an error: "TypeError - Object doesn't support property or method '_createRequestUrl' Approve Requests".
    I made the changes to Component.js and did not touch Component-dbg.js or Component-preload.js. Do i need to change these 2 files too each time i change Component.js?
    We are in process to decide if we really want to use Fiori or go with Kony. So I would want to get Fiori working in sandbox with our custom requirement to give it a chance.
    @Fiori Gurus: What do you think the problem is? Am i making any silly mistake here?
    Best Regards,
    Varun

    I'm sorry , here below is the correct version.
    jQuery.sap.declare("cross.fnd.approve.requests.Component");
    jQuery.sap.require("sap.ui.core.UIComponent");
    jQuery.sap.require("sap.ca.scfld.md.ConfigurationBase");
    jQuery.sap.require("cross.fnd.approve.requests.Configuration");
    jQuery.sap.require("sap.ui.core.routing.Router");
    jQuery.sap.require("sap.ca.scfld.md.ComponentBase");
    // new Component
    sap.ca.scfld.md.ComponentBase.extend("cross.fnd.approve.requests.Component", {
      metadata : sap.ca.scfld.md.ComponentBase.createMetaData("MD", {
      "name": "Approve Requests", // F0392
      "version" : "1.2.9",
      "library" : "cross.fnd.approve.requests",
      "includes" : [
      "dependencies" : {
      "libs" : [
      "sap.m",
      "sap.me"
      "components" : [
      "config" : {
      "resourceBundle" : "i18n/i18n.properties",
      "titleResource" : "SHELL_TITLE",
      "icon" : "sap-icon://approvals",
      "favIcon" : "./resources/sap/ca/ui/themes/base/img/favicon/Approve_Requests.ico", //FIXME: should use F0392, but resource is not like that for W1s
      "homeScreenIconPhone" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/57_iPhone_Desktop_Launch.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconPhone@2" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/114_iPhone-Retina_Web_Clip.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconTablet" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/72_iPad_Desktop_Launch.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconTablet@2" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/144_iPad_Retina_Web_Clip.png", //FIXME: should use F0392, but resource is not like that for
      "startupImage320x460" : "./resources/sap/ca/ui/themes/base/img/splashscreen/320_x_460.png",
      "startupImage640x920" : "./resources/sap/ca/ui/themes/base/img/splashscreen/640_x_920.png",
      "startupImage640x1096" : "./resources/sap/ca/ui/themes/base/img/splashscreen/640_x_1096.png",
      "startupImage768x1004" : "./resources/sap/ca/ui/themes/base/img/splashscreen/768_x_1004.png",
      "startupImage748x1024" : "./resources/sap/ca/ui/themes/base/img/splashscreen/748_x_1024.png",
      "startupImage1536x2008" : "./resources/sap/ca/ui/themes/base/img/splashscreen/1536_x_2008.png",
      "startupImage1496x2048" : "./resources/sap/ca/ui/themes/base/img/splashscreen/1496_x_2048.png"
      // Navigation related properties
      viewPath : "cross.fnd.approve.requests.view",
      detailPageRoutes : {
      "detail" : {
                    "pattern" : "detail/{SAP__Origin}/{InstanceID}/{contextPath}",
                    "view" : "S3",
      fullScreenPageRoutes : {
                "detail_deep" : {
                   "pattern" : "detail_deep/{SAP__Origin}/{InstanceID}/{contextPath}",
                   "view" : "S3",
    customizing : {
    "sap.ui.viewExtensions" : {
    "cross.fnd.approve.requests.view.S3":{
    "CustomerExtensionForInfoTabContent": {
    className: "sap.ui.core.Fragment",
    fragmentName: "cross.fnd.approve.requests.view.CustomFrag1",
    type : "XML"
      * Initialize the application
      * @returns {sap.ui.core.Control} the content
      createContent : function() {
            var oViewData = {component: this};
      return sap.ui.view({
      viewName : "cross.fnd.approve.requests.Main",
      type : sap.ui.core.mvc.ViewType.XML,
      viewData : oViewData
      setDataManager : function(oDataManager) {
      this.oDataManager = oDataManager;
      getDataManager : function() {
      return this.oDataManager;

  • After Lion upgrade, unable to start any 3rd-party apps. Suspect it has something to do with the cache and permissions.

    Dear Apple Support Community,
    I am using a MacBook 15" (mid-2010) with Intel i7 2.66GHz.
    Currently, I write to you via my sister's laptop as mine is unable to start-up Safari or any other web browser at the moment.
    After a relatively smooth OS installation of OS X Lion, I noticed that my usual apps, Evernote, Twitter, Skype, and others, were not able to start-up at all (i.e. kept bouncing in place on the dock for what seemed like forever). I have since disabled their 'Open at Login' command and now start my MacBook up with no apps running. After restarting my computer countless times, I've realised that only selected native applications are able to open. Finder, Safari, App Store, iTunes, FaceTIme and most of the Utilities. Even on Finder, right-clicking is apparent blasphemy as the window freezes and the windmill pops up, and I am forced to relaunch Finder. Safari is only able to load simple web pages such as Google.
    I have attached an excerpt of my Console for you guys (I could take a screenshot but dropbox could not even open to allow me to send it to my sister's laptop). As you can see, at every refresh, the same 5 messages appear, that a particular 'com.apple.launchd.peruser.501' keeps crashing. Correct me if I'm mistaken but this is probably the process handle for Launchpad. Although I am not sure whether this is the only reason for my computer's sluggishness post-Lion update, I would really like to eliminate this possibility.
    Things I have tried:
    Repairing Disk Permissions
    Unfortunately, this yielded no positive results as it did not seem to rectify the problem. Subsequent reparations have produced the same log, hence I don't think it's working.
    Waiting for Indexing to complete
    Some people have cited that the reason behind the sluggishness could be due to the fact that Spotlight was indexing my hard drive for optimal search results. I have since waited 7 hours for the indexing to complete, but am still stuck with a computer that cannot even open Twitter.
    Installing Onyx
    Other forum users have said that it is possible that the computer's cache has been clogged up or something. I am not entirely sure what this means but I went to attempt to download the free product that most people have recommended. Although installation was a cinch, I was not able to even start Onyx. After 10 minutes, Lion just told me that the program had been unresponsive for too long and asked me whether I wished to kill it.
    I am almost certain that the overarching problem could be erroneous sharing permissions. But then again, that is no reason for my computer to behave in such a snail-like manner. I would really appreciate if you guys could provide me with some sudo commands to use in the terminal or something that can fix the problems my computer is facing, after understanding the limitations that I currently face considering the state of my MacBook.
    The fact that I am writing here on this forum is that I wish to do anything other than a full reinstallation of the OS that has caused me so much anxiety (Snow Leopard was just magical compared to this pile of sh*t, pardon my language). I just want to do everything I can before having to resort to such a barbaric act (I have a lot of applications but I don't know whether I am able to restore those using Time Machine as well).
    In any case, thank you guys so much for reading all the way to the end. Help of any sort, be it sincere or condescending, will be fully appreciated. Please don't hesitate to ask for more information if I have not already provided it. As I am an average user, I may not be too familiar with jargon. So if getting the information requires complicated procedures, please provide a step-by-step.
    Also, tl;dr: Updated from Snow Leopard to Lion, computer became slow and buggy, tried many things, didn't work, need help.
    Thanks,
    Nathan

    Thanks for the quick advice!
    Unfortunately, I am still unable to open my core productivity apps, namely Skype and Evernote. Twitter, as well, could not start. But interesting quick fix though, I never knew you could do that.
    Here's the error log after the restart:
    What else should I try?

  • HT5361 I am unable to start or select the MAIL app. No incoming mail and no outgoing mail. I do not even know how to get an answer without email. Can you help?

    I am unable to start or select the MAIL app. No incoming mail and no outgoing mail. I do not even know how to get an answer without email. Can you help?

    Thank you Carolyn, How helpless you can feel without this App!
    Going into the App Store as you suggest, I see 'thee updates available", the first says, 'X RESTART', the second says, 'Garage Band, an error has occurred" (in red), and the third 'Memory Clean, UPDATE'.
    Am I correct in thinking that OSX is the problem, because it is waiting for a restart?
    Kind regards,
    Cy

  • Unable to start apache in oracle apps r12

    hi,
    we are unable to start Apache in one of our test instance.
    in Error log..
    /home/mnt/ebs/PRJ/app/inst/apps/PRJ_rempapp/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd
    Error: Failed to open the wallet [Hint: incorrect path, incorrect password, bad wallet, ...] (Server rempapp.powerdesigninc.us:80, wallet file:/home/mnt/ebs/PRJ/app/inst/apps/PRJ_rempapp/certs/Apache)
    recent changes: applied patch  19905922:R12.PO.B.
    Referred:Oracle HTTP Server does not Start with AutoLogin Wallet (Doc ID 386314.1)
    please help..
    Thanks
    Raghavendra

    Hi
    Please refer the below links,
    Httpserver not starting, help!
    HTTP_Server when starting OPMN.
    Regards,
    krish

  • Unable to start   apps services

    hai,
    i was instlled 12.0.4 on RHEL AS 4.0 32 bit operating system. everything is working fine. after some days unexpectullay IPADREss of server was changed.
    know the apps services i was unable to start. can u tell me we need to chane in any files this ipadrress????

    You just need to change the IP address in the etc file and bounce the services. If this does not help, then run AutoConfig on the database and the application tiers.

  • I am unable to open some of apps, even one inbuilt app like camera, Example : regarding apps like Clash of clans and  Bike race TFG.whenever I try to open these games, it start opening and in middle of opening , it sent me back to home page of my mobile.

    I am unable to open some of apps, even one inbuilt app like camera, Example : regarding apps like Clash of clans and  Bike race TFG.whenever I try to open these games, it start opening and in middle of opening , it sent me back to home page of my mobile.Please help what to do ? and with camera when open it it open a blank Black page, please help ?

    You should really read the manual.  Click Support at the top fo this page, then click Manuals.
    You should be syncing to your computer regularly. Your game data is backed up when you sync.
    First try a restart.  This eraes nothing.
    If that does not solve, then try a reset.  This erases nothing.
    If this fails then try a restore

Maybe you are looking for

  • The difference between 'Pigment Based' and 'Dye Based' color inks?

    What is the difference between 'Pigment Based' color inks (as used in the HP OfficeJet 8500 series) and 'Dye Based' color inks (as used in the HP OfficeJet 7500 printer)? Thanks; Mark S

  • Safari 4 won't render all text between pre and /pre tags

    I am unable to read text between <pre> and </pre> tags in Safari 4.0.3 for Snow Leopard. The problem started when I upgraded to Snow Leopard, but I'm afraid I might have corrupted something when I ran a piece of nastiness called Leopard Cache Cleaner

  • Using Captivate Object Model

    Hi, We are evaluating the Adobe Captivate software and we are in the process of identifying on how to use the Object model to record the screen Programmatically. Do you have any idea on how to do this using the captivate object model? We have a custo

  • G400s bios don't have usb boot option

    hi all my laptop is G400s, i want try install linux but i got to bios but usb boot option missing , any option i wrong to choose or any suggetion? pictur below is my bios setting picture: Link to picture Link to picture Link to picture Link to pictur

  • Need to copy CMS data base from MySQL to oracle

    Hi, Right now our CMS data base is My SQL and we are planning to use oracle db as CMS data base. For that we will copy all CMS tables from My SQL to oracle. But I am not sure whether we can copy My SQL db to oracle db using copy option of script cmsd