Help, CheckOut causes error IFS-34611

There was an error checking out logo.jpg: oracle.ifs.common.IfsException: There was an error checking out logo.jpg: oracle.ifs.common.IfsException: IFS-34611: Error reserving version series. oracle.ifs.common.IfsException: IFS-30054: Insufficient access to add a new version to a VersionSeries oracle.ifs.common.IfsException: IFS-30030: Permission not granted on specified ACL series. oracle.ifs.common.IfsException: IFS-30054: Insufficient access to add a new version to a VersionSeries oracle.ifs.common.IfsException: IFS-30030: Permission not granted on specified ACL
I am writing my own CheckOut and CheckIn code for IFS1.1.10. The problem is that every time I check in a file, nobody but the person who originally checked in the file is able to check out the file. SO user1 checks in a file, user2 checks out the file and BAM error. please help.
I have made sure to set the ACL to public at initial document creation (by giving the DocumentDefinition a Public ACL).
//////////////////////////////////// BEGIN CHECKIN CLASS ////////////////////////////////////////////////////
******* CheckIn is pretty big so the only things to look at are the doPost and other called methods
* Process the HTTP Post request
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=WINDOWS-1252");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head>");
out.println("<title>CheckIn</title>");
out.println("<meta HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=WINDOWS-1252\">");
out.println("</head>");
out.println("<body>");
//Debug mode stuff
if (MODE == "info")
iterateThroughHeaders(out, request);
//Determine the length and location of the boundary tags
//wrapping the files contents, these will
//be used to trim away the header and footer later
String contentType = request.getContentType();
int boundaryIndex = contentType.indexOf("boundary=");
String boundary = contentType.substring(boundaryIndex+9);
int boundaryStrLength = boundary.length();
// Parse out the filename from the stream
// and at the same time remove the boundary tag
// wrapping the file
ServletInputStream sis = request.getInputStream();
try {
//Create a Junkbuffer to hold "lines" of the content Stream
//and junk the first line of the stream
int offset=0;
int bufferLength=1024; // 1kilobyte
byte[] junkBuffer = new byte[bufferLength];
int junkLineSize = sis.readLine(junkBuffer, offset, bufferLength);
junkLineSize = sis.readLine(junkBuffer, offset, bufferLength);
// Read the file name from 2nd line of the stream
// by isolating everything between the last
// file backslash "\" and the last quote """
ByteArrayOutputStream ContentDispositionStream = new ByteArrayOutputStream();
ContentDispositionStream.write(junkBuffer, 0, bufferLength);
String ContentDisposition = ContentDispositionStream.toString();
ContentDisposition.trim();
//String filename = ContentDisposition.substring(ContentDisposition.lastIndexOf("\\")+1,ContentDisposition.lastIndexOf("\""));
login.setfilename( ContentDisposition.substring(ContentDisposition.lastIndexOf("\\")+1,ContentDisposition.lastIndexOf("\"")) );
// junk the 3rd and 4th lines
junkLineSize = sis.readLine(junkBuffer, offset, bufferLength);
junkLineSize = sis.readLine(junkBuffer, offset, bufferLength);
} catch (Exception e){
// Now that we have the filename, we need to make sure that
// the file is not checked out by somebody else
PublicObject pendingCheckIn = null;
try {
pendingCheckIn = login.getFileSystem().findPublicObjectByPath(login.IFS_FILE_PATH+login.getFilename());
if (login.getFileSystem().isCheckedOut(pendingCheckIn) ) {
// if file is checked out, find out by whom
DirectoryUser currentOwner = login.getFileSystem().checkedOutBy(pendingCheckIn);
if ( !currentOwner.equals(login.getLibrarySession().getDirectoryUser()) ){
// it must be checked out by somebody,inform the current user as to whom the file is checked out by
out.println("That file has been checked out by "+ currentOwner.getDistinguishedName());
out.println("<br>");
out.println("</body></html>");
out.close();
return;
} else {// it must be checked out by the current user
// Remove the trailing boundary tag wrapping the file contents
ByteArrayInputStream contentInputStream = null;
DataInputStream dis = new DataInputStream(sis);
try{
// Create a new Buffer for writing the headerless input stream to
// a ByteArrayOutputStream
byte[] buffer2 = new byte[4096]; //4Kilobyte buffer
int length;
ByteArrayOutputStream truncatedHeaderStream = new ByteArrayOutputStream(request.getContentLength());
while ((length = dis.read(buffer2)) > 0) {
truncatedHeaderStream.write(buffer2, 0, length);
// Write the headerless ByteArrayOutputStream to a byteArray
byte[] truncatedHeaderArray = truncatedHeaderStream.toByteArray();
// Create a new ByteArrayOutputStream with the trailing
// boundary tags removed by truncating the end of
ByteArrayOutputStream contentOnly = new ByteArrayOutputStream(request.getContentLength());
contentOnly.write(truncatedHeaderArray, 0, truncatedHeaderArray.length - boundaryStrLength - 8);
byte[] contentAsBytes = contentOnly.toByteArray();
contentInputStream = new ByteArrayInputStream(contentAsBytes);
} catch (Exception e) {
out.println("Error parsing the file out of the request<br>");
//Create a new version of the document in the Primary Version Series
createNewVersion(pendingCheckIn, contentInputStream, checkInComment);
//Connect to the Oracle Database using the database versions of the username and password
DatabaseHelper dbHelp = new DatabaseHelper(login);
//Insert The uploaded document's name into the appropriate table.
dbHelp.insertRecord(login.getTableName(), login.getKeyID(), login.getFilename());
return;
} catch (IfsException ifse) {
//out.println("There was an error trying to: " + ifse.toString());
try {
if (null == pendingCheckIn) {
// then this object does not exist and we must create a document and then version it.
// Remove the trailing boundary tag wrapping the file contents
ByteArrayInputStream contentInputStream = null;
DataInputStream dis = new DataInputStream(sis);
try{
// Create a new Buffer for writing the headerless input stream to
// a ByteArrayOutputStream
byte[] buffer2 = new byte[4096]; //4Kilobyte buffer
int length;
ByteArrayOutputStream truncatedHeaderStream = new ByteArrayOutputStream(request.getContentLength());
while ((length = dis.read(buffer2)) > 0) {
truncatedHeaderStream.write(buffer2, 0, length);
// Write the headerless ByteArrayOutputStream to a byteArray
byte[] truncatedHeaderArray = truncatedHeaderStream.toByteArray();
// Create a new ByteArrayOutputStream with the trailing
// boundary tags removed by truncating the end of
// the headerless byteArray
ByteArrayOutputStream contentOnly = new ByteArrayOutputStream(request.getContentLength());
contentOnly.write(truncatedHeaderArray, 0, truncatedHeaderArray.length - boundaryStrLength - 8);
byte[] contentAsBytes = contentOnly.toByteArray();
contentInputStream = new ByteArrayInputStream(contentAsBytes);
} catch (Exception e) {
out.println("Error parsing the file out of the request<br>");
Document doc = null;
try {
DocumentDefinition newDocDef = new DocumentDefinition(login.getLibrarySession());
newDocDef.setAttribute( "NAME",AttributeValue.newAttributeValue(login.getFilename()) );
newDocDef.setContentStream(contentInputStream);
PublicObject poForAcl = login.getFileSystem().findPublicObjectByPath(login.PUBLIC_ACL_OBJECT_PATH);
AccessControlList acl = poForAcl.getAcl();
AttributeValue av = AttributeValue.newAttributeValue( acl );
newDocDef.setAttribute( PublicObject.ACL_ATTRIBUTE, av );
doc=(Document)login.getLibrarySession().createPublicObject(newDocDef);
} catch (IfsException ifseIn) {
out.println("Error creating new Document definition"+ifseIn);
//return the versioned Family object
Family documentFamily=null;
try {
documentFamily = this.makeVersioned(doc,checkInComment);
}catch (IfsException ifseIn) {
out.println("error in makeVersion");
//Put the family object into /public/Pool
Folder folder=null;
FolderPathResolver folderPathResolver = null;
try {
//Get a handle on the public/Pool directory object
folderPathResolver = new FolderPathResolver(login.getLibrarySession());
folder = (Folder) folderPathResolver.findPublicObjectByPath("/public/Pool");
folder.addItem(documentFamily);
out.println("added the document successfully");
} catch (IfsException ifseIn) {
out.println("error getting a handle on public pool"+ifseIn);
} catch (Exception e) {
out.println("error adding Item"+e);
try {
out.println(" folderPathResolver "+folderPathResolver.toString() +" folder "+folder.getName());
} catch (Exception e1) {
//Connect to the Oracle Database using the database versions of the username and password
DatabaseHelper dbHelp = new DatabaseHelper(login);
//Insert The uploaded document's name into the appropriate table.
dbHelp.insertRecord(login.getTableName(), login.getKeyID(), login.getFilename());
return;
}//end If
} catch (Exception exc) {
out.println("Error creating new doc: "+exc);
}//end Catch
} //end doPost()
* Get Servlet information
* @return java.lang.String
public String getServletInfo() {
return "com.pws.FileTransfer.CheckIn Information";
//this method was found on Oracle Forums, posted by Mark D Drake
public Family makeVersioned( PublicObject po, String comment)
throws IfsException {
Collection c = po.getSession().getClassObjectCollection();
ClassObject co = (ClassObject) c.getItems(Family.CLASS_NAME);
if (po.isInstanceOf(co))
return (Family) po;
// - Create a Family Definition. Set the Name of the Family to the name of the Public Object etc.
FamilyDefinition familyDef = new FamilyDefinition( po.getSession() );
familyDef.setName( po.getName() );
//AccessControlList acl = po.getAcl();
//Added by Weber to give the versioned document a public ACL
PublicObject poForAcl = login.getFileSystem().findPublicObjectByPath(login.PUBLIC_ACL_OBJECT_PATH);
AccessControlList acl = poForAcl.getAcl();
AttributeValue av = AttributeValue.newAttributeValue( acl );
familyDef.setAttribute( PublicObject.ACL_ATTRIBUTE, av );
familyDef.setAttribute( PublicObject.DESCRIPTION_ATTRIBUTE, AttributeValue.newAttributeValue( "Family Definition for " + po.getName() ) );
// Create the version series definition.
// Attach the Family Definition to the Version Series Defintion
VersionSeriesDefinition versionSeriesDef = new VersionSeriesDefinition( po.getSession() );
versionSeriesDef.setFamilyDefinition( familyDef );
// Create the Version Description Definition
// Set the Description for the initial version.
// Set the Versioned Object to be the current Purchase Order
// Attach the Version Series Defintion to the Version Description Definition
av = AttributeValue.newAttributeValue( comment );
VersionDescriptionDefinition versionDescriptionDef = new VersionDescriptionDefinition( po.getSession() );
versionDescriptionDef.setAttribute( VersionDescription.REVISIONCOMMENT_ATTRIBUTE, av );
versionDescriptionDef.setVersionSeriesDefinition( versionSeriesDef );
versionDescriptionDef.setPublicObject( po );
// Create the Version description. This will create the Version Series and Version Family
VersionDescription vd = ( VersionDescription ) po.getSession().createPublicObject( versionDescriptionDef );
// Return the Family
Family family = vd.getFamily();
po.setSecuringPublicObject( family );
//updateFolderReferences( po, family );
return family;
public void createNewVersion(PublicObject p_ifsFamily,
InputStream p_contentStream,
String p_versionComment){
try {
//begin a transaction for saving the new content
oracle.ifs.common.Transaction transaction = login.getLibrarySession().beginTransaction();
//get resolved public object from the family of the document
Family l_family = (Family) p_ifsFamily;
VersionSeries l_vs = l_family.getPrimaryVersionSeries();
PublicObject l_rpo = l_family.getResolvedPublicObject();
try {
//construct the document definition with contentobject
DocumentDefinition l_docDef = (DocumentDefinition)l_rpo.getDefinition();
//Format l_format = ((Document)l_rpo).getFormat();
l_docDef.setContentStream(p_contentStream);
//it is unkown whether this is necessary but I have added it for redundancy
l_docDef.setAttribute("NAME",AttributeValue.newAttributeValue(login.getFilename()));
//form a new publicobject with the document definition
PublicObject l_po = login.getLibrarySession().createPublicObject(l_docDef);
//set the pendingpublicobject for the version series
l_vs.setPendingPublicObject(l_po);
//if here,then no exception. so, commit the transaction
login.getLibrarySession().completeTransaction(transaction);
//dereference the transaction object
transaction = null;
} catch (IfsException ifsEx) {
ifsEx.setVerboseMessage(true);
ifsEx.printStackTrace();
}finally {
if(transaction != null) {
//if transaction is pending then exception. so, abort the transaction
login.getLibrarySession().abortTransaction(transaction);
//dereference the transaction object
transaction = null;
// check in the document with the versioning comments.
login.getFileSystem().checkIn(p_ifsFamily, p_versionComment);
}catch(IfsException ex){ // Trap Errors
if (ex.getErrorCode() != 30661) {
ex.setVerboseMessage(true);
ex.printStackTrace();
}//end make Version
private AccessControlList getPublicAcl(PrintWriter p_out) {
AccessControlList l_acl = null;
try {
PublicObject poForAcl = login.getFileSystem().findPublicObjectByPath(login.PUBLIC_ACL_OBJECT_PATH);
AccessControlList acl = poForAcl.getAcl();
} catch (IfsException ifse) {
p_out.println("Error in getPublicAcl: "+ifse);
return l_acl;
}// end getPublicAcl
}//end Class
//////////////////////////////////// BEGIN CHECKOUT CLASS ////////////////////////////////////////////////////
package com.pws.FileTransfer;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import oracle.ifs.beans.PublicObject;
import oracle.ifs.beans.Family;
import oracle.ifs.beans.FamilyDefinition;
import oracle.ifs.beans.VersionSeries;
import oracle.ifs.beans.VersionSeriesDefinition;
import oracle.ifs.beans.VersionDescription;
import oracle.ifs.beans.VersionDescriptionDefinition;
import oracle.ifs.beans.DirectoryUser;
import oracle.ifs.adk.filesystem.IfsFileSystem;
import oracle.ifs.common.IfsException;
public class CheckOut extends HttpServlet {
public static final String CHECKOUT_FILE_LOCATION = "files"+Login.IFS_FILE_PATH;
* Initialize global variables
public void init(ServletConfig config) throws ServletException {
super.init(config);
* Process the HTTP Get request
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=WINDOWS-1252");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head>");
out.println("<title>CheckOut</title>");
out.println("<meta HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=WINDOWS-1252\">");
out.println("</head>");
// Parse the userName, password, docID and file from the request
String username = request.getParameter("username");
String password = request.getParameter("password");
String file = request.getParameter("file");
// Create a Login object to represent this session between the user and ifs
Login login = new Login(username, password, null, null, null, null, file);
// Create a publicObject from the provided filename
PublicObject poFromFile = null;
String lastDescriptID = null;
String firstDescriptID = null;
String getID = null;
String descriptionAttribute = null;
String defaultVersionDescription = null;
try {
// Find the file pending Check Out in IFS
Family pendingCheckOut = (Family)login.getFileSystem().findPublicObjectByPath(login.IFS_FILE_PATH + file);
PublicObject resolvedPO = pendingCheckOut.getResolvedPublicObject();
// Find out who it is checked out by
DirectoryUser currentFileUser = login.getFileSystem().checkedOutBy(pendingCheckOut);
if (null == currentFileUser) {
// The file is not checked out,
// proceed with CheckOut process
PublicObject po = login.getFileSystem().checkOut(resolvedPO, false);
out.println("<a href="\""+ CHECKOUT_FILE_LOCATION + file +"\" target=\"_blank\">"+ file +"</a>");
} else {
// The file is already checked out,
// display who the currentFileUser is
out.println(file +" is currently checked out by "+currentFileUser.getDistinguishedName());
} catch (IfsException ifse) {
out.println("There was an error checking out "+ file +": "+ ifse);
out.println("</body></html>");
out.close();
* Get Servlet information
* @return java.lang.String
public String getServletInfo() {
return "com.pws.FileTransfer.CheckOut Information";

Hi,
We are facing exact same problem?
Have you got any fix for this?
Please let me know.
Thanks
Sri
(Cisco Systems)

Similar Messages

  • IFS-34611: Error reserving version series

    Hi,
    When I tried the Building Versioning Application demo provided by the technet.oracle.com, I got the following error:
    IFS-34611: Error reserving version series
    All I have done is to version a doc1.txt file, then try the check-in/check-out functions, everything works fine at this moment. Even I deleted the doc1.txt file, there is no error. However, when i uploaded doc1.txt again after the deletion and tried to check-out the file, the above error exists.
    Can anyone help me?
    I am using iFS1.1.9 on Win2000 platform
    Thanks in advance!
    Ka.

    Hi,
    We are facing exact same problem?
    Have you got any fix for this?
    Please let me know.
    Thanks
    Sri
    (Cisco Systems)

  • IFS-34611 error

    I am using Windows Utility for check-in/check-out feature, and when i try to check-out a versioned file, it gives me the following error.
    Unexpected error encountered 34611
    IFS-34611 error reserving version series.
    I am using IFS 1.0.8 on solaris 2.7, 8.1.6 database.
    Note :: Check-in/Check-out works from Web interface although.
    regards,
    Manish Jain.

    There was a known problem with 1.0.8.0 which may produce this error in the following circumstances:
    1) make file versioned
    2) set file's ACL to ACL1
    3) another user updates file, and set's new version's ACL to ACL2. ACL2 does not give you permission to update the file.
    4) subsequently, you are unable to create new versions of the document.
    This problem was fixed in release 1.1.
    null

  • TS3694 I could not upadate ipad 4 to ios 6.1.3 cause error occurred 3194.Please help me.Thanks

    I could not upadate ipad 4 to ios 6.1.3 cause error occurred 3194.Please help me.Thanks

    The article you attached above addresses what you should do:
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.
    Is your iPad hacked or jailbroken?  This error can show up in a hacked or jailbroken iPad.

  • Bug Report : Upgraded to Firefox v10. Holding CTRL+ [F4] too long after all tabs are closed causes error. "Exc in ev handl: TypeError: this.oPlg.onTabClosed is not a function"

    Bug Report :
    Upgraded to Firefox v10. Holding CTRL+ [F4] too long after all tabs are closed causes error.
    "Exc in ev handl: TypeError: this.oPlg.onTabClosed is not a function"

    What extensions do you have? (Go to Firefox > Customize > Add-ons to see or Help > Troubleshooting info for a copy-pasteable list)

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • Premiere CC 2014.1 Blu-ray MPEG 2 export causing error in Sony DVD Architect Pro

    I've filed a Bug Report for this but wanted to post here in case it helps anyone else or on the off chance someone can give me a solution / better work around.
    Something has changed in the results of a Blu-ray MPEG2 export from Premiere 2014.1 vs those of the previous CC version. The result is that my authoring software of choice, Sony DVD Architect Pro, fails to prepare a disc image giving an error in the final stage of preparation. This workflow has been working fine for 2-3 years.
    My work around is to export to original format (mxf / XDCAM EX HQ) and then go back to Media Encoder CC rather than 2014 to produce the Blu-ray MPEG2 file, which works without problem.
    Here's a copy paste of my bug report in case anyone with a similar setup has an opportunity to replicate (I'd be very grateful to anyone able to confirm whether its a bug or something specific to me that I might be able to fix).
    ******BUG******
    Export from Premiere 2014.1 directly or via Media Encoder of MPEG 2 1080 50i Blu-ray files causes error in preparation of Blu-ray disc in Sony DVD Architect 5.2.
    This error does not occur when using the same Media Encode export preset in the previous version of Premiere Pro CC / Media Encoder.
    Steps to reproduce bug:
    1. Export Sequence from Premiere
    Export, in my case XDCAMEX 1080i HQ, using a media encoder MPEG 2 Blu-ray preset:
    Preset Name: HD 1080i 25
    Format: MPEG2 Blu-ray
    Bitrate Settings: Medium (Target 25Mbps)
    2. Create DVD Architect 5.2 project
    Set up as single movie Blu-ray project in DVD Architect:
    Disc format: Blu-ray Disc
    Resolution: 1920*1080
    Framerate: 35 interlaced
    Choose the file exported from Premiere
    3 Prepare Disc
    - Select Make Blu-ray Disc
    - Click Prepare
    - Choose Location of iso
    - click next then finish
    Result
    Around 50% - 60% through the process the following error is displayed:
    An error occurred while preparing compilation
    Details:
    File name: STREAM/00000.m2ts
    Status: TSWrapper.dll::CTSWrapper::ProcThreadMain::Failed to read ES file. - The ES file may be shorter than the size described in the MUI file.
    Expected results:
    A shiny ISO ready to be burnt to disc and sent sent to eager customers.
    Its taken me a full day and a half to isolate problem - someone remind me why I fall for the software updates every time?!
    Cheers
    Iain
    Other details:
    Windows 7 pro 64 SP1
    Intel Core i7 950 @ 3.07GHz
    RAM 24.0GB
    ASUSTeK P6T DELUXE V2
    1279MB NVIDIA GeForce GTX 470

    There is a known bug in the H.264-Bluray export. I assume it has nothing to do with your issue, but perhaps it will give you something to consider.
    https://forums.adobe.com/message/6848505#6848505
    It appears due to a malformed xmpses file. It creates a problem on import into Encore, and I think it should do the same upon import into Architect or it would be ignored entirely. The test is to delete the xmpses file and see if that avoids the issue.

  • Changes in RPCBURZ0 causes errors in other programs

    Hello to All,
    I made changes to RPCBURZ0 in order to extend the TABLE schema function to read a custom Infotype 9001.
    I added the necessary code in RPCBURZ0 and the data definition in RPCFDCZ0.
    The code is working perfectly , but the changes are causing errors in other country specific reports
    specifically in : HINCALC0 , HCNCALC0 , and HKRCALC0 and Transports to Quality generating errors.
    Error is because the custom infotype definition is not seen in these reports.
    Generation of the users of the transported Includes                                                                                |
    Program HCNCALC0, Include RPCBURZ0: Syntax error in line 000021
    The field 'T9001' is unknown, but there is a fieldwith the similar name 'T001P'. .
    Program HINCALC0, Include RPCBURZ0: Syntax error in line 000021
    The field 'T9001' is unknown, but there is a fieldwith the similar name 'T001P'. .
    Program HKRCALC0, Include RPCBURZ0: Syntax error in line 000021
           |   The field 'T9001' is unknown, but there is a fieldwith the similar name 'T001P'. . 
    Looking at other H--CALC0 reports i could easily spot an include for RPCFDCZ0.
    include rpcfdcz0.  "customer-specific data declaration (int'l)
    I wonder why this include is not in (HINCALC0 , HCNCALC0 , and HKRCALC0) !!!
    I have two solutions in mind :
    1. Make a custom ZRPCBURZ0 and include it in the main report.
    2. Look for user exist for the three reports and add the data definition statement .
    What is the best way to fix this situation ? and is there any other possible solutions ?
    We are using :
       SAP ECC 6.0
       Payroll International Driver.

    Alex Gorly and Matt Sullivan solved one of my issues above:
    Message: Attribute 'prod' is not declared for element 'prodname'
    I'm still stumpled on the other one:
    Message: Not enough elements to match content model  '(prodname,vrmlist,((brand|component|featnum|platform|prognum|series) )*)'
    As stated above, I've even removed everything from the general rule of <prodinfo> except prodname and I'm still getting the same error. I've searched everywhere for this general rule and <prodinfo> is the only place I can find it.
    What I really want is: (prodname), (vrmlist)?, (brand | component | featnum | platform | prognum | series)*
    so that vrmlist is optional.
    No matter what I do, unless I include a vrmlist, I get the above message. Currently, our CMS can't handle vrmlist but I don't want to remove it altogether because we may be replacing our CMS.
    Help please!

  • Document store access caused errors in the SAP Correction System

    Hi Gurus,
    I have this user who is trying to make changes to a workbook in DEV which is published to a folder with some users who are assigned to role. This user is the only user with Developer 2 role. When the user make changes and try to save the workbook to her role or favorites so that the changes are transported to BWP, the user is getting "Document store access caused errors in the SAP Correction System".
    Do we have any suggestions/solutions, I would really appreciate any help on this.I would also assign full points for the most helpful answer.

    I have exactly the same problem with the user who is trying to save the workbook, where he made minor change.
    Any clues?
    Thank you.
    Vitaliy

  • Time Capsule can you change the signal frequencies because it is causeing errors in other things that we have wireless cameras?

    Can you change the frequenices settings on the time capsule and the mac pro to receive it? Because it is causing errors with other wireless cameras that cannot be changed.

    Its ok. Thank you for replying. I meant router. lol. I have another question... I have looked at the back to my mac... so you are saying if I travel and take my mac book and use back to my mac I can access it?????
    Well here is the issue, as I said, my husband is deployed and he is the one that will be trying to access it. I have the mac book here with me. He has an iphone,ipad, and a windows based laptop with him... Is there a way for him to access it with these devices, to include the windows laptop?
    If all of this works can I load pics and movies on it and him be able to access them and then watch the movies?
    I appreciate your help. I am not a ******* but I just need help.
    Thanks so much!!!

  • Webpart causing error while accessing the subsite.

    Hi
    I am getting an error message saying that webpart causes error in accessing the site in MOSS 2007.
    PFA of the error:
    Please someone help with the error webpart:
    how to find which custom webpart is affecting the site access error.
    Thanks,
    Badri

    Hi Badri ,
    According to your error message, the web part which cause error is the “RecentlyUpdatedSites” web part. For your issue, you can open the Web Part Maintenance page.
    For opening the Web Part Maintenance page by just adding the following query string to the page URL
    ?contents=1 So, if your page URL is 'http://servername/sitename/home.aspx' then after appending the query string it should look like ' http://servername/sitename/home.aspx?contents=1'
    Using this approach, we can open the web part maintenance page , close or delete these wrong web part.
    Reference:
    Opening Web Part Maintenance Page
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Root cause error code is JBO-29000 ?

    Hi guys,
    anyone can help me? Thanks!
    Jdeveloper:11.1.2.3.0
    Need Connect to DB2 database.
    Application server:Weblogic
    Error 500--Internal Server Error
    oracle.jbo.JboException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-29000. Error message parameters are {0=java.lang.NoClassDefFoundError, 1=com/ibm/db2/jcc/DB2Connection}
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4739)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2536)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2346)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3245)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:571)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:234)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:504)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:499)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:517)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:867)
         at oracle.adf.model.binding.DCDataControl.setErrorHandler(DCDataControl.java:487)
         at oracle.jbo.uicli.binding.JUApplication.setErrorHandler(JUApplication.java:261)
         at oracle.adf.model.BindingContext.put(BindingContext.java:1318)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:247)
         at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:1020)
         at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:1645)
         at oracle.adf.model.dcframe.DataControlFrameImpl.internalFindDataControl(DataControlFrameImpl.java:1514)
         at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:1474)
         at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:1150)
         at oracle.adf.model.BindingContext.get(BindingContext.java:1103)
         at oracle.adf.model.binding.DCParameter.evaluateValue(DCParameter.java:82)
         at oracle.adf.model.binding.DCParameter.getValue(DCParameter.java:111)
         at oracle.adf.model.binding.DCBindingContainer.getChildByName(DCBindingContainer.java:2743)
         at oracle.adf.model.binding.DCBindingContainer.internalGet(DCBindingContainer.java:2791)
         at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:329)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameterWithElCheck(DCBindingContainer.java:1473)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1603)
         at oracle.adf.model.binding.DCIteratorBinding.initDataControl(DCIteratorBinding.java:2542)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2477)
         at oracle.adf.model.binding.DCIteratorBinding.getCheckedDataControl(DCIteratorBinding.java:2571)
         at oracle.adf.model.binding.DCIteratorBinding.internalGet(DCIteratorBinding.java:4644)
         at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
         at oracle.adf.share.el.VariableResolverELContext$1.getValue(VariableResolverELContext.java:53)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
         at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:114)
         at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:822)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameterWithElCheck(DCBindingContainer.java:1469)
         at oracle.adf.model.binding.DCParameter.internalEvaluateExpresion(DCParameter.java:245)
         at oracle.adf.model.binding.DCParameter.evaluateValue(DCParameter.java:76)
         at oracle.adf.model.binding.DCParameter.getValue(DCParameter.java:111)
         at oracle.adf.model.binding.DCBindingContainer.getChildByName(DCBindingContainer.java:2743)
         at oracle.adf.model.binding.DCBindingContainer.internalGet(DCBindingContainer.java:2791)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.internalGet(FacesCtrlSearchBinding.java:3668)
         at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
         at oracle.adf.share.el.VariableResolverELContext$1.getValue(VariableResolverELContext.java:53)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
         at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:114)
         at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:822)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameterWithElCheck(DCBindingContainer.java:1469)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1603)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.initDataControl(JUMethodIteratorDef.java:589)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2477)
         at oracle.adf.model.binding.DCIteratorBinding.getCheckedDataControl(DCIteratorBinding.java:2571)
         at oracle.adf.model.binding.DCIteratorBinding.getSortCriteria(DCIteratorBinding.java:3889)
         at oracle.adf.model.binding.DCInvokeMethod.setAssociatedIteratorBinding(DCInvokeMethod.java:946)
         at oracle.adf.model.binding.DCIteratorBinding.cacheRefOnOperation(DCIteratorBinding.java:5426)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.getActionBinding(JUMethodIteratorDef.java:283)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef.isRefreshable(JUMethodIteratorDef.java:59)
         at oracle.adf.model.binding.DCExecutableBindingDef.isRefreshable(DCExecutableBindingDef.java:274)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3069)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2906)
         at oracle.adf.model.binding.DCBindingContainer.refreshIfNeeded(DCBindingContainer.java:3444)
         at oracle.adf.model.binding.DCBindingContainer.getChildByName(DCBindingContainer.java:2719)
         at oracle.adf.model.binding.DCBindingContainer.internalGet(DCBindingContainer.java:2791)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.internalGet(FacesCtrlSearchBinding.java:3668)
         at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:329)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:296)
         at oracle.adf.model.binding.DCBindingContainer.findNamedObject(DCBindingContainer.java:5161)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.getActionBinding(JUMethodIteratorDef.java:207)
         at oracle.jbo.uicli.binding.JUSearchBindingCustomizer.getViewCriteria(JUSearchBindingCustomizer.java:1949)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding._getCurrentViewCriteria(FacesCtrlSearchBinding.java:3863)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.access$1500(FacesCtrlSearchBinding.java:117)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$QueryModelImpl._performOneTimeActions(FacesCtrlSearchBinding.java:1916)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$QueryModelImpl.(FacesCtrlSearchBinding.java:1479)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.getQueryModel(FacesCtrlSearchBinding.java:334)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.internalGet(FacesCtrlSearchBinding.java:3652)
         at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
         at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:73)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.getProperty(UIXComponentBase.java:1485)
         at oracle.adf.view.rich.component.UIXQuery.getModel(UIXQuery.java:493)
         at oracle.adf.view.rich.component.UIXQuery._setupAndStoreContextInRequest(UIXQuery.java:301)
         at oracle.adf.view.rich.component.UIXQuery.encodeBegin(UIXQuery.java:222)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1672)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.access$500(PanelHeaderRenderer.java:41)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer$ChildEncoderCallback.processComponent(PanelHeaderRenderer.java:1509)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer$ChildEncoderCallback.processComponent(PanelHeaderRenderer.java:1492)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderChildrenAfterHelpAndInfo(PanelHeaderRenderer.java:628)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer._renderContentCell(PanelHeaderRenderer.java:1169)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderContentRow(PanelHeaderRenderer.java:575)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.encodeAll(PanelHeaderRenderer.java:248)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeTopFacet(PanelStretchLayoutRenderer.java:899)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeHorizontalPane(PanelStretchLayoutRenderer.java:1410)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:300)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$400(RegionRenderer.java:50)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:707)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:692)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:297)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:186)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:323)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag$FacetWrapper.encodeAll(IncludeTag.java:547)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeFacet(DecorativeBoxRenderer.java:440)
         at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer._encodeCenterPane(DecorativeBoxRenderer.java:711)
         at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeAll(DecorativeBoxRenderer.java:380)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
         at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
         at oracle.adfinternal.view.faces.renderkit.rich.PageTemplateRenderer.encodeAll(PageTemplateRenderer.java:68)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
         at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:274)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
         at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1275)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1677)
         at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:91)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:399)
         at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:350)
         at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:165)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1035)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:342)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:236)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NoClassDefFoundError: com/ibm/db2/jcc/DB2Connection
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:343)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:302)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.utils.classloaders.GenericClassLoader.defineCodeGenClass(GenericClassLoader.java:523)
         at weblogic.utils.classfile.utils.CodeGenerator.generateClass(CodeGenerator.java:73)
         at weblogic.utils.wrapper.WrapperFactory.generateWrapperClass(WrapperFactory.java:340)
         at weblogic.utils.wrapper.WrapperFactory.getWrapperClass(WrapperFactory.java:244)
         at weblogic.utils.wrapper.WrapperFactory.getWrapperClass(WrapperFactory.java:190)
         at weblogic.jdbc.wrapper.JDBCWrapperFactory$1.run(JDBCWrapperFactory.java:164)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.jdbc.wrapper.JDBCWrapperFactory.getWrapper(JDBCWrapperFactory.java:161)
         at weblogic.jdbc.pool.Driver.allocateConnection(Driver.java:251)
         at weblogic.jdbc.pool.Driver.connect(Driver.java:164)
         at weblogic.jdbc.jts.Driver.getNonTxConnection(Driver.java:651)
         at weblogic.jdbc.jts.Driver.connect(Driver.java:127)
         at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:364)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:968)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1147)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:6838)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:298)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:329)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:203)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:600)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:417)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:9053)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4606)
         ... 226 more
    Caused by: java.lang.ClassNotFoundException: com.ibm.db2.jcc.DB2Connection
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         ... 261 more

    Hi,
    a missing library
    Caused by: java.lang.ClassNotFoundException: com.ibm.db2.jcc.DB2Connection
    Frank

  • Error IFS 20010 while compiling the java files

    Hello Friends,
    The error "IFS 20010 - Failed to get PropertyResorceBundler".....
    This error is generating while compiling the java files which will connect to the iFS with the username, password and the servicename. this error points to the servicename not found.
    I will be very greatfull for any hits or help.....

    Samir,
    You must include $ORACLE_HOME/ifs1.1/settings in you classpath.
    Thank You
    Brian Ball
    null

  • Another Post concerning Error IFS-30002

    If I try to Upload a XML file containing the Attribute declaration below:
    <Attribute>
    <Name>FunctionalityImplementedFixed</Name>
    <DataType>String</DataType>
    <DataLength>512</DataLength>
    </Attribute>
    I get the Error IFS-30002.
    Can someone tell me whats wrong with this declaration. If I comment it, all works fine!
    Are there any Restrictions for the Length of the Attribute Name?
    null

    Reproduced the Problem. It is much easier to debug problems when we have the full stack trace.
    Eg in your case....
    Loading the following Type Definition
    <CLASSOBJECT>
    <NAME>TEST_OBJECT_01</NAME>
    <SUPERCLASS REFTYPE="NAME">DOCUMENT</SUPERCLASS>
    <ATTRIBUTES>
    <Attribute>
    <Name>FunctionalityImplementedFixed</Name>
    <DataType>String</DataType>
    <DataLength>512</DataLength>
    </Attribute>
    </ATTRIBUTES>
    </CLASSOBJECT>
    causes the following error.
    Thu Jul 27 12:16:53 PDT 2000: \Temp\XML Long Attribute Name Definition.xml:
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01401: inserted value too large for column
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.executeFetch(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.parseExecuteFetch(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithBatch(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecute(Compiled Code)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(Compiled Code)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(Compiled Code)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(Compiled Code)
    at oracle.ifs.server.S_LibraryObject.insertRow(Compiled Code)
    at oracle.ifs.server.S_LibraryObject.insertRows(Compiled Code)
    at oracle.ifs.server.OperationState.executeAtomicOperations(Compiled Code)
    at oracle.ifs.server.S_ClassObject.extendedPostInsert(Compiled Code)
    at oracle.ifs.server.S_LibraryObject.postInsert(S_LibraryObject.java:1341)
    at oracle.ifs.server.OperationState.executeAtomicOperations(Compiled Code)
    at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2348)
    at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:6596)
    at oracle.ifs.server.S_LibrarySession.newSchemaObject(S_LibrarySession.java:6707)
    at oracle.ifs.server.S_LibrarySession.newSchemaObject(S_LibrarySession.java:6689)
    at oracle.ifs.server.S_LibrarySession.DMNewSchemaObject(S_LibrarySession.java:6515)
    at oracle.ifs.beans.LibrarySession.DMNewSchemaObject(LibrarySession.java:6997)
    at oracle.ifs.beans.LibrarySession.NewSchemaObject(LibrarySession.java:4600)
    at oracle.ifs.beans.LibrarySession.createSchemaObject(LibrarySession.java:2584)
    at oracle.ifs.beans.parsers.SimpleXmlParserImpl.createObject(Compiled Code)
    at oracle.ifs.beans.parsers.SimpleXmlParserImpl.createObject(SimpleXmlParserImpl.java:394)
    at oracle.ifs.beans.parsers.SimpleXmlParser.readTopLevelObject(SimpleXmlParser.java:490)
    at oracle.ifs.beans.parsers.SimpleXmlParser.traverseTree(Compiled Code)
    at oracle.ifs.beans.parsers.XmlParser.parse(Compiled Code)
    at ifs.demo.common.xml.NewXmlParser.parse(Compiled Code)
    at oracle.ifs.utils.common.ParserHelper.parseExistingDocument(ParserHelper.java:352)
    at oracle.ifs.protocols.ntfs.server.FileProxy.parseFile(FileProxy.java:744)
    at oracle.ifs.protocols.ntfs.server.FileProxy.closeFile(Compiled Code)
    at oracle.ifs.protocols.ntfs.server.FileProxy.run(Compiled Code)
    I was able to get this information by using SMB / NT File System Driver to load the XML File. When an XML file fails to load under SMB the entire Verbose Stack Trace is dumped into a 'log' file in the same location as the XML was placed.
    In this case changing the Type File so that the DatabaseObjectName tag is used to provide a valid column name fixed the problem.

  • Why hub sample app windows phone comment characters ò è à cause error ?

    why hub sample app windows phone comment characters ò è à  cause error in
    global::System.Diagnostics.Debugger.Break(); ?

    Hi Orgest,
    Do you add these characters "ò è à" in the SampleData.json file? If so as far as I known the SampleData.json is initially a simple ASCII text file, so if we want to use these special characters, we need to do something with the encoding,
    for the detailed information, please try to refer to the following similar thread:
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/4d829e96-29dc-4029-911b-f32a40ac01a3/polish-characters-in-sampledatajson-file?forum=wpdevelop
    If I have misunderstood you, please try to post a simple reproduce project in here.
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for