Exception of Java in hand/Menu/Reporting Tools/XML Publisher report definition

Hello

We know this error:

The Java Exception: java.lang.NoSuchMethodError: oracle.xml.parser.schema.XSDBuilder.build (Ljava/io/InputStream; Ljava/net/URL ;) Loracle/xml/parser/schema/XMLSchema; : during the com.peoplesoft.pt.xmlpublisher.PSXPXsdUtils.getLevel0ColNames call. PSXPRPTDEFN_WRK (2 763). FUNCLIB. Name: GetBurstFieldValues of FieldFormula PCPC:3211 statement: 48
Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name statement: SetBurstFieldValues: 81
Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name: LoadReportDefn statement: 660
Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name: SelectReportDefn statement: 744
Called from: PSXPRPTDEFN. GBL. Postgeneration statement: 36 error Java noted was launched with a call for a given method.

It is if I add a new value in the report definition (8.5 Peoplesoft CRM): no customization in this

Thanks in advance...

Just saw this doc on MOS
E-BI/XMLP: error 'java.lang.NoSuchMethodError"received when creating or opening a report definition [1077734.1 ID]
indicating the xmlparserv2 - 904.jar should be removed from the the classpath and PS_HOME\classes resp.

See the doc of MOS for the detailed steps to solve your problem.

Kind regards

Halin

Tags: Oracle Applications

Similar Questions

  • Error: Not found Report Definition

    Hello world

    I created as a result of a simple program for operation getReportDefinition for BI publisher web services.
    package bip_webservices;
    import com.oracle.xmlns.oxp.service.PublicReportService.ItemData;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportResponse;
    import com.oracle.xmlns.oxp.service.PublicReportService.ParamNameValue;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportDefinition;
    import com.oracle.xmlns.oxp.service.PublicReportService.ScheduleRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.DeliveryRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.EMailDeliveryOption;
    
    import  java.io.FileOutputStream;
    import  java.io.OutputStream;
    import java.net.MalformedURLException;
    import java.rmi.RemoteException;
    import  java.util.Calendar;
    import javax.xml.rpc.ServiceException;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.encoding.ser.BeanDeserializerFactory;
    import org.apache.axis.encoding.ser.BeanSerializerFactory;
    import  javax.xml.namespace.QName;
    import  javax.xml.rpc.ParameterMode;
    import  java.net.URL;
    
    
    public class BIP_GetReportDefinition{
        
        public static void main(String[] args) throws ServiceException, MalformedURLException, RemoteException{
         try{
            final String bipEndpoint = "http://localhost:9704/xmlpserver/services/PublicReportService?wsdl";
            final String bipNamespace = "http://xmlns.oracle.com/oxp/service/PublicReportService";
            final String xdofile = "D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo";
                    
            Service service = new Service();
            Call call = (Call) service.createCall();
            call.setTargetEndpointAddress(new URL(bipEndpoint));
     
            service = new Service();
            call = (Call) service.createCall();
            call.setTargetEndpointAddress(new URL(bipEndpoint));
     
            System.out.println("BEGIN TESTING getReportDefinition");
     
            // register the ReportDefinition class
            QName reportDef = new QName(bipNamespace, "ReportDefinition");
            call.registerTypeMapping(ReportDefinition.class, reportDef,
                            BeanSerializerFactory.class, BeanDeserializerFactory.class);
     
            // register the ParamNameValue class
            QName nmvals = new QName(bipNamespace, "ParamNameValue");
            call.registerTypeMapping(ParamNameValue.class, nmvals, BeanSerializerFactory.class, BeanDeserializerFactory.class);
     
            call.setOperationName(new QName(bipNamespace, "getReportDefinition"));
            call.addParameter("reportAbsolutePath", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("userID", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("password", XMLType.XSD_STRING, ParameterMode.IN);
            call.setReturnClass(ReportDefinition.class);
     
            // issue the request
            ReportDefinition reportDefn = (ReportDefinition) call.invoke(
                new Object[] { xdofile, "administrator", "Administrator"});
     
            System.out.println("Report Definition Returns with \n Default Output Format = " + reportDefn.getDefaultOutputFormat());
            ParamNameValue params [] = reportDefn.getReportParameterNameValues();
     
            if (params != null) {
                for (int i = 0; i < params.length; i++) {
                    System.out.print("Parameter " + params.getName() + ":");
    if (params[i].getValues() != null) {
    for (int j = 0; j < params[i].getValues().length; j++)
    System.out.print(" " + params[i].getValues()[j]);
    } else
    System.out.print(" null");
    System.out.println(" - multiple values? " + params[i].isMultiValuesAllowed());
    }
    }
    System.out.println("END TESTING getReportDefinition");
    }catch(Exception e){
    e.printStackTrace();
    }
    }
    }


    When I try to run the above program, it gives OperationFailedException as "Report definition not found"

    At BI Publisher Server, it shows following error log
    [110509_031712796][java.lang.String][EXCEPTION] oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
            at oracle.apps.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
            at java.lang.Throwable.<init>(Throwable.java:196)
            at java.lang.Exception.<init>(Exception.java:41)
            at oracle.apps.xdo.servlet.ReportException.<init>(ReportException.java:36)
            at oracle.apps.xdo.servlet.CreateException.<init>(CreateException.java:18)
            at oracle.apps.xdo.servlet.ReportRepository.getReport(ReportRepository.java:79)
            at oracle.apps.xdo.server.impl.DefaultServerSession.getReport(DefaultServerSession.java:255)
            at oracle.apps.xdo.webservice.PublicReportServiceImpl.generateReportDefinition(PublicReportServiceImpl.java:503)
            at oracle.apps.xdo.webservice.PublicReportService.getReportDefinition(PublicReportService.java:267)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
            at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
            at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
            at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
            at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
            at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
            at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
            at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
            at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
            at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:351)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
            at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
            at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
            at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.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(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:595)
    While when you try to run Java IDE, it shows the following error log.
    AxisFault
     faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
     faultSubcode: 
     faultString: oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReportDefinition Failure: Due to oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
     faultActor: 
     faultNode: 
     faultDetail: 
            {}oracle.apps.xdo.webservice.exception.OperationFailedException:null
            {http://xml.apache.org/axis/}hostname:mildh0228
    
    oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReportDefinition Failure: Due to oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
            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 oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
            at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
            at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
            at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:206)
            at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:292)
            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 bip_webservices.BIP_GetReportDefinition.main(BIP_GetReportDefinition.java:71)
    PS: I spoke [http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/bip_webservice_101331.htm#CBADBFAF] for the above program.

    Please help solve my problem above if you have an idea. Thank you!

    the xdofile variable is incorrect. You do not provide the way to access on the disk, but the root, for example ' / HR Manager/employee salary report/employee salary Report.xdo.

    Concerning

    Tim

  • EPM 11.1.2.3.500 - book of financial reports error:; nested exception is: java.lang.NullPointerException

    Hi all

    We have up gradation of EMP 11.1.2.3.500 11.1.1.3.

    We have financial reports book for HFM.

    When we right click on the books and select 'complete book as PDF', we get after that error

    "the nested exception is: java.lang.NullPointerException.

    any idea?

    Kind regards

    Dattatray - Mate

    Hello

    We have solved this problem as follows,

    1. open this book report

    2 remove the reports within the book.

    This is how it works for us

    Kind regards

    -Matt Dattatray

  • java exception appear during the file adapter manages large xml

    Hi, guys.

    I use the file adapter to query a folder of my local.one get input.xml, then do something, then write output.xml.

    Input.XML format is:
    < my: DataRequestIns xmlns: my = "http://xml.netbeans.org/schema/MessageDefined" >
    <!-1 or more repetitions: - >
    < my: DataIns >
    < my: address > Ang Mo Kio Street 5.63 < / my: address >
    < my: birthday > 14/12/1970 < / my: birthday >
    < my: firstName > Sing1 < / my: firstName >
    < my: gender > 0 < / my: gender >
    < my: ID > 1001 < / my: ID >
    < my: lastName > NorthMan < / my: lastName >
    < my: postcode > 2002 < / my: postcode >
    < my: phone > 6665222 < / my: phone >
    < my: surname > on < / my: surname >
    single of < my: status > < / my: status >
    GSP < my: rental > < / my: rental >
    < my: > 11111 HP1 < / my: HP1 >
    < my: HP2 > 22222 < / my: HP2 >
    < my: passport > 123456878 < / my: passport >
    < my: company > ST < / my: company >
    < my: department > TO < / my: department >
    engineer of < my: occupation > < / my: occupation >
    < my: > 10 experience < / my: experience >
    < my: > 2 < / my: level >
    < my: certificate > top < / my: certificate >
    computer for < my: specialization > < / my: specialization >
    < my: staffNumber > 1020 < / my: staffNumber >
    < my: fax > 00200 < / my: fax >
    < my: email > [email protected] < / my: email >
    GSP < my: national1 > < / my: national1 >
    GSP < my: 2 > < / my: 2 >
    BPEL < my: interestingField > < / my: interestingField >
    land of < my: national > < / my: national >
    < my: overseas > Yes < / my: overseas >
    < / my: DataIns >
    < my: DataIns >
    ......
    < / my: DataIns >
    .....
    < / my: DataRequestIns >
    If my input.xml contain less than 1000 records, then it works, once more than 1000, then appear exception.for normal case, must have more than 10000 records to manage and file size is 11.2 MB.
    so, don't how or otherwise use the file adapter to cope?
    Thank you
    exception:
    SEVERE: An error occurred when parsing for the next trigger to fire.
    org.quartz.JobPersistenceException: failed to get the penny data DB connection
    CRE 'soaNonManagedDS': java.sql.SQLException: not able to retrieve the data source via
    JNDI url ' jdbc/SOALocalTxDataSource' weblogic.jdbc.extensions.ConnectionDeadSQLE
    Exception: weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.
    ResourceException: Failed to create the connection to the pool. The DBMS driver exception w
    * as: Socket read timed out [see nested exception: java.sql.SQLException: could no. *]
    * t recover the data source through the JNDI url ' jdbc/SOALocalTxDataSource' weblogic.jdbc.ext *.
    * NS. ConnectionDeadSQLException: weblogic.common.resourcepool.ResourceDeadExc *.
    * reconstructed: 0:weblogic.common.ResourceException: could not create a connection from the pool. T *.
    [* puisne exception driver DBMS: Socket read timed out] *.
    at org.quartz.impl.jdbcjobstore.JobStoreCMT.getNonManagedTXConnection (Jo
    bStoreCMT.java:167)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLoc
    k(JobStoreSupport.Java:3652)
    to org.quartz.impl.jdbcjobstore.JobStoreSupport.acquireNextTrigger (JobSt
    oreSupport.java:2654)
    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:)
    (* 235) *.
    Caused by: java.sql.SQLException: not able to retrieve the data source through a JNDI url ' jd
    BC/SOALocalTxDataSource ' weblogic.jdbc.extensions.ConnectionDeadSQLException: we
    blogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceExce
    receiving: could not create a connection from the pool. With the exception of the DBMS driver: Socket r
    EAD expired


    another exception:
    Handle error message.
    error while trying to process the message "com.collaxa.cube.engine.dispatch.
    message.invoke.InvokeInstanceMessage '; the reported exception is: Transaction Ro
    lledback. : weblogic.transaction.internal.TimedOutException: Transaction timed UO
    t 302 seconds
    BEA1-3468FC5E3C698D2A82F7
    at weblogic.transaction.internal.ServerTransactionImpl.wakeUp (ServerTran
    sactionImpl.java:1742)
    at weblogic.transaction.internal.ServerTransactionManagerImpl.processTim
    edOutTransactions(ServerTransactionManagerImpl.java:1609)
    to weblogic.transaction.internal.TransactionManagerImpl.wakeUp (operations
    onManagerImpl.java:1885)
    to weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp (Ser
    verTransactionManagerImpl.java:1519)
    at weblogic.transaction.internal.WLSTimer.timerExpired(WLSTimer.java:35)

    at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTunin
    gWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    *; nested exception is: weblogic.transaction.internal.TimedOutException: Transact *.
    ion has expired after 302 seconds
    BEA1-3468FC5E3C698D2A82F7
    This error was an exception that is thrown by the message handler.

    Published by: aris yu on December 27, 2009 23:55

    Hello

    It must explicitly mention batch while the file configuaring adapter.
    that is in step 5: check the file contains several messages and mention how many messages you want to process in a batch.
    i.e. If you have 10000 msgs in your file about the size as 500. Then, it will read 10000 records in 20 lots.

    Now while writing to a file, use Append = true property.
    You must add this property to fileadapter.wsdl (in jca:operation tag) that is created when you have completed the registration of the file with the write operation adapter.

    Concerning
    PavanKumar.M

  • oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError

    Hi all

    I have deployed the class files compiled the server getting the error JAVA_TOP, below, it happens in one of the instance of the client.

    "oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError".

    What is the Cause for this? Any library is missing in java top serve in this case? Any idea?

    Error details:

    oracle.apps.fnd.framework.OAException: oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg = oracle, classloader, util, AnnotatedClassFormatError

    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)

    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)

    at _OAErrorPage._jspService(_OAErrorPage.java:221)

    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)

    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:390)

    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)

    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)

    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)

    .....

    # # 0 in detail

    java.lang.NoClassDefFoundError: oracle, classloader, util, AnnotatedClassFormatError

    at xxxxxx.oracle.apps.pos.isp.webui.XXXPosHpageRtColCO.XXXXXXGenerateLog(XXXPosHpageRtColCO.java:362)

    at xxxxxx.oracle.apps.pos.isp.webui.XXXPosHpageRtColCO.processRequest(XXXPosHpageRtColCO.java:66)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:604)

    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)

    at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:353)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:976)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:943)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:663)

    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)

    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:976)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:943)

    .....

    I found the solution, that was the problem because the *.class file moved mode binary transfer to server $Java_Top.

  • Failed to get the connection-; First exception is: java.lang.NullPointerExceptio

    Hello:

    When I got to connection requests, click any OAM following errors. All forms are good.
    An error has occurred!
    Failed to get the connection-; First exception is: java.lang.NullPointerException

    I don't know when it started to be like that, but I applied a few patches yesterday. Thanks in advance for your help.

    Salvation;

    You don't need to check the log file. Check the log file for details of the error apache.

    By the way you are trying
    1. close apps services
    2. run autoconfig on dbtier that
    3. run autoconfig on appstier and make sure that you have no error message, than check again question

    Respect of
    HELIOS

  • oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang

    Hello

    I have this problem when launching the model to test it. Insert table in detail

    [c ode]
    java.lang.NullPointerException [123]
    to org.codehaus.groovy.runtime.dgmimpl.NumberNumberMultiply$ IntegerLong.call (NumberNumberMultiply.java:336)
    at bc4j.uvo_EmpView_tax_null.gs.run(bc4j.uvo_EmpView_tax_null.gs.groovy:1)
    at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1032)
    at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1081)
    at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:911)
    at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2135)
    at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1740)
    at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:1891)
    at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:834)
    at oracle.jbo.server.ViewRowImpl.getAttrInvokeAccessor(ViewRowImpl.java:916)
    at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:864)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1157)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:751)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:779)
    at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)
    at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.refreshControl(JUCtrlAttrsBinding.java:245)
    at oracle.jbo.jbotester.BindingAdapter.refresh(BindingAdapter.java:69)
    at oracle.jbo.jbotester.panel.CardPanel.refreshAll(CardPanel.java:128)
    at oracle.jbo.jbotester.panel.RowSetPanel.refreshAll(RowSetPanel.java:206)
    at oracle.jbo.jbotester.panel.RowSetPanel.navigated(RowSetPanel.java:154)
    at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:264)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3660)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3631)
    at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3414)
    at oracle.jbo.server.ViewRowSetIteratorImpl.doInsertRow(ViewRowSetIteratorImpl.java:2390)
    at oracle.jbo.server.ViewRowSetIteratorImpl.insertRow(ViewRowSetIteratorImpl.java:2333)
    at oracle.jbo.server.ViewRowSetImpl.insertRow(ViewRowSetImpl.java:3101)
    at oracle.jbo.server.ViewObjectImpl.insertRow(ViewObjectImpl.java:10656)
    at oracle.jbo.jbotester.NavigationBar.doInsertAction(NavigationBar.java:137)
    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:109)
    to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6267)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6032)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)



    [132] DCBindingContainer.reportException: oracle.jbo.JboException
    oracle.jbo.JboException [133]: Houston-29000: Unexpected exception caught: java.lang.NullPointerException, msg = null
    at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1048)
    at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1081)
    at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:911)
    at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2135)
    at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1740)
    at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:1891)
    at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:834)
    at oracle.jbo.server.ViewRowImpl.getAttrInvokeAccessor(ViewRowImpl.java:916)
    at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:864)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1157)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:751)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:779)
    at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)
    at oracle.jbo.uicli.jui.JULabelBinding.updateValuesFromRow(JULabelBinding.java:114)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.updateNavigated(JUCtrlValueBinding.java:287)
    at oracle.jbo.uicli.binding.JUIteratorBinding.navigated(JUIteratorBinding.java:299)
    at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:264)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3660)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3631)
    at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3414)
    at oracle.jbo.server.ViewRowSetIteratorImpl.doInsertRow(ViewRowSetIteratorImpl.java:2390)
    at oracle.jbo.server.ViewRowSetIteratorImpl.insertRow(ViewRowSetIteratorImpl.java:2333)
    at oracle.jbo.server.ViewRowSetImpl.insertRow(ViewRowSetImpl.java:3101)
    at oracle.jbo.server.ViewObjectImpl.insertRow(ViewObjectImpl.java:10656)
    at oracle.jbo.jbotester.NavigationBar.doInsertAction(NavigationBar.java:137)
    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:109)
    to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6267)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6032)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.lang.NullPointerException
    to org.codehaus.groovy.runtime.dgmimpl.NumberNumberMultiply$ IntegerLong.call (NumberNumberMultiply.java:336)
    at bc4j.uvo_EmpView_tax_null.gs.run(bc4j.uvo_EmpView_tax_null.gs.groovy:1)
    at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1032)
    ... 52 more
    # # 0 in detail
    java.lang.NullPointerException
    to org.codehaus.groovy.runtime.dgmimpl.NumberNumberMultiply$ IntegerLong.call (NumberNumberMultiply.java:336)
    at bc4j.uvo_EmpView_tax_null.gs.run(bc4j.uvo_EmpView_tax_null.gs.groovy:1)
    at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1032)
    at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1081)
    at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:911)
    at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2135)
    at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1740)
    at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:1891)
    at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:834)
    at oracle.jbo.server.ViewRowImpl.getAttrInvokeAccessor(ViewRowImpl.java:916)
    at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:864)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1157)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:751)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:779)
    at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)
    at oracle.jbo.uicli.jui.JULabelBinding.updateValuesFromRow(JULabelBinding.java:114)
    at oracle.jbo.uicli.binding.JUCtrlValueBinding.updateNavigated(JUCtrlValueBinding.java:287)
    at oracle.jbo.uicli.binding.JUIteratorBinding.navigated(JUIteratorBinding.java:299)
    at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:264)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3660)
    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3631)
    at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3414)
    at oracle.jbo.server.ViewRowSetIteratorImpl.doInsertRow(ViewRowSetIteratorImpl.java:2390)
    at oracle.jbo.server.ViewRowSetIteratorImpl.insertRow(ViewRowSetIteratorImpl.java:2333)
    at oracle.jbo.server.ViewRowSetImpl.insertRow(ViewRowSetImpl.java:3101)
    at oracle.jbo.server.ViewObjectImpl.insertRow(ViewObjectImpl.java:10656)
    at oracle.jbo.jbotester.NavigationBar.doInsertAction(NavigationBar.java:137)
    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:109)
    to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6267)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6032)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    [c ode]

    OBE: TotalComp Expression: NullPointerException

  • First exception is java.lang.SecurityException:

    Hello
    When I access a stateless ejb3, remotely, bean I get the following error

    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: user: weblogic, could not be authenticated.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:42)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.pushSubject(WLInitialContextFactoryDelegate.java:677)
    at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:468)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:375)
    at weblogic.jndi.Environment.getContext(Environment.java:315)
    at weblogic.jndi.Environment.getContext(Environment.java:285)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    to javax.naming.InitialContext. < init > (InitialContext.java:197)
    at test.ejbclient.EJBTestClient.main(EJBTestClient.java:24)
    Caused by: java.lang.SecurityException: user: weblogic, could not be authenticated.
    at weblogic.common.internal.RMIBootServiceImpl.authenticate(RMIBootServiceImpl.java:116)
    at weblogic.common.internal.RMIBootServiceImpl_WLSkel.invoke (unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    to weblogic.rmi.internal.BasicServerRef$ 1.run(BasicServerRef.java:477)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)


    I, m access this Eclipse, where can I disable the security option

    You must specify your principal and credentials to access the JNDI.
    Here's an example of how to create an initial context:
    Hashtable props = new Hashtable();
    props.put (Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    props.put (Context.PROVIDER_URL, "t3: / / weblogic:7001" "");
    props.put (Context.SECURITY_PRINCIPAL, 'fred');
    props.put (Context.SECURITY_CREDENTIALS, "seafood");
    Context ctx = new InitialContext (props);

  • How to print barcodes in Oracle XML Publisher report

    Hello

    We have a report of rdf that prints the bar code in the start page based on a custom procedure of MarkView. It works well with Oracle Reports.

    But given that this report was a matrix report, we change it a linear relationship by Oracle XML Publisher report.

    We have every possible thing in the new Oracle XML report... But we are not able to print data from barcode which is BLOB in the XML report...

    Can someone help me on this? We have dates UAT at the corner...

    We have a RTF model.

    Help as soon as possible.

    Thank you

    AFA

    Hello

    I even referring to this blog.

    How to create a report with a field of image (.jpeg). Maniacs Oracle & #039; Notes

    The bar code is original

    Thank you and best regards,

    AFA

  • Where the report definition files are stored?

    Hi guys

    I found after I deployed a third party plug-ins, the report definition files (files *.) SQL) inside the jar file is not found under oracle home.

    But for the host target pre-installed , I find both of the file:
    for the definition of target file:
    +/U01/app/Oracle/OracleHomes/agent10g/SYSMAN/Admin/metadata/host.XML+
    for the report definition file:
    +/U01/app/Oracle/OracleHomes/oms10g/SYSMAN/Admin/emdrep/SQL/core/latest/targetTypes_sql/host.SQL+

    I ran 'grep' and 'find' in order to get the file but failed, it's just the way it works? If not after the deployment where are the *.sql file stored?

    Thanks in advance for any answers.

    When you import the plug-in, its content and are put in a table of repository. So when you go to exploit on the plugin, you don't need to join the file system of an individual WHO (which you might have several), you only need access to the repository.

    The best way to get to one of the report files is to export the plug-in and unjar the MPA, he gets put in. The naming of the files will be a little difficult to understand which is the file you want, but they will all be there...

  • How to see the Greek characters inside a report PDF (made with XML Publisher)

    Hello
    I just patched my e Business Suite (ver. 11.5.9) in order to use XML Publisher 5.6.3.
    It works fine, but I have a big problem when I want to see Greek characters inside my report; rather than see the Greek characters, I see only "?"

    I tried to add some fonts under the responsibility of the administrator of the XML Publisher after the Doc ID: 373377.1 'How to install a font using XML Publisher administrator', but my problem remains intact: I do not see my Greek characters

    Do I need to add all the other fonts on the file system? and where? (under what path), or I put something at the level of responsibility XML Publisher administrator (under the Administration link)?

    Any help will be appreciated, because it is very urgent to know how to solve this problem.

    Thanks in advance

    Alex

    Alex,

    Check the value of the variable $AF_CLASSPATH, then make sure that JRE_TOP/lib/fonts belongs to this variable env (in addition to $CLASSPATH).

    Note: 353164.1 - Chinese characters appear as Question Marks (?) When you use a data model
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=353164.1

    Note: 399518.1 - Arabic characters appear as question marks
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=399518.1

  • Oracle reports XML-&gt; model RTF in XML Publisher output

    Hello

    Is it possible to run the output of a report from Oracle (formerly, made with the report writer) reports through the postprocessor output for get templated RTF PDF?

    The report is already out well-formed XML and I can use the Plugin of Word XML Publisher to turn it into a PDF file. However, I want to 'Set', 'concurrent demand' such as the XML is automatically transformed into a PDF file.

    I guess it would be an another "executable" as XDODTEXE who do that?

    -Johan

    Hi Johan

    Check out the following

    http://www.Oracle.com/technology/products/XML-Publisher/docs/XMLEBSRep.PDF

    Departure from the last demo (white image) here

    http://www.Oracle.com/technology/products/XML-Publisher/demoshelf/shelf.html

    Tim

  • How to make a Menu report

    Hi friends,

    I created two 2 Oracle reports, report1.rdf and report2.rdf. Currently I have it in my PC with Oracle Developer Suite 10g installed. How to deploy it
    my PC to the end-users so that he or she has only runtime executables and no privilege to report designer? Later in Dev 10g, you can not install custom to get the
    report DURATION only :(
    One last thing, how to make a menu for my user that looks like this:
    REPORT PRINTING MENU
    ===============
    
    1. Print Report1
    
    2. Print Report2
    
    3. Exit
    Y at - it a menu generator?


    Thank you very much

    Hello

    Developer Suite is a single component developer. For end users, you must have based application server reports Services: http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm

    Reports is only to create reports. But you can call reports from any other environment/tool with which you can create a user interface (Java, Apex,...)

    Concerning
    Rainer

  • Menu administration tools is missing from the Start Menu of Vista

    I don't know how or when that happened, but today when I opened the whole start, the administration tools option menu was missing.  I went into the folder program Data\Microsoft\Windows\Start Démarrer\Programmes and the Administrative Tools folder was there with all its contents. Yet it does not appear when you click on the Start button.  Any ideas what the cause and healing can be?

    Hello

    We are pleased to know that you were able to solve this problem.

    If you have any other questions about Windows operating systems, please get back to us.

  • Lightroom 5.7.1 icon in the menu of tools down but does not open fullscreen

    When I double click icon of Lightroom 5.7.1 it open icon in the tools at the bottom of the screen menu and when I move the cursor over the icon, a small window opens above the slider, but is not full screen so I can read what it says.  So I can't open it completely.

    I have a PC running Windows 7 Pro 64 bit and re-installed Lightroom 5.7.1 and ran repair and it will not even go full screen so I can see what the small window.

    Hi photoBeard,

    Please reset the preferences of Lightroom 5 suite to retrieve the catalog and images after resetting preferences in Adobe Photoshop Lightroom , and let us know if this helps.

    Kind regards

    Assani

Maybe you are looking for