601 errors when working with DLU

Hey all,
I've been running into issues at a single site in a WAN-connected school
district.
We have 1 tree with eDirectory 8.7.3.7 on all servers and no errors via
the health checks, DSREPAIR, etc.
The bottom line is this:
If I make a new administrator policy package and enable DLU (under the
XP policy section) and hit the Properties button, I get the error shown
in my screenshot here:
http://www.bndservices.com/novell/dlu1.jpg
Now this only happens with ZENworks which is why I posted it here
instead of the eDirectory forums. I can post there if it's recommended
instead of here but wanted to ask you guys first. Version of ZEN is 6.5.
I have deleted the policy, recreated, used DSBROWSE -A to remove all old
entries of the policy... (as I noticed it was left behind on a few
occasions, even with plenty of time to be cleaned up on its own) This is
the only site this happens at right now.
We had one problem with this school in the past where Novell said there
was an eDirectory problem and had to come in with their programmers
remotely to fix the issue. I can't help but think it could be a similar
situation, but we'll see.
Thanks for any thoughts on this.
Brian

I was thinking it could be a timing issue, which is kind of what you
seem to be describing. Object gets created and then is available for
editing right away, but errors because it's "not quite all there yet"...
I do not have file caching enabled on the client. In the past I would
have thought it was possible, but I make silent installers and package
them into single-stand-alone executables.
The zen agent and client32 ones are quite handy. Get the PC up and
running and then 2 single EXE files install the client and zen agent
from my USB drive (with reboots in between, of course)
I use the acu and install all my switches and options via the
unattend.txt file so I know I won't accidentally forget a setting as
important as file caching...like i used to :P
Marcus Breiden wrote:
> On Tue, 14 Aug 2007 18:44:35 GMT, Brian Binder wrote:
>
>> Thanks - I'll post back if necessary. ;)
>
> good. the problem with the zensnapins is that when you select an option it
> will create a new object and links it directly with the package, sometimes
> the object is created but not there yet.
>
> do you have caching enabled on the client32?

Similar Messages

  • Error when working with TableView using JCA

    Hi sdns,
    I am getting an iview rutnime error when working with Tableview using JCA. Here i am putting all my code, go thorugh it and tell me if any error is there.One more thing is Usermappping and all properties are set to system object.
    Now you can throught he code which is followed by error also.
    <u>Java file.</u>
    public class DisplayComponent extends PageProcessorComponent {
         public DynPage getPage() {
              return new DisplayComponentDynPage();
         public static class DisplayComponentDynPage extends JSPDynPage {
              private JCATviewBean bean;
              public void doInitialization() {
                   IPortalComponentProfile profile =
                        ((IPortalComponentRequest) getRequest())
                             .getComponentContext()
                             .getProfile();
                   Object o = profile.getValue("myBean");
                   if (o == null || !(o instanceof JCATviewBean)) {
                        bean = new JCATviewBean();
                        profile.putValue("myBean", bean);
                   } else {
                        bean = (JCATviewBean) o;
                   // fill your bean with data here...
                   IPortalComponentRequest request =
                        (IPortalComponentRequest) this.getRequest();
                   doJca(request);
              public void doProcessAfterInput() throws PageException {
              public void doProcessBeforeOutput() throws PageException {
                   this.setJspName("Report.jsp");
              private IConnection getConnection(
                   IPortalComponentRequest request,
                   String alias)
                   throws Exception {
                   IConnectorGatewayService cgService =
                        (IConnectorGatewayService) PortalRuntime
                             .getRuntimeResources()
                             .getService(
                             IConnectorService.KEY);
                   ConnectionProperties prop =
                        new ConnectionProperties(
                             request.getLocale(),
                             request.getUser());
                   return cgService.getConnection(alias, prop);
              public void doJca(IPortalComponentRequest request) {
                   IConnectionFactory connectionFactory = null;
                   IConnection client = null;
                   String rfm_name = "BAPI_COMPANYCODE_GETLIST";
                   try {
                        try {
                             //       pass the request & system alias
                             //       Change the alias to whatever the alias is for your R/3 system
                             client = getConnection(request, "MyIDES");
                        } catch (Exception e) {
                             System.out.println(
                                  "Couldn't establish a connection with a target system.");
                             return;
    Start Interaction
                        IInteraction interaction = client.createInteractionEx();
                        IInteractionSpec interactionSpec =
                             interaction.getInteractionSpec();
                        interactionSpec.setPropertyValue("Name", rfm_name);
    CCI api only has one datatype: Record
                        RecordFactory recordFactory = interaction.getRecordFactory();
                        MappedRecord importParams =
                             recordFactory.createMappedRecord(
                                  "CONTAINER_OF_IMPORT_PARAMS");
                        IFunctionsMetaData functionsMetaData =
                             client.getFunctionsMetaData();
                        IFunction function = functionsMetaData.getFunction(rfm_name);
                        if (function == null) {
                             System.out.println(
                                  "Couldn't find " + rfm_name + " in a target system.");
                             return;
    How to invoke Function modules
                        System.out.println("Invoking... " + function.getName());
                        MappedRecord exportParams =
                             (MappedRecord) interaction.execute(
                                  interactionSpec,
                                  importParams);
    How to get structure values
                        IRecord exportStructure = (IRecord) exportParams.get("RETURN");
                        String columnOne = exportStructure.getString("TYPE");
                        String columnTwo = exportStructure.getString("CODE");
                        String columnThree = exportStructure.getString("MESSAGE");
                        System.out.println("  RETURN-TYPE    = " + columnOne);
                        System.out.println("  RETURN-CODE    = " + columnTwo);
                        System.out.println("  RETURN-MESSAGE =" + columnThree);
    How to get table values
                        IRecordSet exportTable =
                             (IRecordSet) exportParams.get("COMPANYCODE_LIST");
                        exportTable.beforeFirst();
                        // Moves the cursor before the first row.
                        while (exportTable.next()) {
                             String column_1 = exportTable.getString("COMP_CODE");
                             String column_2 = exportTable.getString("COMP_NAME");
                             System.out.println(
                                  "  COMPANYCODE_LIST-COMP_CODE = " + column_1);
                             System.out.println(
                                  "  COMPANYCODE_LIST-COMP_NAME = " + column_2);
                        //       create the tableview mode in the bean
                        bean.createData(exportTable);
    Closing the connection
                        client.close();
                   } catch (ConnectorException e) {
                        //       app.putValue("error", e);
                        System.out.println("Caught an exception: \n" + e);
                   } catch (Exception e) {
                        System.out.println("Caught an exception: \n" + e);
    <u>Bena file</u>
    package com.sap.JCA.bean;
    import java.util.Vector;
    import com.sapportals.connector.execution.structures.IRecordSet;
    import com.sapportals.htmlb.table.DefaultTableViewModel;
    import com.sapportals.htmlb.table.TableViewModel;
    public class JCATviewBean {
         public DefaultTableViewModel model;
         public TableViewModel getModel() {
         return this.model;
         public void setModel(DefaultTableViewModel model) {
         this.model = model;
         public void createData(IRecordSet table) {
    //       this is your column names
         Vector column = new Vector();
         column.addElement("Company Code");
         column.addElement("Company Name");
    //       all this logic is for the data part.
         Vector rVector = new Vector();
         try {
         table.beforeFirst();
         while (table.next()) {
         Vector data = new Vector();
         data.addElement(table.getString("COMP_CODE"));
         data.addElement(table.getString("COMP_NAME"));
         rVector.addElement(data);
         } catch (Exception e) {
         e.printStackTrace();
    //       this is where you create the model
         this.setModel(new DefaultTableViewModel(rVector, column));
    <b>JSP File:</b>
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.sap.JCA.bean.JCATviewBean" />
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId" >
       <br>
       <hbj:textView id = "tv1" text = "<b>TableView Example Using JCA</b> <br>"/>
    <hbj:tableView
        id="myTableView1"
        model="myBean.model"
        design="ALTERNATING"
        headerVisible="true"
        footerVisible="true"
        fillUpEmptyRows="true"
        navigationMode="BYLINE"
        selectionMode="MULTISELECT"
        headerText="TableView example1"
        visibleFirstRow="1"
        visibleRowCount="30"
        width="500 px"
        />
       </hbj:form>
      </hbj:page>
    </hbj:content>
    <b>Error when Executing this component:</b><u></u>
      Portal Runtime Error
    <b>An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    com/sapportals/portal/htmlb/page/PageProcessorComponent.
    Exception id: 12:21_28/10/05_0173_94105150
    See the details for the exception ID in the log file</b>  
    If anybody find the error please reply to this post.
    Regards,
    sireesha.

    Thanks for your response Martin,
    I have already seen the log file but im couldn't findout anything from that since it is so long here im putting some part of please see this.if u able to find it clarify me,
    <b>Here the log file:</b>
    1.5#001321FD6213005D0000907100001CB000040419258FBF4E#1130405957843#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907200001CB00004041925916735#1130405957953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907300001CB0000404192591688D#1130405957953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD621300650000120E00001CB00004041925C953D7#1130405961625#com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory##com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory.XIManagedConnectionFactoryController.run()######04d7f690469311da8d52001321fd6213#Thread[Thread-114,5,SAPEngine_System_Thread[impl:5]_Group]##0#0#Debug#1#/Applications/ExchangeInfrastructure/AdapterFramework/ThirdPartyRoot/comsap/Server/Adapter Framework#Java###MCF with GUID is running. (,)#3#964bfca0444711dabb51001321fd6213#com.sap.engine.services.deploy.server.ApplicationLoader@1586c77#964bfca0444711dabb51001321fd6213#
    #1.5#001321FD6213005D0000907400001CB000040419275B24FC#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907500001CB000040419275B25D9#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907600001CB000040419275B2E27#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907700001CB000040419275B2EFA#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD6213005D0000907800001CB0000404192924ED59#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907900001CB0000404192924EE36#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907A00001CB0000404192924F652#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907B00001CB0000404192924F710#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD621300650000120F00001CB000040419295CCD8B#1130406021625#com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory##com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory.XIManagedConnectionFactoryController.run()######04d7f690469311da8d52001321fd6213#Thread[Thread-114,5,SAPEngine_System_Thread[impl:5]_Group]##0#0#Debug#1#/Applications/ExchangeInfrastructure/AdapterFramework/ThirdPartyRoot/comsap/Server/Adapter Framework#Java###MCF with GUID is running. (,)#3#964bfca0444711dabb51001321fd6213#com.sap.engine.services.deploy.server.ApplicationLoader@1586c77#964bfca0444711dabb51001321fd6213#
    #1.5#001321FD6213005D0000907C00001CB0000404192AEEB1E2#1130406047953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907D00001CB0000404192AEEB2C0#1130406047953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907E00001CB0000404192AEEBAD8#1130406047968#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907F00001CB0000404192AEEBB9E#1130406047968#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#

  • Getting an error when working with Responsive Design Output: MasterThemeSchema.xml

    When generating a Responsive Design HTML 5 output, I'm getting this error:  "MasterThemeSchema.xml file has invalid data." I am unable to  access the manage layout features now to continue my customizations.  I had imported a customized font before seeing this message. I'm moved the project to my harddrive, where the software is installed, and and still getting it (I know RH doesn't always do well on a network drive).  Any ideas?

    I searched this blog for similar posts and found posts that described similar issues.  I ended up moving my RH project file to my local drive, deleting the masterthemeschema.xml, and replacing it with another masterthemeschema.xml from another project via Windows Explorer.  I will recreate my customizations and hope for the best.  Any ideas on what causes this corruption of the mastertheme schema files in the first place?  Does this masterthemeschema.xml error only occur when working on a network drive and not local?

  • Error when working with fillin or droplist fields as part ofgrid field

    Hello,
    A customer at Eli Lilly & Co. is experiencing an error when trying to
    change the properties of a gridfield that contains droplists as part of an
    array that is gridded. They get this error when trying to do any
    modification of the grid field.
    Have any of you experienced this? Any insight for resolution? We do have
    a trouble ticket into Forte regarding this but wanted to see if anyone
    else has experienced this. We get this bug in C1 and F2 versions:
    System Error: Unable to allocate resources for object
    &lsquo;dtlArray.status_ind&rsquo; of class &lsquo;qqds_DropList&rsquo;.
    Class: qqsp_systemResourceException with ReasonCode: SP_ER_WINDOWLIMIT
    error#[701,13]
    detected at widget. ThrowResourceException at 1 Last tool statement:
    method cw.load
    error time: thu feb 20 8:47:23.
    Exception occured (locally) on partition &lsquo;Forte_cl0_client&rsquo;,(partition
    Id=BD14F94489D1-11D0-9BEE-06814DBAA77:ox124:0x1,taskid=[BD14F94489D1-11D0-
    9BEE-062814DBAA77-ox1243654 on node p8888 in environment DevEnv_2F2.
    Thanks,
    Peggy Adrian
    [email protected]

    Hi Jason,
    If you have problems with the network this has to be solved.
    I don't think we can have a software working if a cable was unplug ).
    We advice our customer to use citrix servers in case if the latency into network is high (more than 200 ms) and of course in case of loosing packages.
    But I don't think the problem in your case is related to the network.
    It seems in your case it was a problem of send governor.
    This can have problem when the cube and dimension are not syncronize or you have an error in one of dimensions.
    Also can you check the table sgqueue if you have any record there when nobody is sending data?
    If you have records there then you have to delete these records.
    Check also tbl"your application"lock if you have records.
    Regards
    Sorin Radulescu

  • Error Message:  Adobe Presenter has encountered an unexpected error when working with this pres...

    Suddenly, today, three of my colleagues around the US with Presenter 7 licenses can no longer save PowerPoint files or work with Presenter.  All of us successfully created courses last week.
    We all get the "unexpected error" message telling us to "Try saving your work to a new file and restarting PowerPoint.  If the problem persists, consult the Help menu item..."  We get the message even if all we do is type one word on a slide and try to save the file.
    We cannot open the Presenter Help menu... the same error message pops up.
    So now we cannot save a PowerPoint file.  We cannot save a Presenter file.  We cannot record or import audio in Presenter.  No matter what we click on the Presenter toolbar, we get the same error message.  Nothing is working.
    Help!

    The updater will only get you to 7.0.6. 7.0.7 was a major update, that took Presenter from an AS2 application to an AS3 application. I would recomend that you do the update process for 7.0.7, as it is "required" to use with Connect 8.1 and newer. Presentations published wit 7.0.6 and older should still work though.
    The update process for 7.0.7 can be found here: http://helpx.adobe.com/presenter.html
    There is a link to download Product Updates, where you can get the installer for 7.0.7.
    There is also the instructions for upgrading to 7.0.7 as a stand alone application or as part of a Suite.

  • Error when working with the substring

    Hi,
    i am getting a error when using a substring
    Scenario : from Flat file to IDoc
    input = 30 char
    output1 = first 10 chars
    output2 = last  4 chars
    when my input filed has the maximum number of characters say 30 in this case, then my scenerio works fine.
    but if my input string has only first 6 chars, remaining all "spaces" . i get a stringindexoutof boundexception, when i post a flat file. Can anyone tell me if we are suppose to handle such conditions differently

    Hi,
    you could do it like:
    > if input.length >= 10 char
    > output1 = first 10 chars
    > else output1 = input
    > if input.length >= 4 chars
    > output2 = last 4 chars
    > else output2 = input
    Regards
    Patrick

  • Data Services IDOC Errors when working with a newl Basic Type

    Hello,
    Just wondering if anyone else has encountered an issue similar to the one I am dealing with. We are trying to create business partners in SAP CRM from Data Services via IDOC. We are not using the standard IDOC, but instead we are using a new IDOC type.
    This IDOC type is generated by SAP CRM automatically through a transaction BDFG. This transaction creates a new basic type for an standard IDOC with the additional fields that we have added through the easy enhancement workbench (EEWB).
    The issue that we are having is that when we import the IDOC type into data services and we look at the schema many fields and sub-structures of the IDOC are duplicated. This means that we receive hundreds of errors when we try to validate our data flow. I can delete the duplicated sub structures in my query transformation but then the query transformation and the output schema and the idoc input schema are no longer identical.
    I have searched all over oss and different web forums for a solution but no one else it seems has even encountered this error. If anyone else has had a similar issue and can offer help it would be greatly appreciated.
    Bill

    Issue is resolved.
    After importing the meta data for the IDOC into data services I then proceeded to edit out all of the duplicate structures and fields from the IDOC.
    After making the IDOC structure in data services identical to the structure of the IDOC  in SAP I then proceeded to test this IDOC and it executed successfully.

  • Error when working with Session bean

    HI !!!!
    CAN ANYBODY HELP ME WITH THIS ERROR
    SEE THIS CODE FROM MY CONTROL FILE
    import weblogic.jws.*;
    import weblogic.jws.control.*;
    * @jws:ejb home-jndi-name="com/unisys/comms/jdal/ejb/sql/session/messagestoresb"
    * @editor-info:ejb home="jdalMailbox-ejb.jar" bean="jdalMailbox-ejb.jar"
    public interface MessageStoreSBControl
    extends com.unisys.comms.jdal.ejb.sql.session.messagestoresb.MessageStoreSBHome,
    // home interface
    com.unisys.comms.jdal.ejb.sql.session.messagestoresb.MessageStoreSB,
    // bean interface
    weblogic.jws.control.SessionEJBControl // control interface
    EVERYTHING IS RIGHT HERE BUT I GET AN ERROR
    THE ERROR IS AS FOLLOWS -------
    addMessageStore
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode> SOAP-ENV:JWSError </faultcode>
    <faultstring> Interface interface MessageStoreSBControl does not extend an EJB
    home interface </faultstring>
    <detail>
    <JW-ERR:jwErrorDetail xmlns:JW-ERR="http://www.bea.com/2002/04/jwErrorDetail/">
    weblogic.jws.control.ControlException: Interface interface MessageStoreSBControl
    does not extend an EJB home interface at weblogic.knex.control.EJBControlImpl.<init>(EJBControlImpl.java:94)
    at weblogic.knex.control.SessionEJBControlImpl.<init>(SessionEJBControlImpl.java:24)
    at java.lang.Class.newInstance0(Native Method) at java.lang.Class.newInstance(Class.java:232)
    at weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:255) at MessageStoreSBControl.create(MessageStoreSBControl.ctrl)
    at MessageStoreWS.addMessageStore(MessageStoreWS.jws:40) </JW-ERR:jwErrorDetail>
    </detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

    Hi PK,
    Are you able to run the TraderEJBClient.jws EJBControl sample? This is
    also a StatelessSession ejb control sample.
    If you are able to run the sample and the exception occurs only with
    your ejb,, please attach your sample ejb to the newsgroup post.
    Also provide the OS, and Workshop Service pack level you are working
    with.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "PKRIS" <[email protected]> wrote in news:3ee74564$[email protected]:
    >
    HI !!!!
    CAN ANYBODY HELP ME WITH THIS ERROR
    SEE THIS CODE FROM MY CONTROL FILE
    import weblogic.jws.*;
    import weblogic.jws.control.*;
    * @jws:ejb
    home-jndi-name="com/unisys/comms/jdal/ejb/sql/session/messagestoresb"
    * @editor-info:ejb home="jdalMailbox-ejb.jar"
    bean="jdalMailbox-ejb.jar" */
    public interface MessageStoreSBControl
    extends
    com.unisys.comms.jdal.ejb.sql.session.messagestoresb.MessageSto
    reSBHome,
    // home interface
    com.unisys.comms.jdal.ejb.sql.session.messagestoresb.Me
    ssageStoreSB,
    // bean interface
    weblogic.jws.control.SessionEJBControl // control
    interface
    EVERYTHING IS RIGHT HERE BUT I GET AN ERROR
    THE ERROR IS AS FOLLOWS -------

  • Data incompatibility error when working with objets

    Hi
    I am passing an object to the procedure inside package.
    when i am using for loop it's working fine
    the code is below
    create or replace type emp_obj as
    object(empno number(10),
    ename varchar2(10),
    sal number(10,3));
    create or replace type emp_tab is table of emp_obj;
    CREATE OR REPLACE PACKAGE emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab);
    END emp_obj_pkg;
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FOR i IN 1..p_emp_tab.count
         LOOP
    INSERT INTO emp VALUES( p_emp_tab(i).empno,p_emp_tab(i).ename,p_emp_tab(i).sal);
         END LOOP;
    END emp_ins_proc;
    END emp_obj_pkg;
    declare
    v_emp_tab emp_tab;
    begin
    select emp_obj(empno,ename,sal) bulk collect into v_emp_tab from emp;
    emp_obj_pkg.emp_ins_proc(v_emp_tab);
    end;
    when i am trying to use the forall in the package it throwing the error data incompatibility error
    the procedure code for the package is
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FORALL i IN 1..p_emp_tab.count
    INSERT INTO emp VALUES p_emp_tab(i);
    END emp_ins_proc;
    END emp_obj_pkg;
    i got below errors
    ERROR
    PL/SQL: SQL Statement ignored
    PL/SQL: ORA-00932: inconsistent datatypes: expected - got -
    pls help me how to do this with for all
    Thanks & Regards
    Bala Sake

    954925 wrote:
    when i am trying to use the forall in the package it throwing the error data incompatibility errorThe structure following the VALUE clause need to match the structure of the table being inserted into.
    Basic examples of using record structures for inserting data, for object and normal tables.
    SQL> create or replace type TEmployee is object(
      2          emp_id  number,
      3          emp_name varchar2(10),
      4          dept_id number
      5  );
      6  /
    Type created.
    SQL>
    SQL> create or replace type TEmployeeTable is table of TEmployee;
      2  /
    Type created.
    SQL>
    SQL> create table employees of TEmployee(
      2          constraint pk_employees primary key( emp_id )
      3  ) organization index;
    Table created.
    SQL>
    SQL> create or replace procedure EmpInsert( empTable TEmployeeTable ) is
      2  begin
      3          forall i in 1..empTable.Count
      4                  insert into employees values empTable(i);
      5  end;
      6  /
    Procedure created.
    SQL>
    SQL> declare
      2          empArray        TEmployeeTable;
      3  begin
      4          select
      5                  TEmployee( empno, ename, deptno )
      6          bulk collect into
      7                  empArray
      8          from    emp;
      9 
    10          EmpInsert( empArray );
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> create table employees(
      2          emp_id  number primary key,
      3          emp_name varchar2(10),
      4          dept_id number
      5  ) organization index;
    Table created.
    SQL>
    SQL> declare
      2          cursor c is select  empno, ename, deptno from emp;
      3          type TCursorBuffer is table of c%RowType;
      4          buffer TCursorBuffer;
      5  begin
      6          open c;
      7          loop
      8                  fetch c bulk collect into buffer limit 100;
      9 
    10                  forall i in 1..buffer.Count
    11                          insert into employees values buffer(i);
    12 
    13                  exit when c%NotFound;
    14          end loop;
    15          close c;
    16  end;
    17  /
    PL/SQL procedure successfully completed.
    SQL> Of course, these example do not show how one should code when moving data from one table to another (using native SQL only is by far faster and more scalable).
    However it does show the basics of inserting a structure via the INSERT call in PL/SQL (as oppose to individual variables) - and this is an important consideration as the resulting code is more robust and requires less keystrokes.

  • Error when working with more than one recordstore

    Hi all,
    I use Sun Java ME Toolkit SDK 3.
    When I insert a new record into a second recordstore then I get an error. How to correct it ?
    Thank you very much

    If you are dealing with two ALV, you should have created two different objects referring to CL_GUI_ALV_GRID.
    If you have done and still getting a error, please post the code that is erroring here.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • DBMS_SQL.parse error when working with string 32k

    Hi,
    In order to execute a dynamic string > 32 k , i followed metalink note: 77470.1 :" How to Execute DML and DDL Statements Larger than 32k Using dbms_sql "
    When running a procedure to dynamicaly recreate a view i got the following error message.
    Can one suggest what to do ?
    Thanks
    begin
    2 recreate_dynamic_views(to_date('01/01/2008','dd/mm/yyyy'),
    3 to_date('01/05/2009','dd/mm/yyyy'),
    4 to_date('01/12/2006','dd/mm/yyyy')
    5 );
    6 end;
    7 /
    prod_num_of_months=16
    begin
    ERROR at line 1:
    ORA-00933: SQL command not properly ended
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1600
    ORA-06512: at "SYS.DBMS_SQL", line 26
    ORA-06512: at "MYUSER.RECREATE_DYNAMIC_VIEWS", line 87
    ORA-06512: at line 2
    Line 87 is :
    DBMS_SQL.parse (cursor_id, create_stmt, 1, ub, TRUE, DBMS_SQL.native);
    The source code :
    CREATE OR REPLACE procedure recreate_dynamic_views(p_prod_from_month_include date,
    p_prod_until_month_include date,
    p_hist_until_month_include date)
    is
    -- example : exec recreate_dynamic_views(to_date('01/01/2008','dd/mm/yyyy'),
    -- to_date('01/05/2009','dd/mm/yyyy'),
    -- to_date('01/12/2006','dd/mm/yyyy'))
    CURSOR c (v_instance_type VARCHAR2)
    IS
    SELECT view_name, view_text, month_exp, instance_type, start_from,
    complex_view, union_with,
    ROUND(months_between(to_date(p_prod_until_month_include,'DD/MM/YYYY'),
    to_date(p_prod_from_month_include,'DD/MM/YYYY')
    ) prod_num_of_months,
    months_between(to_date(p_hist_until_month_include,'DD/MM/YYYY'),
    to_date(START_FROM,'DD/MM/YYYY')
    ) hist_num_of_months
    FROM list_of_views
    where instance_type = v_instance_type
    and view_name = 'V_MY_CALLS';
    v_str_header VARCHAR2 (32000);
    v_str VARCHAR2 (32000);
    v1 VARCHAR2 (4);
    v_month VARCHAR2 (200);
    v_instance VARCHAR2 (20);
    v_instance_type VARCHAR2 (20);
    v_start_from VARCHAR2 (10);
    v_num_of_month NUMBER;
    v_its_new_view VARCHAR2 (1) := 'Y';
    create_stmt DBMS_SQL.varchar2a;
    ub NUMBER := 0;
    cursor_id INTEGER;
    ret_val INTEGER;
    BEGIN
    dbms_output.enable(1000000);
    --DBMS_OUTPUT.put_line ('start hir');
    SELECT UPPER (instance_name)
    INTO v_instance
    FROM v$instance;
    --DBMS_OUTPUT.put_line ('v_instance=' || v_instance);
    IF UPPER (v_instance) LIKE '%HST%'
    THEN
    v_instance_type := 'HISTORY';
    ELSE
    v_instance_type := 'BILLING';
    END IF;
    IF v_instance_type = 'BILLING'
    THEN
    for c_rec in c(v_instance_type) loop
    v_str_header := null;
    v_str := null;
    ub := 0;
    ret_val := null;
    dbms_output.put_line('prod_num_of_months='||c_rec.prod_num_of_months);
    for i in 1..(c_rec.prod_num_of_months+1) LOOP
    if i=1 then -- you should create the header
    v_month := ' select to_char(add_months(to_date(:until_date,''dd/mm/yyyy''),' || TO_NUMBER (i-1)|| '),''' || c_rec.month_exp || ''') from dual';
    EXECUTE IMMEDIATE v_month
    INTO v1 using p_prod_until_month_include;
    v_str_header := 'CREATE OR REPLACE VIEW '||c_rec.view_name||' AS '||chr(10);
    v_str := v_str_header||' '||c_rec.view_text||v1||chr(10);
    ub := ub + 1;
    create_stmt (ub) := v_str;
    else
    v_month := ' select to_char(add_months(to_date(:until_date,''dd/mm/yyyy''), -'||to_number(i-1)||'),'''||c_rec.month_exp||''') from dual';
    execute immediate v_month
    into v1 using p_prod_until_month_include;
    v_str := v_str ||'UNION ALL '||chr(10)||c_rec.view_text||v1||chr(10);
    ub := ub + 1;
    create_stmt (ub) := v_str;
    end if;
    end loop;
    cursor_id := DBMS_SQL.open_cursor;
    DBMS_SQL.parse (cursor_id, create_stmt, 1, ub, TRUE, DBMS_SQL.native);
    ret_val := DBMS_SQL.EXECUTE (cursor_id);
    dbms_output.put_line('View '||c_rec.view_name||' Created');
    end loop;
    ELSE -- v_instance_type HISTORY
    FOR c_rec IN c (v_instance_type) LOOP
    dbms_output.put_line('c_rec.hist_num_of_months='||c_rec.hist_num_of_months);
    IF v_its_new_view = 'Y' THEN
    v_its_new_view := 'N';
    END IF;
    FOR i IN 1 .. (c_rec.hist_num_of_months+1) LOOP
    IF i = 1 THEN -- you should create the header
    v_month := ' select to_char(add_months(:start_date,' || TO_NUMBER (i-1)|| '),''' || c_rec.month_exp || ''') from dual';
    EXECUTE IMMEDIATE v_month
    INTO v1 using c_rec.start_from;
    v_str_header := 'CREATE OR REPLACE VIEW '|| c_rec.view_name || ' AS ' || CHR (10);
    v_str := v_str_header || ' ' || c_rec.view_text || v1 || CHR (10);
    ub := ub + 1;
    create_stmt (ub) := v_str;
    ELSE
    v_month := ' select to_char(add_months(:start_date, '
    || TO_NUMBER (i-1 )
    || '),'''
    || c_rec.month_exp
    || ''') from dual';
    EXECUTE IMMEDIATE v_month
    INTO v1 using c_rec.start_from;
    v_str := 'UNION ALL ' || CHR (10) || c_rec.view_text || v1 || CHR (10);
    ub := ub + 1;
    create_stmt (ub) := v_str;
    END IF;
    END LOOP;
    IF NVL (c_rec.complex_view, 'N') = 'Y' THEN
    v_str := 'UNION ALL ' || CHR (10) || c_rec.union_with || CHR (10);
    ub := ub + 1;
    create_stmt (ub) := v_str;
    END IF;
    v_its_new_view := 'Y';
    cursor_id := DBMS_SQL.open_cursor;
    DBMS_SQL.parse (cursor_id, create_stmt, 1, ub, TRUE, DBMS_SQL.native);
    ret_val := DBMS_SQL.EXECUTE (cursor_id);
    dbms_output.put_line('View '||c_rec.view_name||' Created');
    END LOOP;
    END IF;
    END;

    user546852 wrote:
    Hi,
    I dont think its possible in case when the string is more that 32K.
    ThanksIt is possible to create a SQL statement larger than 32K.
    Firstly, you need take your statement (easiest if it's built up in a CLOB), the split it up into the DBMS_SQL.VARCHAR2S array structure (_not_ the VARCHAR2A structure), and then execute that as your statement.
    Example:
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    v_large_sql  CLOB;
      3    v_num        NUMBER := 0;
      4    v_upperbound NUMBER;
      5    v_sql        DBMS_SQL.VARCHAR2S;
      6    v_cur        INTEGER;
      7    v_ret        NUMBER;
      8  begin
      9    -- Build a very large SQL statement in the CLOB
    10    LOOP
    11      IF v_num = 0 THEN
    12        v_large_sql := 'CREATE VIEW vw_tmp AS SELECT ''The number of this row is : '||to_char(v_num,'fm0999999')||''' as col1 FROM DUAL';
    13      ELSE
    14        v_large_sql := v_large_sql || ' UNION ALL SELECT ''The number of this row is : '||to_char(v_num,'fm0999999')||''' as col1 FROM DUAL';
    15      END IF;
    16      v_num := v_num + 1;
    17      EXIT WHEN DBMS_LOB.GETLENGTH(v_large_sql) > 40000 OR v_num > 800;
    18    END LOOP;
    19    DBMS_OUTPUT.PUT_LINE('Length:'||DBMS_LOB.GETLENGTH(v_large_sql));
    20    DBMS_OUTPUT.PUT_LINE('Num:'||v_num);
    21    --
    22    -- Now split that large SQL statement into chunks of 256 characters and put in VARCHAR2S array
    23    v_upperbound := CEIL(DBMS_LOB.GETLENGTH(v_large_sql)/256);
    24    FOR i IN 1..v_upperbound
    25    LOOP
    26      v_sql(i) := DBMS_LOB.SUBSTR(v_large_sql
    27                                 ,256 -- amount
    28                                 ,((i-1)*256)+1 -- offset
    29                                 );
    30    END LOOP;
    31    --
    32    -- Now parse and execute the SQL statement
    33    v_cur := DBMS_SQL.OPEN_CURSOR;
    34    DBMS_SQL.PARSE(v_cur, v_sql, 1, v_upperbound, FALSE, DBMS_SQL.NATIVE);
    35    v_ret := DBMS_SQL.EXECUTE(v_cur);
    36    DBMS_OUTPUT.PUT_LINE('View Created');
    37* end;
    SQL> /
    Length:40015
    Num:548
    View Created
    PL/SQL procedure successfully completed.
    SQL> select count(*) from vw_tmp;
      COUNT(*)
           548
    SQL> select * from vw_tmp where rownum <= 10;
    COL1
    The number of this row is : 0000000
    The number of this row is : 0000001
    The number of this row is : 0000002
    The number of this row is : 0000003
    The number of this row is : 0000004
    The number of this row is : 0000005
    The number of this row is : 0000006
    The number of this row is : 0000007
    The number of this row is : 0000008
    The number of this row is : 0000009
    10 rows selected.
    SQL>

  • Channel error when working with BlazeDS and JBoss

    I am getting this error... can someone just help me on this front
    this is the mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    import mx.events.ResizeEvent;
    public function showData(evt:ResultEvent):void{
    var data:String = evt.result as String;
    Alert.show(data);
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteSend" destination="CreateRpc"
    result="showData(event)" />
    <mx:Button id ="myclick" label="Get Me"
    click="remoteSend.getResults('Priyank')"/>
    </mx:Application>
    =====================================
    remoting-config.xml entry for createrpc
    <destination id="CreateRpc">
    <properties>
    <source>RemoteServiceHandler</source>
    <scope>application</scope>
    </properties>
    <adapter ref="java-object"/>
    </destination>
    ========================== error i get ===============
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed:
    HTTP: Status 404: url: 'http://localhost:9081/biz/messagebroker/amf'"]
    Any solutions

    Ensure the services-config.xml on the running server contains the same
    channel definition as the services-config.xml you point at when you compile
    the Flex application.
    It looks like the application is attempting to use a URL
    ('http://localhost:9081/biz/messagebroker/amf') that the server is not
    listening to (404 not found).
    Hope that helps
    Tom Jordahl

  • Unknown Error when working with the GWObject API

    Hello,
    in a given environment, we've ancountered an Exception with the
    Message-Text "An Unknown Error has occured", being thrown in various
    Methods of the Object API. Does anyone know what the reason for these
    Exceptions might be?
    24.11.2009 19:30:16 Error An unknown error occurred.
    at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    msgData)
    at GroupwareTypeLibrary.DIGWFormattedText.get_PlainTe xt()
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.FillMessageFields(GWMessage
    gwmsg, Message3 fullmsg, GroupWiseRetrievalSettings Settings,
    GroupWiseRetrievalFilter Filter)
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.GetMessage(QuickMessage2
    qmsg, GroupWiseRetrievalSettings settings, GWFolder[]
    enclosingFoldersForFiltering)
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.CollectMessages(ArrayList
    gwmsgs)
    24.11.2009 19:11:41 Error An unknown error occurred.
    at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    msgData)
    at GroupwareTypeLibrary.DIGWQuickMessage2.get_Message ()
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.GetMessage(QuickMessage2
    qmsg, GroupWiseRetrievalSettings settings, GWFolder[]
    enclosingFoldersForFiltering)
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.CollectMessages(ArrayList
    gwmsgs)
    25.11.2009 21:26:30 Error An unknown error occurred.
    at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    msgData)
    at GroupwareTypeLibrary.DIGWMessages.Add(Object Class, Object Type,
    Object Version)
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.AddMail(GWMail
    message, Mail5 draftmsg)
    at
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.AddMessage(GWMessage
    message)
    at
    com.vivex.archiveconnector.groupwise.Agent.Archive Message(GWMessage msg,
    User user, Group group, ArchiveSettings archSettings,
    GroupWiseArchiveFilter arcFilter)
    Best regards, Martin Schmidt.

    That error is too generic.
    It is reported in 100's or places.
    We would need steps to duplicate the problem.
    >>> On Friday, November 27, 2009 at 7:11 AM, Martin
    Schmidt<[email protected]> wrote:
    > Hello,
    >
    > in a given environment, we've ancountered an Exception with the
    > Message‑Text "An Unknown Error has occured", being thrown in various
    > Methods of the Object API. Does anyone know what the reason for these
    > Exceptions might be?
    >
    > 24.11.2009 19:30:16 Error An unknown error occurred.
    > at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    > BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    > msgData)
    > at GroupwareTypeLibrary.DIGWFormattedText.get_PlainTe xt()
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.FillM
    > essageFields(GWMessage
    > gwmsg, Message3 fullmsg, GroupWiseRetrievalSettings Settings,
    > GroupWiseRetrievalFilter Filter)
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.GetMe
    > ssage(QuickMessage2
    > qmsg, GroupWiseRetrievalSettings settings, GWFolder[]
    > enclosingFoldersForFiltering)
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.Colle
    > ctMessages(ArrayList
    > gwmsgs)
    >
    > 24.11.2009 19:11:41 Error An unknown error occurred.
    > at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    > BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    > msgData)
    > at GroupwareTypeLibrary.DIGWQuickMessage2.get_Message ()
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.GetMe
    > ssage(QuickMessage2
    > qmsg, GroupWiseRetrievalSettings settings, GWFolder[]
    > enclosingFoldersForFiltering)
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.Colle
    > ctMessages(ArrayList
    > gwmsgs)
    >
    > 25.11.2009 21:26:30 Error An unknown error occurred.
    > at System.RuntimeType.ForwardCallToInvokeMember(Strin g memberName,
    > BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    > msgData)
    > at GroupwareTypeLibrary.DIGWMessages.Add(Object Class, Object Type,
    > Object Version)
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.AddMa
    > il(GWMail
    > message, Mail5 draftmsg)
    > at
    >
    com.vivex.archiveconnector.groupwise.GroupWiseInte rfaces.OAPIGroupWise.AddMe
    > ssage(GWMessage
    > message)
    > at
    > com.vivex.archiveconnector.groupwise.Agent.Archive Message(GWMessage msg,
    > User user, Group group, ArchiveSettings archSettings,
    > GroupWiseArchiveFilter arcFilter)
    >
    > Best regards, Martin Schmidt.

  • Error when working with Agentry Complex table

    Hello Gurus,
    I follow the tutorial Flight Booking and try to load a complex table onto my Agentry client. However, when I transmit from Agentry server, it display the error in the log:
    Exception: 11:20:06 07/24/2014 : 20 (Agentry3), JavaBackEndError (java.lang.NoSuchMethodException: com.syclo.sap.mm.object.VendorCT.<init>(com.syclo.agentry.ComplexTableSession, java.util.GregorianCalendar)),
    VendorCT is the complex table.
    Please help me. Thank  you.

    Hi,
    Create a class handler and bapi wrapper in sap
    Create a mobile data object, assign the class handler and check the active flag for the data object
    Create a bapi wrapper,assign the bapi and check the active flag
    Create a class in java for complex table,make sure the field names are correct
    Create a complex table in agentry , assign the java class created, field name ( make sure they are correct),define indexes(check weather they are mapped correctly to the fields)   
    Check in ate view-toolbar-localization
    Once check weather the above steps are performed correctly
    Thanks & Regards,
    Sravanthi Polu

  • Java.lang.NullPointerException when working with one rfc

    Hi,
    java.lang.NullPointerException error when working with one rfc.
    Regards,
    Gurprit Bhatia

    Hi
    Can you elaborate your problem?
    Where exactly getting the problem ?
    Regards
    Akshaya

Maybe you are looking for

  • Printing in acrobat pro 9.1

    I'm attempting to print a pdf on my new imac out of acrobat 9.1 pro.  I've printed other files to my printer so I know that is not an issue.  This file prints from my old emac, Power PC G4, in acrobat 6 but crashes on the imac in 9.1.  The pdf was cr

  • Multiple line items in BDC

    Hi Friends I'm doing a BDC .... in the recording I have found that I've to change different line items.. the part of recording in which I'm facing problem is as below: BDC_CURSOR     VBAP-ABGRU(06) VBAP-ABGRU(01)     10 VBAP-ABGRU(02)     10 VBAP-ABG

  • I have a brand new iMac (late 2012) that keeps losing its internet connection

    I have a brand new iMac (late 2012) that keeps losing its internet connection - like every five minutes. I have had it for three weeks. During the first two weeks, it worked flawlessly. However, just as the refund period ended - it became desktop dea

  • Upgrading OS X Lion without multiple downloads

    Upgrading to OS X Lion without multiple downloads. What is the file name I can transfer via memory stick to my other MacBook Pro after I have purchased the upgrade at the App Store?

  • Como hacer un telerruptor con labview

    necesito saber como hacer un telerutor con labview o en dado caso como prender y apagar un led con un solo push botton