Problem with Language Import (could not create cofile)

Hi everybody
I'm trying to load the language pack "Spanish", but falls and gives me the following message
"could not create cofile"
Somebody could give me some indication on how to overcome this mistake, I've seen out there and some queries, but I have not overcome my problem!
I have created the "Transport System" and charged the language in "DEV Server," but I can not bring it to "test" if the attempt to import "TCode SMLT" gives me the error above.
thanks

this is action log!     
@5B\QInformation@     Start import (state:initial)
@5B\QInformation@     ... system date: 23.08.2008 system time: 16:38:07
@5B\QInformation@     Version: 700.F.15
@5B\QInformation@     Step INIT ...
@5B\QInformation@     ... system date: 23.08.2008 system time: 16:38:07
@5B\QInformation@     ... configuration "Selective Language Import"
@5B\QInformation@     ... executed successfully
@5B\QInformation@     Step DISASSEMBLE ...
@5B\QInformation@     ... system date: 23.08.2008 system time: 16:38:07
@5B\QInformation@     ... do not overwrite data files and cofiles (settings)
@5C\QError@     Could not create cofile
@5B\QInformation@     Restart import (state:lc_disassemble)
@5B\QInformation@     ... system date: 23.08.2008 system time: 16:46:21
@5B\QInformation@     Step DISASSEMBLE ...
@5B\QInformation@     ... system date: 23.08.2008 system time: 16:46:21
@5B\QInformation@     ... do not overwrite data files and cofiles (settings)
@5C\QError@     Could not create cofile
@5B\QInformation@     Restart import (state:lc_disassemble)
@5B\QInformation@     ... system date: 23.08.2008 system time: 17:05:01
@5B\QInformation@     Step DISASSEMBLE ...
@5B\QInformation@     ... system date: 23.08.2008 system time: 17:05:01
@5B\QInformation@     ... do not overwrite data files and cofiles (settings)
@5C\QError@     Could not create cofile
Test in STMS
RFC connections Ok
Connection Test   Ok
Transport Tool      Ok
Transport Directory Ok
Check Transport Directory                                 24.08.2008  18:49:28
       ECP System ECP
           Transport Directory
               bin        
mts-sap\sapmnt\trans\bin
               buffer     
mts-sap\sapmnt\trans\buffer
               cofiles    
mts-sap\sapmnt\trans\cofiles
               data       
mts-sap\sapmnt\trans\data
               log        
mts-sap\sapmnt\trans\log
               sapnames   
mts-sap\sapmnt\trans\sapnames
               tmp        
mts-sap\sapmnt\trans\tmp

Similar Messages

  • Problem with Java Memory "Could not reserve enough space for object heap"

    Hi gurus,
    I am not an expert with Java´s configuration, and I have a situation that I don´t understand. First of all, I am working at Centos 6.2 with jdk_1.6 and Tomcat 7.
    The problem is...
    - If I run Tomcat with JAVA_OPTS="-Xmx128m"* (at catalina.sh) all works fine.
    - If I run Tomcat with JAVA_OPTS="-Xmx512m"* (at catalina.sh) an error appears:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    This appear when I run java -version or when I try to stop Tomcat, and the Tomcat isn´t able to stop.
    The strange thing is that my server has more than 200M free in physical memory. So, why Tomcat isn´t able to stop? and Why Java doesn´t use the free memory in my server?
    Thanks in advanced.

    Hello EJP, thanks for your answer.
    I have explained bad.
    The server has 703M free when Tomcat is stopped. I had mentioned that my server has more than 200M free in physical memory when Tomcat is running with JAVA_OPTS="-Xmx512m", so I don´t understand why these errors appear.
    Do you understand me?
    Recently I have checked the swap memory, and it is disabled. In spite of swap memory is disabled I think java wouldn´t need this memory because it has free physical memory
    Thanks again.

  • Error with test operation 'Could not create the view'

    I'm totally new to Flash Builder. I was trucking along developing my first project as a mapping app in FB 4.5 trial version with the ESRI Flex API library. I was testing how to set up WMS and WFS services, and all was going swimmingly until suddenly 'test operations' stopped working. Now when I attempt to test any service, I receive the error "Could not create the view: 1". This error stopped working shortly after I deleted a couple of testing services I had configured, but not immediately after (three or four test worked afterwards before it broke).
    I have found almost no information online about this error, but what I have found seems to always reference eclipse. I tried starting a new project, creating a new workspace and uninstalling/reinstalling Flash Builder but the error persists.
    Has anyone else ever experienced this error? Any leads at all are appreciated.
    Thanks

    For anyone else with this problem, it seems to have been an eclipse issue in the workspace. I deleted the 'cascaded' folder and the error went away.

  • Problem with child tag - Could not resolve x to a component implementation.

    Hello.
    I am writing some chart component and got a problem setting property via child tag. Property is a custom class.
    My directory structure:
    Makefile  oxcharts  Session.vim  stats.as  stats.mxml  stats.swf
    ./oxcharts:
    ColumnChart.as MyTest.as
    stats.mxml:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:oxcharts="oxcharts.*">
        <oxcharts:ColumnChart id="myChart" showDataTips="true" width="600" height="310">
            <oxcharts:test x="5"></oxcharts:test>
         </oxcharts:ColumnChart>
    </mx:Application>
    ColumnChart.as:
    package oxcharts {
        public class ColumnChart extends UIComponent {
            public var test:MyTest;
    MyTest.as:
    package oxcharts {
        public class MyTest {
            public var x:Number;
    I got this error:
    Error: Could not resolve <oxcharts:test> to a component implementation.
    I guess something wrong with imports. Setting Number property via child tag works just fine.

    I'm gonna give a clerear example, I hope it'll help you better understand what I mean let's say I have a custom class named Login:
    package ec
             [Bindable]
         public class Login
              public var ID:int;
              public var Role:String;         
              public function Login()
    And I need to use this class within MyAmazingCanvas, so my main app will be like this:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:oxcharts="ec.*">
         <mx:Script>
              <![CDATA[
                   import ec.Login;
                   [Bindable]
                   private var myLoginStatus:Login=new Login();
                   private function setLoginData():void{
                        myLoginStatus.ID=myID.text
                        myLoginStatus.Role=myRole.text;
              ]]>
         </mx:Script>
         <oxcharts:MyAmazingCanvas id="myCustomComp" myPublicNumber="323" LoginStatus="{myLoginStatus}" />
         <mx:TextInput id="myID" />
         <mx:TextInput id="myRole" />
         <mx:Button id="setData" label="Set Data" click="setLoginData()" />
    </mx:Application>
    When I said at the top level I meant outside the scope of any function, altough is not a requierement, you can as well set it at a function level.

  • Problem with FX (CS6) "Could not complete your request due to a program error."

    This only happened after I got the master collection. FX effects in Photoshop CS6 do not work, at all. Attempting to use any of them result in the above quoted "Could not complete your request due to a program error."
    I've trashed the prefs, uninstalled/reinstalled, updated drivers, REFORMATTED MY HARD DRIVE, contacted customer support, and about every other troubleshoot short of sacraficing a goat. No cigar.
    Error log gives me the following:
    " ..\..\sources\UPattern.cpp : 1670 : REQUIRE failed"
    Same error, every time.
    Windows 7, 64x
    16gb DDR3
    AMD FX(tm)-4100 Quad-Core Processor [3.61 GHz]
    AMD Radeon HD 7800 Series
    Not running this 'Suitcase' thing. At a complete loss.

    Removing the whole folder worked, which, is good enough for me. I think what happened was a finaggle with the install, as I already had PS installed when I overlayed the master collection on top of it, still doesn't explain it not working after the reformat, might have been linked to my backup/scratch disk in some fashion and broke it. I'm not quite sure how the problem persisted.
    Don't install ps over ps, I guess ^^
    Aha, it was Prefs.
    Thank you! Greatly, been sitting on this problem for months now, no ammount of Googling would help. I can finally go back to work (that I've been sitting on this whole time).

  • Problem with deploying : SDM could not start the J2EE cluster on the host .

    Hello, All
    I have following problem with deploying the aplication I get  this messenger:
    16/09/2008 07:59:44 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : 192.168.0.14
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/PENITU1/LOCALS~1/Temp/temp47114ZChangeRequestDatabase.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/PENITU1/LOCALS~1/Temp/temp47114ZChangeRequestDatabase.ear
    Aborted: development component 'ZChangeRequestDatabase'/'local'/'LOKAL'/'0.2008.05.03.04.24.17'/'0':
    SDM could not start the J2EE cluster on the host Jupiter! The online deployment is terminated. There is no cluster control instance running on host Jupiter which is described in SecureStorage . The instances, returned by MessageServer [MS host: Jupiter; MS port: 3901], are :|Name:JM_T1221612526745_0_penitus15 |Host:PENITUS15 |State:5|HostAddress:192.168.0.205||Name:JM_T1221612357814_0_Jupiter |Host:pfs |State:5|HostAddress:192.168.0.14||Name:JC_Jupiter_JTP_00 |Host:pfs |State:5|HostAddress:192.168.0.14|Please check if there is an appropriate running cluster instances.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Deployment exception : The deployment of at least one item aborted
    I dont'n know  How do I  solver this error?
    - I reviewed the virtual memory and I increase the virtual memory
    - I restarted the server and  the system
    - I reviwed the parameter in the config tool --> cluster --> security storage it is OK
    Any suggestion for solver this  problem
    Thanks
    Regards
    DS

    I found this messenger in   Additional log information., Please si 
    17/09/2008 03:04:51 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] INFO:
    [004]Additional log information about the deployment
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[C:\usr\sap\JTP\JC00\SDM\program\log\sdmcl20080917200328.log]/>
    <!PATTERN[sdmcl20080917200328.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    Sep 17, 2008 1:04:40 PM  Info: -
    Starting deployment -
    Sep 17, 2008 1:04:40 PM  Info: Error handling strategy: OnErrorStop
    Sep 17, 2008 1:04:40 PM  Info: Prerequisite error handling strategy: OnPrerequisiteErrorStop
    Sep 17, 2008 1:04:40 PM  Info: Update strategy: UpdateAllVersions
    Sep 17, 2008 1:04:40 PM  Info: Starting deployment prerequisites:
    Sep 17, 2008 1:04:40 PM  Info: Loading selected archives...
    Sep 17, 2008 1:04:40 PM  Info: Loading archive 'C:\usr\sap\JTP\JC00\SDM\program\temp\temp62604ZIssueDatabase.ear'
    Sep 17, 2008 1:04:41 PM  Info: Selected archives successfully loaded.
    Sep 17, 2008 1:04:41 PM  Info: Actions per selected component:
    Sep 17, 2008 1:04:41 PM  Info: Initial deployment: Selected development component 'ZIssueDatabase'/'local'/'LOKAL'/'0.2008.04.17.10.53.03'/'0' will be deployed.
    Sep 17, 2008 1:04:41 PM  Info: Ending deployment prerequisites. All items are correct.
    Sep 17, 2008 1:04:43 PM  Error: Unable to compare host[Jupiter] and host[PENITUS15] Throwable: java.net.UnknownHostException Throwable message: PENITUS15: PENITUS15
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs: pfs
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs
    Sep 17, 2008 1:04:45 PM  Info: Saved current Engine state.
    Sep 17, 2008 1:04:45 PM  Info: Starting: Initial deployment: Selected development component 'ZIssueDatabase'/'local'/'LOKAL'/'0.2008.04.17.10.53.03'/'0' will be deployed.
    Sep 17, 2008 1:04:45 PM  Info: SDA to be deployed: C:\usr\sap\JTP\JC00\SDM\root\origin\local\ZIssueDatabase\LOKAL\0\0.2008.04.17.10.53.03\temp62604ZIssueDatabase.ear
    Sep 17, 2008 1:04:45 PM  Info: Software type of SDA: J2EE
    Sep 17, 2008 1:04:45 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[PENITUS15] Throwable: java.net.UnknownHostException Throwable message: PENITUS15
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs
    Sep 17, 2008 1:04:45 PM  Info: Starting cluster instance processes.
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[PENITUS15] Throwable: java.net.UnknownHostException Throwable message: PENITUS15
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs
    Sep 17, 2008 1:04:45 PM  Error: Unable to compare host[Jupiter] and host[pfs] Throwable: java.net.UnknownHostException Throwable message: pfs
    Sep 17, 2008 1:04:45 PM  Error: An error occured while starting a cluster instance.
    Sep 17, 2008 1:04:45 PM  Error: There is no clutser control instance running on host Jupiter which is described in SecureStorage .
    The instances, returned by MessageServer [MS host: Jupiter; MS port: 3901], are :
    Name:JM_T1221672404781_2_penitus15
    Host:PENITUS15
    State:5
    HostAddress:192.168.0.215
    Name:JM_T1221679486171_0_Jupiter
    Host:pfs
    State:5
    HostAddress:192.168.0.14
    Name:JC_Jupiter_JTP_00
    Host:pfs
    State:5
    HostAddress:192.168.0.14
    Please check if there is an appropriate running cluster instances.
    Sep 17, 2008 1:04:45 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Sep 17, 2008 1:04:45 PM  Error: Aborted: development component 'ZIssueDatabase'/'local'/'LOKAL'/'0.2008.04.17.10.53.03'/'0':
    SDM could not start the J2EE cluster on the host Jupiter! The online deployment is terminated.
    There is no clutser control instance running on host Jupiter which is described in SecureStorage .
    The instances, returned by MessageServer [MS host: Jupiter; MS port: 3901], are :
    Name:JM_T1221672404781_2_penitus15
    Host:PENITUS15
    State:5
    HostAddress:192.168.0.215
    Name:JM_T1221679486171_0_Jupiter
    Host:pfs
    State:5
    HostAddress:192.168.0.14
    Name:JC_Jupiter_JTP_00
    Host:pfs
    State:5
    HostAddress:192.168.0.14
    Please check if there is an appropriate running cluster instances.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Sep 17, 2008 1:04:45 PM  Info: Starting to save the repository
    Sep 17, 2008 1:04:46 PM  Info: Finished saving the repository
    Sep 17, 2008 1:04:47 PM  Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Sep 17, 2008 1:04:47 PM  Error: -
    At least one of the Deployments failed -
    Any help will be well received about this problema
    Thk
    Regards
    DS

  • Problems with 3.6 could not resolve s:ViewNavigatorApplication

    Hi,
    I'm trying to use 3.6 and not having any luck...
    I have FB 4.7 (64-bit) on Windows.
    I have downloaded from here; http://www.adobe.com/devnet/air/air-sdk-download.html
    I have completed the steps here; http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html
    I have merged the sdk as I would have done for 3.5,3.4 etc.
    Now, when I set the SDK to the 3.6 one, I get the error;
    "Could not resolve <s:ViewNavigatorApplication> to a component implementation."
    _MUST_ be something basic I'm doing wrong here!
    Help!
    G

    Now I'm confused.
    The text link you mention states that Flex users should take the SDK version without the compiler. BUT....
    the http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html page says to download the SDK from
    http://labs.adobe.com/downloads/asc2.html
    but this page now redirects to:
    http://helpx.adobe.com/air/kb/archived-air-sdk-version.html
    which contains a large list of archived SDK's. So that help page never really says which version of the SDK to use - with or without the compiler. But other forum posts have implied its suppose to be the one with the compiler.
    Now since we're overlaying the ...plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK folder that would make sense.
    So my questions are:
       Do we use the version with or without the compiler to do the overlay?
       Can we get Adobe to update that help page to reflect what we're really suppose to do?
      AND
       Does Flash Builder use this overlaid AIR SDK with any selected Flex SDK  as long as the project settings has the 'Include  Adobe AIR libraries' checkbox selected?
       What if I've configured the Apache 4.9.1 (Doesn't this have AIR SDK 3.4 embedded within it? - yeah I chose that option in the download installer) as my Flex SDK, then will the 'Include Adobe AIR libraries' checkbox still use the AIRSDK 3.6 I just overlaid?
    Is it just me, or is this just getting more and more confusing? Can we perhaps get a AIR SDK combo box to go beside the Flex combo box and when we check the 'Include Adobe AIR libraries' then we can select the AIR SDK we want? And get a 'configure AIR SDKs...' link too?

  • Install of SAP HANA Studio Dev Ed v1.00.80 fails with "Could not create the Java Virtual Machine"

    Hello,
    Scope: JVM error during initial install of SAP HANA Studio Developer Edition v1.00.80, Win86/32bit
    Source: installation files pulled from HANA Studio tab at https://hanadeveditionsapicl.hana.ondemand.com/hanadevedition/, which is a link from the main HANA site of http://scn.sap.com/community/developer-center/hana.  zip folder: "sap_hana_win32_studio_rev80"
    Targeted O/S: Windows 7, 32-bit, local Java is SE 7, update 67.   Java environment has been confirmed via checks provided at http://www.java.com/en/download/manual.jsp
    Actions taken:
    Attempted to update the installation's eclipse.ini file by reducing the -Xmx value; see details below.
    Read thru postings such as http://scn.sap.com/thread/3390626 and the threads it recommended.
    Checked OSS (ie Note 1859686 - HANA Studio does not start)
    Description of installation error:
    Shortly after executing "hdbinst", it fails with the error "Could not create the Java Virtual Machine".  I've verified that there is nearly 3G of memory free.  What I did notice, as shown in the attached files, is that Eclipse is part of this installation and it's pre-loaded with the "eclipse.ini".  I firmly believe the solution could be to reduce parameter "-Xmx1024m" to "-Xmx512m" but it's a catch-22 because even after updating eclipse.ini (in installation folder C:\Program Files\SAP\hdbstudio\tmp_p2director2014.08.13_13.36.44\director), the install program requires that the "hdbstudio" folder to be empty upon restarting it.
    Since the installation is basically a package with a lot of .jar files, there is no eclipse.ini file available in the source install folder; otherwise, updating it there would be the easiest solution if that option were available. The file is only available in the targeted deployment folder above.
    If you have encountered this same error and were able to resolve it, I would be grateful to know of your solution.  Thanks very much.
    FYI: the HANA Client installed with no issues.
    Jim Cleek
    FYI: the images below reflect the sequence of images produced during the installation.
    after clicking OK above, the screen below gets updated (see the "is not empty" msg).
    Below is the eclipse.ini file located in the deployed/target folder:
    Message was edited by: Jim Cleek
    FYI: Using information from the SAP HANA Database - Studio Installation and Update Guide, I tried to override the installation's use of its eclipse.ini file by passing my own modified version (with "-Xmx512m") of that file that was placed in a separate folder.  The cmd used via DOS window was "hdbsetup.exe -a studio --configfile=C:\Users\Admin\Downloads\eclipse.ini" and even though it successfully launched the SAP HANA Lifecycle Management gui, it failed on the first step with the same JVM create error as above because it appears to have used its own eclipse.ini file, which has "-Xmx1024m".

    Update: a message was opened with SAP but unfortunately they could not provide a resolution for this particular scenario.  They admitted that the eclipse.ini file cannot be updated since it is bundled as part of the installation package.  One point to make that I did not make before was that this was being attempted on an Oracle VirtualBox (4.3.10); the SAP HANA contact said he assumed that SAP has not tested this particular scenario, thus it could not be supported.
    Resolution: the end result was to abort trying to install SAP HANA Client and Studio on the Oracle VirtualBox but to install it locally on my own desktop, which runs on Windows 7 Enterprise 64-bit with 8G of memory.  The SAP HANA files below were downloaded, extracted and installed successfully in the order shown.
    FYI: the Studio installation detected that a 64-bit version of Java was not installed so I installed that and then adjusted the User environmental variable JAVA_HOME to point to that new path, leaving the System variable still pointing to the pre-existing 32-bit Java path.
    SAPCAR 7.20 -> Windows on x64 64bit:  SAPCAR_315-20010453.EXE
    IMDB_CLIENT100_80_0-10009664.SAR   Revision 80 for SAP HANA CLIENT 1.00
    Support Package SAP HANA CLIENT 1.00 Windows on x64 64bit
    IMC_STUDIO100_80_0-20007647.SAR   Revision 80 for SAP HANA STUDIO 1.00
    Support Package SAP HANA STUDIO 1.00 Windows on x64 64bit
    jre-7u67-windows-x64.exe - http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.html
    Jim Cleek
    HP Enterprise Services

  • Osdm error 'could not create the Java virtual machine.'

    Running on Windows XP. SQL Developer reports Java(TM) Platform=1.5.0_06
    I downloaded and unzipped the osdm early adopter release,but when I double click on the osdm.exe, I get a dialog box titled"Java Virtual Machine Launcher" with the error:
    could not create the Java virtual machine.
    I'm don't know where to begin to troubleshoot this problem.
    Is there a log,trace,error file somewhere?
    Do I need something specific in my path or an environment variable set?

    Thanks Jim, for helping and the support. I'll respond to a few things in this thread for the rest of the forum.
    Feedback
    Let's start with the feedback and support. As Rene said, he is working at answering all queries coming into the feedback application. This means reviewing the issues, working with the developers and logging bugs. Each comment and query in that application is addressed and users can go back in an review the feedback for their own comments in the application too. We have had considerable interest and downloads, about which we are very excited, and this means there are lots of queries. Rene is addressing all these, and as I type, there are no comments in that application that have not been addressed. Not all are closed, as there are some outstanding issues, but each user who has submitted a comment shold have received at least one email.
    The Team
    I'm reluctant to comment about which part of the product is built in which country, but will say that SQL Developer has been a small team, with the greater percentage of developers living outside the US from the outset. I love working in the team including the wide diversity of locales and cultures and also think that because we live across multiple time zones, we can help users most times of the day or night. We are very privileged to have had the modeling team join us and I'm sure you'll get to know them in time too. If you are interested, the team stretches across a few states in the US, Ireland, Northern Ireland,England, Belgium, Bulgaria, India and China!
    Now to the problem. - Java virtual machine
    1. There is a choice of download, either with the JDK or without. If you download the build with the JDK, there should be no problem, as the product knows where to find the jdk. I'm not sure I see which of these 2 downloads was used. So that would be useful information to have.
    2. If you use the build without the JDK, then Data Modeling looking for the detail in your path.(Unlike in SQL Developer where we prompt you) You can test to see what is in your path by starting a command line, or command prompt and typing java -version. This will tell you what version of java is being looked for and used by Data Modeling.
    If you do not have a JDK, then you can download and install that as described on the download page.
    Troubleshooting
    We want to release SQL Developer Data Modeling as a standalone tool (i.e. what you are testing today) or underpinned by a repository. So our main goal is to ensure that we have a solid stable and usable product for production. The plan is to follow production with a much tighter integration to the underlying SQL Developer framework.
    Regards
    Sue

  • Error: could not create the java virtual mechine

    Hi,
    I have installed Oracle weblogic server 10.3.5 in my system and when i am trying to install SOA suite 11.1.1.5.0, i am giving path C:\Oracle\Middleware\jdk160_24
    in oracle universal Installer then i am getting a pop-up with the error: could not create the java virtual mechine.
    can any one solve this problem if i have to install any another software for that.
    Thanks in advance.
    Regards,
    Jai

    Hi
    Is this 32 bit or 64 bit. If its 64 Bit, first you install 64 Bit JDK and put in PATH. Make sure when you run java -version, it shows this version. Now download weblogic server Generic Installer (.jar extension). Run this command
    java -D64 -jar weblogicgenericxxxxx.jar (Sometimes -D64 should be -d64. I had seen this on few machines. So try -D64 or -d64).
    Thanks
    Ravi Jegga

  • "Could not create variable iterator" on creating ADF Parameter Form

    I've got a managed bean with a method;
    public String cmdLogin_action(String userName, String passWord) {
    // Add event code here...
    return "success";
    I've created a data control, but whenever I try to drag it onto a page and select "Create ADF Parameter Form", I get the dialog to specify bindings between parameters and elements in the form, then when I press OK I get a dialog entitled "Could not create widget" with the message "Could not create variable iterator".
    Anyone know what's wrong?

    Hi,
    actually why do you use ADF binding for this at all? You already have the POJO managed by ADF and the textfield binding to this is
    #{managedBeanName.username) for a String username with getter and setters in it. Why do you want to add a JSF lifecycle managed POJO to a ADF lifecycle managed binding that would provide no additional functionality to you, except that the two lifecycles my interfere with each other (though they are linked together).
    Note that the pageDef file needs to create variables for all the arguments in a method, which then is referenced by attribute bindings.
    Frank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Language File could not be located.

    Hi all,
    within the Function Builder initial screen  SE37.
    I am getting the following message
    "Language files could not be located"

    hi check this..
    SAP GUI aborts with 'Language files could not be located'
    regards,
    venkat

  • HT204088 Dear sirs,  Could you please help me on my problem with my apple ID  I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,  My account have 50$ and stil

    Dear sirs,
    Could you please help me on my problem with my apple ID
    I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,
    My account have 50$ and still didn't buy anything

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100546)

  • " Could not create SSL/TLS secure channel " error with Webtest of VS 2013

    hello !
    I want to test my mvc web project with webtest tools of VS 2013 and I Record a test with Internet Explorer
    but when I run test appear this error for me at result of test run : Could not create SSL/TLS secure channel
    for some requested url , but i watch requests in developer tools of chrome browser and I don't see this error.
    i have ssl certificate on the server.
    thanks 

    Hi ArashGhf,
    >>but when I run test appear this error for me at result of test run : Could not create SSL/TLS secure channel
    Based on the error message, it looks like it might be a problem with your certificate not being set up correctly for web performance test.
    Therefore, I suggest you could refer the autom8dTest's suggestion to convert the Web performance test to coded web performance test and then add the WebTestRequest ClientCertificates property to the ClientCertificates collection after the request
    is set up.
    For more information, please refer to it.
    https://social.msdn.microsoft.com/Forums/en-US/49e8d188-90c3-4d72-b387-10b1d1adc4a0/ssl-in-webtests-request-failed?forum=vstswebtest
    Hope it help you!
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "Could not create renderer with alias..." after deploying ResourceRenderer

    Hello everybody
    I've developed a custom ResourceRenderer class that looks like this:
    package no.expert.portal.km.relateddocs;
    import com.sapportals.htmlb.Component;
    import com.sapportals.htmlb.Link;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.rendering.resource.cm.ResourceRenderer;
    import com.sapportals.wcm.repository.IResource;
    public class RelatedDocsNamePropertyRenderer extends ResourceRenderer
         protected Component renderContentLink(com.sapportals.htmlb.Component comp) throws WcmException
              Link result = (Link) super.renderContentLink(comp);
              result.setTarget("");
              return result;
         protected Component renderContentLink(IResource resource, com.sapportals.htmlb.Component comp) throws WcmException
              Link result = (Link)super.renderContentLink(resource, comp);
              result.setTarget("");
              return result;
    All it does, really, is preventing links to documents in KM to open in a new window. At least that's what I'm hoping it will do, as it's based on ideas in <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=20316">this post</a>.
    I've added all the necessary .jar files, and implemented a wrapper portal service as described here: <a href="http://media.sdn.sap.com/html/submitted_docs/nw_kmc/ide/projects/Setting%20Up%20a%20KMC%20Project.html">http://media.sdn.sap.com/html/submitted_docs/nw_kmc/ide/projects/Setting%20Up%20a%20KMC%20Project.html</a>.
    I've created an alias for the class in <i>Content Management -> User Interface -> Mapping</i>, and assigned this to the resource renderer settings that I use.
    OK, here is where the trouble starts. When viewing the layout set with debugging on, I check <i>Rendering Information</i>. It informs me that <i>"The given configuration was not used, because the alias is not defined or points to an invalid java class"</i>. Looking in the log, this is the error message:
    Could not create renderer with alias ZRelatedDocsNameResourceRender and classname no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer:java.lang.NoClassDefFoundError: com/sapportals/wcm/rendering/resource/cm/ResourceRenderer
    ------------------------- Loader Info -------------------------
    ClassLoader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@6b247b]
    Parent loader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@4e82c4]
    References:
       not registered!
    Resources:
       C:usrsapEPUJC00j2eeclusterserver0appssap.comirjservlet_jspirjrootWEB-INFportalportalappsno.expert.portal.km.relateddocs.RelatedDocsNamePropertyRendererprivatelibno.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderercore.jar
    The error occurred while trying to load "no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer".
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:389)
    I have a suspicion this might have something to do with the SharingRefernce in portalapp.xml, but after experimenting with different values, I'm no nearer a solution. Any ideas, anyone? Any help greatly appreciated.
    -martin
    Yes, and here is my portalapp.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="com.sap.netweaver.bc.crt,knowledgemanagement"/>
        <property name="PrivateSharingReference" value="com.sap.km.cm.ui.flex"/>
      </application-config>
      <components>
        <component name="RelatedDocsNamePropertyRenderer">
          <component-config>
            <property name="ClassName" value="no.expert.portal.km.relateddocs.RelatedDocsNamePropertyRenderer"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services>
        <service name="BootStrapNamePropertyRender">
          <service-config>
            <property name="className" value="no.expert.portal.km.relateddocs.BootStrapNamePropertyRender"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>

    Hi Gourab,
    Double check the the page.xml has referring to the correct CO. Open the page.xml and see which controller is attached to it.
    Also attach the extended controller through personalization to the page/Region.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Black screen mirroring after ATV update

    hi, I need help, I just bought my ATV, and it mirrored my IPad just fine, then it asked me to update the ATV software, now it just give me sound but no mirror??? Only a black screen. Help please!

  • IWeb R.I.P. - best options?

    With Apple's disgraceful treatment of iWeb/MobileMe users (they have bluntly refused to tell me whether they will continue developing iWeb or the hosting they currently do on MobileMe - surely they must have SOME idea???) does anybody have any recomm

  • How do you change the name of a group message

    I started a group message with 5 of my friends but I also have another group message with a few of the same people but it's confusing which one I want to send a message to regarding a certain topic. can I change the name of the group?

  • MSS Business Package for R/3 4.6C

    Hi, We have SRM running on Enterprise Portal using WAS 6.2.  We also have our R/3 ver 4.6c which houses our HR system.  My question is: Is it possible to implement MSS on the portal through the SRM using 4.6c as the backend database? If yes, which Bu

  • Issue with services being published in SR

    Hi Experts, We have an issue with services being published in SR 1.       Service is created and published from ECC to Service registry 2.       End points are created in Soa manager But the service state is shown as u2018Modelledu2019 instead of u20