Progress Bar in Oracle Reports

Is it possible to implement a progress bar that shows how far along the report is in generating?
If so, what is the best way to implement it?
Does anyone have sample code?
Thanks.

Not within reports - if this is possible, you would need to do it in either forms or another application.

Similar Messages

  • How can i use Progress bar in IR Report

    Hi ,
    I have created IR Report based on the View so, it's been taking 10-15 mins of time to execute the IR Report. Here user want to see the Progress bar while executing the IR Report. How can i use Progress bar in IR Report.
    Anybody have idea on Progress bar please help me.
    Regards
    Narender B

    Hi ,
    Thanks for your information.
    I am new to the APEX.*i need to show Progress bar while opening the each page* then user can know some process is happening from the backside and i don't know where i need to add and call the below function.could you please provide the steps for the progress bar.
    In my application there are almost 100 pages are there so, i need to show progress bar on each page while opening .could you please provide Global function to call on each page.
    function html_url_Progress(pThis){ 
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    //doSubmit('APPLY_CHANGES');
    redirect(pUrl);
    Regards
    Narender B

  • PROGRESS BAR while loading report

    Hi Fiends,
    I have a classic report w/ a link and this link open a other page and this page is a report with a report model ( CSV ).. and this load is too slow and i wanna include a progress bar like this site [link]http://apex.oracle.com/pls/otn/f?p=987654321:26[link] and this progress bar will be show while the report is loading ...
    Anybody knows how to do this ?
    Tks
    Zander

    Hi,
    Have you seen :
    [url http://apex.oracle.com/pls/otn/f?p=65560:2:0::NO] Loading Icon plugin
    [url http://www.apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/loading-icon_81.html]Click here to see the features and download
    And I think that it is good to check [url http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_plsql_job.htm#AEAPI1203]APEX_PLSQL_JOB
    Regards,
    Fateh
    Edited by: Fateh on Sep 22, 2012 1:26 AM

  • Progress bar while calling reports from Forms

    I have got a form (FORMS 6i) which calls a report (Reports 6i). This call results in the invocation
    of a reports engine which might take time (may be more than a minute) in bringing up the desired report. Is there any way i can show a progress bar to the user (like in any Windows application) that the report is getting generated? Because the user is currently confused on whether the report is really generated or not while waiting for the report.
    Thanks in advance
    PRS

    I have got a form (FORMS 6i) which calls a report (Reports 6i). This call results in the invocation
    of a reports engine which might take time (may be more than a minute) in bringing up the desired report. Is there any way i can show a progress bar to the user (like in any Windows application) that the report is getting generated? Because the user is currently confused on whether the report is really generated or not while waiting for the report.
    Thanks in advance
    PRS

  • Creating progress bar in oracle forms 6i

    Hii
    I have a push-button (pb_submit)
    when when_button_pressed trigger fired...I have a database main procedure to be called.
    inside that procedure i am calling 25 procedures.
    and all 25 Procedures will be executed sequencially.
    I want to use a Progress bar...
    so that user will get to know hw much % completed
    if main procedure(total 25 procedures inside) is completed successfully then progress bar should show 100%
    like wise if 1 procedure completed then 4 %
                 if 2 procedure completed then 8 %
    total 25 procedure completed then 100%
    how to implement this logic.
    and if in between 1 procedure failed then progress bar should stop at that incident.
    and it should start from dat instant only if again that failed procedure run successfully.
    should i post my codes here.ok...here is the codes written in the button(when_button_pressed trigger)
    DECLARE
      l_Last_Record      NUMBER  := 0  ;
      l_Prg_Process_Id    NUMBER     ;
      l_Prg_Process_Id_1  NUMBER     ;
      l_Prg_Id       VARCHAR2(15)  ;
      l_Alert_Result    VARCHAR2(1)   ;
      l_Validation_Msg   VARCHAR2(500) ;
      l_Path        VARCHAR2(240) ;
      File_Name       VARCHAR2(250) ;
      l_file_exists     BOOLEAN       ;
      l_file_len        NUMBER     ;
      l_blocksize       BINARY_INTEGER;
      o_Status       VARCHAR2(1)  ;
      o_User_Selection_Ca1 VARCHAR2(1)  ;
      o_User_Selection_Ca2 VARCHAR2(1)  ;
      o_User_Selection_Ca3 VARCHAR2(1)  ;
      CURSOR C_Validation IS
      SELECT Cpv_Validation_Type     ,
             Cpv_Validation_Input    ,
             Cpv_Validation_Action  ,
             Cpv_Validation_Active_Flag
      FROM   Config_Process_Validation
      WHERE  Cpv_Program_Id = l_Prg_Id
      AND   Nvl(Cpv_Validation_Active_Flag, 'N') = 'Y'
      ORDER BY Cpv_Validation_Sequence;
    BEGIN
    SELECT RV_HIGH_VALUE
    INTO   l_Path
    FROM   CG_REF_CODES
    WHERE  Rv_Domain    = 'DERV_DATA_FILES'
    AND   Rv_Low_Value = 'DRV_FILES';
    Go_Block('Process');
      Last_Record;
      l_Last_Record := :System.Cursor_Record; 
      First_Record;
      FOR i IN 1 .. l_Last_Record
      LOOP
      Go_Record(i);
      l_Prg_Id := :Prog_Id;
      IF NVL(:Process.Cb_Select,'N') = 'Y' THEN
       :Query.Current_Status := 'Current Process: ' || :Process.Prog_Desc;
       Synchronize;
       --Validate if program is already in running mode or already completed
       SELECT NVL(MAX(DECODE(Prg_Status, 'R', 999999999, 'C', Prg_Process_Id)), 0)
       INTO   l_Prg_Process_Id
       FROM   Program_Status,
           Parameter_Master
       WHERE  Prg_Dt      = Pam_Curr_Dt
       AND    Prg_Cmp_Id  = l_Prg_Id
       AND    Prg_Exm_Id  IN ('ALL', :Query.Exchange)
       AND    Prg_Status  IN ('R', 'C');
       IF l_Prg_Process_Id = 999999999 THEN
         P_Show_Alert(l_Prg_Id||' Process is already running.','A',l_Alert_Result);
        --RAISE Form_Trigger_Failure;
       ELSIF l_Prg_Process_Id > 0 AND :Execution_Flag <> 'M' THEN
        P_Show_Alert(l_Prg_Id||' Process already run. It can not run twice. ','A',l_Alert_Result);
        RAISE Form_Trigger_Failure;
       END IF;
       --Validate mandataory process, process specific validation and message
       FOR i IN C_Validation
       LOOP
        IF i.Cpv_Validation_Type = 'MANDATORY' AND i.Cpv_Validation_Active_Flag = 'Y' THEN
           SELECT Count(1)
           INTO   l_Prg_Process_Id_1
           FROM   Program_Status,
               Parameter_Master
         WHERE  Prg_Dt      = Pam_Curr_Dt
         AND    Prg_Cmp_Id  = i.Cpv_Validation_Input
         AND    Prg_Exm_Id  IN ('ALL', :Query.Exchange)
         AND    Prg_Status  = 'C'
         AND    Prg_Process_Id IN (SELECT MAX(Prg_Process_Id)
                      FROM   Program_Status,
                          Parameter_Master
                      WHERE  Prg_Dt      = Pam_Curr_Dt
                      AND    Prg_Cmp_Id  = i.Cpv_Validation_Input
                      AND    Prg_Exm_Id  IN ('ALL',:Query.Exchange)
                      AND    Prg_Status  = 'C');
         IF l_Prg_Process_Id_1 = 0 THEN
          P_Show_Alert(i.Cpv_Validation_Input||' Mandatory Process NOT completed successfully.','A',l_Alert_Result);
          RAISE Form_Trigger_Failure;
         END IF;
        ELSIF i.Cpv_Validation_Type = 'MESSAGE' THEN
         P_Show_Alert(i.Cpv_Validation_Input, i.Cpv_Validation_Action, l_Alert_Result);
         IF l_Alert_Result = 'N' THEN
          RAISE Form_Trigger_Failure;
         END IF;
        ELSE   
         --- OTHER PROCESS SPECIFIC VALIDATION
         l_Validation_Msg := Null;
         Pkg_Process_Automation.P_Pre_Process_Validation(l_Prg_Id,
                                 :Query.Exchange,
                                 :Query.Segment,
                                 i.Cpv_Validation_Type,
                                 l_Validation_Msg);
         IF l_Validation_Msg IS NOT NULL THEN
          P_Show_Alert(l_Validation_Msg,i.Cpv_Validation_Action,l_Alert_Result);
          IF l_Alert_Result = 'N' THEN
           RAISE Form_Trigger_Failure;
          END IF;
         END IF;  
        END IF; 
       END LOOP;
       --Validating whether file exists or not
       IF :Process.File_Input_Format IS NOT NULL THEN
        Pkg_Process_Automation.P_Gen_File_Name(:Process.File_Input_Format,
                            :Query.Exchange,
                            :Query.Segment,
                            File_Name);
        Utl_File.FGetAttr(
         location    => l_Path,
         filename    => File_Name,
         fexists     => l_file_exists,
         file_length => l_file_len,
         block_size  => l_blocksize);
        IF NOT l_File_Exists THEN
         --MESSAGE('The file does not exist.');
         P_Show_Alert('The file does not exist.','A',l_Alert_Result);
         RAISE Form_Trigger_Failure;
        END IF;
       END IF;
       Set_Application_Property(Cursor_Style, 'BUSY');
       SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_YELLOW');
       :Process.Status := 'R';
       Synchronize;
       IF l_Prg_Id = 'DTMBCORP' THEN
        P_Show_Alert('Do you want to do Final Settlement Corporate Action ?(Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca1 := l_Alert_Result;
        P_Show_Alert('Enable Round-To-Tick ? (Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca2 := l_Alert_Result;
        --P_Show_Alert('Do you want to Rollback ? (Y/N)','I',l_Alert_Result);
        --o_User_Selection_Ca3 := l_Alert_Result;
       END IF;
       ----   Calling of Main Procedure
       Pkg_Process_Automation.P_Run_Process(l_Prg_Id,
                          :Query.Exchange,
                          :Query.Segment,
                          :Query.Entity_Id,
                          File_Name,
                          o_User_Selection_Ca1,
                          o_User_Selection_Ca2,
                          o_User_Selection_Ca3,
                          o_Status);
       IF l_Prg_Id = 'DTMBCORP' THEN
        P_Show_Alert('Do you want to Rollback (Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca3 := l_Alert_Result;
        Pkg_Process_Automation.P_Run_Process(l_Prg_Id,
                            :Query.Exchange,
                            :Query.Segment,
                            :Query.Entity_Id,
                            File_Name,
                            o_User_Selection_Ca1,
                            o_User_Selection_Ca2,
                            o_User_Selection_Ca3,
                            o_Status);
       END IF;                 
       Set_Application_Property(Cursor_Style, 'DEFAULT');                  
       Message(o_Status);
       Message(o_Status);
       IF o_Status = 'Y' THEN
        :Process.Status := 'C';
        SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_GREEN');
       ELSE
        :Process.Status := 'E';
        SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_RED');
       END IF;
       SELECT Prg_Log_File
       INTO   :Process.Log_File
       FROM   Program_Status ,
              Parameter_Master
         WHERE  Prg_cmp_id = l_Prg_Id
         AND    Prg_dt     = Pam_Curr_Dt
          AND   (Prg_Cmp_Id,Prg_Strt_Time)  IN (SELECT   Prg_Cmp_Id,max(Prg_Strt_Time) 
                                   FROM   Program_Status b,
                                                        Parameter_Master
                                                 WHERE  Prg_Cmp_Id =  l_Prg_Id
                                   AND    Prg_Dt     =  Pam_Curr_Dt
                                                  GROUP BY Prg_Cmp_Id);
       Synchronize;
       Set_Application_Property(Cursor_Style, 'DEFAULT');   
      END IF;
    END LOOP;
    :Query.Current_Status := '';
    Synchronize;
    EXCEPTION
      WHEN OTHERS THEN
      :Query.Current_Status := 'Error found';
      Set_Application_Property(Cursor_Style, 'DEFAULT');
      MESSAGE(sqlerrm );
      --MESSAGE(sqlerrm );
      Synchronize;
    END;
    inside p_run_process there are other 25 database procedures.
    help me !!!

    Create a procedure as like,
    PROCEDURE show_progress(x number) IS
    y number;
    BEGIN
      set_item_property('PART_DISP',VISIBLE,PROPERTY_TRUE);
      set_item_property('PART_DISP',WIDTH,x);
      set_item_property('PART_DISP',VISIBLE,PROPERTY_TRUE);
    END;
    PART_DISP is a display_item.
    After completion of each procedures call the above procedure like,
    cntr:=cntr+1;
    show_progress(round(cntr/25*287,0));
    synchronize;
    where cntr is a counter it will be incremented 1 to 25, the constant value 287 is the maximum width of PART_DISP (you can change for your need).
    The local variable cntr's initial value is 0 and maximum value is 25.    
    cntr                   part_disp          % of progress
    1
    11.48
    4
    2
    22.96
    8
    3
    34.44
    12
    4
    45.92
    16
    5
    57.4
    20
    6
    68.88
    24
    7
    80.36
    28
    8
    91.84
    32
    9
    103.32
    36
    11
    126.28
    44
    12
    137.76
    48
    13
    149.24
    52
    14
    160.72
    56
    15
    172.2
    60
    16
    183.68
    64
    17
    195.16
    68
    18
    206.64
    72
    19
    218.12
    76
    20
    229.6
    80
    21
    241.08
    84
    22
    252.56
    88
    23
    264.04
    92
    24
    275.52
    96
    25
    287
    100
    Hope this will help.

  • Progress bar for report?

    Hi there,
    Does anyone have any advice on how to display a progress bar while a report is running (PDF report, web, using Reports 6, OAS)? We have the report output pop up in a new dialog browser window. The window pops up, but depending on the report, sometimes it takes a minute or so before the report output is actually displayed in the window. The users are requesting a progress bar to show them that it's working and how far they are from seeing the output.
    Any ideas? Any built-in functionality? Should I bring Forms into the mix?
    Thanks in advance
    Dave

    user-Rachna wrote:
    I created a dynamic action on 'Before page submit' and showed an alert to see if it works or not. But it doesn't work for my report as the report gets refreshed without submitting the page.
    Here is exactly what I have:
    http://apex.oracle.com/pls/apex/f?p=54687:38:109840028367746
    Thanks.
    It would seem to be an obvious step to create additional dynamic actions on the Before/After Refresh events for the report region to show/hide the plug-in loading frame.

  • Progress bar in forms-10g???

    hi there....can I use a Progress bar in forms-10g??? Previously I've been using an OCX for progress bar. But as forms-10g dont support ocx so is there any replacement in form of java bean, pjc or anything else???
    2ndly can I open my browser window running my forms application in Full Screen mode anyway?

    Dear....Demo for progress bar on Oracle site shows only the code which we should write in a procedure and behind a push button to start and run progress bar. But what is n where is that progress bar in actual? is it a text field or what? is there no sample fmb of this progress bar like that of Timer Bean and autocompletion combo box???

  • Progress Bar for Web -- cr version 13.0.7.1136

    Hello All..
    The report is taking few seconds to display output.,So, i want to show progress bar while loading!!
    I've found couple of threads answering this question here but those seems to be old and i could not understand where those are being pointed.The below thread result redirects to welcome page where i could not find anything!!
    how to show progress bar while loading report ? 
    please suggest!!

    I did Don... found this !! but could not see any downloadable sdk guide there!!
    SAML Response from SAP ID Service     
    anyways., I've downloaded sap crystal reports .NET sdk developer guide.. there i saw 'Report Processing Indicator'.followed that and added 'ProcessingInidcatorText' and 'ProcessingIndicatorDelay' to web.config. but report is not showing with progress bar.
    My Need: User selects some selection criteria(like username or role) from dropdown and clicks 'Show Report' button. Then it is taking nearly 15 to 20 seconds of time to display filtered data. there i need to show user that 'please wait.., data is being processed'. i could see crystal default progress bar saying 'please wait while the document is being processed' when i refresh the report or navigating from page to page but not on button click after selection criteria.
    any help would be appreciable!!

  • Progress Controle in Crystal Report 10.5

    Hi All,
    I am moving from crystal report 9.x to 10.5. In crystal report 9.0 some usefull properies such as EnableProgressControle to see your crstal report progress. I am trying hrad to find these properties. I am working on migration project and my client need exact replica of all features.
    I searching any way to show some progress bar on crystal report viewer. I have to populate 300000 records.
    Thanks In Advance.
    Thanks
    Ramit Singh

    Below is an example of my code for a work around in a vb.net application by using the example given by Shweta Sharma.
    This helps users know that the CrystalReportViewer1 control is still busy generating the report.
    ' Code for frmReportViewer Class (My Windows form that contains the CrystalReportViewer1 control)
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Public Class frmReportViewer
       Private WithEvents rs As New clsReportStatus
       Private Delegate Sub BarUpdate(ByVal val As Integer)
       Private Delegate Sub ChangeCursor(ByVal myCursor As Windows.Forms.Cursor)
       Private Delegate Sub ctrlVisible(ByVal meVisible As Boolean)
       Private Sub Report_ProgressBarValue(ByVal val As Integer) Handles rs.ProgressBarValue
           Try
               If Me.InvokeRequired Then
                   Dim bu As New BarUpdate(AddressOf Me.Report_ProgressBarValue)
                   Me.Invoke(bu, New Object() )
               Else
                   ProgressBar1.Value = val
               End If
           Catch ex As Exception
               MessageBox.Show(ex.Message)
           End Try
       End Sub
       Private Sub Report_ctrlVisible(ByVal meVisible As Boolean) Handles rs.ctrlVisible
           Try
               If Me.InvokeRequired Then
                   Dim lv As New ctrlVisible(AddressOf Me.Report_ctrlVisible)
                   Me.Invoke(lv, New Object() )
               Else
                   lblWait.Visible = meVisible
                   ProgressBar1.Visible = meVisible
               End If
           Catch ex As Exception
               MessageBox.Show(ex.Message)
           End Try
       End Sub
       Private Sub Report_mCursor(ByVal myCursor As Windows.Forms.Cursor) Handles rs.mCursor
           Try
               If Me.InvokeRequired Then
                   Dim mc As New ChangeCursor(AddressOf Me.Report_mCursor)
                   Me.Invoke(mc, New Object() )
               Else
                   Cursor = myCursor
               End If
           Catch ex As Exception
               MessageBox.Show(ex.Message)
           End Try
       End Sub
       Private Sub frmReportViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
           Try
               If Not rs.Running Then
                   rs.StartThread()
               End If
               Application.DoEvents()
               Dim nPages As Integer
               Dim rep As New ReportDocument
               'To be continued in next post. You do NOT need to include this line in your code

  • Running Progress Bar in orcale forms

    Hello Experts,               I am using oracle weblogic 10.3.5 and oracle forms 11g at windows 7.I have need to display a progress bar.Upon finishing the progress bar There should be call a program unit procedure in oracle forms. thank You regards aaditya.

    Hi Aaditya,
    Please read the following discussion, I think its helpful to you.
    Re: creating progress bar in oracle forms 6i

  • Want to download Defauld Progress Bar from Oralce Site

    Hi,
    I am trying to download Defauld Progress Bar From Oracle Site, but it is showing message
    alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason." Your browser is completely ignoring the <APPLET> tag!
    Please suggest and how can I use that progress bar on my existing 6i form .
    thanks
    mohan

    then Applet will not work in any case....
    For 6i there is online help available for Progress bar
    To create a progress bar:
    1     In the Layout Editor, click the Text Item tool.  Drag to create a text item of the maximum size of the progress bar.  For a raised style bar, set the Bevel property of the item to raised.
    2     Click the Rectangle tool and create a rectangle slightly larger than the maximum size of the progress bar.  For a flood style bar, set the Bevel property of the rectangle to Lowered.
    3     Add trigger code to set the size of the progress bar as appropriate.  Change the size by programmatically adjusting the Width property.  Depending on your application you might do this within a PL/SQL loop, or in a WHEN-TIMER-EXPIRED trigger.  For example, use the Set_Item_Property built-in:
         DECLARE
       x NUMBER := Set_Item_Property(‘PROGRESS.PLAIN’, WIDTH);
    BEGIN
      if x <  120 then
        Set_Item_Property(‘PROGRESS.PLAIN’, WIDTH, x+5);
      else
        Delete_Timer(‘PROGRESS’);
      end if;
    END;
    Tip: Form Builder does not normally update the display while a trigger is executing.  To update the progress bar while a PL/SQL loop is executing, use the Synchronize built-in.
    To create the spinning wheel animation:
    1     Using a drawing tool such as Microsoft Paint, create an image file containing all of the different pictures, or frames, that you want to show for the animation.  To create a smooth animation, use at least four and preferably six frames. 
    2     In the Layout Editor, display the content canvas where you want the animation to be displayed. 
    3     Click the Stacked Canvas tool in the tool palette.  Click on the content canvas to create and position the stacked canvas.
    4     In the Property Palette, under the Physical node, set the Width and Height of the stacked canvas to the size of the image or larger, and set the Viewport X Position on Canvas and Viewport Y Position on Canvas to show the initial frame.  Under the Viewport node, set the Viewport Width and Viewport Height to the size of each frame. 
    5     In the Layout Editor, display the stacked canvas.  Choose FileImport to import the image file.  The image will appear in the upper left corner of the canvas.
         Tip:  If you have boilerplate images that you use frequently, such as a company logo, add them to your object library by dragging the boilerplate image object from the Canvas node in the Object Navigator and dropping it on the appropriate page of the object library.  To reuse a boilerplate image from an Object Library, simply drag it to the Object Navigator and drop it under the canvas where you want the image to appear.  This is faster and simpler than importing a file.  See the Gallery page in the DEMO20.OLB object library for an example.
    6     Add trigger code to show each frame as appropriate.  Depending on your application you might do this within a PL/SQL loop, or in a WHEN-TIMER-EXPIRED trigger.  Change the frame by programmatically adjusting the Viewport X Position on Canvas and Viewport Y Position on Canvas properties to position the viewport visible on the content canvas over the desired frame. 
    if responses are helpful or correct please mark it
    Baig,
    http://baigsorcl.blogspot.com

  • Progress Bar in Report

    Hey Everyone,
    I have implemented a Progress Bar in a column in a report based on Denes Kubiceks example,
    http://htmldb.oracle.com/pls/otn/f?p=31517:183:6301951045064123::NO
    The issue im having is depending on which browser i use i get slightly different out put on the progress bar, small but anoying.
    In Firefox if the bar is at 100% it is all one colour, as it should be. However when i use IE if the bar is at 100% there is still a hint of red at the end of the progress bar, as if it is on 99%.
    What i need to know is, is this simply a browser issue? or is there somthing i could do about it?
    Thanks in Advance,
    -N.S.N.O.

    Hello,
    to me it looks like a browser issue. Apparently the IE cannot render an image with width="0" and therefor always renders it with width="1". Opera does the same.
    You could try using a background color instead for the table cell and just the green image instead of two images side by side.

  • Regarding T Bar in Oracle 10g Reports

    Hi,
         We have the requirement to generate line graph report to meet the following requirement.
         The graph must be draw 4 horizontal lines.
         In these 4 lines, two lines displayed in the top and two lines in the bottom.
    The bottom two horizontal lines should be drawn along with vertical lines(T bars ) for      every x values.
         This graph is actually a combination graph which have both horizontal lines and T Bars.
         We have been recommended to use Oracle 10G Report builder to build this kind of report.
         We tried all the option available in the reporting tool, we could not able to represent T bars.     
         Is it possible to generate report with T bars using Oracle 10G
    reporting tool.
    Thanks & Regards,
    Bharathi.S

    I am calling report though hyperlink from one report to another report.
    i have report state master with state_code,state_name column and i create hyperlink on state code that will call city report to show all city of selected state. hyperlink path as below
    http://192.192.0.0:8889/reports/rwservlet?report=\\192.192.0.0\tims\Reports\Source\STATE_mas.jsp&desformat=htmlcss&destype=cache&userid=xyz/xyz@hello

  • Creating a progress bar while querying a report in Visual Studio

    I have created a Visual Studio 2013 program that runs reports from a SQL server.  I want a progress bar to show up in my VS program while it is querying so my user doesn't think that it is frozen while running larger queries.  How can I do this.
     Step by step is better since I am new to programming.
    Gracies 
    Much Love 

    Hi flextera,
    Based on your description, I’m afraid that it is not the correct forum for this issue, since this forum is to discuss:
    Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    To make this issue clearly, would you mind letting us know more information about this issue? Which language are you using? Which kind of app are you developing? You said that it is related to the report in SQL Server, is it the SSRS issue or the specific
    windows app like the WinForms app?
    Please share me more information, I will help you find the correct forum for this issues.
    If there's any concern, please feel free to let me know.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Incorporate Bar Code in Oracle Reports

    Hi,
    I want to incorporate Bar code font in character based oracle reports.Kindly let me know how to go about implementing it.Secondly is there any site from where i can download the bar code fonts freely.Also does Oracle provide Barcode fonts for Oracle Reports.
    Thanks in advance
    Deepak

    hello,
    from your question i understand that you want to create a barcode in a character mode report. this will be very difficult as it requires the destination printer to be able to print barcodes. a barcode font will not help here, as charactermode reports do not leverage fonts other than ones available in the printer.
    usually it is more to creating a barcode than just printing the value in barcode font. most barcodes need special algorithms to create chechsums and similar stuff.
    you might want to look into our barcode example that shows you how to use a java bean to generate a barcode.
    http://otn.oracle.com/products/reports/htdocs/getstart/examples/BarcodeBeanPaper/index.html
    oracle does neither ship barcodefonts nor java beans to generate barcodes for production purposes. the supplied sampels are for demo purposes only. however there are several commercially available fonts as well as javabeans on the market.
    regards,
    philipp

Maybe you are looking for

  • 11.1.2 FR Column formula not working for rows other than first

    Hi All, I've a FR Grid with following layout Columns: Budget, Forecast, Var(Var being a formula col with the formula COL[A]- COL) Rows: Children of Total_Cost_Centre, Children of Total_Projects, ACC.10101 Suppress MISSING on for row When i run the re

  • My iPod keeps freezing during the middle of songs etc.?

    My iPod keeps freezing in the middle of songs and even when i plug it into the computer to charge. I've tried to restore it but iTunes rejects it, saying that it has an error. what can I do?

  • Exporting from 9iEE on W2KServer to 8iEE on Solaris8

    Due to machine restrictions (i.e., we didn't have enough machines at the time) I developed an application using a 9iEE Database running on a W2K Server (My Workstation). I exported the dump file after completeing. I am trying to import it into an 8.1

  • Hana Ado NET Multiple SELECT

    Hi everyone, Is it possible to get multiple result set from the only one call of HanaDataAdapter.Fill(DataSet set) method? What I mean, in Hana Studio I can easily excequte the following query: Select * From "MyDatabase"."MyTable"; Select * From "You

  • EditMask field to enter a telephone number

    I am accepting an int value for telephone numbers with area code in the application. Is it possible for me to have a formatted field which will display Between the paranthesis the areacode is entered and then the number follows. Please note the hyphe