Selection String Empty when Refresh Report

I'm using CR2008 in VS 2008 (WinForms not Web). This seems like a fairly easy thing to do (was in VB6/CR8.5).
My program provides a list of reports via the FileDialog, grabs the report name, loads the report document with the report, then the viewer displays the report. Everything works great to that point, but then the user refreshes the report and the selection string is changed to "" (empty) and all records from the table are displayed. Is there something that I'm missing here?
I have tried both 8.5 and CR2008 reports with the same results. The login seems to be working fine.
Any help would be appreciated,
Thanks
RA Smith
Puzzled
Code:
Private Sub OpenCrystalReportDirectoryToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenCrystalReportDirectoryToolStripMenuItem.Click
If FileIO.FileSystem.DirectoryExists(dirPath) = False Then
MsgBox("Crystal Reports Directory not valid. " & _
"Check that drive is mapped to S: drive.", MsgBoxStyle.Exclamation)
Else
Me.OpenFileDialog1.InitialDirectory = dirPath
If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
Try
rptName = OpenFileDialog1.FileName
If FileIO.FileSystem.DirectoryExists(rptName) = True Then
MsgBox("File not found", MsgBoxStyle.Exclamation)
Else
Me.reportDocument1.Load(rptName, OpenReportMethod.OpenReportByTempCopy)
Me.CrystalReportViewer1.ReportSource = Me.reportDocument1
End If
Catch Ex As Exception
MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
End Try
End If
End If
End Sub

Ludek,
This application does nothing but allow the user to select a report from a shared folder on our company server and display.  The report comes in with the correct selection string but with "old" data.  When the refresh button is pressed from the CR Viewer the selection changes to an empty string, therefore, displaying all records in the database table. 
The report that I'm currently trying to display has no parameter fields. The selection string in the report is:
       {table.amt} > 0.00 and {table.paid} <> "y"
So do I need to save this selection string and set it each time the user presses REFRESH?  What happens when I move to a report that has parameters?
I'm still reading microsoft help for VS2008/CR2008 but haven't found anything yet.  Not to say that I didn't miss a step here or there.  The only other thing that I noticed was a setting on the reportDocument called ReportAppServer which was set to <EMBEDDED_REPORT_ENGINE>.  I have been trying to locate information on this setting but there are no other options on the properties screen.  Could this be part of my problem?  I pulled the reportDocument from the toolbox onto the windows form.
I did not have a problem with this in the old VB6/CR8.5 viewer that I'll be replacing over the next few months as I move from VB6/CR8.5 to VS2008/CR2008.
Thanks,
RA Smith

Similar Messages

  • Weird APEX error when refreshing report

    Hi All,
    I am trying to refresh a report with dynamic action. And getting the following errors:
    {"dialog":{"uv":true,"row":[{"V":"Widget Failure
    ORA-20876: Stop APEX Engine,
    classic_report"}]}}
    I have identified the problematic part. I have a multi-select select list and my query goes like this:
    select o.order_id, s.salesrep_name
    from ml_orders o, ml_order_salesrep_mapping m
    where m.order_id(+) = o.order_Id
    and case when :P22_SALESREP is null then 1
    when :P22_SALESREP IS NOT NULL and m.salesrep_id in (:P22_SALESREP) then 1
    else 0
    end = 1Previously this line: when :P22_SALESREP IS NOT NULL and m.salesrep_id in (:P22_SALESREP) then 1 used to be just when :P22_SALESREP IS NOT NULL and m.salesrep_id i=:P22_SALESREP then 1 and it would work. But have requirement to make this select list multi-select.
    Any help appreciated.
    Using Apex 4.2, classic report with refresh by dynamic action upon button click.

    William Wallace wrote:
    I am trying to refresh a report with dynamic action. And getting the following errors:
    {"dialog":{"uv":true,"row":[{"V":"Widget Failure
    ORA-20876: Stop APEX Engine,
    classic_report"}]}}
    I have identified the problematic part. I have a multi-select select list and my query goes like this:
    select o.order_id, s.salesrep_name
    from ml_orders o, ml_order_salesrep_mapping m
    where m.order_id(+) = o.order_Id
    and case when :P22_SALESREP is null then 1
    when :P22_SALESREP IS NOT NULL and m.salesrep_id in (:P22_SALESREP) then 1
    else 0
    end = 1Previously this line: when :P22_SALESREP IS NOT NULL and m.salesrep_id in (:P22_SALESREP) then 1 used to be just when :P22_SALESREP IS NOT NULL and m.salesrep_id i=:P22_SALESREP then 1 and it would work. But have requirement to make this select list multi-select.It doesn't work like that. In
    select * from table where columnvalue in (7788, 7839, 7876)<tt>(7788, 7839, 7876)</tt> is an expression list and the predicate is evaluated as a membership condition.
    In
    select * from table where columnvalue in (:P1_X)<tt>:P1_X</tt> is a scalar string, incapable of containing multiple values.
    See +varying elements in IN list+ on Ask Tom, and +emulating string-to-table functionality using sql+ for potential solutions.
    In an APEX standard report, use a PL/SQL function body returning an SQL query report source with lexical substitution to produce a "varying IN-list":
    return 'select * from emp where empno in (' || :P1_X || ')';where <tt>P1_X</tt> has been sanitized for SQL injection and string values are properly quoted if necessary.

  • Error when refreshing report

    I received the error u201C AN ERROR HAS Occurred: NULL u201C when I leave the report open for more than 20 min. this happen when I clicking on the "NEXT " or u201CPREVIOUSu201D button(arrow) or refresh. Hope some one can help. 
    Thanks.
    Eddy

    Andy, here is how i fixed it:
    1.  Stop the Tomcat server in CCM
    2.  Go to c:\program files\business objects\tomcat\webapps\business objects\enterprise115\desktoplaunch\web-inf\web.xml file, then change these lines to look like this
    <listener>
    <listener-class>com.busnessobjects.sdk.ceutils.SessionCleanupListener</listener-class>
    </listener>
    <!--
    -->
    3. Search for timeout and change from 20 minites to your desire
    4. Save the file
    5. In CCM re-start Central Management Server, then Start the Tomcat server.
    good luck.
    Eddy.

  • Error when refreshing report region: ORA-20876: Stop APEX Engine

    I'm using Apex 4.2. On click of a button, I refresh 2 Standard Region Reports with a Dynamic Action. This dynamic action has been working without problems for WEEKS and all of a sudden i'm getting the ORA-20876: Stop APEX Engine error when I click the button.
    In the dynamic action, I removed the refresh of the second report and now the error does not occur. If I add the second refresh action back in, it throws the above error. I've even tried making the second report identical to the first and the refresh action fails. I don't understand why this is failing on the second refresh action since the second report & region is IDENTICAL to the first report now.
    Please help!
    Thanks,
    John

    I would use something like firebug to see how the AJAX call for the refresh is working. I would want to see what is begin posted and what's being returned from the call.
    That should shed some light on the issue.
    THanks
    -Jorge

  • LMS3.2/Campus5.2.1/UT: device selector empty when generate reports

    Hi,
    Customer has LMS 3.2 on windows. He has an issue on UT when he wants to generete a report, device selector is empty.
    User Tracking -> Reports -> Report Generator:
          * Application : Switch Port Report
          * Report : Reclaim Unused Down
    He has the same issue (device selector empty) with :
    - Campus Manager >> Configuration >> VLAN Configuration
    - Campus Manager >> Reports >> Report Generator >> Switch Port Report + Switch Port Summary
    - Campus Manager >> Visualization >> RMON Configuration
    I didn't find bug in BugID Lookup Tool.
    Which logs could give me information for this issue ?
    Many thanks

    This sounds like a problem with Object Grouping Services where Campus OGS is not able to communicate with CMF OGS.
    The shortest solution might be to just restart LMS, wait 15 minutes and then check again.
    If that does not help,
    1) Enable OGS debugging for both Campus and CMF
    NMSROOT = C:\progra~1\CSCOpx or /opt/CSCOpx (unix)
    NMSROOT/MDC/tomcat/webapps/cwhp/WEB-INF/classes/log4j-ogs.properties
    NMSROOT/MDC/tomcat/webapps/campus/WEB-INF/classes/log4j-ogs.properties
    Change ALL instances of FATAL, ERROR, WARN, and INFO to DEBUG.
    (might want to back these files up first, you will want to change them back when finished)
    2) Restart LMS (wait 5 mins betweens stop/start)
    windows
    > net stop crmdmgtd
    > net start crmdmgtd
    unix
    # /etc/init.d/dmgtd stop
    # /etc/init.d/dmgtd start
    3) Reproduce the problem
    4) Collect Log files in
    C:\progra~1\CSCOpx\log or /var/adm/CSCOpx/log (unix)
    CampusOGSClient.log
    CampusOGSServer.log
    CMFOGSClient.log
    CMFOGSServer.log  
    5) Open a case with TAC
    Good luck
    Tom

  • Error when refreshing report in Infoview

    Post Author: Anna-Marie Smith
    CA Forum: Administration
    We are running BO XI release 2.  I can run any report in Desktop Intelligence, but when I publish it and try to run it through Infoviewer I get the following error:
    Connection or SQL sentence error: (DA00005): &#91;Exception: CS, Bad Value for Field: Single Sign-On failed because the required components have not been property initialized.
    Can anyone please assist?
    Thank you.

    Hey folks,
    i suppose  we are facing the same error. But where do i check if the key for the server-side integration kit has expired? There is no explicit key in our CMC.
    We use BOE XI 3.1.
    Thanks in advance!

  • Query for selecting current date when running report

    Hi all
    I need a query that will copy today's date on posted sales order via DTW then that query will be linked to an alert and be sent to the sales manager every morning after the import went through successfully.
    The report at the moment is running fine as i pulling through the other info required the only problem is it's pulling all the sales orrders on the system , we want it to pull only the days orders imported.

    You could use either of these queries
    SELECT T0.DocNum, T0.DocDueDate, T0.CardCode, T0.CardName, T0.DocTotal, T0.U_ROUTEMARKTN, T0.U_ROUNDS, T0.U_DAYOFWEEK
    FROM [dbo\].[ORDR\] T0
    WHERE T0.DocDate = GETDATE()
    ORDER BY T0.U_ROUTEMARKTN, T0.U_ROUNDS, T0.U_DAYOFWEEK, T0.DocDueDate
    OR
    SELECT T0.DocNum, T0.DocDueDate, T0.CardCode, T0.CardName, T0.DocTotal, T0.U_ROUTEMARKTN, T0.U_ROUNDS, T0.U_DAYOFWEEK
    FROM [dbo\].[ORDR\] T0
    WHERE DATEDIFF(Day, T0.DocDate, GETDATE()) = 0
    ORDER BY T0.U_ROUTEMARKTN, T0.U_ROUNDS, T0.U_DAYOFWEEK, T0.DocDueDate

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • Group Tree issue when refreshing- Crystal for Visual Studio 2010 WPF Viewer

    Hello,
    We've run into an issue when refreshing reports with the WPF viewer for Visual Studio 2010. After the report is refreshed, the Group Tree is blank and it should have values. For example, you run a report and see values in the Group Tree. If you refresh the report with the same parameter values the Group Tree is blank.
    Has anyone run into this yet?
    Thanks,
    Tyler

    That is correct.
    I just did a quick test and was not able to reproduce the issue.
    Details of test:
    1) Create a new app;
    File | New | Project
    Visual Basic | reporting -> Crystal Reports WPF Application
    2) Add the "Open File" button to the viewer (ShowOpenFileButton off of the WPF viewer properties)
    3) Run app
    4) Browse to a report that has a number of groups >250
    5) Refresh report using the Refresh button on the viewer
    I'll work on this a bit later today, see if I can repro it another way. Meanwhile, can you provide mode details (code) on how you repro the issue?
    - Ludek

  • Select-String group

    I am trying to read a text file with Powershell than use select-string.
    When I do this:
    Statement Date: 04/12/15" | Select-String -Pattern "Statement Date: (?<digit>\d{2}[/]\d{2}[/]\d{2})" | select -Expand Matches | foreach {$_.groups["digit"].value} - it works fine. I get the value "04/12/15"
    This is what I have:
    gc -Path $file | Select-String -Pattern "Statement Date: (?<digit>\d{2}[/]\d{2}[/]\d{2})" | select -Expand Matches | foreach {$_.groups["digit"].value} - I get nothing
    Thanks for your help
    Freddy91761_1

    I think we need more info about what in the $file because above example seems to work if the file contains only "Statement Date: 04/12/15"
    PS:> set-content C:\temp\testfile "Statement Date: 04/12/15"PS:> gc C:\temp\testfileStatementDate: 04/12/15PS:> gc C:\temp\testfile  | Select-String -Pattern "Statement Date: (?<digit>\d{2}[/]\d{2}[/]\d{2})" | select -Expand Matches | foreach {$_.groups["digit"].value}04/12/15

  • CR 2008 & VS 2008 - Record Selection Gets Empty String on Report Refresh

    I'm using CR2008 in VS 2008 (WinForms not Web).   This seems like a fairly easy thing to do (was in VB6/CR8.5).
    My program provides a list of reports via the FileDialog, grabs the report name, loads the report document with the report, then the viewer displays the report.  Everything works great to that point, but then the user refreshes the report and the selection string is changed to "" (empty) and all records from the table are displayed.  Is there something that I'm missing here?
    I have tried both 8.5 and CR2008 reports with the same results.  The login seems to be working fine.
    Any help would be appreciated,
    Thanks
    RA Smith
    Puzzled
    Code:
        Private Sub OpenCrystalReportDirectoryToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenCrystalReportDirectoryToolStripMenuItem.Click
            If FileIO.FileSystem.DirectoryExists(dirPath) = False Then
                MsgBox("Crystal Reports Directory not valid. " & _
                       "Check that drive is mapped to S: drive.", MsgBoxStyle.Exclamation)
            Else
                Me.OpenFileDialog1.InitialDirectory = dirPath
                If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                    Try
                        rptName = OpenFileDialog1.FileName
                        If FileIO.FileSystem.DirectoryExists(rptName) = True Then
                            MsgBox("File not found", MsgBoxStyle.Exclamation)
                        Else
                            Me.reportDocument1.Load(rptName, OpenReportMethod.OpenReportByTempCopy)
                            Me.CrystalReportViewer1.ReportSource = Me.reportDocument1
                        End If
                    Catch Ex As Exception
                        MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
                    End Try
                End If
            End If
        End Sub

    Hi,
    Post your question in SDK forum.
    [NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio;
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all SDK queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Shweta

  • Invalid Year error when refreshing the report with date prompt

    Hi All,
    I am working on BO XI 3.1 with Informix database.
    When refreshing the report without any date prompt the report is running fine,but when applying the date prompt it is giving the error message
    "Invalid year in the date".
    I have tried changing the value in the advance tab of the object property to 'yyyy-mm-dd hh:mm:ss'
    But it also din't work for me.
    Please suggest.
    Thanks and Regards,
    Rishabh

    Hi Experts,
    Thanks for your suggestions.
    Since changing the PRM file was not a fesiable solution for us.
    We have manged to find a work around to solve this issue
    We have created the filters at universe level with following formula for all the date objects which we ere using at report level as a prompt:
    @Select(classname\objectname)=TO_DATE(@Prompt('Enter Date:','D',,mono,free,not_persistent), '%Y/%m/%d')
    Although when we parse this formula it wil give an error message saying 'illigle operation',
    still it will work when we use this at report level.
    Thanks and Regards,
    Rishabh

  • Sending an email when the report is being refreshed

    Hi All,
    Is it possible, in Answers, to send an email automatically when a report is being refreshed ?
    Thanks in advance,
    Lau

    You can do this multiple ways, As you mentioned using conditional ibot also. You should have flag or indicator in your database saying that ETL load was done. Then based on conditional request run a ibot. But the trick is after completing this ibot you need to turn of the flag.
    Other easiest way is Create a report which runs ibot, Make sure you checked Oracle BI Server Cache feed check box, save the ibot. At the end of ETL execute a command which runs the ibot job for you. There is a command mode application available in Oracle BI called SASchInvoke.exe. This application will run the ibot for you.
    here is the blog which explains more about it.
    http://oraclebizint.wordpress.com/2008/03/06/oracle-bi-ee-101332-integrating-schedulerdelivers-into-other-applications/
    - Madan

  • Error when refreshing WEBI report with Universe Connection Type "SSO"

    Hi Experts:
    We are trying to refresh the Webi report in Infoview with Universe Connection set as "Use Single Sign On when refreshing the report at view time", so that we can leverage SAP OLAP authorization variable from Bex Query which the Universe is built on.
    However got the error of "incomplete logon data" after all the configurations done following below blogs:
    SNC Part 1
    /people/ingo.hilgefort/blog/2009/07/03/businessobjects-enterprise-and-client-side-snc-part-1-of-2
    SNC Part 2
    /people/ingo.hilgefort/blog/2009/07/03/businessobjects-enterprise-and-client-side-snc-part-2-of-2
    We already have Win AD SSO to SAP setup, and in BO CMC, Win AD user is mapped to SAP user ID.
    The SNC settings are:
    - AD Account: service.test.bobj (all lower-letters)
    - 32-bit gsslib on the BO server, and 64 bit on the BW server side.
    - SNC0: p:service.test.bobj at DOMAIN
    - SU01 --> BO_Service ; SNC: p:service.test.bobj at DOMAIN
    - Entitlement system tab --> username: BO_Service
    SNC Name: p:service.test.bobj at DOMAIN
    - SNC settings tab:
    SNC Lib: c:\winnt\gsskrb5.dll
    Mutual Authentication settings: p:SAPServiceBP0 at DOMAIN
    In CMC, the role can be imported if "RFC activated" option unchecked in SNC0.
    I found a few threads on the same topic, but they are all not answered:
    SNC Client side configuration error
    SNC Configuration Error: Incomplete logon Data
    Can you please provide details of the solution if you have impleted a same scenario successsfully, or any thoughts to help the investigation?
    Thanks in advance!
    Regards,
    Jonathan

    Hi Ingo,
    Sorry for taking so long to reply, we are trying to set up server side trust and enable SSO; but we still couldn't success.
    What we did is:
    1. We followed installation guide chapter 6, generate certificate and PSE, etc. All looks good.
    2. Then we still have the "incomplete logon data" error when refreshing webi report after logon using Windows AD user ID.
    3. Then we trace the PFC connection, the log is as below. We checked several BO notes, e.g. 1500150, 1461247.. The part bothers us is that we even don't have URI displayed in the log when system trying to use SNC, and we couldn't get more info on this which make us very difficult to diagnosis.
    Can you please help? Thanks a lot!
    Thu Mar 31 10:54:46.857 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Authentication model for SAP connectivity is SSO
    Thu Mar 31 10:54:46.857 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Determining if we can connect using SNC. Calling CanAuthenticate...
    Thu Mar 31 10:54:46.919 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Unable to authenticate using SNC because the URI does not meet the minimum connection requirements.
    Thu Mar 31 10:54:46.919 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Determining if we can connect using SSO. Calling CanAuthenticate...
    Thu Mar 31 10:54:46.919 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Authentication model for SAP connectivity is SSO
    Thu Mar 31 10:54:47.013 ThreadID<1980> SAPMODULE : SAPAuthenticationService: The SAP SSO authentication process will fail because the SAP secondary credential are not properly updated and the password is blank.
    Thu Mar 31 10:54:47.013 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Trying to connect to SAP using this URI : occa:sap://;PROVIDER=sapbw_bapi,R3NAME=PB0,GROUP=BI_Group1,MSHOST=sapaupdb04,LANG=en,CLIENT=100,CATALOG="ZSPUM602",CUBE="ZSPUM602/ZSPUM602_Q50"
    Thu Mar 31 10:54:47.013 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Calling m_pRfcWrapper->RfcOpenEx() ...
    Thu Mar 31 10:54:47.154 ThreadID<1980> SAPMODULE : SAPAuthenticationService: RfcOpenEx(...) returned 0
    Thu Mar 31 10:54:47.154 ThreadID<1980> SAPMODULE : SAPAuthenticationService: Call to m_pRfcWrapper->RfcOpenEx() took 0.141 seconds
    Thu Mar 31 10:54:47.154 ThreadID<1980> SAPMODULE : SAPAuthenticationService: SAPAuthenticationService::~SAPAuthenticationService

  • Error when refreshing a report off of SFDC

    Post Author: jpettitt
    CA Forum: crystalreports.com
    When trying to refresh reports in CRDC embedded into SFDC the following error is shown.
    Error in File Check Billing: Database Connector Error.The report has been working for some time now and all of a sudden this error is showing when trying to refresh. Report was created in CR XI ProfessionalPlease advise

    Post Author: cwilson
    CA Forum: crystalreports.com
    Hi,Can you provide more info, specifically:Have you tried logging into CRDC directly and refreshing the report? Can you refresh the report in CR Designer?  Does it warn you that the database has changed when you try refreshing?Was the report created using tables, stored procedures or command objects?Thanks,Charles

Maybe you are looking for

  • Order by a function column

    Hi, Is it possible to sort a report based not just on databse columns but on function and summary columns in Reports? tnx Ivan

  • Transaction code for BAPI_COSTELEM_GETLIST

    hi Please advise does anyone know how to view all the cost element with reference to a Controlling Area and cost element group Transaction doing the same behavoir as in bapi_costelem_getlist

  • WebUtil dll download error: Unable to write to local file

    Hi, Hopefully I'm putting this in the correct forums. I'm setting up a Forms application that uses webutils. We're running Forms and Reports standalone (10.1.2.3.0) running on Solaris Sparc (64bit) and have just applied patch 7703734. As per Oracle S

  • Where Does A Switch Go In the Network?

    I've maxed out the ethernet jacks on my Airport Extreme Base Station (gigabit), and I have a gigabit switch to introduce to the network, but I'm not sure where it should go. Here is my current setup: Cable Modem -> AEBS -> (1) Apple TV (wireless); (2

  • Need help with loading images in executable Jar

    Hi, I've developed an application using netbeans that needs to load and display images. I use netbeans Clean and Build function to create an executable Jar file. When I run the executable Jar file it runs fine but when I come to a section of the appl