Help needed in PS module on CJ9ECP/CJ20N for revaluating CCR??

help needed in PS module on CJ9ECP/CJ20N for revaluating CCR??
How to handle method on_costing_component_to_outtab which belongs to badi gui_itemization_ck. This is to revaluate CCR in CJ20N.
From sale transaction(va01/va02) i need to call cj20n/cj9ecp for revaluating cost estimates. Can anyone say how to proceed with this thing.
Can any one say how to handle pop up window in CJ20N/CJ9ECP when clicked edit ecp button. Later how to revaluate cost estimates. For this should i need to go for call transaction or is there any method available. If so how to handle method for revaluating cost estimates for ECP of WBS elements

Thanks Amol for the advice.
My friend doesn't belong to an engineering background and had not worked in a manufacturing environment.
He holds an MBA degree specialised in systems and has worked in software companies supporting software projects and the functions(like HR,Procurement in the same setup) as a software quality guy.
Moreover the modules mentioned by you requires engineering background with manufacturing exposure.
He had enquired for the course at siemens and they said that he may not be suitable for any of the modules offered by them as per the above reasons.They also mentioned that they have to check with SAP Labs for expert opinion.
Please provide your inputs.
regards,
Zubair.

Similar Messages

  • Help needed in SD VC Assigning Object Dep. for all values at the 1 time

    Dear, Gurus
    I am successful in achieving pricing in VC the long way example: If Characteristic is Car_Color and values Blue, Red. I assign
    $self.Z_CarPrice=u2019Redu2019 and it works. Z_CarPrice is basically the variant condition linkage with tables SDCOM and VKOND.
    My question is how can I achieve the above by assigning it to the header so that it automatically enters the code $self into all values without me having to go into it 1 by 1 and assigning the codes? Or what is the best way in achieving the results?
    If I have 3 characteristics ex: Car_Model, Car_Color, Car_Size? 100's of values?     4th characteristic is Z_CarPrice inside this I have entered all the Values from the 3 characteristics.
    Thanks in Advance

    Hi,
    Try these steps and hope will definitely resolve your issue
    Create one variant table VT_BASE_PRICE with combinations of the char Z_COLOR,Z_MODEL and Z_SIZE as key fields
    Table Structure
    Z_Color               
    Z_Model
    Z_Size
    Z_Car_Price
    Table Contents    
    Z_Color          Z_Model                         Z_Size          Z_Car_Price
    RED          Honda          Big          BP_RED_HONDA_BIG
    RED          Honda          Small          BP_RED_HONDA_SML
    Maintain the table values with all possible combinations and for each combination enter a unique key under Z_car_Price column. Remember the variant key length Max is 26  and you can use any unique value which should give a meaning by looking at
    Once maintained the table write a dependency
    Table VT_BASE_PRICE
    (Z_COLOR = Z_COLOR,
    Z_MODEL = Z_MODEL,
    Z_SIZE = Z_SIZE,
    Z_CAR_PRICE = $self.Z_CAR_PRICE)
    Thus for each combination no need to write the code to infer the variant key. It will automatically choose from table as per configuration values entered.For each variant key you need to maintain price in condition records for condition type.
    Regards,
    Brahmaji D

  • Help needed with mx Modules...

    Hello guys!
    So, here´s the deal.... i have developed  a little application using flex which works just fine. I made some  stress tests an didn´t had any kind of failure.
    Then, i  decide to modularize my application.... i created a new application  (type <mx:Application> ) and transformed the old application into a  module (<mx:Module>) . Let´s calll this ModuleOne.
    I used as a basis for the development an example that  exists at the adobe site regarding ModuleLoader. (   http://livedocs.adobe.com/flex/3/html/modular_6.html#170736   )
    So,  now i have my Application, the ModuleLoader and my Modules. I have  created another module (ModuleTwo) in order to test and make some  troubleshooting.
    And now gets tricky. When i load ModuleOne, he works  fine, no problems... just like his old application type used to work.  When i load the ModuleTwo, he wors fine also. When i try to come back to  ModuleOne, loading it once again, the problems come.
    After  this second time load of ModuleOne, he doesn´t filll the ComboBoxes  with my database data. The clock cursor keeps running, as if he is  waiting for something... on my point of view, he is waiting for the  comboboxes to get filled.
    I read on several websites  that Modules sometimes don´t get unloaded or garbage collected due to  some references problems of Flex itself. Unfortunately, i´m not any kind  of pro. I´m still learning and trying to get things done.
    If you see the ModuleLoader webpage at adobe, you´ll se the exact code that i use to load, unload and reload the Modules.
    Below, i´ll post the code.
    I thank very much anyone for any help!
    Regards,
    BlknD
    Application Code
    <?xml version="1.0"?>
    <!-- modules/General.mxml -->
    <mx:Application xmlns="*" xmlns:mx="http://www.adobe.com/2006/mxml"  width="1020" height="644" layout="absolute" backgroundColor="#ffffff"  verticalScrollPolicy="off" horizontalScrollPolicy="off">
         <mx:Script>
             <![CDATA[
                 import mx.effects.easing.*;
                 import mx.modules.*;
                 [Bindable]
                 public var selectedItem:Object;
             ]]>
         </mx:Script>
        <mx:Object id="FormObj" label="Mapa" module="Form.swf"/>
         <mx:Object id="NewObj" label="News" module="News.swf"/>
          <mx:Button id="FormButton" label="Form" click="selectedItem=FormObj"  x="12.5" y="504" width="157.5" height="90" cornerRadius="20"  mouseUpEffect="bounceEffect"/>
          <mx:Button id="NewsButton" label="News"  click="selectedItem=NewObj" x="11.25" y="210" width="157.5" height="90"  cornerRadius="20" />
          <CustomModuleLoader id="mod" width="100%" height="100%" url="{selectedItem.module}" />
    </mx:Application>
    ModuleOne code
    <mx:Module  xmlns:mx="http://www.adobe.com/2006/mxml" paddingBottom="0"  layout="absolute" backgroundColor="#ffffff" initialize="{init()}"  width="820" height="584" dropShadowEnabled="false">
        <mx:Script source="Filler.as" />
            <mx:Text x="10" y="151" text="Form" fontWeight="normal"/>
             <mx:ComboBox x="10" y="167" width="134" id="Field01" labelField="name" />
    </mx:Module>
    ModuleLoader code
    Just like from Adobe site: http://livedocs.adobe.com/flex/3/html/modular_6.html#170736

    Hello harUI,
    well, i´m using Flex Builder 3 with Eclipse for the development.... and there is something weird....
    for my Internet Browser, the Flash Player version 10.1 is been used... but when i run the swf as stand-alone, the screen says it is running in Flash Player 9... do you have any tip about this?
    Regarding the JavaRemote.as file, he is as described below....
    As you can see, the "clock cursor running forever" seems happen on the function JAVARemote... since the cursor gets stuck after the module reload...
    After some test, i found some more weird thigs.... when the alert.show("Constructor") is on (not commented), the cursor don´t get stuck, but neither the combobox is filled... i have no idea what i´m facing here... i´m kind of desperate to find out what´s the issue....
    Regards!
    package ConnectRO {
        import mx.controls.Alert;
        import mx.rpc.AsyncToken;
        import mx.rpc.Responder;
        import mx.rpc.events.FaultEvent;
        import mx.rpc.remoting.mxml.RemoteObject;
        //Class used to perfome remote calls to the java classes methods.
        public class JAVARemote extends RemoteObject {
            public function JAVARemote(){
                super();
                this.showBusyCursor = true;
                //Alert.show("Constructor");
            public function get getConnection():RemoteObject {
                return this;
            public function call(Method:AsyncToken, NewResult:Function):void {
                var L_Async:AsyncToken;
                L_Async = Method;
                L_Async.addResponder (new Responder(NewResult, DefaultFaultHandler));
            private function DefaultFaultHandler (Result:FaultEvent):void {
                Alert.show(Result.fault.faultString, "Error");
        }// ActionScript file

  • Help needed in funciton module

    can any one please tell how this fm can be used in the pgm
    input/opt fileds and all
    CONVERT_TO_LOCAL_CURRENCY
    CONVERT_TO_FOREIGN_CURRENCY

    Hi Arun,
    <b>Try this code.</b>
    data: IV_EXCH_RATE_DATE TYPE  CNVT_EXCH_RATE_DATE,
    IV_EXCH_RATE_TYPE TYPE  CNVT_EXCH_RATE_TYPE,
    IV_EXCH_RATE TYPE  CNVT_EXCH_RATE,
    IV_FOREIGN_CURRENCY TYPE  CNVT_FOREIGN_CURRENCY_UNIT,
    IV_LOCAL_CURRENCY TYPE  CNVT_LOCAL_CURRENCY_UNIT,
    IV_AMOUNT TYPE  CNVT_CURRENCY_AMOUNT.
      perform check_convert_to_local using iv_exch_rate_date
                                           iv_exch_rate_type
                                           iv_exch_rate
                                           iv_amount
                                           iv_foreign_currency
                                           iv_local_currency.
    *&      Form  check_convert_to_local
          text
    form check_convert_to_local
         using uv_exch_date        type cnvt_exch_rate_date
               uv_exch_type        type cnvt_exch_rate_type
               uv_exch_rate        type cnvt_exch_rate
               uv_foreign_amount   type cnvt_foreign_currency_amount
               uv_foreign_currency type cnvt_foreign_currency_unit
               uv_local_currency   type cnvt_local_currency_unit.
    variables for ABAP call
      data: lv_local_amount_abap      type cnvt_foreign_currency_amount,
            lv_local_amount_abap2(16) type p decimals 3,
            lv_local_amount_java      type cnvt_local_currency_amount.
      write: / text-101 color 7.
      write: / text-009,
               uv_foreign_amount,
               text-010,
               text-013,
               uv_foreign_currency,
               text-011,
               text-012,
               uv_local_currency.
    call ABAP
      call function 'CONVERT_TO_LOCAL_CURRENCY'
        exporting
      CLIENT                  = SY-MANDT
          date                    = uv_exch_date
          foreign_amount          = uv_foreign_amount
          foreign_currency        = uv_foreign_currency
          local_currency          = uv_local_currency
          rate                    = uv_exch_rate
          type_of_rate            = uv_exch_type
      READ_TCURR              = 'X'
        importing
        exchange_rate           = lv_erate
      FOREIGN_FACTOR          =
          local_amount            = lv_local_amount_abap
      LOCAL_FACTOR            =
      EXCHANGE_RATEX          =
      FIXED_RATE              =
      DERIVED_RATE_TYPE       =
         exceptions
           no_rate_found           = 1
           overflow                = 2
           no_factors_found        = 3
           no_spread_found         = 4
           derived_2_times         = 5
           others                  = 6.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                into gv_message.
        write: / gv_message.
      endif.
      lv_local_amount_abap2 = lv_local_amount_abap. "rounding
    endform.                    "check_convert_to_local
    <b>Reward points if it solves ur query or answer is helpful</b>
    Thanks
    Chinmay

  • Help needed on Function module  COM_PROD_MATERIAL_MAINTAIN_API

    Hi Gurus,
    I am using <b>COM_PROD_MATERIAL_MAINTAIN_API  </b> to update the set type attributes for a product master.
    I tried but still i am not getting any solution.
    Can someone please help me out.
    Thanks in advance.
    Regards,
    Manoj Tiwari

    Can someone please reply me.
    Thanks in Advance.
    Regards,
    Manoj

  • URGENT HELP: Need to reformat an external hard drive for Mac/Win!

    We got a Desk Hammer external hard drive and my hubby chose to format it as Mac Only when it first initialized. We needed it to be formatted for Mac/Win usage. Now we cannot figure otu how to reinitialize and reformat it. It's been years since I messed with his Mac. Help--right now we just have a big old doorstop instead of a hard drive! BTW Desk Hammer is no help with support (I guess that's why they were on sale); their website isn't even complete!

    Use the Disk Utility application found in /Applications/Utilities to format the Drive as MS-DOS File System. This will be readable by both Mac and Windows platforms.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.8)  

  • Help needed to figure out URL and username for the LDAP server

    Given that LDAP directory parameters as follows, how can i identify the exact parameters to be used in my LDAP service access Java code. Im using JNDI to access a LDAP server given by an Ip address (say, 10.1.1.20) and the port number (say, 389)
    Given: -D "cn=mycn,ou=mystaff,o=myorg,dc=test,dc=my,dc=org" -w secret
    Heres my sample Java code
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "<URL>");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "<PRINCIPAL>");
    env.put(Context.SECURITY_CREDENTIALS, "secret");
    ctx = new InitialDirContext(env);
    SearchControls controls = new SearchControls();
    controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
    results = ctx.search("ou=mystaff,o=myorg", null);Could any one please help me to recognize what will be the values to be comes to URL, and PRINCIPAL , so that i can search all the objects inside "ou"
    Note: Actually i tried several times, bt i was getting "Invalid Credentials" exception.. i doubt that is because the URL or the user name i gave was not syntactically correct. Thats y i need to verify with you all.
    Thanks in advance
    Saj

    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "<URL>");env.put(Context.PROVIDER_URL, "ldap://10.1.1.20:389");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "<PRINCIPAL>");env.put(Context.SECURITY_PRINCIPAL, "cn=mycn,ou=mystaff,o=myorg,dc=test,dc=my,dc=org");
    env.put(Context.SECURITY_CREDENTIALS, "secret");
    ctx = new InitialDirContext(env);
    SearchControls controls = new SearchControls();
    controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
    results = ctx.search("ou=mystaff,o=myorg", null);

  • Help needed to take control back from sqlplus for expired password

    Hi,
    I am executing the following line for Oracle 11g in Windows from my application
    sqlplus -L "aaaa"/"aaaa" @connectonly.sql >>"D:\tempDBlogs\connectonly.log"
    connectonly.sql file contains the following code:
    whenever sqlerror exit 1
    whenever oserror exit 2
    exit
    This piece of code executes fine for both correct & incorrect userid & password and gives proper messages. Now the problem is when password of the user in DB gets expired. The controls waits for user input. But my problem is I am runinng this code from an application which waits for sqlplus.exe to end, as it can't proceed without validation. But sqlplus runs as background process and the command prompt never comes to user. Moreover I dont want to give the user the option to change DB password from my application front end.
    So I need to find a way so that if password is expired sqlplus will return the control and will not wait for user input. Or atleast my application gets to know that the password is expired so that it can kill sqlplus process.
    Can somebody help me in this.

    interesting question. I tried something on unix and this seems to work. I simply piped a line through this which leads to an error with the expire-prompt and doesnt do any harm when there is no such prompt:
    oracle@oracle:~$ echo "" | sqlplus brost/secret @test.sql
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue May 19 10:18:36 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-28001: the password has expired
    Changing password for brost
    New password:
    Retype new password:
    ERROR:
    ORA-00988: missing or invalid password(s)
    Password unchangedSomething similar should be possible on windows. Of course, the real solution would be flag for sqlplus that makes it absolutely non-interactive.

  • Help needed on using hardware tokens / Smart Cards for encryption

    I need help in filling the following gap in my understanding
    I know about
    1. Using keys in Java keystores to encrypt/decrypt data (Signing, symmetric encryption)
    2. Using Keytool to export a digital certificate to a keystore.
    I need help in knowing
    1. How the certificate stored in secret device is shared with java key stores. Do I need to use some special library.
    2. Is the process of encrypting Secret Key bytes defferent from wrapping the key?
    Specifically, I want to use iKey (USB based security hardware token) in my system, which says that it supports
    �� The PKCS#11 standard library
    �� The MSCAPI and CSP standard libraries
    �� Using automatic certificate registration

    > We have a current Server with 4 x 4 cores, 64 GB RAM, 6TB HDD, Windows 2K8 R2 and SQL Server 2K8 R2. On this server we have installed 6 SAP Servers(both ABAP and JAVA based). We want to install two more SAP servers on this machine but planning to use the Hyper-V Mode to ensure that there is no conflict. With this background here are my queries.
    You should not run SAP instances on the server with the hypervisor (the OS running on the metal). If you want to virtualize, then do it for all instances.
    Read
    Note 1246467 - Hyper-V Configuration Guideline
    Note 1570141 - Key Figures of Virtualization on Hyper-V
    > u2022             Is it possible to take a Image of existing installation (6 SAP Servers and SQL Server) that we have done?
    If they are running on the same OS you will always take images of everything.
    > I think this was possible in VMWare.
    So those 6 servers are virtualized already??
    > The issue I foresee is that in this image the servers are using Machine Name as host. In the Hyper V mode the host name will change. So how will this work?
    The safest way is to do a homogeneous system copy.
    > u2022             Can I run the normal windows mode along with Hyper V. Basically we want to keep our 6 SAP servers running and for the two new servers create two hyper V instances and allocate 2 cores and 4GB RAM each. Is this possible? Or as per Microsoft on the root we should not run any server?
    According to
    Note 1246467 - Hyper-V Configuration Guideline
    this should not be done.
    Markus

  • Help needed in building a demo mobile app for DRM support using Content server 4

    Hi all,
    I am building an application for the blackberry to support reading of pdf and ebuf content similar to Adobe Digital Editions with DRM support . I came to know about the Adobe RMSDK .
    Following is my understanding regarding my implementation , please correct me if i am wrong:
    The DRM implementation on a mobile device for Adobe should satisfy the following criteria:
    1. The mobile device should have a application which uses the Adobe RMSDK.
    2. The publisher or the server app should install and run the content server 4
    3. An acsm file which contains the rights data should be saved stored at the adobe server and should be downloaded by the mobile client.
    4. The urls in the acsm xml file will be used to fetch the content for the ebook.
    I have the following querries:
    1. Is there an implementation of the RMSDK for java to run on blackberry.
    2. Is Adobe content server 4 free to install, if not do we have a test server for this purpose.
    Thanks in advance for the help.

    Hi Jim,
    Thanks for your kind reply. I have some more querries
    Suppose if we have a client implementation of the Adove RMSDK in java,  please help answer these querries:
    1. How do we connect to the cs4 server (what will be the flow of data, is there a documentaion regarding the protocol to be used between the mobile client and the cs4 server in order to communicate and fetch Rights protected ebuf and pdf data.
    2. The link http://www.adobe.com/products/digitaleditions/library does not give me information of how to use this library to store by ebook data and fetch  drm data from the mobile client and the protocol/communication followed.
    3. How do i go forward in evaluating acs4( getting a test version of cs4 and using it ). We want to build a demo app in blackberry.
    thanks
    Amit

  • Help needed w/ JDeveloper and Raptor not working for me in 10.4

    Well, I've been successfully running the previous version of JDeveloper, 10.1.2.0.0 (Build 1811) for a few months on my OS X, Tiger (10.4) laptop. I recently tried to get Project Raptor running. I'm using Apple's version of Java from Software Update, J2SE 5.0 Release 3 which is the most up-to-date version I can find anywhere.
    My problem is this. I can do most anything fine, but as soon as I try to Debug an PL/SQL function in either Raptor, or the JDeveloper 10.1.3 build I get an error "Unsupported feature Vendor Code 17023" when I click OK in the Debug PL/SQL dialog box.
    Thing is that this works just fine in JDeveloper 10.1.2.0.0 (Build 1811). The thing that is interesting is the 10.1.2 JDeveloper uses the Java 1.4.2 where Raptor and JDeveoper 10.1.3 use the Java 1.5, I'm guessing it's a problem in Apple's Java 1.5 but can anyone else verify this or offer help to how I can make it work?
    tks

    I fail to get the error message you describe. What I get is:
    ===========================
    Connecting to the database test10.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '10.0.1.103', '52221' )
    Debugger accepted connection from database on port 52221.
    Processing 59 classes that have already been prepared...
    Finished processing prepared classes.
    ===========================
    Is this ok ?
    In the console log I got:
    sh ./raptorOracle Raptor 1.0
    Copyright (c) 2005 Oracle Corporation. All Rights Reserved.
    Working directory is /Users/ronr/Desktop/raptor/jdev/bin
    Initializing.. oracle.dbtools.raptor.explorer.jdev.ConnectionDialogAddin@1972bf
    Assert: Unknown Node:8: USER
    Assert: Unknown Node:8: SHARED QUERIES
    Assert: Unknown Node:8: TABLE EDITORS
    Assert: Unknown Node:8: VIEWS
    Assert: Unknown Node:8: MVIEWS
    Assert: Unknown Node:8: SYNONYM
    Assert: Unknown Node:8: SEQ
    Assert: Unknown Node:8: Recycle Bin
    Assert: Unknown Node:8: DB Link
    Assert: Unknown Node:8: MVIEW LOG
    Assert: Unknown Node:8: PLSQL
    Assert: Unknown Node:8: TRigger
    Assert: Unknown Node:8: INDEX
    Assert: SQLView initedException in thread "JPDA Event Processor" java.lang.IllegalAccessError: tried to access class com.sun.tools.jdi.VirtualMachineImpl from class com.sun.tools.jdi.OracleReferenceTypeImpl
    at com.sun.tools.jdi.OracleReferenceTypeImpl.<init>(OracleReferenceTypeImpl.java:60)
    at com.sun.tools.jdi.OracleReferenceTypeImpl.convert(OracleReferenceTypeImpl.java:203)
    at com.sun.jdi.OracleExtension.convert(OracleExtension.java:38)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.getOracleReferenceType(DebugJDI.java:559)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClass(DebugJDI.java:626)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClassForReferenceType(DebugJDI.java:549)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.run(DebugJDI.java:2651)
    at java.lang.Thread.run(Thread.java:613)
    Assert: Finding Context Menu for:FUNCTION_FOLDER
    Exception in thread "JPDA Event Processor" java.lang.IllegalAccessError: tried to access class com.sun.tools.jdi.VirtualMachineImpl from class com.sun.tools.jdi.OracleReferenceTypeImpl
    at com.sun.tools.jdi.OracleReferenceTypeImpl.<init>(OracleReferenceTypeImpl.java:60)
    at com.sun.tools.jdi.OracleReferenceTypeImpl.convert(OracleReferenceTypeImpl.java:203)
    at com.sun.jdi.OracleExtension.convert(OracleExtension.java:38)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.getOracleReferenceType(DebugJDI.java:559)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClass(DebugJDI.java:626)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClassForReferenceType(DebugJDI.java:549)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.run(DebugJDI.java:2651)
    at java.lang.Thread.run(Thread.java:613)
    Exception in thread "JPDA Event Processor" java.lang.IllegalAccessError: tried to access class com.sun.tools.jdi.VirtualMachineImpl from class com.sun.tools.jdi.OracleReferenceTypeImpl
    at com.sun.tools.jdi.OracleReferenceTypeImpl.<init>(OracleReferenceTypeImpl.java:60)
    at com.sun.tools.jdi.OracleReferenceTypeImpl.convert(OracleReferenceTypeImpl.java:203)
    at com.sun.jdi.OracleExtension.convert(OracleExtension.java:38)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.getOracleReferenceType(DebugJDI.java:559)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClass(DebugJDI.java:626)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClassForReferenceType(DebugJDI.java:549)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.run(DebugJDI.java:2651)
    at java.lang.Thread.run(Thread.java:613)
    Exception in thread "JPDA Event Processor" java.lang.IllegalAccessError: tried to access class com.sun.tools.jdi.VirtualMachineImpl from class com.sun.tools.jdi.OracleReferenceTypeImpl
    at com.sun.tools.jdi.OracleReferenceTypeImpl.<init>(OracleReferenceTypeImpl.java:60)
    at com.sun.tools.jdi.OracleReferenceTypeImpl.convert(OracleReferenceTypeImpl.java:203)
    at com.sun.jdi.OracleExtension.convert(OracleExtension.java:38)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.getOracleReferenceType(DebugJDI.java:559)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClass(DebugJDI.java:626)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.addClassForReferenceType(DebugJDI.java:549)
    at oracle.jdevimpl.debugger.jdi.DebugJDI.run(DebugJDI.java:2651)
    at java.lang.Thread.run(Thread.java:613)
    In jdev/bin/raptor.conf I had to set:
    SetSkipJ2SDKCheck true
    I use:
    /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/
    Ronald.

  • New User Help Needed Formatting External HD in MS-DOS for PC file migration

    I have files on my PC and planned on putting them on a new external HD to transfer to the iMac.
    I have a new MiniStack V3 external HD with USB and Firewire connections. It comes formatted for the Mac.
    I want to format the HD on the iMac to MS-DOS so I can connect it to my PC; pull off my files; and reconnect to the Mac; pull over the files; and then reformat the external HD for the Mac.
    Going into the disk utility I gathered the Erase tab is how you reformat. Only Mac OS choices are available for the format type. *How do you format the disc for Mac OS on the Mac???*

    minimejdh,
    First, select the drive (not the named volume that will appear indented underneath), then switch to the Partition pane. Click the "Options..." button and choose the "GUID Partition Scheme," then partition the drive with a single partition.
    Now you can select the named volume, switch to the "Erase" pane, and choose MS-DOS.
    That said, you might want to consider using your PC to format the drive using the NTFS format. FAT-32 (the MS-DOS format) has a 4 GB file size limitation, and it is possible that some of the files you wish to transfer exceed this limit (I'm sure you would know better than we). Your iMac will have no trouble accessing the drive and NTFS format, but it will be as read-only. Since you will be formatting it again with the Mac, using HFS+ (Mac OS Extended), you won't need write access to the drive.
    Scott

  • Help needed - OBIEE - Level Based Hierarchy - Expanding Month for one year affects all previous years

    I am creating a level based hierarchy for the Date Dimension
    year --> quarter --> month --> date (one path)
    year .--> month --> date (the second path).
    I create the pivot table using these dim hierarchies. But the problem is,
    when I click on, say "Month" under year 2012, it expands everything above 2012 (such as 2010, 2011 etc).
    I don't want to expand all the years, but only the one I clicked. Anyone knows what is the solution for that.
    I am sorry that I cannot attach any screen shots to explain better.
    I would really appreciate your help on this.
    Thanks
    JD

    I am using OBIEE 11.1.1.7.0.
    ok, I tried one hierarchy per dim table but didn't work too. When I created a logical column as Month + Year (e.g Jan 2014) and added to the hierarchy, its working fine. But that creates other issues on the
    client side.
    I guess, since the month is common to all the years its expanding when clicked. I also added month and year as "chronological key", but that didn't work either.
    Please advice any solution if you know it.

  • Help needed upgrading from Windows 8 to XP for Conexant Sound Driver

    I upgraded from Windows 8 to XP and got everything else working except for the sound. I have scoured the internet and tried many versions of drivers from windows 7 ones to XP ones with no success. I tried older driver´s version as well.  After a reboot there is no sound device loaded in the control panel for sound. I have a C845D-SP4327SL  model laptop. Does anyone have any process to make this work that is proven? Thanks
    Vladimir Pineda.

    vpinedaq wrote:
    I upgraded from Windows 8 to XP and got everything else working except for the sound. I have scoured the internet and tried many versions of drivers from windows 7 ones to XP ones with no success. I tried older driver´s version as well.  After a reboot there is no sound device loaded in the control panel for sound. I have a C845D-SP4327SL  model laptop. Does anyone have any process to make this work that is proven? Thanks
    Vladimir Pineda.
    hi. if you want to that your sound device was in control panel after a reboot , here is only one solution for that, all you have to do is upgrade first  hdaudio bus controler. Driver must be copied first from computer with Vista os. if your xp is 32bit you have to copy this driver from any Vista x32 if  your xp is 64 bit then Vista must be x64 as well.  driver for forced upgrade through device menager you will find in any vista os  Windows--> System32-->DriverStore-->FileRepository-->hdaudbus​.inf9689af2f
    once copied that file from any computer equiped with Windows Vista , copy it on your desktop, next step go to the device menager  and find in system device tab 2 entries UUA High definition audio and update both by forced update. You have to point exactly where is located your driver copied from vista. after this update your sound device will be in the control panel and device manager always and permanent.
    I had the same problem with my xp instaled on satelite p500 and only this solution solved my problem with disappearing sound device after reboot.
    ps. if this solution help you please tell us about it. 
    Regards

  • Help needed to setup AX as a router for Wild Blue Internet

    Hello,
    I have new satellite internet service with Wild Blue and for three weeks now I have been trying to figure out how to set up a router, so my husband and kids can get online on their laptops. The modem is currently attached to the oldest desktop we have (the one listed below). They told me I could use any router, but that doesn't work, because the two routers I got I had to bring back to the store because I could not read the windows based setup "wizard." Tonight, once again, I plugged in the AX and connected the ethernet cable of my modem to the ethernet port of the AX. When I try to run airport utilities, it's not showing me anything, however. It's not picking up anything at all. This desktop does not have an airport card, but that should not be the problem according to the documentation I read. All the laptops naturally have airport cards. I am at my wits end, and confused too, since my modem only has one ethernet port and I cannot connect my desktop and connect the airport express at the same time. Is that the problem ? Any help would be appreciated. Wild Blue specifically states to not offer help with routers, I read somewhere on their site. If I had known that I would not have signed a two year commitment

    Hello PClaus. Welcome to the Apple Discussions!
    In order to administer your new AirPort Express Base Station (AXn), the computer has to have the AirPort Utility installed. This will either be available with OS X Leopard or on the installation CD that came with the AXn. If your desktop Mac is not wireless, then the only way to access the AXn would be to connect the AXn directly to the Mac with Ethernet or connect both the AXn and your Mac to an Ethernet switch. Since you state that your laptops are wireless, I suggest using one of them to do the administration. Let me know if you were successful.

Maybe you are looking for