Urgent:  ORABPEL-05215    PLEASE HELP!

I am trying to get following code in a bpel process to work under SOA 10.1.3.1. The code works fine until I added the FOR LOOP which accesses the tasks in the List tasks. I am able to create a LIST tasks using taskQueryService.queryTasks, but when I try and access each task in the LIST, by using Task task = (Task)tasks.get(i); I compile the code, and it returns 0 errors, but when I deploy it, I get:
BUILD FAILED
C:\BPELWorkList\BPELWorkList\build.xml:79: A problem occured while
connecting to server "missun2db" using port "8890":
bpel_BPELWorkList_1.0.jar failed to deploy. Exception message is:
ORABPEL-05215
One of my imports is:
<bpelx:exec import="oracle.bpel.services.workflow.task.model.Task"/>
Here is the code:
String user = (String)getVariableData("InputUserId");
String password = (String)getVariableData("InputPassword");
String sStatus = (String)getVariableData("InputStatus");
String sPriority = (String)getVariableData("InputPriority");
String expDateFromFilter = (String)getVariableData("InputExpFromDate");
String expDateToFilter = (String)getVariableData("InputExpToDate");
String createDateFromFilter =
(String)getVariableData("InputCreateFromDate");
String createDateToFilter =
(String)getVariableData("InputCreateToDate");
String sKeywords = (String)getVariableData("InputKeywords");
String sCategory = (String)getVariableData("InputCategory");
SimpleDateFormat df = new SimpleDateFormat( "MMM dd, yyyy" );
IWorkflowServiceClient wfSvcClient =
WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceCli
entFactory.JAVA_CLIENT);
ITaskQueryService taskQueryService = wfSvcClient.getTaskQueryService();
IWorkflowContext wfCtx = taskQueryService.authenticate(user, password,
oracle.tip.pc.services.identity.config.ISConfiguration.getDefaultRealmNa
me(), null);
Map filterParams = new HashMap();
if ((sPriority != null) && (!sPriority.equals("")))
filterParams.put(IWorklistService.FILTER_TYPE_PRIORITY_FILTER,
sPriority);
if ((sStatus != null) && (!sStatus.equals("")))
filterParams.put(IWorklistService.FILTER_TYPE_STATUS_FILTER,
sStatus);
if ((expDateFromFilter != null) && (!expDateFromFilter.equals("")))
Date fromDate = new Date(df.parse(expDateFromFilter).getTime());
filterParams.put(IWorklistService.FILTER_TYPE_EXP_DATE_FROM_FILTER,
fromDate);
if ((expDateToFilter != null) && (!expDateToFilter.equals("")))
Date toDate = new Date(df.parse(expDateToFilter).getTime());
filterParams.put(IWorklistService.FILTER_TYPE_EXP_DATE_TO_FILTER,
toDate);
if ((createDateFromFilter != null) &&
(!createDateFromFilter.equals("")))
Date fromDate = new
Date(df.parse(createDateFromFilter).getTime());
filterParams.put(IWorklistService.FILTER_TYPE_CREATE_DATE_FROM_FILTER,
fromDate);
if ((createDateToFilter != null) &&
(!createDateToFilter.equals("")))
Date toDate = new Date(df.parse(createDateToFilter).getTime());
filterParams.put(IWorklistService.FILTER_TYPE_CREATE_DATE_TO_FILTER,
toDate);
Predicate filterPredicate = null;
filterPredicate = FilterUtil.createPredicateFromRequest(wfCtx,
filterParams, new HashMap());
List queryColumns = new ArrayList();
queryColumns.add("TASKID");
queryColumns.add("TITLE");
queryColumns.add("PRIORITY");
queryColumns.add("ASSIGNED USERS");
queryColumns.add("ASSIGNED GROUPS");
queryColumns.add("STATE");
queryColumns.add("CREATED DATE");
queryColumns.add("EXPIRATION DATE");
List tasks =
taskQueryService.queryTasks(wfCtx,null,null,ITaskQueryService.ASSIGNMENT
FILTERMY_AND_GROUP,sKeywords,filterPredicate,null,0,0);
String myTasks = "\n";
int i=0;
for(i=0;i<tasks.size();i++)
Task task = (Task)tasks.get(i);
int taskNumber = task.getSystemAttributes().getTaskNumber();
String title = task.getTitle();
String taskId = task.getSystemAttributes().getTaskId();
setVariableData("outputVariable","payload","/ns1:WorkList_Response/ns1:E
rrors","User Authenticated! Tasks Size: "+tasks.size()+myTasks);
catch (WorkflowException wfe)
setVariableData("outputVariable","payload","/ns1:WorkList_Response/ns1:E
rrors", "WorkFlowException: "+wfe);
catch(Exception ex)
setVariableData("outputVariable","payload","/ns1:WorkList_Response/ns1:E
rrors","Exception: "+ex.getMessage());
Here is the ERROR:
Buildfile: C:\BPELWorkList\BPELWorkList\build.xml
validateTask:
[echo]
| Validating workflow
[validateTask] Validation of workflow task definitions is completed
without errors
deployProcess:
[echo]
| Deploying bpel process BPELWorkList on missun2db, port 8890
[deployProcess] Deploying process
C:\BPELWorkList\BPELWorkList\output\bpel_BPELWorkList_1.0.jar
BUILD FAILED
C:\BPELWorkList\BPELWorkList\build.xml:79: A problem occured while
connecting to server "missun2db" using port "8890":
bpel_BPELWorkList_1.0.jar failed to deploy. Exception message is:
ORABPEL-05215
Error while loading process.
The process domain encountered the following errors while loading the
process "BPELWorkList" (revision "1.0"): Failed to compile classes.
Failed to compile the generated BPEL classes for "BPELWorkList".
If you have installed a patch to the server, please check that the
bpelcClasspath domain property includes the patch classes.
at
com.collaxa.cube.engine.deployment.CubeProcessHolder.bind(CubeProcessHol
der.java:285)
at
com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(Deplo
ymentManager.java:804)
at
com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(Depl
oymentManager.java:670)
at
com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomai
nManagerBean.java:445)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJ
BJoinPointImpl.java:35)
at
com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Invoca
tionContextImpl.java:119)
at
com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInte
rceptor.java:52)
at
com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Invoca
tionContextImpl.java:119)
at
com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInt
erceptor.java:31)
at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
at
com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASIn
terceptor.java:34)
at
com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Invoca
tionContextImpl.java:119)
at
com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(
TxRequiredInterceptor.java:50)
at
com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Invoca
tionContextImpl.java:119)
at
com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInte
rceptor.java:52)
at
com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(Invoca
tionContextImpl.java:119)
at
com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPo
ol.java:55)
at
com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(Stat
elessSessionEJBObject.java:87)
at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
at
com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.
java:317)
at
com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.j
ava:339)
at
deployHttpClientProcess.jspService(_deployHttpClientProcess.java:376)
at
com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChai
n.java:64)
at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
at
com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestD
ispatcher.java:621)
at
com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Servle
tRequestDispatcher.java:368)
at
com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequest
Handler.java:866)
at
com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHa
ndler.java:448)
at
com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestH
andler.java:216)
at
com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:
117)
at
com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:
110)
at
oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocke
tReadHandler.java:260)
at
oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSoc
ketAcceptHandler.java:239)
at
oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcc
eptHandler.java:34)
at
oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(Ser
verSocketAcceptHandler.java:880)
at
com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Releasab
leResourcePooledExecutor.java:303)
at java.lang.Thread.run(Thread.java:595)
Total time: 42 seconds
I added the following to C:\product\10.1.3.1\OracleAS_1\j2ee\home\config\application.xml:
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/bpm-infra.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-common.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-thirdparty.jar"/>
<library path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/j2ee/home/oc4jclient.jar"/>
<library path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/xml.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/xmlparserv2.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/webservices/lib/orasaaj.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/system/services/config"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/bpm-servic
es.jar"/>
<library
path="C:/product/10.1.3.1/OracleAS_1/bpel/system/services/schema"/>
<library path="C:/product/10.1.3.1/OracleAS_1/bpel/lib/olite40.jar"/>
<library path="C:/product/10.1.3.1/OracleAS_1/jdbc/lib/ojdbc14.jar"/>
the bpelcClasspath is:
/opt/flora/bpel/lib/bpm-infra.jar:
/opt/flora/bpel/lib/orabpel-common.jar:
/opt/flora/bpel/lib/orabpel-thirdparty.jar:
/opt/flora/bpel/lib/orabpel.jar:
/opt/flora/j2ee/home/oc4jclient.jar:
/opt/flora/bpel/lib/xml.jar:
/opt/flora/bpel/lib/xmlparserv2.jar:
/opt/flora/webservices/lib/orasaaj.jar:
/opt/flora/webservices/lib/soap.jar:
/opt/flora/bpel/system/services/config:
/opt/flora/bpel/system/services/lib/bpm-services.jar:
/opt/flora/bpel/system/services/schema:
/opt/flora/bpel/lib/olite40.jar:
/opt/flora/jdbc/lib/ojdbc14.jar
But still no change. I really need to resolve this as soon as possible.
Any help is appreciated.
Thanks!!
Moe

I removed the lines in application.xml, restarted the server, and deployed my process again, but no luck, the same error:
BUILD FAILED
C:\BPELWorkList\BPELWorkList\build.xml:79: A problem occured while connecting to server "missun2db" using port "8890": bpel_BPELWorkList_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
Error while loading process.
The process domain encountered the following errors while loading the process "BPELWorkList" (revision "1.0"): Failed to compile classes.
Failed to compile the generated BPEL classes for "BPELWorkList".
If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
This error is only happening when I add this for loop:
for(i=0;i<tasks.size();i++)
Task task = (Task)tasks.get(i);
int taskNumber = task.getSystemAttributes().getTaskNumber();
String title = task.getTitle();
String taskId = task.getSystemAttributes().getTaskId();
I am using this import for the TASK variable:
oracle.bpel.services.workflow.task.model.Task
What am I missing?

Similar Messages

  • How to implement drop down list in WDP Abap....very urgent...please help me

    Hi Gurus,
    I wanted to implement the drop down list button in the WDP Abap interactive form. Once the users clicks on the drop down button, an RFC should be called and display the details under the drop down button. Please give me the logic with code. Its very urgent...please help me. Please note that it is in WDP Abap interactive forms. We are using NW2004S, ECC6.0.

    Hello,
    you have to use ZCI form to use DDLB in WD-ABA. The content of the DDLB has to be present at rendering time, there is no dinamic call when you click the "dropdown".
    The attribut you map to the DDLB has to be an element with a value-set, and the value set has to contain the text / value pairs.
    >> this will be displayed when you click the dropdown.
    Best regards,
    Dezso

  • I cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    i cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    Chester31,
    Thank you very much for sharing your file with us!  Now that we are able to reproduce the problem at our end, you may stop sharing the file on Acrobat.com.
    Do you know when this problem (for not being able to add new highlight/strikeout/underline) has started?  Did you update your iOS from 7.x to 8.0 recently?
    We will continue investigating the problem and let you know what we find.
    Thank you again for your help.

  • I just got the iphone 4s and my text messages are showing as urgent to others,please help me fix this

    i just got the iphone 4s and my text messages are showing as urgent to others,please help me fix this

    As ckuan said, there's no way to mark messages as urgent from the phone. So, either your carrier is doing something and you'll need to contact them or it't something on the other end. Is it just one person who's seeing your texts as urgent? Or everyone?

  • Very Urgent...Please Help..Invoking Windows Applications

    I capture the Windows Desktop screen and saved it as a .jpg file. I then display the .jpg file on frame ( whose size is that of the screen ). Now if i click on the frame, the corresponding Window's application should be invoked ( i.e if I click on the frame where the Start Menu is shown, then the Start Menu should be opened ). Please help me with the code for this. I will be forever indebted to the person who can help me. Iam in very urgent need of this help

    Not so easy.A JPG file is a compressed map of a "picture",nothing more. So , You have to get a reference to an object of this map - You can't save to a simple file (JPG) and expect to do what you want to do.Think something else , not a simple snapshot.In Win98 you have a directory "Desktop" where are all of your icons , in Win2000 you have to search in "Documents and settings\User_name\" or something like this to find the same directory and get all icons.Therefrom look for "Properties" and find the path to execute the exe file.It must be something like this I think.Hope have been helpfull.

  • Supplier Sites Interface errors out -- URGENT!! please help.

    Hi All,
    The log file has the following message when executing the supplier sites interface import program that errored out:
    REP-1419: 'beforereport': PL/SQL program aborted.
    I have searched Metalink where they said the Batch Size should be 1000 by default. I did the same but still did not work.
    I have made sure that teh vendor_id, vendor_site_code, org_id combination is unique.
    I am not sure why I am getting this record. I have to process around 300000 records. When I ran the import progam the first time, it errored out after processing 171000 records. Then when I ran the program again for new records(that were not imported) it errored out after processing 42000 records. I dod not know how to resolve this issue.
    Please help!!
    Swati

    Please check if the following notes are applicable to the issue:
    Note: 369443.1 - Supplier Sites Open Interface Import Errs With Rep-1419 Rep-1419
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=369443.1
    Note: 369913.1 - Supplier Open Interface Import (APXSUIMP) Errors: Rep-1419
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=369913.1

  • !!!Very Urgent-Production Issue -Please help

    Hello IDMers,
    We are facing an issue in production, we updated the AD Process form yesterday. Two fields- Employee Type and Employee ID field in AD User Process form got refreshed for all existing users. Those two fields are empty now for all users.
    But these fields have appropriate value in the Xellerate User Table for all users. Now I need to some how populate the Employee Type and Employee ID field for all employees from User Table to AD Process form.
    for example: Consider an Employee called Peter- His emp type is Full Time and Emp ID is 100; which i have it in OIM User Table, but this user is provisioned with AD and now i will have to update his AD Process form so that these two fields are populated. I need to do this for all users in OIM. I guess the prepop adapter triggers only when the form is created for the first time. Please suggest me some ideas.
    Is there a easy way to do this task?
    What my thinking is, I need to have a scheduled task that basically loops through all users and updates their employee type and id field in AD User Form from Xellerate User Table.
    Please help me with this as it is highly important.
    Thanks again every one for your support all the while.
    Regards,
    ~VSN

    hey,
    i was doing lots of migration from one OIM box to another during our last release. I guess something would have gone wrong while doing an import/export from one OIM system to another.
    What I learned was while doing an import the vulnerable object is AD USER (or any resource of OIM) Object (both Process form and process definition), because those are the two objects which you need to import fully no matter how big a change you have done.
    So when you do an import watch out for USER DEFINED FIELDS in the process form because for me the two fields which disappeared were user defined/custom created by me. So make sure you export the latest version;even if you didnt make any changes to them better create a new version copy of the form and then export it.
    Hope that helps.
    ~VSN

  • Urgent...please help...lost my bbm icon when upgraded to bbm 7

    hey, 
    i lost ill not showing my bbm icon when i upgraded the bbm to the 7 version..i tried hard resets and also teh show all option, but its still not showing. i also tried to download it from the app world, but its showing reinstall..and when i reinstall it..it shows reinstall failure..
    i don't know what to do..please help me..asap..!!

    DONT WORRY , 
    GO TO OPTIONS  > DEVICE > APPLICATION MANAGEMENT > DELETE BBM 7 > THEN REINSTALL IT AGAIN . 
    IF NOT WORKING ! LET ME KNW ON MA PIN . HAVE A GRT DAY .  

  • Urgent!! Please help me burn to dual layer dvd!!

    I've done a wedding video and I need to burn it to a dual dvd, using DVD Studio Pro!!
    I've purchased Verbatim +R DL 2.4X
    I've never had a problem burning signle layer dvds.
    When I look at my system profile it says that I can burn dual dvds...
    HL-DT-ST DVDRW GWA4080MA:
    Firmware Revision: AE39
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: Insert media and refresh to show available burn speeds
    When I try to burn my DVD I get an error that says:
    "The recording device reported the hardware error: Unknown device error. (0x44, 0x90.)"
    Please Help!!

    I'm not familiar with that specific error but I would recommend using Toast to burn your disc if you have it. I have found much more success using that over DVDSP.
    Another option would be to use Finder. Put in your blank disc, in Finder choose New Burn Folder, put your files in that window and burn.
    Third, you could use Disk Utility to burn as well.
    I hope this helps.

  • Urgent!! Please Help! Security Question!

    I have forgotten the answers to my security questions (all three). As i made my Apple ID over 3 years ago, it did not ask me for a recovery e-mail adress. Is there any way i can reset the answers without the e-mail? Please Help!!

    Welcome to the Apple Community.
    ou should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • VERY URGENT IPHOTO QUESTION PLEASE HELP!!!

    Good day. i know this is an ihpoto question which should be posted in the iphoto section- but due to its urgency i really need all the help i need.- I would like to create a slide show presentation with music attached to it. i tried it once with a few pistures and it worked. now, i have around 3 hundred pictures and would like to create a slide show but unfortunately the same music keeps on playing over and over again. once the 1st music is done and there are still pictures to be shown, can i use another music title? how do i do this? please help....

    I always create a playlist in iTunes when I'm making an iPhoto slide show. You can select the playlist to play. I generally try to figure out how long I really want the slide show to last, and then make the playlist in iTunes. You haven't told us which version of iPhoto you're using, but the more recent versions have an option to time the slideshow to the length of the music rather than playing the music over again. Exactly which versions of iTunes and iPhoto do you have?
    -Doug

  • Help needed urgently .. Please help...

    I am using JTable in my project where i am overriding the default editor to my own custom editor.
    The problem is, when i am using tab key or mouse click, the cursor does not immediately move the next/clicked editable cell. I have to press the tab key twice to move to the next cell. After debugging i saw that the focus goes from the cell editor to the table and then on the second click to the next editor.
    My project requires a single click/single tab key pressed to make the cells editable.
    Please help..
    Thanks in advance..
    Preeti.

    Hi!
    I really have to get this Tab thing working.
    This is what I have tried, and it works partially.
    public boolean isManagingFocus()
    return true;
    public boolean isFocusCycleRoot()
    return true;
    * Captures tabs and moves focus to the next or previous cell, depending
    * on whether the <Shift> key was also pressed (i.e. tab or back tab).
    public void processComponentKeyEvent(KeyEvent e)
    if ( (e.getID() == KeyEvent.KEY_TYPED) && (e.toString().toLowerCase().indexOf(",tab") >= 0) )
    if (e.isShiftDown())
    tabToNextEditableCell(BACKWARD);
    else
    tabToNextEditableCell(FORWARD); // tab
    e.consume();
    else
    super.processComponentKeyEvent(e);
    * Sets editing focus onto next editable cell.
    * When moving forward, traverses cells from left to right then top to
    * bottom
    * @param direction FORWARD or BACKWARD
    private void tabToNextEditableCell(int direction)
    int x = getSelectedRow();
    int y = getSelectedColumn();
    //Added
    clearSelection();
    if ( direction == FORWARD && x < getRowCount() )
    editCellAt(x+1, ATTRIBUTE_VALUE_COL);
    else if (direction == BACKWARD && x >0)
    editCellAt(x-1, ATTRIBUTE_VALUE_COL);
    Let me describe what is happening..
    When I click tab, it moves 2 rows down, The table still highlights the next cell, but since it is not editable, I cant do anything, when I click Tab it moves to the next editable cell, which means that if the current cell is editable the table highlight moves to the next cell (which is not editable), and on the next tab it starts editing the cell.
    I dont know if I made too much sense... but I reallly need help with this.

  • Urgently!! Please Help Me

    I use SAP(JCO for AIX 64bit) connect WebSphere (IBM AIX Version 5.0).
    I want to develop webservices with JCO by calling BAPI
    But,System shows error follow below.Please Help me I can't find any solution.
    30 ?.?. 2550 15:39:41 org.apache.axis.utils.JavaUtils isAttachmentSupported
    WARNING: Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.
    AxisFault
    faultCode: Server.generalException
    faultSubcode:
    faultString: java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    JCO.nativeInit(): Could not initialize dynamic link library sapjcorfc [/usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so: load ENOENT on shared library(s) /usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so]. java.library.path [/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/itcam/WebSphere/DC_TrueDev01/toolkit/lib/aix-64:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/bin:/usr/mqm/java/lib:/usr/opt/wemps/lib:/usr/lib]; nested exception is:
    java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    JCO.nativeInit(): Could not initialize dynamic link library sapjcorfc [/usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so: load ENOENT on shared library(s) /usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so]. java.library.path [/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/itcam/WebSphere/DC_TrueDev01/toolkit/lib/aix-64:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/bin:/usr/mqm/java/lib:/usr/opt/wemps/lib:/usr/lib]
    faultActor:
    faultNode:
    faultDetail:
    hostname:tagdvtrat1
    java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    JCO.nativeInit(): Could not initialize dynamic link library sapjcorfc [/usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so: load ENOENT on shared library(s) /usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so]. java.library.path [/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/itcam/WebSphere/DC_TrueDev01/toolkit/lib/aix-64:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/bin:/usr/mqm/java/lib:/usr/opt/wemps/lib:/usr/lib]; nested exception is:
    java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    JCO.nativeInit(): Could not initialize dynamic link library sapjcorfc [/usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so: load ENOENT on shared library(s) /usr/IBM/WebSphere/AppServer/java/jre/bin/libsapjcorfc.so]. java.library.path [/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/itcam/WebSphere/DC_TrueDev01/toolkit/lib/aix-64:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/java/jre/bin/classic:/usr/IBM/WebSphere/AppServer/java/jre/bin:/usr/IBM/WebSphere/AppServer/bin:/usr/mqm/java/lib:/usr/opt/wemps/lib:/usr/lib]
    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
    at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
    at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at javax.xml.parsers.SAXParser.parse(Unknown Source)
    at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)>>
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
    at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    at org.apache.axis.client.Call.invoke(Call.java:2767)
    at org.apache.axis.client.Call.invoke(Call.java:2443)
    at org.apache.axis.client.Call.invoke(Call.java:2366)
    at org.apache.axis.client.Call.invoke(Call.java:1812)
    at com.pda.IssueBAPISoapBindingStub.doIssue201(IssueBAPISoapBindingStub.java:144)
    at com.pda.testWS.main(testWS.java:12)

    the way that how you will do it
    http://www.i-barile.it/SDN/JCoTutorial.pdf
    <a href="http://www.i-barile.it/SDN/JCoTutorial.pdf">JCO Help</a>

  • Remedy issue URGENT!! Please help

    Hi All,
    I am not able to login to remedy client as I'm getting the below error
    *‘RPC: Miscellaneous tli error - System error (Connection refused)’*
    We tried to restart the remedy process, that dont work, Getting the below SQL errorAction Request System initializing.
    Starting Remedy AR System server
    Also I have checked the network/firewall as there is no issues with their end.
    Please anyone help me to resolve this issue.
    Error while restarting the remedy process
    Action Request System(R) Server Version 4.05.02 patch 1025
    Copyright (c) 1991 - 2001 Remedy Corporation. All Rights reserved.
    Copyright (c) 1989 - 2001 Verity, Inc. All rights reserved.
    Reproduction or disassembly of embodied programs and databases prohibited.
    Verity (r) and TOPIC (r) are registered trademarks of Verity, Inc.
    390600 : SQL database is not available -- will retry connection (ARNOTE 590)
    Notification System Server Version 4.05.02
    Copyright (c) 1994 - 2001 Remedy Corporation. All Rights reserved.
    110902110300- 24733: Initializing process 24733
    110902110300- 24733: DISPLAY_CONFIGURATION===================================
    110902110300- 24733: EXTERNAL START (-X) FALSE
    110902110300- 24733: RESTART (-r) FALSE
    110902110300- 24733: Check-Users: (-c) FALSE
    110902110300- 24733: Debug-Level: (-d) 21
    110902110300- 24733: Disable-Shared-Memory: FALSE
    110902110300- 24733: Hold-Time: (-h) 2592000 seconds = 30.0 days
    110902110300- 24733: Max-Users: (-u) 1000
    110902110300- 24733: Notifier-Outbound-Port: 0
    110902110300- 24733: Notifier-Specific-Port: 0
    110902110300- 24733: Private-RPC-Socket: 0
    110902110300- 24733: Private-Specific-Port: 0
    110902110300- 24733: Register-With-Portmapper: FALSE
    110902110300- 24733: Send-Timeout: (-t) 7
    110902110300- 24733: TCD-Specific-Port: 32768
    110902110300- 24733: ========================================================
    110902110300- 24733: AR System server: remedy01
    110902110300- 24733: AR ServerNameWithDomain: remedy01.ndc.lucent.com
    110902110300- 24733: HostnameWithDomain: remedy01.ndc.lucent.com
    110902110300- 24733: StartServerDaemons
    Notification Send Server Version 4.05.02
    Copyright (c) 1991 - 2001 Remedy Corporation. All Rights reserved.
    110902110300- 24736: Initializing process 24736
    110902110300- 24736: ProcessFiles: called with loginFd(0)=9 and notificationFd(1)=10
    110902110300- 24736: ProcessFiles: start Notifications at offset 0.
    110902110300- 24736: ProcessFiles: reopening nfyfile (new notificationFd=10)
    110902110302- 24733: StartServerDaemons daemon 0 started
    Action Request System(R) Mail Daemon Version 4.05.02
    Copyright (c) 1991 - 2001 Remedy Corporation. All Rights reserved.
    MailFileName: /usr/mail/fxbrophy
    Action Request System initialization is complete.
    390600 : Cannot initialize contact with SQL database (ARERR 551)
    Stop server
    390600 : AR System server terminated -- fatal error encountered (ARNOTE 21)
    Action Request System(R) Server Version 4.05.02 patch 1025
    Copyright (c) 1991 - 2001 Remedy Corporation. All Rights reserved.
    Copyright (c) 1989 - 2001 Verity, Inc. All rights reserved.
    Reproduction or disassembly of embodied programs and databases prohibited.
    Verity (r) and TOPIC (r) are registered trademarks of Verity, Inc.
    390600 : SQL database is not available -- will retry connection (ARNOTE 590)
    Thanks,
    Sajith

    Why are you posting this on the Oracle forums, shouldn't you be talking to Remedy or BMC or whoever provides support for the product?
    Also this (or other public forums) is generally not the place for urgent production issues. There are paid support channels for such issues.
    Anyway, a hint:
    I would probably dig into the very vague "SQL database is not available" message. Does the system have details in logs? What clues does the actual/underlying error messages provide? Is the database in question actually up and reachable from the client (i.e. app server) host?
    Edited by: orafad on Sep 26, 2011 2:20 PM

  • Urgent typical problem- Please help!!

    Dear All,
    I have a BOM material(say M) which is made up of 3 components(say A, B and C).
    I procure component A from 3 different countries(T1, T2 andT3), component B from 2 different countries(T4 and T5) and component C from 4 different countries(T6, T7, T8 and T9).I process them and prepare a finished good ‘M’(as mentioned above) and export it. I want to track the country of origin of each of the components of this BOM.How can I achieve this?
    To make my question more clear…..If I am exporting material M, I should be able to track all the 9 countries(T1…..T9) because M is made up of 3 components procured from 9 countries(in all).
    Since the problem is critical, I would appreciate your urgent help on this.Thanks!!

    Hi Reshu
    You can certainly download list of components that are imported and its vendor's name through a query as follows:-
    1)  Goto SQVI
    2)  Table join MBEW and EORD
    3)  Select the Valuation Class field BKLAS in MBEW and LIFNR in EORD
    4)  In Valuation Class, give 3002 & 3003 (Imported Duty Paid & Duty Free)
    5)  Execute the report
    A report will be generated wherein you can see all imported components and its respective vendor list.
    I think you only have to decide which particular component goes into which assembly and no report is available to my knowledge.  Others correct me if I am wrong.
    By the way, I am sure, the above suggestion will be helpful to a great extent and if so, dont forget to reward points please.
    Thanks
    G. Lakshmipathi

Maybe you are looking for

  • Any one is using K8N Neo MS-7030 with 6600/6800 series with LCD monitor ?

    any one is using K8N Neo MS-7030 with 6600/6800 series with LCD monitor and his card is connected through the DVI cable without problems ?

  • IPod serial number

    How do I find the serial number of the last iPod connected to my computer?In iTunes 6,I could do it from the iPod tab in the Preference windows.In iTunes 7,there is no iPod tab.I lost my iPod and I need that serial number.

  • Fingerprint reader problem

    hi, i got the same problem like everybody , fingerprint issue. the thing is all the solution listed is no help. I cant rollback the driver, I cant see any fingerprint reader in the device manager. I've update my digitapersona to v4.11 but still it ca

  • Bridge CS6 doesn't allow access to many of my folders on iMac

    iMac with OS X 10.8.2 and Photoshop & Bridge CS6 and Lightroom 4. When try and access photos via Bridge most of my folders have a little red circle with a minus inside, denying me access to the folders. However, if I use mini Bridge in PS I can acces

  • Is there a way to install Bootcamp without purchasing a Windows disc?

    I understand that to install Bootcamp on a MacBook Pro (15"), I need a Windows 7 installer disc. I am happy to purchase this if absolutely necessary, but it seems silly to buy Windows 7 all over again when I have it running on another laptop I own. I