Exception trying to Create a Thick Client Application

JRCViewReport.java throws exception running as Java Application:
Crystal Reports-Berichtsviewer 11.8.0.671
java.vendor = Sun Microsystems Inc.
java.version = 1.5.0_09
os.name = Windows 2000
os.version = 5.0
os.arch = x86
Exception in thread "Command" java.lang.NoSuchMethodError: com.businessobjects.crystalreports.viewer.applet.ViewerUI.clearMessage()V
     at com.businessobjects.crystalreports.viewer.applet.h.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:595)
What is missing?

Hopefully the following kbase article will solve your issue:
http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2018313&sliceId=&dialogID=7454883&stateId=1 0 7456062
-MJ

Similar Messages

  • Printing Individual Reports in Thick Client Application

    <p>Hi</p><p>I am exploring the capabilities of printing in Thick Client Applications.</p><p>I am following Creating a Thick Client Application >> <a href="/node/321" title="http://diamond.businessobjects.com/node/321"><font color="#325087">http://diamond.businessobjects.com/node/321</font></a> </p><p>In the crystal report viewer, there is a main report panel whereby there many different objects generating a separate report each.</p><p>Left clicking the object in the main report panel loads the report on the right panel.</p><p>My challenge is that the user would need to "remember" which pages, object 3 (for example) generates such a report, if he/she wanted to print that report (object 3&#39;s report) seperately.</p><p>Is there an existing work-around to tackle this?</p><p>(For instance, right clicking on main report panel and print that individual report.)</p><p>Orbid</p>

    <p>Hi Orbid,</p><p>      I want to clarify what you are asking to ensure that I have a good understanding of the question. When you view a report you are seeing a Group tree on the left hand of the report viewer. If a user drills into this particular group they are presented with a new viewer pane displaying only that group&#39;s data (and potentially some data that was hidden at the top-level). You are wondering if there is a shortcut that can be applied to the group tree which would allow the user to print that group&#39;s data without viewing first. Is this correct? I am not too sure if this is possible but I will check with the Developer. I know that we can capture the Drill-down event but I am not sure if we can extend the click action to provide a context menu containing custom events (e.g. print) </p><p>I will look into this and get back to you.</p><p>Regards,<br />Sean </p>

  • Tomcat session management (serverid) in loadrunner - thick client application (single signon)

    Hi,
    We have a system that is currently undergoing scalability and performance tuning and we are having a problem with sessions randomly expiring.
    Here is our setup:
    Tomcat
    LoadRunner launching 20, 50, 100, 150, 200 users against the server
    (within a few mins of eachother)
    Thick client application (signle signon)
    As per the business requirement created the scripts with single sign on, however in vugen
    the scripts works fine. During the load test noticed that after few mins approx 7 mins started
    getting the error.
    Recording captured: Xml request and response
    Correlation: serverid (ex. 2142) login transaction
    Script details:
                                 Login (serverid)
                                 Action repeat iteration till the execution (replacing the serverid throught the script)
                                 Logout (replacing the serverid throught the script)
    But manually looks all fine the user can use the same one login throught the day without any expiration.
    Note: while the user gets login a jsessionid 12BDE39384940483HDFFKDH.1 created but the loadrunner unable to record anywhere in the script.
    Quick response will be appreciated.
    If you need any additional information please let me know.
    Regards,
    Suresh.

    I'm having the same problem, did you get any luck with this ?
    Thanks

  • Exception trying to create InitialContext

    I am using the following code for trying to post a message to JMS queue using JDeveloper 11.1.1.5. Sometimes i get exception at the step of creating InitialContext.
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    env.put(Context.PROVIDER_URL,"t3://xxxx:yyyy");
    env.put(Context.SECURITY_PRINCIPAL,"username");
    env.put(Context.SECURITY_CREDENTIALS,"password");
    Context jndiContext = null;
    try {
    jndiContext = new InitialContext(env);
    } catch (NamingException e) {
    System.out.println("Could not create JNDI API context: " +
    e.toString());
    System.exit(1);
    When i run the above code i get the following exception(seen in log window)
    Could not create JNDI API context: javax.naming.CommunicationException [Root exception is weblogic.socket.UnrecoverableConnectException: [Login failed for an unknown reason: ]
    When i checked the request and response using http analyzer the response is as follows.
    JDeveloper HTTP Analyzer encountered an error retrieving:
    CONNECT https://140.84.233.133:8001 HTTP/1.0
    An exception occurred while retrieving the response for https://140.84.233.133:8001.
    javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
         at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:65)
         at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:50)
         at oracle.jdevimpl.webservices.tcpmonitor.model.HttpMessageBase.readLine(HttpMessageBase.java:658)
         at oracle.jdevimpl.webservices.tcpmonitor.model.HttpRequest.read(HttpRequest.java:327)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.getResponse(ConnectionHandler.java:405)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.run(ConnectionHandler.java:331)
    Caused by: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(InputRecord.java:523)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:355)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1138)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1165)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.getSession(SSLSocketImpl.java:1916)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.negotiateSSL(ConnectionHandler.java:707)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.negotiateForwardedSSLConnection(ConnectionHandler.java:672)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.run(ConnectionHandler.java:311)
    I have included weblogic.jar,wlclient.jar files in project libraries. The server is up and its listening port is running fine. Should i make any changes to my project settings?
    Any help is greatly appreciated.
    Thanks
    Sai Ram
    Edited by: 902262 on Mar 20, 2012 9:28 PM
    Edited by: 902262 on Mar 20, 2012 9:45 PM
    Edited by: 902262 on Mar 28, 2012 1:59 AM

    The explanation is probably that the weblogic.jar and wlclient.jar are not meant to be compatible. For a description of different client options, see [WebLogic Server Client Types and Features|http://docs.oracle.com/cd/E17904_01/web.1111/e13717/basics.htm#SACLT126]. I highly recommend using the "thin t3 client" option for most use cases.
    HTH,
    Tom

  • Trying to create a JMS Client in LifeCycle Module. Sun Appserver 8

    I have created a Lifecycle module which initializes a set of JMX Beans. One of them is a JMX Client.
    I have created a JMS Queue Connection factory according to the guidelines and associated a JNDI name jms/TrQueueConnectionFactory.
    I have created a destination of type Queue with JNDI name jms/catalogQueue.
    When the code is trying to make get the reference to the queue connection factory, I encounter the following exception
    NamingException
    javax.naming.CommunicationException: serial context communication ex [Root exception is com.sun.enterprise.resource.PoolingException]
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:328)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.i2.catalog.services.request.BRR.startJmsConnection(BRR.java:662)
         at com.i2.catalog.services.request.BRR.startService(BRR.java:514)
         at com.i2.catalog.base.ServiceMBeanSupport.start(ServiceMBeanSupport.java:387)
         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:324)
         at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at com.i2.catalog.base.ServiceManager.start(ServiceManager.java:347)
         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:324)
         at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at com.i2.catalog.boot.CatalogController.start(CatalogController.java:401)
         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:324)
         at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at com.i2.catalog.boot.Bootstrap.start(Bootstrap.java:188)
         at com.transora.im.startup.SunAppServerStartup.initialize(SunAppServerStartup.java:164)
         at com.transora.im.startup.SunAppServerStartup.handleEvent(SunAppServerStartup.java:98)
         at com.sun.appserv.server.ServerLifecycleModule.postEvent(ServerLifecycleModule.java:192)
         at com.sun.appserv.server.ServerLifecycleModule.onStartup(ServerLifecycleModule.java:234)
         at com.sun.appserv.server.LifecycleModuleService.onStartup(LifecycleModuleService.java:194)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: com.sun.enterprise.resource.PoolingException
         at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:143)
         at com.sun.enterprise.naming.factory.AdministeredObjectFactory.getObjectInstance(AdministeredObjectFactory.java:67)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:301)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:304)
         ... 39 more
    Caused by: java.security.PrivilegedActionException: com.sun.enterprise.connectors.ConnectorRuntimeException
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.enterprise.connectors.AdministeredObjectResource.createAdministeredObject(AdministeredObjectResource.java:139)
         ... 42 more
    Caused by: com.sun.enterprise.connectors.ConnectorRuntimeException
         at com.sun.enterprise.connectors.util.SetMethodAction.handleException(SetMethodAction.java:110)
         at com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:96)
         ... 44 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.connectors.util.SetMethodAction.run(SetMethodAction.java:69)
         ... 44 more
    Caused by: java.lang.IllegalArgumentException: MQ:Queue:Invalid Queue Name -
         at com.sun.messaging.Queue.setName(Queue.java:64)
         ... 49 more
    It seems that there is a security issue. Is there any entry I need to have in the sever.policy to make it happen.
    Note: I have defined jdbc datasource for oracle and the jmx services are able to access the datasource via JNDI lookup
    Your help and direction is deeply appreciated.
    Thanks in advance,
    Chiths

    As I know, the lifecycle module is just an external RMI client that has your lifecycle controled by container.
    Please, correct me if I am wrong, but there is no way to access JMS or Datasource via external RMI clients.

  • Java Thick Client Parameter bug

    Hi Sean,
    The Crystal Report for Eclipse is looking awsome but you provided more functionalities for web development partial with standalone application's
    Also I think you have removed the dependency of CRCONFIG.xml for Java Thick Client(Stand Alone) ,so I think i dont need to place the CRCONFIG.xml in class path ,so its very nice.
    Presently I am using the latest jars provided in crystal report for eclipse.Prior to this I was using jars from ftp1.businessobjects.com/outgoing/ehf/CE/XI/JRCPatch.zip
    In that version of jars if my report XYZ.rpt has some paremeters and if i dont set the parameter values then the JAVA THICK CLIENT(REportViewerFrame) used to provide me a dialog in which i can padd the parameter for the report.
    Noe in the latest version of jars provided in eclipse the JAVA THICK CLIENT does not show the dialog nor does it opens the report instead it logs as
    "Some parameters are missing values"
    I dont know if I am missing something.
    Please guide on this.
    Also I want to ask that the Printing/Viewing issue has been fixed for Java Thick Client I had report about this few months back.
    We are very excited to use the Crystal Reports for Java but the (Java Thick Clinet)so Please help us we want to get rid of native code.
    Thanks,
    Debraj.

    <p>Hi Debraj,<br />     Providing more thick-client support is definitely an area we will look at resolving in the next release of CR4E. In the meantime you may find the following whitepaper useful:</p><p><a href="/node/321"><u><strong>http://diamond.businessobjects.com/node/321</strong></u></a></p><p>This will explain the necessary steps to create a thick-client application using CR4E. It sounds like your JAR files may be out of synch. We use the thick-client viewer for our Preview tab in the CR4E designer so you should notice pretty much exactly the same behaviour in your application. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Error creating a classic HFM application in Hyperion 11.1.2.2

    I am trying to create a classic hfm application in Hyperion 11.1.2.2. When i enter application name and other information and press submit it shows message 'Creating new application' but then gives an error
    The following exception has occurred in .(): oracle.epm.fm.common.exception.HFMException with message: Error occurred while creating the application.
    All of HFM related services are running fine. But I have stopped EPMA related services assuming they are not needed for Classic HFM application creation.
    Any ideas. Thanks in advance.

    Need to increase database (where HFM Schemas are created) processes and sessions. once after increase you should be able to open the application without any issues.
    Looks like newly redesigned hfm v11.1.2.2 need more db sessions & processes.

  • Regarding errors in client Application to invoke the webservices

    hi,
    i am using weblogic workshop to develop webservices on weblogic server8.1
    i develop webservice and wsdl file also
    but when i am writing dynamic client application to invoke the webservice( particular method)
    then it gives error like this
    javax.xml.rpc.JAXRPCException: failed to invoke operation 'requestContactList' due to an error in the soap layer (SAAJ); nested exception is: Message[ failed to serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}]StackTrace[
    javax.xml.soap.SOAPException: failed to serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}
         at weblogic.webservice.core.DefaultPart.invokeSerializer(DefaultPart.java:332)
         at weblogic.webservice.core.DefaultPart.toXML(DefaultPart.java:297)
         at weblogic.webservice.core.DefaultMessage.toXML(DefaultMessage.java:645)
         at weblogic.webservice.core.ClientDispatcher.send(ClientDispatcher.java:206)
         at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:143)
         at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:471)
         at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:457)
         at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:566)
         at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:419)
         at test.Client.main(Client.java:57)
    Caused by: weblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}
         at weblogic.xml.schema.binding.RuntimeUtils.lookup_serializer(RuntimeUtils.java:151)
         at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUtils.java:187)
         at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUtils.java:174)
         at weblogic.webservice.core.DefaultPart.invokeSerializer(DefaultPart.java:328)
         ... 9 more
         at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:586)
         at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:419)
         at test.Client.main(Client.java:57)
    Debugging Finished
    Exception in thread "main"
    my client program is
    import java.net.URL;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.Call;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.namespace.QName;
    * This class demonstrates a java client invoking a WebService.
    * @author Copyright (c) 2005 by BEA Systems, Inc. All Rights Reserved.
    public class Client {
    public static void main(String[] args) throws Exception {
    // Setup the global JAXM message factory
    System.setProperty("javax.xml.soap.MessageFactory",
    "weblogic.webservice.core.soap.MessageFactoryImpl");
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory",
    "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    // create service factory
    ServiceFactory factory = ServiceFactory.newInstance();
    // define qnames
    String targetNamespace =
    "http://www.openuri.org/"
    + "wsdl/http://192.168.2.98:7001/ContactListWeb/ContactListJWS/ContactTest.jws";
    QName serviceName =
    new QName(targetNamespace,
    "ContactTest");
    QName portName =
    new QName(targetNamespace,
    "ContactTestSoap");
    QName operationName = new QName("targetNamespace",
    "requestContactList");
    URL wsdlLocation =
    new URL("http://192.168.2.98:7001/ContactListWeb/ContactListJWS/ContactTest.jws?WSDL");
    // create service
    Service service = factory.createService(wsdlLocation, serviceName);
    // create call
    Call call = service.createCall(portName, operationName);
    // invoke the remote web service
    String result =(String)call.invoke(new Object[] {
    "BEAS"
    System.out.println("\n");
    System.out.println("This example shows how to create a dynamic client application that invokes a non-WebLogic Web service.");
    System.out.println("The webservice used was: http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl");
    System.out.println("The quote for BEAS is: ");
    System.out.println(result);
    }

    Hi I am also facing the issue. If any one got the solutoin for this please post it
    Thanks
    Kaal

  • Error while create/change configuration an application

    Hi,
    while doing the configuration application.
    when i am trying to create/change configuration an application.
    i am getting following error.
    Error:
    Service cannot be reached
    What has happened?
    URL http://os1gvzg.gemsconsult.com:8000/sap/bc/webdynpro/sap/configure_application call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system RT1 with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:os1gvzg_RT1_00-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden
    Your SAP Internet Communication Framework Team
    can anybody help me out.
    thanks in advance,
    Kiran.

    Hi,
    please check [documentation|http://help.sap.com/saphelp_nw2004s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm]
    grtz,
    Koen

  • Business Rules error when creating new classic planning application in 9.3.

    Im trying to create a new planning application using classis planning application wizard in Workspace. everything seems alright untill i gets an error saying "Business rules cant connect to Planning"
    other than this Business rules working fine and i can open business rules in other applications and i can access business rules repository in EAS.
    Any thoughts on this ?

    Further invesitgation bears this problem out.
    Oracle support recommend wrapping the SimpleType in a ComplexType. This does work, but now I have an extra wrapper element to deal with. I either have to use the wrapped type in my other complex, composed Types and/or add an external wrapping element when trying to create Business Services in BPM to call the BusinessRules I've created.
    This is a bit messy.
    To be clear, this does not seem to be an issue with Business Rules; the BR editor and generation of Facts (including simple restricted types -> JAXB 2.0/Java Enumerations) seems to work correctly. There seems to be an issue exposing DFs as Services. The code which generated the WSDL and its supporting types seems to choke on restricted SimpleTypes.
    As a side note, it seems that HumanTasks have a similar limitation
    Edited by: wylderbeast on May 31, 2011 3:27 PM

  • OPEN DATASET create .txt file in application server

    Hi,
    I'm trying to create a .txt into application server. Code as follows:-
    OPEN DATASET gv_filestatus FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc <> 0.
        WRITE: 'File cannot be opened.'.
      ENDIF.
      LOOP AT gt_pdfstatus INTO gw_pdfstatus.
        TRANSFER gw_pdfstatus TO gv_filestatus.
      ENDLOOP.
      CLEAR gw_pdfstatus.
    CLOSE DATASET gv_filestatus.
    But I got the error "GW_PDFSTATUS" cannot be a table, a reference, a string, or contain any of these objects. GW_PDFSTATUS is a work area with 5 fields of different type. I know that I can transfer table type of TLINE but I'm not sure how to convert my internal table gt_pdfstatus as TLINE.
    Please advise. Thanks.

    When transfering data to a file, you should convert the data to type char and then transfer it to the file.
    So, you would need to declare a structure with 5 fields of type c with the corresponding length of the original structure.
    Then move the corresponding fields of work are gw_pdfstatus to the character type structure. And then transfer the new structure to the file (gv_filestatus in your case).
    "for example if all the fields in the gw_pdfstatus  are of lenght 10, then declare a structure as follows
    data : begin of file_wa,
    f1(10) type c,
    f2(10)  type c,
    f3(10) type c,
    f4(10) type c,
    f5(10) type c,
    end of file_wa.
    OPEN DATASET gv_filestatus FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc  0.
        WRITE: 'File cannot be opened.'.
      ENDIF.
      LOOP AT gt_pdfstatus INTO gw_pdfstatus.
        move-corresponding gw_pdfstatus to file_wa.  " Add this
        TRANSFER file_wa TO gv_filestatus.   " Change this line
      ENDLOOP.
      CLEAR gw_pdfstatus.
    CLOSE DATASET gv_filestatus.
    Hope this helps.
    KR,
    Advait

  • Trying to create a mailing list.

    Hello,
    I am trying to create a mailing list application. i vcan send email to 1 person with the following procedure:
    begin
    html_email (
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_subject => 'Contact Us information',
    p_text => 'Contact Us information',
    p_html => '<DIV class=callout>You have a new contact us:</div>
    <hr />
    <DIV class=callout>Name: ' || :p1_name || '</DIV>
    <DIV class=callout>Address: ' || :p1_address || '</DIV>
    <DIV class=callout>City: ' || :p1_city || '</DIV>
    <DIV class=callout>State: ' || :p1_state || '</DIV>
    <DIV class=callout>Zip: ' || :p1_zip || '</DIV>
    <DIV class=callout>Phone: ' || :p1_phone || '</DIV>
    <DIV class=callout>Email : ' || :p1_email || '</DIV>
    <DIV class=callout>Categories: ' || :p1_category_id || '</DIV>
    <DIV class=callout>Comments: ' || :p1_comments || '</DIV>
    <hr />',
    p_smtp_hostname => 'mymail.com',
    p_smtp_portnum => '25');
    end;
    Is it possible to write a loop statemnet that will insert email addresses from a table into the p_to field of the procedure??
    Message was edited by:
    blackmamba11

    There are a few great PL/SQL books out there, eg.
    Oracle PL/SQL Programming (http://www.amazon.com/gp/product/0596009771?ie=UTF8&tag=inorap-20&link_code=as3&camp=211189&creative=373489&creativeASIN=0596009771) or Oracle PL/SQL Best Practices (http://www.amazon.com/gp/product/0596514107?ie=UTF8&tag=inorap-20&link_code=as3&camp=211189&creative=373489&creativeASIN=0596514107)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • JRC thick client dynamic parameter issue

    Hello,
    I am creating a thick client report viewer using CR for Java (v 12) to accompany our Java database client app and I am having trouble with reports that have parameter lists that should populate with database data when a rpt file is opened.
    For example, our users create groups of records in an Oracle database.  The report, upon opening, should prompt the user to select a group to use with the report.  The prompt appears, but the list of available group name values is empty.  The report populates the list as expected in both the XI and 2008 designer software, but no dice when the rpt file is opened via the ReportViewerBean.  If the group name is manually typed in, the report runs, so the replaceConnection seems to be working.
    I have looked through all of the examples, but I can't find one that addresses database-populated parameter lists specifically for a thick-client app.  Any help would be appreciated!
    Thanks.
    -Andrea

    Hi Ted,
    Yes, I'm using the latest CR4E and it's the web viewer.
    I've got more information from the report designer in how the dynamic lists were created in case there is something in there that hints at why it isn't working in our case. The reports are created in Crystal Reports 2008.
    From Field Explorer select New Param, under list of values select Dynamic. In Value column select the field name. Set Allow Multiple values to true.
    Then under the Select Expert choose Record. Select the field to link. Choose is Equal to and then choose the parameter created above.
    In code I'm not doing anything related to these lists.
    ReportClientDocument clientDoc = new ReportClientDocument();
    clientDoc.setReportAppServer("inproc:jrc");
    clientDoc.open(fullPath, OpenReportOptions.openAsReadOnly.value());
    CRJavaHelper.replaceDBConnection(clientDoc, username,
                             password, dbConnectionUrl, driverClassName, "",
                             schema);
    clientDoc.save();
    CRJavaHelper.addDiscreteParameterValue(clientDoc, "",
              producedByNameKey, producedByName);
    CRJavaHelper.addDiscreteParameterValue(clientDoc, "",
              logoKey, reportLogoUrl);
    reportSource = clientDoc.getReportSource();
    CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
    crystalReportPageViewer.setReportSource(reportSource);
    crystalReportPageViewer.setOwnPage(true);
    crystalReportPageViewer.processHttpRequest(req, resp,
                   getServletContext(), null);
    Is there anything to be done in code to get it to work?
    Regards,
    Patrick

  • Create PDF fillable job application form for business website

    I am trying to create a fillable job application for my company's website.  However, it needs to be a PDF file (that is still editable).  Is there any way to do this on a Mac?  I am a first time Mac user, and so far everything has been super confusing.  I am running Mac OS X Yosemite 10.10.2.
    Mainly- do I need to purchase Adobe Pro to accomplish this, or is there another option?  And how do I even begin?

    Adobe Acrobat Pro should work.

  • Exception when trying to create pool Object

    I've been trying to get the forte 4.0ee ProductRichClient example for container managed beans to work.
    After the deployment to Sun One I got following exception when I'm using the client:
    18.10.2002 10:56:20 com.iplanet.ias.appclient.Main <init>
    INFO:
    ---------AppClient Container--------
    18.10.2002 10:56:20 com.iplanet.ias.appclient.Main setTagetServerProperties
    INFO: ACC001:Using ClientContainer file: [C:\Sun\AppServer7\appserv\domains\domain1\server1\config\sun-acc.xml].
    18.10.2002 10:56:20 com.iplanet.ias.appclient.Main <init>
    INFO: ACC014: ORB host name: [NOD]
    18.10.2002 10:56:20 com.iplanet.ias.appclient.Main <init>
    INFO: ACC013: ORB port number: [3700]
    18.10.2002 10:56:21 com.sun.enterprise.appclient.AppContainer preInvoke
    INFO: ACC007: Initiating Login ...
    18.10.2002 10:56:21 com.iplanet.ias.appclient.Main <init>
    INFO: ACC009: Load Application Class: [CMPClient.SwingClient]
    18.10.2002 10:56:23 com.iplanet.ias.appclient.Main <init>
    INFO: Application main() finished normally
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: nested exception is: java.lang.RuntimeException: Caught Exception when trying to create pool Object ; nested exception is:
    java.lang.RuntimeException: Caught Exception when trying to create pool Object
    at com.sun.corba.ee.internal.iiop.ShutdownUtilDelegate.mapSystemException(Unknown Source)
    at javax.rmi.CORBA.Util.mapSystemException(Util.java:65)
    at CMPServer._ProductHome_Stub.create(Unknown Source)
    at CMPClient.SwingClient.AddRow_ButtonActionPerformed(SwingClient.java:127)
    at CMPClient.SwingClient.access$100(SwingClient.java:24)
    at CMPClient.SwingClient$2.actionPerformed(SwingClient.java:89)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1767)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1820)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:258)
    at java.awt.Component.processMouseEvent(Component.java:5021)
    at java.awt.Component.processEvent(Component.java:4818)
    at java.awt.Container.processEvent(Container.java:1525)
    at java.awt.Component.dispatchEventImpl(Component.java:3526)
    at java.awt.Container.dispatchEventImpl(Container.java:1582)
    at java.awt.Component.dispatchEvent(Component.java:3367)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3359)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3074)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3004)
    at java.awt.Container.dispatchEventImpl(Container.java:1568)
    at java.awt.Window.dispatchEventImpl(Window.java:1581)
    at java.awt.Component.dispatchEvent(Component.java:3367)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:191)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Caused by: java.rmi.RemoteException: nested exception is: java.lang.RuntimeException: Caught Exception when trying to create pool Object ; nested exception is:
    java.lang.RuntimeException: Caught Exception when trying to create pool Object
    at com.sun.enterprise.iiop.POAProtocolMgr.mapException(Unknown Source)
    at com.sun.ejb.containers.BaseContainer.postInvoke(Unknown Source)
    at CMPServer.ProductEJB2024414397_ConcreteImpl_RemoteHomeImpl.create(ProductEJB2024414397_ConcreteImpl_RemoteHomeImpl.java:33)
    at CMPServer._ProductEJB2024414397_ConcreteImpl_RemoteHomeImpl_Tie._invoke(Unknown Source)
    at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatchToServant(Unknown Source)
    at com.sun.corba.ee.internal.POA.GenericPOAServerSC.internalDispatch(Unknown Source)
    at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatch(Unknown Source)
    at com.sun.corba.ee.internal.iiop.ORB.process(Unknown Source)
    at com.sun.corba.ee.internal.iiop.RequestProcessor.process(Unknown Source)
    at com.iplanet.ias.corba.ee.internal.iiop.ServicableWrapper.service(Unknown Source)
    at com.iplanet.ias.util.threadpool.FastThreadPool$ThreadPoolThread.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: java.lang.RuntimeException: Caught Exception when trying to create pool Object
    at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(Unknown Source)
    at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(Unknown Source)
    at com.sun.ejb.containers.EntityContainer.getPooledEJB(Unknown Source)
    at com.sun.ejb.containers.EntityContainer.getContext(Unknown Source)
    at com.sun.ejb.containers.BaseContainer.preInvoke(Unknown Source)
    at CMPServer.ProductEJB2024414397_ConcreteImpl_RemoteHomeImpl.create(ProductEJB2024414397_ConcreteImpl_RemoteHomeImpl.java:25)
    ... 9 more
    Caused by: javax.ejb.EJBException: nested exception is: java.lang.NullPointerException
    at com.sun.ejb.containers.EntityContainer$EntityContextFactory.create(Unknown Source)
    ... 15 more
    Any thoughts on why this exception is being thrown?
    Thanks for any help!
    Richard

    this sample has been tested by the SunONE TOOLs QA
    and is working. Please check your deployment descriptors
    and use the cmp samples which come with S1AS to see if your
    descriptors are correct.

Maybe you are looking for

  • How to get the value of column from previous row to current row?

    Hi All, I am facing a critical problem in SQL query (for reporting purpose (COGNOS)). please reply to my query. REQUIREMENT: i want to retrive value of a column (this is not a table column, this will be calculated based expression) from previous row

  • Remove blank cells in a table?

    I have a Pages 5.0.1 document that's one three-column, multi-row table set up to print address labels for our annual holiday card mailing. As people come and go from the mailing list, we have a number of blank cells I would like to delete from the ta

  • Select Query with Date comparison

    Hi all, I need to select data from Infotypes based on AEDTM. I have an  internal table which has all the records from IT0000. I am looping into this internal table and then select data fom It0001 and IT0002 depending on the AEDTM of it0000. loop at i

  • Mail Store Name Updated

    Hi, I need to move a user from one mailbox store to another in Exchange 2007 using OIM. From what I could gather, there is no task for this. Is there a way to create a task that executes this modification (move user)? Thanks

  • Is it possible to create a Event Reciver program as Sandbox solution? - SharePoint 2010

    Dear All, I try to create a Event receiver program as SandBox solution in SharePoint 2010. I want to do a list item updation using this event receiver. Almost all the internet help & examples seems to be written with Farm solution and I got plenty of