INS-08802: Unable to instantiate the View class

Hi all,
Getting the above error when trying to install 11.2 db....
I thought it would be resolved by possibly re-installing JRE comps but that didnt help....
any ideas?

JCGO wrote:
Hi all,
Getting the above error when trying to install 11.2 db....
I thought it would be resolved by possibly re-installing JRE comps but that didnt help....
any ideas?I haven't heard about this error. It could be better if you share the last 30-40 lines of install logs with us.
Regards
Gokhan

Similar Messages

  • Java Mapping Error - Unable to instantiate the Java class

    Hi,
    I am trying out a Java Mapping scenario.
    The code worked fine in eclipse.i could get the desired output.
    but when i tried it out in XI ....i got the following error in moni:
    *Unable to instantiate the Java class*
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">CANNOT_INSTANCIATE_CLASS</SAP:Code>
      <SAP:P1>JavaMapping</SAP:P1>
      <SAP:P2>http://www.sdsdsd.com/XI/Sales/T~</SAP:P2>
      <SAP:P3>3bd13b30-6300-11dc-b9f1-f0050aa5c91a</SAP:P3>
      <SAP:P4>-1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unable to instantiate the Java class JavaMapping (http://www.sdsdsd.com/XI/Sales/T~, 3bd13b30-6300-11dc-b9f1-f0050aa5c91a, -1)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please help me out with this error.

    Hi Anu,
    Currently I am also facing the same Unable to instantiate the Java class  same java class is working fine in eclipse .
    Could you please confirm Is this because of version mismatch that in Eclipse JAVA and SAP JAVA ?
    Thanks in Advance.
    Best,
    Srinivas

  • Unable to compile the java class in the SQL PLUS

    Hi Team,
    I am unable to compile the java class in the SQL PLUS in dev1 and dev2. It is giving the following error.
    But the same class get Compiled in the Toad(Tool) without any error and working fine. Could someone help me
    What to do for this for your reference ,Attaching the java class file.
    “ORA-29536: badly formed source: Encountered "<EOF>" at line 1, column 28.
    Was expecting one of:
    ----------------------Here is the Java class Code.....................
    create or replace and compile java source named "XXVM_ZipFileUtil_Ela"
    as
    import java.math.BigDecimal;
    import java.util.zip.Deflater;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    import oracle.sql.*;
    import oracle.jdbc.*;
    import java.sql.*;
    import java.io.*;
    public class XXVM_ZipFileUtil_Ela
    public static oracle.sql.BLOB getZipFile(
    oracle.sql.CHAR zipFilePathCHAR, oracle.sql.CHAR zipFileNameCHAR,
    int fileBufferSize, int zipFileBufferSize,
    boolean deleteZipFile, java.sql.Array fileNames, java.sql.Array fileContents, java.sql.Array fileContentsLength)
    throws IllegalArgumentException, FileNotFoundException, IOException, java.sql.SQLException
    String zipFilePath = (zipFilePathCHAR == null) ? null : zipFilePathCHAR.stringValue();
    String zipFileName = (zipFileNameCHAR == null) ? null : zipFileNameCHAR.stringValue();
    String zipPathAndFileName = new String(
    new String(zipFilePath == null || zipFilePath == "" ? "/tmp/" : zipFilePath) +
    new String(zipFileName == null || zipFileName == "" ? System.currentTimeMillis() + ".zip" : zipFileName));
    byte[] buffer = new byte[fileBufferSize == 0 ? 100000000 : fileBufferSize];
    try
    Connection conn = DriverManager.getConnection("jdbc:default:connection:");
    oracle.sql.CLOB[] fileContentsCLOB = (oracle.sql.CLOB[])fileContents.getArray();
    String[] fileNamesString = (String[])fileNames.getArray();
    BigDecimal[] fileContentsLengthNumber = (BigDecimal[])fileContentsLength.getArray();
    ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream(zipPathAndFileName));
    zipOut.setLevel(Deflater.DEFAULT_COMPRESSION);
    for (int i = 0; i < fileNamesString.length; i++) {
    System.out.println(i);
    zipOut.putNextEntry(new ZipEntry(fileNamesString));
    InputStream asciiStream = fileContentsCLOB[i].getAsciiStream(1L);
    int asciiReadCount = asciiStream.read(buffer,0,fileContentsLengthNumber[i].intValue());
    zipOut.write(buffer, 0, fileContentsLengthNumber[i].intValue());
    zipOut.closeEntry();
    zipOut.close();
    byte zipFileContents[] = new byte[zipFileBufferSize == 0 ? 100000000 : zipFileBufferSize];
    FileInputStream zipIn = new FileInputStream(zipPathAndFileName);
    int byteCount = zipIn.read(zipFileContents);
    zipIn.close();
    byte returnFileContents[] = new byte[byteCount];
    System.arraycopy(zipFileContents,0,returnFileContents,0,byteCount);
    String returnFileContentsString = new String(returnFileContents);
    if (deleteZipFile)
    boolean deletedFile = (new File(zipPathAndFileName)).delete();
    oracle.sql.BLOB returnFileContentsBLOB = null;
    returnFileContentsBLOB = BLOB.createTemporary(conn, true, BLOB.DURATION_SESSION);
    returnFileContentsBLOB.open(BLOB.MODE_READWRITE);
    //OutputStream tempBlobWriter = returnFileContentsBLOB.getBinaryOutputStream();
    OutputStream tempBlobWriter = returnFileContentsBLOB.setBinaryStream(1);
    tempBlobWriter.write(returnFileContents);
    tempBlobWriter.flush();
    tempBlobWriter.close();
    returnFileContentsBLOB.close();
    return returnFileContentsBLOB;
    catch (IllegalArgumentException ex) {
    ex.printStackTrace();
    throw ex;
    catch (FileNotFoundException ex) {
    ex.printStackTrace();
    throw ex;
    catch (IOException ex)
    ex.printStackTrace();
    throw ex;
    catch (java.sql.SQLException ex)
    ex.printStackTrace();
    throw ex;

    860411 wrote:
    Hi Team,
    I am unable to compile the java class in the SQL PLUS in dev1 and dev2. It is giving the following error.
    But the same class get Compiled in the Toad(Tool) without any error and working fine. Could someone help me
    What to do for this for your reference ,Attaching the java class file.
    “ORA-29536: badly formed source: Encountered "<EOF>" at line 1, column 28.
    Was expecting one of:
    I believe the error message is clear and self-explanatory.
    ----------------------Here is the Java class Code.....................
    create or replace and compile java source named "XXVM_ZipFileUtil_Ela"
    as
    import java.math.BigDecimal;
    import java.util.zip.Deflater;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    import oracle.sql.*;
    import oracle.jdbc.*;
    import java.sql.*;
    import java.io.*;
    public class XXVM_ZipFileUtil_Ela
    public static oracle.sql.BLOB getZipFile(
    oracle.sql.CHAR zipFilePathCHAR, oracle.sql.CHAR zipFileNameCHAR,
    int fileBufferSize, int zipFileBufferSize,
    boolean deleteZipFile, java.sql.Array fileNames, java.sql.Array fileContents, java.sql.Array fileContentsLength)
    throws IllegalArgumentException, FileNotFoundException, IOException, java.sql.SQLException
    String zipFilePath = (zipFilePathCHAR == null) ? null : zipFilePathCHAR.stringValue();
    String zipFileName = (zipFileNameCHAR == null) ? null : zipFileNameCHAR.stringValue();
    String zipPathAndFileName = new String(
    new String(zipFilePath == null || zipFilePath == "" ? "/tmp/" : zipFilePath) +
    new String(zipFileName == null || zipFileName == "" ? System.currentTimeMillis() + ".zip" : zipFileName));
    byte[] buffer = new byte[fileBufferSize == 0 ? 100000000 : fileBufferSize];
    try
    Connection conn = DriverManager.getConnection("jdbc:default:connection:");
    oracle.sql.CLOB[] fileContentsCLOB = (oracle.sql.CLOB[])fileContents.getArray();
    String[] fileNamesString = (String[])fileNames.getArray();
    BigDecimal[] fileContentsLengthNumber = (BigDecimal[])fileContentsLength.getArray();
    ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream(zipPathAndFileName));
    zipOut.setLevel(Deflater.DEFAULT_COMPRESSION);
    for (int i = 0; i < fileNamesString.length; i++) {
    System.out.println(i);
    zipOut.putNextEntry(new ZipEntry(fileNamesString));
    InputStream asciiStream = fileContentsCLOB[i].getAsciiStream(1L);
    int asciiReadCount = asciiStream.read(buffer,0,fileContentsLengthNumber[i].intValue());
    zipOut.write(buffer, 0, fileContentsLengthNumber[i].intValue());
    zipOut.closeEntry();
    zipOut.close();
    byte zipFileContents[] = new byte[zipFileBufferSize == 0 ? 100000000 : zipFileBufferSize];
    FileInputStream zipIn = new FileInputStream(zipPathAndFileName);
    int byteCount = zipIn.read(zipFileContents);
    zipIn.close();
    byte returnFileContents[] = new byte[byteCount];
    System.arraycopy(zipFileContents,0,returnFileContents,0,byteCount);
    String returnFileContentsString = new String(returnFileContents);
    if (deleteZipFile)
    boolean deletedFile = (new File(zipPathAndFileName)).delete();
    oracle.sql.BLOB returnFileContentsBLOB = null;
    returnFileContentsBLOB = BLOB.createTemporary(conn, true, BLOB.DURATION_SESSION);
    returnFileContentsBLOB.open(BLOB.MODE_READWRITE);
    //OutputStream tempBlobWriter = returnFileContentsBLOB.getBinaryOutputStream();
    OutputStream tempBlobWriter = returnFileContentsBLOB.setBinaryStream(1);
    tempBlobWriter.write(returnFileContents);
    tempBlobWriter.flush();
    tempBlobWriter.close();
    returnFileContentsBLOB.close();
    return returnFileContentsBLOB;
    catch (IllegalArgumentException ex) {
    ex.printStackTrace();
    throw ex;
    catch (FileNotFoundException ex) {
    ex.printStackTrace();
    throw ex;
    catch (IOException ex)
    ex.printStackTrace();
    throw ex;
    catch (java.sql.SQLException ex)
    ex.printStackTrace();
    throw ex;
    The last two lines above should be
    /Srini

  • Unable to import the views in RPD.

    Hi,
    Case1:Unable to import the views in OBIEE 11g by using "Oracle inOraDb 11g_Home1" drivers but able to import the Tables in RPD.
    Case 2:Unable to import the Table in OBIEE 11g by using ."Data Direct 6.0 Oracle wire protocol" drivers but able to import the Views in RPD.
    My requirement is need to import some views and tables in RPD.How to achive this.kindly let me know.

    Hi,
    I have tested with SH Schema.
    I have one 'View' called profit in sh schema
    http://i1159.photobucket.com/albums/p629/bose-obiee/shschema.jpg
    The schema in import type without 'Views' Option it is not showing
    http://i1159.photobucket.com/albums/p629/bose-obiee/withoutviews.jpg
    clicked Back and selected 'Views' Option and checked under sh schema. am able to see the 'Profit Table.
    http://i1159.photobucket.com/albums/p629/bose-obiee/withviews.jpg
    selected what are all the table i need to import from sh schema with Profit view and clicked the single arrow symbol to move sh schema from 'data source view' to 'repository view' and clicked 'Finish'
    It has imported all the tables and view into the rpd from SH Schema.
    http://i1159.photobucket.com/albums/p629/bose-obiee/View.jpg
    Regards,
    Bose

  • Is there I way I can reload the google calendar as I am unable to change the views or go forward or backward by weeks.

    Is there a way to reload the Google Calendar program on my laptop? Currently, I am unable to change the views. It is always on the current week. I cannot get the daily view either. Thanks!!

    This would not seem to be an Apple issue at all, much less for Apple Remote Desktop. These forums cannot help you with setting up Google Calendar on a Windows system. Perhaps you would be better served by taking your question to a forum related to Google's apps or at least a Windows forum.
    Or did you just forget to include details about what computer you're actually asking about?

  • The debugger was unable to redefine the recompiled classes

    Hi,
    I'm using the Jdeveloper11.1.2 and I'm getting the below error while rebuilding the java file in debug mode after updating my java file.
    The debugger was unable to redefine the recompiled classes.
    Unsupported operation: schema change.
    I tried the Following Way to remove this issue:
    1: stop the server
    2: close the appliication and remove the classes files and data files from the application.
    3: start the weblogic server and stop the running application.
    4: clear the drs and temp file and change the directory.
    5: restart the system and once again clean the temp files.
    6: rebuild all the files and make the jar file but at runtime in debug mode when I rebuild the file once again I'm getting the above error.
    please help me out how I can solve this problem.
    thanks in advance.
    Regards
    Sanjeev

    When you run the UI in the browser does the change in the Java class show up / work fine ? Then you need not worry about the message technically ;)
    Ideally when you see such an option you have probably modified a method signature or added a new method.So you just need to run your UI again from Jdev.
    Also check if this helps -
    http://rimmidis.blogspot.in/2010/03/hot-deployment-after-compiling-in-your.html

  • Unable to Edit the View in Custom Component

    Hi Experts,
    Please help me to resolve this issue !
    I am unable to lock the BOL Entity in my custom component using BTAdminH. I have written the below code in the Edit event Handler for Edit Button. The lr_entity->lock( ) condition statement is getting false and it is skipping the "set_view_editable( me )." code statement. Why??
    This is code excerpt that I have taken from edit button of the BP_HEAD/AccountViewSet and altered to my component/View
    DATA: lr_entity     TYPE REF TO cl_crm_bol_entity,
            lr_controller TYPE REF TO cl_ZVKH8_bspwdcomponent_impl.
      TRY.
          lr_controller ?= me->comp_controller.
          lr_entity ?= lr_controller->typed_context->btadminh->collection_wrapper->get_current( ).
    IF lr_entity IS BOUND.
      IF lr_entity->IS_LOCKED EQ abap_false.
        IF le_entity->IS_CHANGEABLE EQ abap_true.
           IF lr_entity->lock( ) EQ abap_true.
            me->view_group_context->set_view_editable( me ).
           ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    and when I directly executed the below code in the Edit event Handler for Edit Button I am receiving the dereferencing NULL value exception. Why in my custom component in many places this happening??
      me->view_group_context->set_view_editable( me ).
    Exception Details
    CX_SY_REF_IS_INITIAL - Dereferencing of the NULL reference
    Method: ZL_ZVKH8_DETAILSEF_IMPL=>EH_ONBACK
    Thanks,
    Bujji

    Hi Summit & NishaNC,
    Thanks for your responses !
    As suggested, I have debugged the code for ->lock( ) method and there are exceptions raised from some methods.
    Method GET_LOCK () -> Method GET_ROOT () ->Method GET_PARENT ()
    At GET_ROOT( ) method i have received an exception
    "Root entity BTAdminH could not be determined" and one more "Entity BTAdminH could not be locked"
    Later when I have checked in MODEL Browser, I found that the BOL object "BTAdminH" for my view is an Access object and not the Root Object.
    Hence, I have a question? Does the locking can be done only for ROOT Objects?
    If this is TRUE then I think this is the major problem with my custom component where even the cross component navigation is also not happening and in many places I am receiving "Dereferencing NULL Value" information.
    Also I have gone through some of the Threads and one information that I found from Sumit Mittal
    1. An access object is an independent entity, has primary keys of its own.
    2. A root object is a special access object that is at the top of the hierarchy based on business rules.
    3. A dependent object's primary keys are supplied by access objects and it's lifetime is bound to them. If the parent object is destroyed, the dependent object is also destroyed.
    4. Search objects are query objects useful for querying root objects
    5. Search result objects - Search objects return the results in the form of a result object together with a relation pointing to the root object.
    6. View objects - ?
    7. Dynamic search objects - Used in advanced search, supports ranges and operators
    Could you please specify in which scenarios we have to go for Access Objects and Root Objects
    Thanks,
    Bujji

  • Unable to add the Listener class in project .

    Hi friends ,
    I'm using deploytool of Sun's AppServer 8.2.
    I'm not abel to add the Eventlistener class in the project.
    In the Help Menu the given following discription to Add the Event Listener call
    Web Application WAR File -> Event Listeners tabbed pane
         1. Click Add to add an event listener to the Event Listener Classes list.
         Locate any event listener classes contained in this WAR file in the drop-down list in the Event Listener Classes      pane.
         (note:There is no any drop-down list in in the Event Listener Classes pane.)
    2. If the event listener class is not in the list, in the General tab, click Edit and to go to the Edit Contents      dialog box where the event listener class can be added to the contents of the WAR file. Upon return the event      listener class will be in the pull-down list.
              (note:But the listener class is present in General tab ,WEB-INF->classes->listeners(In the Contents of the           General tab.))
    How could i resolved this , i mean how to add Event Listener Classes in project ?
    (Same problem while adding error page and filter classes which are also present in the General tab)
    Regards,
    Sachin Warang.

    I suggest using NetBeans IDE 5.5, which integrates easily with various appservers, including Sun Java System Application Server.
    -cheng

  • HT2513 Unable to change the view on the day, week, month, & year tabs

    When I click on the tabs in the iCal window on my iMac, there is no response. It works properly in iCloud.

    Sometime over the weekend, it started working. I think it was a conflic between my previous gmail calendar set up, which was also syncing with Outlook at my office. I turned disabled the gmail account on my iphone and stopped the google calendar sync on Outlook.
    Now calendar, contacts, and email are all synced up just fine. I have my iphone, my imac, and Outlook on my pc at work all talking to each other without conflict . . . finally!

  • Why am I unable to sort the music on my iPhone 4S when viewing it in iTunes?

    Hello,
    Apologies if this has been answered already; I searched for it but none of the results appeared relevent to my issue.
    I have an ipod touch 4th generation, which I manually manage from the the iTunes library on my home PC (Windows 7, 32bit). I am able to plug the ipod touch into my work laptop, to listen to the music on it through iTunes. I can see the list of songs on my ipod via the 'Music' tab of the 'Devices' section in iTunes. In that view, I am also able to sort the list as I see fit, by clicking on the various column headings to change the order of that column appropriately.
    I have recently purchased an iPhone 4S, and loaded it with music from my own computer's iTunes library in the same way I did for my ipod. However, when viewing the songs on my 4S on my work laptop in the same way as above, I am unable to sort the view at all. Why is this?
    It's annoying not being able to sort the songs in an order different to how they were sorted on the parent machine. For example, if I'm looking in my song list for a song I added recently, I was able to find them on my ipod by simply ordering the list by Date Added or Date Modified, but there seems to be no way of doing this for the 4S?
    Thanks in advance.

    Thanks for your message.
    I have downloaded the latest iTunes [11.1.5 (5)] with no luck, unfortunately. As it did with 11.1.4 (62), iTunes recognizes my iPhone, I can select the music to sync, click sync, it appears to sync but remains completely unchanged in my iPhone music.
    Any tips are welcome!

  • Unable to find the Overview View in the DC pcui_gp~xssutils of ESS

    Hi All,
    In ESS application one work set is there with name Overview.When we click on the Overview workset then the page contain 5 links.When i am clicking on Who's who link i am getting error message Page cannot be found.Where as if we will direct click on workset Who's Who then we are able to see the page.
    I have imported the ESS track to NWDS.The i have synced the DC,then i have done Create project .Now i am able to see the DC xssutils in webdynpro explorer.I have expanded the Dc and check all the View present inside DC.However i am unable to find the View similar to Overview page.In Content Administration Overview iView is mentioned as WebDynpro iView.
    Can anybody tell me how i will get the Overview pafe in the DC?
    Is ESS standard package is not deployed to Track properly thats why i am not getting the all view inside the DC?
    Thanks
    Susmita

    The problem is solved by basis team.

  • Unable to instantiate class CL_CGPLP_PROJECT

    Hi All,
    The requirement is to Release the Trade Promotion Mangement for settlement. For this there is a method of the class CL_CRM_MKTPL_COST_ASSIGNMENT=>RELEASE_FOR_SETTLEMENT which will release the TPM. But for this one of the arguments that you will have to pass is the instantiated object CL_CGPLP_PROJECT. To instantiate the CL_CGPLP_PROJECT I need to pass some attributes which I do but it ends up in a dump saying MISSING_OBJECT_MANAGER. Following is the code:
      DATA: TPM TYPE REF TO CL_CGPL_PROJECT,
            TPM_ATTR TYPE CRM_MKTPL_ATTR,
            TRADE_SPEND TYPE CRMS_MKTPL_COST_TAB,
            L_TRADE_SPEND TYPE LINE OF CRMS_MKTPL_COST_TAB,
            L_TPM TYPE CGPL_PROJECT,
            ID TYPE CGPL_PROJECT-EXTERNAL_ID,
            L_REF_NUMBER     TYPE CGPL_EXTID,
            L_ATTR TYPE CGPL_R3_ATTRIBUT.
    CLASS CL_CGPL_PROJECT DEFINITION LOAD.
    Convert GUID to external TPM ID cos some of the tables access the
    *External ID
      CALL FUNCTION 'CONVERSION_EXIT_CGPLP_OUTPUT'
        EXPORTING
          INPUT  = GUID
        IMPORTING
          OUTPUT = ID.
      MOVE ID TO L_REF_NUMBER.
    *Prepare to instantiate the object
      SELECT SINGLE * FROM CGPL_PROJECT INTO L_TPM
                      WHERE EXTERNAL_ID = ID.
      SELECT SINGLE * FROM CRM_MKTPL_ATTR INTO TPM_ATTR WHERE GUID = GUID.
      SELECT * FROM CRMD_MKTPL_COSTA INTO TABLE TRADE_SPEND
                    WHERE PROJECT_GUID = GUID.
      SELECT SINGLE * FROM CGPL_R3_ATTRIBUT INTO L_ATTR WHERE GUID = GUID.
    *Instatiate the Project Object.
      CREATE OBJECT TPM
        EXPORTING
          IM_ATTRIBUTES = L_TPM
          IM_FETCH_TASKS = SPACE
       IM_NEW_CREATE =
        IM_R3_ATTRIBUTES = L_ATTR
       IM_RAISE_EVENT = 'X'
          IM_REF_NUMBER = ID
      EXCEPTIONS
        FAILED = 1
        others = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    But once I try to instantiate the Project class it goes for a dump. Any help in this regard would be helpful.
    Best Regards,
    Sudhi

    Hi Sudhindra,
    I also faced similar problem but was able to resolve it by first calling CL_CGPL_OBJECT_MANAGER=>GET_INSTANCE before instantiating CL_CGPL_PROJECT. Pls see my code below. Hope this helps you avoiding short dump.
    Regards
    Krishna
    <b>REPORT kp message-id zcrm_mkt.
    DATA: GUID TYPE CGPL_GUID16,
          l_CRM_MKTPL_MKTELEMENT TYPE CRM_MKTPL_MKTELEMENT.
    DATA:  lr_appl_base TYPE REF TO cl_crm_mktpl_appl_base,
           lr_obj_manager TYPE REF TO cl_cgpl_object_manager,
           l_app_type TYPE CGPL_APPLICATION_TYPE.
    DATA: z_cgpl_persistency TYPE REF TO cl_cgpl_persistency.
    DATA: z_project TYPE REF TO cl_cgpl_project,
          l_im_attributes TYPE cgpl_project,
          l_object_type TYPE cgpl_object_type,
         l_children TYPE CGPL_HIERARCHY_NODES,
         l_parent type CGPL_GUIDTAB_TYPE,
          l_im_guid TYPE CGPL_GUID16,
          l_hierarchy TYPE CGPL_HIERARCHY.
    select SINGLE * INTO l_im_attributes FROM cgpl_project WHERE external_id = 'MF/843.A.BB.CC'.
    l_app_type = 'MKT'.
    CALL METHOD CL_CGPL_OBJECT_MANAGER=>GET_INSTANCE
      EXPORTING
        IM_APPLICATION_TYPE = l_app_type
      IMPORTING
        EX_INSTANCE         = lr_obj_manager
      EXCEPTIONS
        NOT_FOUND           = 1
        others              = 2.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CREATE OBJECT Z_PROJECT
      EXPORTING
        IM_ATTRIBUTES = l_im_attributes
        IM_FETCH_TASKS = 'X'
       IM_R3_ATTRIBUTES =
        IM_RAISE_EVENT = 'X'
       IM_REF_NUMBER =
      EXCEPTIONS
        FAILED = 1
        others = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD Z_PROJECT->GET_OBJECT_TYPE
      IMPORTING
        EX_OBJECT_TYPE = l_object_type.
    write: l_object_type.</b>

  • [orabpel_10.1.2.0.2_WL_solaris]: XMLScriptReader: unable to parse the provi

    All,
    I have downloaded orabpel_10.1.2.0.2_WL_solaris.bin and have tried to install this.
    However this fails horribly.
    First here are some details on the machine i try to install it on.
    I hope someone can help me with this.
    Paul
    uname -a
    SunOS dasapsd2 5.10 Generic_118833-24 sun4u sparc SUNW,Sun-Fire-V240
    ptrdiag
    System Configuration: Sun Microsystems sun4u Sun Fire V240
    System clock frequency: 167 MHZ
    Memory size: 2GB
    ==================================== CPUs ====================================
    E$ CPU CPU
    CPU Freq Size Implementation Mask Status Location
    0 1002 MHz 1MB SUNW,UltraSPARC-IIIi 2.4 on-line MB/P0
    1 1002 MHz 1MB SUNW,UltraSPARC-IIIi 2.4 on-line MB/P1
    ================================= IO Devices =================================
    Bus Freq Slot + Name +
    Type MHz Status Path Model
    pci 66 MB pci108e,1648 (network)
    okay /pci@1f,700000/network@2
    pci 66 MB pci108e,1648 (network)
    okay /pci@1f,700000/network
    pci 33 MB isa/su (serial)
    okay /pci@1e,600000/isa@7/serial@0,3f8
    pci 33 MB isa/su (serial)
    okay /pci@1e,600000/isa@7/serial
    pci 33 MB isa/rmc-comm-rmc_comm (seria+
    okay /pci@1e,600000/isa@7/rmc-comm@0,3e8
    pci 33 MB pci10b9,5229 (ide)
    okay /pci@1e,600000/ide
    pci 66 MB scsi-pci1000,21 (scsi-2)
    okay /pci@1c,600000/scsi@2
    pci 66 MB scsi-pci1000,21 (scsi-2)
    okay /pci@1c,600000/scsi
    pci 66 MB pci108e,1648 (network)
    okay /pci@1d,700000/network
    pci 66 MB pci108e,1648 (network)
    okay /pci@1d,700000/network
    ============================ Memory Configuration ============================
    Segment Table:
    Base Address Size Interleave Factor Contains
    0x0 1GB 1 BankIDs 0
    0x1000000000 1GB 1 BankIDs 16
    Bank Table:
    Physical Location
    ID ControllerID GroupID Size Interleave Way
    0 0 0 1GB 0
    16 1 0 1GB 0
    Memory Module Groups:
    ControllerID GroupID Labels Status
    0 0 MB/P0/B0/D0
    0 0 MB/P0/B0/D1
    1 0 MB/P1/B0/D0
    1 0 MB/P1/B0/D1
    ########## END DETAILS ###########
    The command i use is the following.
    export LAX_DEBUG=1
    sh orabpel_10.1.2.0.2_WL_solaris.bin -i console
    And then the output is as follows
    dasapsd2 tmp # sh orabpel_10.1.2.0.2_WL_solaris.bin -i console
    Preparing to install...
    Checking for POSIX df.
    Found POSIX df.
    Checking tail options...
    Using tail -n 1.
    True location of the self extractor: /var/tmp/orabpel_10.1.2.0.2_WL_solaris.bin
    Creating installer data directory: /tmp/install.dir.8538
    Creating installer data directory: /tmp/install.dir.8538/InstallerData
    Gathering free-space information...
    Space needed to complete the self-extraction: 713319 blocks
    Available space: 1048560 blocks
    Available blocks: 1048560 Needed blocks: 713319 (block = 512 bytes)
    Computed number of blocks to extract: 719
    Extracting the JRE from the installer archive...
    Extracting JRE from orabpel_10.1.2.0.2_WL_solaris.bin to /tmp/install.dir.8538/Solaris/resource/jre_padded ...
    Extracting done, exit code = 0
    Extracting JRE from /tmp/install.dir.8538/Solaris/resource/jre_padded to /tmp/install.dir.8538/Solaris/resource/vm.tar.Z ...
    Extracting done, exit code = 0
    Unpacking the JRE...
    Unpacking the JRE...
    gzip is hashed (/usr/bin/gzip)
    GZIP done.
    TAR done.
    Extracting the installation resources from the installer archive...
    Extracting install.zip from orabpel_10.1.2.0.2_WL_solaris.bin to /tmp/install.dir.8538/InstallerData/installer.padded ...
    Extracting to padded done, exit code = 0
    Extracting from padded to zip done, exit code = 0
    Creating disk1 data directory: /tmp/install.dir.8538/InstallerData/Disk1
    Creating instdata data directory: /tmp/install.dir.8538/InstallerData/Disk1/InstData
    Extracting resources from orabpel_10.1.2.0.2_WL_solaris.bin to /tmp/install.dir.8538/InstallerData/Disk1/InstData/Resource1.zip ...Extracting done, exit code = 0
    Configuring the installer for this system's environment...
    ========= Analyzing UNIX Environment =================================
    Setting UNIX (sunos) flavor specifics.
    Importing UNIX environment into LAX properties.
    Checking for POSIX awk.
    ========= Analyzing LAX ==============================================
    LAX found............................ OK.
    LAX properties read.................. OK.
    ========= Finding VM =================================================
    Valid VM types.......................... J2 J1 MSJ MRJ
    Absolute LAX_VM path.................... /tmp/install.dir.8538/Solaris/resource/jre/bin/java
    Expanded Valid VM types................. JRE_J2 JDK_J2 JRE_J1 JDK_J1 MSJ MRJ
    * Using VM.....(lax.nl.current.vm)...... /tmp/install.dir.8538/Solaris/resource/jre/bin/java
    ========= Virtual Machine Options ====================================
    LAX properties incorporated............. OK.
    classpath............................... "/tmp/install.dir.8538/InstallerData:/tmp/install.dir.8538/InstallerData/installer.zip"
    main class.............................. "com.zerog.ia.installer.Main"
    .lax file path.......................... "/tmp/install.dir.8538/temp.lax"
    user directory.......................... "/tmp/install.dir.8538"
    stdout to............................... "console"
    sterr to................................ "console"
    install directory....................... ""
    JIT..................................... none
    option (verify)......................... off
    option (verbosity)...................... none
    option (garbage collection extent)...... none
    option (garbage collection thread)...... none
    option (native stack max size).......... none
    option (java stack max size)............ none
    option (java heap max size)............. 50331648
    option (java heap initial size)......... 16777216
    option (lax.nl.java.option.additional).. none
    ========= Display settings ===========================================
    X display............................... not set
    UI mode................................. console
    Launching installer...
    CLASSPATH:/tmp/install.dir.8538/InstallerData:/tmp/install.dir.8538/InstallerData/installer.zip:
    ========= Forking JAVA =============================================
    LAX Version = 6.0
    IAResourceBundle: create resource bundle: en
    IACommandLineParser::<init> ---starting---
    IACommandLineParser::<init> ---ending---
    propertiesFileName = null
    seaFilename = orabpel_10.1.2.0.2_WL_solaris
    Default properties location = /var/tmp/
    UI Mode set to __________________________________________________________________________
    InstallAnywhere 6.1 Enterprise
    Thu Jan 04 17:22:29 CET 2007
    Free memory = 14506 kB
    Total memory = 16320 kB
    2Command Line Args:
    0: -i
    1: console
    java.class.path:
    /tmp/install.dir.8538/InstallerData
    /tmp/install.dir.8538/InstallerData/installer.zip
    ZGUtil.CLASS_PATH:
    /tmp/install.dir.8538/InstallerData
    /tmp/install.dir.8538/InstallerData/installer.zip
    sun.boot.class.path:
    /tmp/install.dir.8538/Solaris/resource/jre/lib/rt.jar
    /tmp/install.dir.8538/Solaris/resource/jre/lib/i18n.jar
    /tmp/install.dir.8538/Solaris/resource/jre/lib/sunrsasign.jar
    /tmp/install.dir.8538/Solaris/resource/jre/classes
    java.ext.dirs:
    /tmp/install.dir.8538/Solaris/resource/jre/lib/ext
    java.version == 1.3.1_11 (Java 2+)
    java.vm.name == Java HotSpot(TM) Client VM
    java.vm.vendor == Sun Microsystems Inc.
    java.vm.version == 1.3.1_11-b02
    java.vm.specification.name == Java Virtual Machine Specification
    java.vm.specification.vendor == Sun Microsystems Inc.
    java.vm.specification.version == 1.0
    java.specification.name == Java Platform API Specification
    java.specification.vendor == Sun Microsystems Inc.
    java.specification.version == 1.3
    java.vendor == Sun Microsystems Inc.
    java.vendor.url == http://java.sun.com/
    java.class.version == 47.0
    java.compiler == null
    java.home == /tmp/install.dir.8538/Solaris/resource/jre
    java.io.tmpdir == /var/tmp/
    os.name == SunOS
    os.arch == sparc
    os.version == 5.10
    path.separator == :
    file.separator == /
    file.encoding == ISO8859-1
    user.name == root
    user.home == /root
    user.dir == /tmp/install.dir.8538
    user.language == en
    user.region == US
    Preparing CONSOLE Mode Installation...
    ===============================================================================
    (created with InstallAnywhere by Zero G)
    Installer: InstallAnywhere 6.1 Enterprise Build 2325
    System's temporary directory = /tmp
    Please report the following to IA Engineering:
    XMLScriptReader: ERROR during instantiation of object. This object was lost!
    - refID: null
    - class: com.zerog.ia.installer.Installer
    java.lang.UnsatisfiedLinkError: exception occurred in JNI_OnLoad
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1330)
    at java.lang.Runtime.loadLibrary0(Runtime.java:744)
    at java.lang.System.loadLibrary(System.java:815)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:48)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.loadLibraries(Toolkit.java:1065)
    at java.awt.Toolkit.<clinit>(Toolkit.java:1086)
    at java.awt.Color.<clinit>(Color.java:183)
    at com.zerog.ia.installer.util.InstallFrameConfigurator.<clinit>(DashoA8113)
    at com.zerog.ia.installer.Installer.e(DashoA8113)
    at com.zerog.ia.installer.Installer.d(DashoA8113)
    at com.zerog.ia.installer.Installer.<init>(DashoA8113)
    at com.zerog.ia.installer.Installer.<init>(DashoA8113)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:232)
    at ZeroGep.a(DashoA8113)
    at ZeroGep.c(DashoA8113)
    at ZeroGep.a(DashoA8113)
    at ZeroGep.a(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.o(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.h(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.Main.main(DashoA8113)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.zerog.lax.LAX.launch(DashoA8113)
    at com.zerog.lax.LAX.main(DashoA8113)
    XMLScriptReader: unable to parse the provided script file. File may have been invalid...
    java.lang.NullPointerException
    at ZeroGep.a(DashoA8113)
    at ZeroGep.a(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.o(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.h(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.Main.main(DashoA8113)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.zerog.lax.LAX.launch(DashoA8113)
    at com.zerog.lax.LAX.main(DashoA8113)
    Unable to instantiate the installer.
    Unable to load and to prepare the installer in console or silent mode.
    =======================================================
    Installer User Interface Mode Not Supported
    Unable to load and to prepare the installer in console or silent mode.
    =======================================================
    SHUTDOWN REQUESTED

    I have/had the same problem, in the release notes it is stated that the integration products dont work with the the latest AS release.
    The problem is wehere can you find the 10.1.2.0.0 AS release?

  • How to access getter/setters from the entity classes

    Let me brake my question to two:
    1. in My JSP page, I need to get an exception from either the entity or the view class if I insert a duplicate value into the associated table. How can I do that?
    2. How can I access the entity's getter/setter functions in the JSP page?
    Thank you

    Let me brake my question to two:
    1. in My JSP page, I need to get an exception from either the entity or the view class if I insert a duplicate value into the associated table. How can I do that?You can mark the attribute as unique key attribute and choose to implement the unique-key validation in the Bc4J side. See help on UniqueKey and how to establish such validation
    2. How can I access the entity's getter/setter functions in the JSP page?You cannot access entities directly. You have to expose the accessors via ViewObject Rows and use those Rows from the JSP/or any client side.
    Thank you

  • Enlarge the view automaticly

    Hey,
    I'm making a checkers game and I'm trying to make my checkersboard bigger when I enlarge my window.
    This works for my pieces but I don't get my checkersboard to enlarge and appear.
    I'm trying to work with MVC.
    I think my problem will be found in the view class but I ain't sure.
    My view class:
    import java.awt.*;
    * Write a description of class DambordView here.
    * @author Potargent Bert
    * @version
    public class DambordView extends Canvas
    // instance variables - replace the example below with your own
    private Dambord bord;
    protected Image buffer;
    int b = getWidth();
    int h = getHeight();
    int y = 0;
    * Constructor for objects of class DambordView
    * We hebben altijd een model nodig om te tekenen.
    public DambordView(Dambord b)
    // initialise instance variables
    bord = b;
    * De tekenmethode van het DambordView
    public void paint(Graphics g)
    b = getWidth();
    h = getHeight();
    g.drawRect(20,20,b-40,h-60);
    b = (b-40)/10;
    h = (h-40)/10;
    g.setColor(Color.BLACK);
    for (int rij = 1; rij < 11; rij++)
    {if (rij%2 != 0)
                    for (int x=0; x<5; x++)
                        g.setColor(Color.GRAY);
                        g.fillRect(20+2*x*b+b, 20+y, b, h);
    else
    for (int x=0; x<5; x++)
    g.setColor(Color.GRAY);
    g.fillRect(20+2*x*b, 20+y, b, h);
    y=y+50;
    for (int i=0; i< bord.aantalPionen(); i++) {
    tekenPion(g, bord.getPion(i), Color.BLACK, b);
    public void tekenPion(Graphics g, Pion x, Color kleur , int straal)
    g.setColor(kleur);
    straal = straal-10;
    g.fillArc(20+x.getX(), 20+x.getY(), straal, straal, 0, 360);
    Greets,
    Bert600

    Bert600 wrote:
    I used awt because we use it all the time in school.
    I could have used swing of course but I'm not so familiar with java.If you are just learning java for school, then this is fine. . If you see yourself having any type of future with Java, then I suggest that you learn a bit of Swing on your own. It's quite a bit more flexible and powerful than AWT.
    Thanks for your respons.You're welcome.
    and thanks Darryl. Time to spend some yummy Duke's dollars

Maybe you are looking for