Error Creating Work Area in JDeveloper for SCM

In the Repository Object Navigator for 9i SCM, my userID has been granted the the following permissions to a shared work area called pdshare by the owner/build manager:
Select
Administrate
Insert
Update
Delete
Version
Compile
Update Spec.
However, in JDeveloper 9.0.3.1 When I create a work area from this shared work area I keep getting this error:
"BHART has insufficient privledges to Manage WorkArea".
Does anyone have suggestions for how to resolve this so that I can access the shared work area?
Thanks,
-Brian

It's actually simple if yyou use dynamic tables and field symbols.
In the program that calls  methods / attributes in the class
define some field symbols
for example
FIELD-SYMBOLS :
  <fs1>           TYPE  ANY,
  <fs2>           TYPE  STANDARD TABLE,
  <field_catalog> TYPE STANDARD TABLE,
  <dyn_table>    TYPE  STANDARD TABLE,
  <orig_table>   TYPE  STANDARD TABLE,
  <dyn_field>,
  <dyn_wa>.
in the class define data
DATA:
dy_table         TYPE REF TO data,
    dy_line          TYPE REF TO data,
etc.
field symbols work both INSIDE and OUTSIDE classes and are extremely useful for passing / receiving data. You have to define the field symbols in your main program however.
METHOD create_dynamic_table.
CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
         it_fieldcatalog = it_fldcat
      IMPORTING
         ep_table = dy_table.
ENDMETHOD.
CALL METHOD me->create_dynamic_table
    EXPORTING
      it_fldcat = it_fldcat
    IMPORTING
      dy_table        = dy_table.
     ASSIGN dy_table->* TO <dyn_table>.
CREATE DATA dy_line LIKE LINE OF <dyn_table>.
ASSIGN dy_line->* TO <dyn_wa>.
ENDMETHOD.
Then in your program (or class)  your data is in <dyn_table>.
Use dynamic tables and dynamic field cats as these give HUGE flexibility and you can re-use code over and over again for different structures.
The new RTTI  gives you any table structure whatsoever so you can make the whole thing completely general.
That's one of the advantages of Classes and OO as opposed to older FMODS.
Cheers
jimbo

Similar Messages

  • Getting error message "Could not create work area" when I open Bridge CC.

    I am getting an error message "Could not create work area" when I open Bridge CC.
    I have reset my workspace. I have closed and opened Bridge CC. I have deleted the !!-$$$AdobeOutputModule.workspace file in /Library/Application Support/Adobe/Bridge CC/Workspaces folder.
    I am not an expert computer user, so please explain in detailed steps like I am 5 years old. Thanks in advance for any help.

    I am experiencing the same problem!
    My mac is OS X Yosemite (10.10.1), Photoshop CC 2014.2.1, Bridge CC 6.1.0.115 and Camera Raw 8.7.0.309

  • Error in creating Work area

    Hi,
    While creating Work Area, I am getting following error;
    "Internal program error; (SAPLCBIH_WA03 SAPLCBIH_WA00 ERROR_WA_CREATE 3)"
    I have already defined the internal & external number ranges. What can be the cause for this error?
    Regards,
    Mayank

    Hi Mayank,
    It seems to me that some of the classes that are used in EH&S system are missing in the current client. Try executing IMG activity "Adopt Standard Specification Database Structure".  You must have you the authorization for the client copy. It should resolve the issue. Please let me know if it doesn't.
    Thanks,
    Akash

  • Reg : "Error multiple Receivers are not allowed for Synchronous calls"

    Hi All,
    Can somebody tell me why I am getting this error "Error multiple Receivers are not allowed for Synchronous calls" when I am using Synchronous Soap Request to WebService and the response from webservice is being sent to multiple receivers which are Business services based on Receiver determination condition(Services W/o Party).

    Hi , If you are simply looking up data (and not updating tables ) using RFC you can use RFC Lookup APIs to create a java mapping
    The source message has to be a RFC request message interface and target should be RFC response message interface.
    Also you can use three step mappings in a single interface mapping.
    1. from your request message to RFC request message mapping
    2. java mapping which will do the lookup and give you rfc response back
    3.rfc response to your target response mapping.
    PS: RFC lookup can be used if there are not may hierarchy in the RFC Response structure. (i.e. may be 3 or 4 level nesting permitted)
    To help you further
    The following is a link which gives you access to a ready made source code. you just need to compile it and create a jar and import the mapping in imported archive
    http://knowhowsapxi.synthasite.com/rfc-loolup.php
    Edited by: Progirl Progirl on Oct 31, 2008 1:33 PM

  • Error: Common entries are not permitted for plan queries and input queries

    Hi,
    I have a 2 selections in the column struct:
    1. year = 2005, version = actual
    2. year = 2006, version = plan, marked as data can be changed using user entry or planning function
    row has posting periods from 1-12
    in the workbook I have inserted this query in the workbook in analysis grid. it runs good.
    now i added a button and assigned planning function to it. this planning function copies 2005, actuals to 2006, plan.
    when i execute the workbook and hit this button, it gives me following error:
    "Common entries are not permitted for plan queries and input queries"
    please can anyone provide me assistance with this issue.
    thanks,
    sam

    when i go to diagnosis it displays following:
    Diagnosis
    InfoProvider ZIP_PLAN2 must be described in this application by both a plan query and by a input-ready query, which is directly defined on the InfoProvider ZIP_PLAN2.
    System Response
    This is not permitted.

  • Error creating work order for new notification - Related SyncBO not present

    Hi,
    We are working with MAM3.0 standard application.
    We age getting an  error while creating work order for a NEW notification.
    In this scenario both notification and corresponding work order are also not created.
    Here is the error for MAM30001 Sync BO in MEREP_MONI:_
    Reading inbox record (mobile ID=0000001444, seq, no.=29, rcd_cntr=1, data=TOP0001000000
    External format successfully converted to internal format: ldata=TOP0001000000000000000
    Related SyncBO MAM30_010 with Sync key 0000000028 is not present on the device.
    Return code 1 (DOWNLOADER)                                                   
       Here is the error for MAM30010 Sync BO in MEREP_MONI:_
    Return code from RFC BAPI Wrapper call:Order NEW does not exist
    Return code from RFC BAPI Wrapper call:The order/network type  is not defined
    Return code from RFC BAPI Wrapper call:Order NEW does not exist
    Return code 0 (UPDATE MEREP_506-STATUS)                                      
    Can any body please tell me what is the sollutions for this error
    your help in this regard is appreciable.
    Regards,
    Murthy

    Hi Murthy,
    II have no idea what patch level you are on. A while back we had similar issues with some clients. There are several patches around that area available. Perhaps you should have a look into patch 959732.
    Hope that helps.
    Regards,
    Oliver

  • Creating Work Area in OO

    Hi,
    I have a table type, which uses Line Type of a structure.
    I want to declare a table for that and also a work area. I need to append entries in this table l_i_tab_ca_rbl_data.
    I declared the table as follows :-
    l_i_tab_ca_rbl_data TYPE standard TABLE OF cms_tab_am_cur_acc_rbl_data,
    and I tried to declare the Work area in the following ways :-
    ls_i_tab_ca_rbl_data like l_i_tab_ca_rbl_data,
    ls_i_tab_ca_rbl_data type cms_tab_am_cur_acc_rbl_data,
    ls_i_tab_ca_rbl_data type cms_str_am_cur_acc_rbl_data ("This is the line type used in the table type )
    In the first case, it says "ls_i_tab_ca_rbl_data  does not have a header line"
    It gives the error "ls_i_tab_ca_rbl_data cannot be converted to line type of l_i_tab_ca_rbl_data".
    Please suggest how I can declare a wrok area for this table type.
    Also since the error says that l_i_tab_ca_rbl_data is a line type does that mean it can hold only one record.
    Also is there any other way to append entries in that table l_i_tab_ca_rbl_data, apart from work areas.
    Please help.
    Note : I am working in a class-> method so am unable to declare tables with header line.
    Thanks in advance,
    Archana

    It's actually simple if yyou use dynamic tables and field symbols.
    In the program that calls  methods / attributes in the class
    define some field symbols
    for example
    FIELD-SYMBOLS :
      <fs1>           TYPE  ANY,
      <fs2>           TYPE  STANDARD TABLE,
      <field_catalog> TYPE STANDARD TABLE,
      <dyn_table>    TYPE  STANDARD TABLE,
      <orig_table>   TYPE  STANDARD TABLE,
      <dyn_field>,
      <dyn_wa>.
    in the class define data
    DATA:
    dy_table         TYPE REF TO data,
        dy_line          TYPE REF TO data,
    etc.
    field symbols work both INSIDE and OUTSIDE classes and are extremely useful for passing / receiving data. You have to define the field symbols in your main program however.
    METHOD create_dynamic_table.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
             it_fieldcatalog = it_fldcat
          IMPORTING
             ep_table = dy_table.
    ENDMETHOD.
    CALL METHOD me->create_dynamic_table
        EXPORTING
          it_fldcat = it_fldcat
        IMPORTING
          dy_table        = dy_table.
         ASSIGN dy_table->* TO <dyn_table>.
    CREATE DATA dy_line LIKE LINE OF <dyn_table>.
    ASSIGN dy_line->* TO <dyn_wa>.
    ENDMETHOD.
    Then in your program (or class)  your data is in <dyn_table>.
    Use dynamic tables and dynamic field cats as these give HUGE flexibility and you can re-use code over and over again for different structures.
    The new RTTI  gives you any table structure whatsoever so you can make the whole thing completely general.
    That's one of the advantages of Classes and OO as opposed to older FMODS.
    Cheers
    jimbo

  • All buttons in all files are now showing error: Mouse events are permitted only for button instances.

    Somebody please help:
    I've taught myself enough with Flash to customize a
    fully-Flash template for my wife's website, and two of the buttons
    didn't do what I wanted them to in Actionscript. They then began
    giving me the message:
    **Error** Symbol=sub_butt1, layer=Layer 4, frame=1:Line 1:
    Mouse events are permitted only for button instances
    on (rollOver) {
    **Error** Symbol=sub_butt1, layer=Layer 4, frame=1:Line 4:
    Mouse events are permitted only for button instances
    on (releaseOutside, rollOut) {
    Total ActionScript Errors: 2 Reported Errors: 2
    Not only do I not know how to fix this, the same message
    comes up for every single button in the entire fla I had saved,
    plus earlier versions where I hadn't even messed with the buttons
    yet.
    Any suggestions?

    Hello Corbett,
    The error is saying that you are trying to apply a button
    action to something
    other than a button. Often this happens when you select the
    frame that the
    button is on instead of the actual button, thus applying the
    action to the
    frame instead of the button.
    Make sure you select the button on the stage and then apply
    the actions there.
    You'll probably have to remove the action from the frame
    before it will work
    (looks like it's on Layer 4 frame 1).
    Good luck!
    Jesse H.
    Adobe Community Expert
    My site:
    http://www.jharding.com
    Free Blog Radio:
    http://www.tornadostream.com
    > Somebody please help:
    > I've taught myself enough with Flash to customize a
    fully-Flash
    > template for
    > my wife's website, and two of the buttons didn't do what
    I wanted them
    > to in
    > Actionscript. They then began giving me the message:
    >
    > **Error** Symbol=sub_butt1, layer=Layer 4, frame=1:Line
    1: Mouse
    > events are
    > permitted only for button instances
    > on (rollOver) {
    > **Error** Symbol=sub_butt1, layer=Layer 4, frame=1:Line
    4: Mouse
    > events are
    > permitted only for button instances
    > on (releaseOutside, rollOut) {
    > Total ActionScript Errors: 2 Reported Errors: 2
    >
    > Not only do I not know how to fix this, the same message
    comes up for
    > every
    > single button in the entire fla I had saved, plus
    earlier versions
    > where I
    > hadn't even messed with the buttons yet.
    > Any suggestions?

  • Error Creating Entries in EDISEGMENT Table for Data Src 0MATL_TYPE_TEXT

    Hello,
    We are facing issues for data sources after doing a client switch in Quality - BW system. 0MATL_TYPE_TEXT is one of the Data Sources which is throwing such an error.  I tried to delete entries from EDISEGMENT table in BW system. But this one being system tables without table maintenance, can't delete the entries for relevant datasources with Basis help (after opening the system for editing) as well. Can you suggest proper steps how we can delete entries from this table?
    Also, do we need to delete entries from EDISEGMENT tables in ECC as well for the data source? Is there any other table from which we should be deleting entries also and is there any risk associated with such deletion of table entries in BW/ ECC?
    If you have any other way of resolving this issue, please suggest.
    Regards,
    Dibyendu

    Hi,
    This is a standard table, so deleting entry from it is not advisable. You can any ways try correcting it.
    Check out note 493422. This may help.
    Regards,
    Shyam.

  • Creating Web services using JDeveloper for Pl/SQL package having ref cursor

    Hi,
    I am trying to create web services for PL/SQL package in JDeveloper. When I am trying to create this web service, the functions in the package which is returning referential cursor or record cursor are not visible. When I highlight the function and click "Why Not?", it displays the message "The following types used by the program unit do not have an XML schema mapping and/or serializer Specified: REF CURSOR". Could you please let me know, how I can create this web service?
    I am getting similar error when I am trying to create web service for a package with overloaded functions also.
    Thanks,

    Ok so I played around with this some more. I created the same process in bpel using oracle bpel designer and here are the results.
    1. Against 10g database running a synch process data is retutned without error.
    2. Against 9i database running an asynch process data is retutned without error.
    3. Against 9i database running a synch process data is retutned with error.
    I'm definilty missing something.

  • Error creating a new Data Source for Oracle connection

    I'm trying to create a new data source connection to our
    Oracle 10gR2 server using ColdFusion Administrator 6.1 Standard on
    a Windows 2003 server.
    I created a System DSN ODBC connection for Oracle. I can use
    the ODBC connection when connecting an Access db to Oracle but when
    I try to use it w/ ColdFusion Admin it generates the following
    error message:
    Connection verification failed for data source: sitest2
    []java.sql.SQLException: [Macromedia][SequeLink JDBC
    Driver][ODBC Socket]internal error:
    Driver's SQLAllocHandle on SQL_HANDLE_ENV failed
    The root cause was that: java.sql.SQLException:
    [Macromedia][SequeLink JDBC Driver][ODBC Socket]internal error:
    Driver's SQLAllocHandle on SQL_HANDLE_ENV failed
    Any help or recommendations would be greatly appreciated.
    Tina

    The schema/user is system and the password is alpha-numeric, upper/lower case, no special char ...
    As a workaround I was able to add the password to the entry in the datasources.xml file and restarted BI Pub.
    The JDBC is working ... I can test the connection successfully ... just wont save the entry
    Edited by: tread on Oct 17, 2011 11:55 AM

  • IVew Error:Create IVIEW in a Portal  for a SAP BW Query

    Hi,
    My requirment is to publish a BW Query to Portal.
    When i tried to create a iver for a particular BW query in portal.....it is pulling every thing.
    When i click to execute a query for which i created iview...a new window pops up and and displays queries according to roles
    Please update me whats happening
    Background:
    BW Version : 7.0
    Currently we are accessing a BW Reports/Queries using BEX WEB Analyzer.
    We are using a Standard Web Templete in WAD.
    When we create a New Query in BW Query designer and publish it a role folder(BW)-PFCG.
    When i execute BEX WEB Analyzer through Explorer i can access query from the folder in the role to which i published.
    I don't need to add each query to web templete when i publish the query to a pole folder in PFCG when i run the BEX WEB Analyzer the query will be in that role automaticall.
    Now i am planning to publish queries in Portal
    I created a role in Portal>Created a work set>assigned the workset to the role
    I am trying to create a iview
    Create a new iview> templete>Query string details
    i assigned this iview to the role
    When i try to access the query from the role i created. intsed of opening the query for which i created iview ...it is opening all the queries that i can access form BEX WEB Analyzer...
    Please update whats happening
    Please let me know if you need firther information
    Thanks

    Hi
    Thanks for the updare...the document (pdf) is not able open...file damegaed...
    PLease aupdate me
    When i created a iview for a single BW query why i can able to see all the queries in the BEX WEB Analyzer
    Thansk

  • Error creating Webservice Client in JAVA for ABAP Webservice(WSDL file)

    Hi all,
    I have created a webservice from a funtion module in the backend.
    Using soamanger I downloaded the wsdl file using "Open WSDL document for selected binding" link.
    I tested this web service in backend and it is working fine.
    Now I am trying to generate JAVA cilent for this webservice using Eclipse and Axis,but getting the following error
    IWAB0399E Error in generating Java from WSDL:  WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy):
    faultCode=INVALID_WSDL: Encountered unexpected element '{http://schemas.xmlsoap.org/ws/2004/09/policy}Policy'.:
        WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element
    '{http://schemas.xmlsoap.org/ws/2004/09/policy}Policy'.:
        at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
        at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
        at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
        at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
        at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
        at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
        at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
        at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
        at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
        at java.lang.Thread.run(Unknown Source)
    Please let me know,wat needs to be done for this error to get resolved
    Thanks
    Santhosh

    Hi,
    I am also getting the same error while generating the client class from IBM Rational Application Developer IDE.
    Here is the error I get.
    WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.:
         [java] at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
         [java] at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
         [java] at java.lang.Thread.run(Thread.java:571)
    Did you find out the cause of this issue?
    Thanks & Regards,
    Vijay

  • Error creating an Appliction using JDeveloper

    Hello,
    I'm trying to create a new application on JDeveloper 11.1.2.3.0 (running on Windows 7) but it's not working. After I click on Finish, the configuration bar shows and then the following error message is thrown "An error occurred while trying to create the Fusion Web Application (ADF)". If I try to do anything on the IDE it doesn't work. Taking a look at the messages pane, I see the following:
    Mar 27, 2013 12:42:43 PM oracle.security.jps.util.JpsUtil disableAudit
    INFO: JpsUtil: isAuditDisabled set to true
    Mar 27, 2013 12:42:46 PM oracle.jdeveloper.rescat2.model.registry.RescatContextRegistry getWorkspaceContext()
    SEVERE: oracle.adf.rc.exception.MissingParameterException
    oracle.adf.rc.exception.MissingParameterException: required parameter [sessionProvider] is missing or null
         at oracle.adf.rc.util.CatalogUtils.checkNotNull(CatalogUtils.java:503)
         at oracle.adf.rc.config.BasicCatalogConfig.setMDSSessionProvider(BasicCatalogConfig.java:237)
         at oracle.adf.rc.config.BasicCatalogConfig.initialize(BasicCatalogConfig.java:86)
         at oracle.jdeveloper.rescat2.model.registry.RescatContext.initFromContextProvider(RescatContext.java:309)
         at oracle.jdeveloper.rescat2.model.registry.RescatContext.<init>(RescatContext.java:162)
         at oracle.jdeveloper.rescat2.model.registry.RescatContextRegistry.getWorkspaceContext(RescatContextRegistry.java:382)
         at oracle.adf.share.dt.AppConnContext.getRescatContext(AppConnContext.java:266)
         at oracle.adf.share.dt.ADFConnectionAddin$1.applicationChanged(ADFConnectionAddin.java:95)
         at oracle.ide.navigator.ApplicationNavigatorWindow.fireApplicationChangeEventImpl(ApplicationNavigatorWindow.java:1125)
         at oracle.ide.navigator.ApplicationNavigatorWindow.fireApplicationChangeEvent(ApplicationNavigatorWindow.java:1110)
         at oracle.ide.navigator.ApplicationNavigatorWindow.access$200(ApplicationNavigatorWindow.java:104)
         at oracle.ide.navigator.ApplicationNavigatorWindow$1L.itemStateChanged(ApplicationNavigatorWindow.java:269)
         at javax.swing.JComboBox.fireItemStateChanged(JComboBox.java:1205)
         at javax.swing.JComboBox.selectedItemChanged(JComboBox.java:1262)
         at javax.swing.JComboBox.contentsChanged(JComboBox.java:1309)
         at javax.swing.AbstractListModel.fireContentsChanged(AbstractListModel.java:100)
         at javax.swing.DefaultComboBoxModel.setSelectedItem(DefaultComboBoxModel.java:88)
         at javax.swing.JComboBox.setSelectedItem(JComboBox.java:557)
         at oracle.ide.navigator.ApplicationNavigatorWindow$8.update(ApplicationNavigatorWindow.java:749)
         at oracle.ide.model.IdeSubject.notifyObservers(IdeSubject.java:98)
         at oracle.ide.model.ObservableFolder.notifyObservers(ObservableFolder.java:86)
         at oracle.ide.model.UpdateMessage.fireChildAdded(UpdateMessage.java:460)
         at oracle.ide.cmd.NewWorkspaceCommand.createEmptyWorkspace(NewWorkspaceCommand.java:191)
         at oracle.ide.cmd.NewWorkspaceCommand.createEmptyWorkspace(NewWorkspaceCommand.java:138)
         at oracle.jdeveloper.template.wizard.NewApplicationFromTemplateWizard.getOrCreateWorkspace(NewApplicationFromTemplateWizard.java:160)
         at oracle.jdeveloper.template.wizard.NewObjectFromTemplateWizard$CreateObjectFromTemplateWorker.doInBackground(NewObjectFromTemplateWizard.java:717)
         at oracle.jdeveloper.template.wizard.NewObjectFromTemplateWizard$CreateObjectFromTemplateWorker.doInBackground(NewObjectFromTemplateWizard.java:699)
         at javax.swing.SwingWorker$1.call(SwingWorker.java:277)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at javax.swing.SwingWorker.run(SwingWorker.java:316)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    Mar 27, 2013 12:42:46 PM oracle.adf.share.common.rc.util.LibraryUtils filterNonADFItems
    INFO: [jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/adftransactionsdt.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.view_11.1.1/adf-dt-at-rt.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/adfdt_common.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/adflibrary.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/db-ca.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.security_11.1.1/adf-share-security.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.security_11.1.1/adf-controller-security.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adf-share-support.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.adf.model_11.1.1/bc4j-mbeans.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/jlib/commons-cli-1.0.jar!/, jar:file:/D:/Oracle/Middleware/oracle_common/modules/oracle.javacache_11.1.1/cache.jar!/]
    java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
         at oracle.adf.share.common.rc.util.impl.LoaderUtilImpl.newJRLClassLoader(LoaderUtilImpl.java:37)
         at oracle.adf.share.common.rc.util.LoaderUtil.newJRLClassLoader(LoaderUtil.java:200)
         at oracle.adf.share.common.rc.util.LoaderUtil.justGetLoader(LoaderUtil.java:82)
         at oracle.adf.share.common.rc.util.LoaderUtil.getLoader(LoaderUtil.java:54)
         at oracle.adf.share.common.rc.util.LibraryUtils.filterNonADFItems(LibraryUtils.java:146)
         at oracle.adfdtinternal.library.util.ResourceLibraryListener.projectClasspathChanged(ResourceLibraryListener.java:80)
         at oracle.adfdt.library.event.LibraryListener$1.projectClasspathChanged(LibraryListener.java:22)
         at oracle.jdevimpl.library.LibraryChangeListenerHandler.fireLibraryChangeEvent(LibraryChangeListenerHandler.java:43)
         at oracle.jdevimpl.library.ProjectChangeSink.projectPropertiesChanged(ProjectChangeSink.java:191)
         at oracle.ide.model.Project$StorageListener.structureValuesChanged(Project.java:1134)
         at oracle.javatools.data.Structure.fireStructureChangeEvent(Structure.java:533)
         at oracle.javatools.data.Structure.fireBatchEvent(Structure.java:504)
         at oracle.javatools.data.Structure.applyBatchChanges(Structure.java:257)
         at oracle.ide.model.HashStructureNode$1.run(HashStructureNode.java:327)
         at oracle.javatools.data.Structure.applyBatchChanges(Structure.java:231)
         at oracle.ide.model.HashStructureNode.applyBatchChanges(HashStructureNode.java:323)
         at oracle.jdeveloper.model.JProjectUtil._updateLibraries(JProjectUtil.java:131)
         at oracle.jdeveloper.model.JProjectUtil.addLibraries(JProjectUtil.java:61)
         at oracle.jbo.dt.jdevx.util.TechScopeUtil.addLibraries(TechScopeUtil.java:46)
         at oracle.jbo.dt.jdevx.ui.JdxJboAddin$1.technologyAdded(JdxJboAddin.java:308)
         at oracle.jdeveloper.model.JProjectTechnologyNotifier.fireTechnologyAdded(JProjectTechnologyNotifier.java:132)
         at oracle.jdeveloper.model.JProjectTechnologyNotifier.access$100(JProjectTechnologyNotifier.java:30)
         at oracle.jdeveloper.model.JProjectTechnologyNotifier$1.projectPropertiesChanged(JProjectTechnologyNotifier.java:58)
         at oracle.ide.model.Project$StorageListener.structureValuesChanged(Project.java:1134)
         at oracle.javatools.data.Structure.fireStructureChangeEvent(Structure.java:533)
         at oracle.javatools.data.Structure.fireBatchEvent(Structure.java:504)
         at oracle.javatools.data.Structure.fireBatchEvent(Structure.java:510)
         at oracle.javatools.data.Structure.applyBatchChanges(Structure.java:257)
         at oracle.ide.model.TechnologyScopeConfiguration.setTechnologyScope(TechnologyScopeConfiguration.java:221)
         at oracle.jdeveloper.template.wizard.NewProjectFromTemplatePanel.commitWizardChanges(NewProjectFromTemplatePanel.java:256)
         at oracle.jdeveloper.template.wizard.TemplateWizardPage.wizardFinished(TemplateWizardPage.java:96)
         at oracle.jdeveloper.template.wizard.NewObjectFromTemplateWizard.commitProjectChanges(NewObjectFromTemplateWizard.java:325)
         at oracle.jdeveloper.template.wizard.NewObjectFromTemplateWizard$CreateObjectFromTemplateWorker.doInBackground(NewObjectFromTemplateWizard.java:727)
         at oracle.jdeveloper.template.wizard.NewObjectFromTemplateWizard$CreateObjectFromTemplateWorker.doInBackground(NewObjectFromTemplateWizard.java:699)
         at javax.swing.SwingWorker$1.call(SwingWorker.java:277)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at javax.swing.SwingWorker.run(SwingWorker.java:316)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.share.common.rc.util.impl.LoaderUtilImpl.newJRLClassLoader(LoaderUtilImpl.java:28)
         ... 40 more
    Caused by: java.lang.NoClassDefFoundError: oracle/ide/net/JarIndex$19
         at oracle.ide.net.JarIndex.getManifestMainAttribute(JarIndex.java:953)
         at oracle.ide.net.JarUtil.getManifestMainAttribute(JarUtil.java:412)
         at oracle.ide.net.JarUtil.getClassPathImpl(JarUtil.java:382)
         at oracle.ide.net.JarUtil.getClassPath(JarUtil.java:182)
         at oracle.ide.net.URLPath.expandToIncludeManifestClassPathImpl(URLPath.java:401)
         at oracle.ide.net.URLPath.expandToIncludeManifestClassPaths(URLPath.java:349)
         at oracle.jdeveloper.java.locator.ClassLocatorFactory.getClassLocator(ClassLocatorFactory.java:262)
         ... 45 more
    Caused by: java.lang.ClassNotFoundException: oracle.ide.net.JarIndex$19
         at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:506)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)
         at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
         ... 52 more
    I read some posts about similar errors that suggested to manually set the "JDEV_USER_DIR" variable. I tried this but then JDeveloper doesn't even start (freezes at start screen).
    Thanks in advance.

    Looks like your installation is corrupted. Try removing (uninstall) jdev and install it again. Make sure that the folder you choose is empty befoer installing again.
    Timo

  • Function module throwing error from work area. Cannot find the problem...

    REPORT  ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
          f1 type zf1,
          f2 type zf2,
          f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        ITAB                       =   .
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    this is my driver program.In my form interface  there are tables,import,export are there where i have to declare tables data.If i am putting wa means it is throwing error.Please show me the clear information.
    Edited by: Julius Bussche on Nov 14, 2008 10:09 AM

    REPORT ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
    f1 type zf1,
    f2 type zf2,
    f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    ITAB = .
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Plz for this driver program. Give me the exact solution.I am passing the information like itab  like zptable1 ther ein the smart form table. Even now i am getting error.Here in this driver program i passed itab = itab means .I  am not getting solution.If i have to change any function module name means plz tell me.What i have to put there.Plz give me the correct solution

Maybe you are looking for

  • Need help in formatting the report created using SSRS

    I have created an image and used it as the body background. But I want that image to come at right Set bodyRepeat as RepeatY.  Currently its showing as below              I need this blue image at the right most side of the report as below Also I nee

  • IPad wifi connection drops - have tried evereything - any other suggestions

    Hi all, I'm experiencing the connectivity issue with my iPad whereby randomly it will stop transmitting data (ie cant go on the Internet). The Wifi symbol is till shown, but there is no data throughput whatsoever. To fix, I have to turn off the wifi

  • Select data from plsql collections

    Hi All, I am not a developer but working as a DBA, so not very much familiar with pl/sql, still gone through with documentation and could come up with some solution of my problem. I need some expert advice here. Problem : I am writing down some kind

  • Payment Advice Assignment Field

    Hello Experts, My client wants to update BSEG-ZUONR field when user updates the Assignment field of the payment Advice (AVIP-ZUONR). Is there any configuration that should be done to update BSEG-ZUNOR when we update the AVIP-ZUONR? Please shed some l

  • Publications and Internet Explorer

    Hi Experts, Versión: BOBJ 4.0 SP7 Internet Explorer 10 or 11 This is my doubt, we have a publication that runs a webintelligence report and send by email the link (%SI_VIEWER%) to open the report. The problem comes when the user clicks on the link to