Progress Indicator - Markers Problems...

the progress indicator in the playback controls isn't working how it should. the yellow ring that's supposed to follow the hand around fills up half way when the hand gets to "9 o clock" and fills up completely at "3 o clock". So it's either. Empty, Half-full, or completely filled over the course of each marker. Not a huge deal but quite annoying on the longer markers. any idea what the problem might be? thanks!

Hi
Seems to work OK here with OSX.8.2 and both MS2.2.1 and 2.2.2.
Does the issue happen in Edit, Perform or ?
CCT

Similar Messages

  • Interner Explorer Progress Indicator Problem

    Hi all,
    I'm developing a web project using Struts and xsl. The problem is In some pages once you press the submit button, the progress indicator which shows the progress in loading the page, shows the page is loaded without loading the new page. This problem occurs where there is a long background process to complete like database update which may take few seconds. In Firefox this works properly.
    Then the user can again submit the same page.
    Can any one help me on this

    Cp5x had some bugs in this area.  Test with other fonts such as Arial or Myriad Pro.

  • TIME-OUT error in BSAK select query(Progress Indicator is also used)

    Hi,
        In my report program one select query is there on BSAK table, which is as follows --
           SELECT BUKRS                                                     
                         BELNR
                        GJAHR
                        SHKZG
                        BSCHL
                        UMSKZ
                        LIFNR
                        EBELN
                        EBELP
                        WRBTR
                        DMBTR
                        XZAHL
                        REBZG
                       AUGBL
                       BLART
                       AUFNR
                       AUGDT
                       BUZEI FROM BSAK
                                  INTO TABLE IT_BSAK
                                  FOR ALL ENTRIES IN IT_BKPF1
                                   WHERE BUKRS = IT_BKPF1-BUKRS
                                                AND AUGDT = IT_BKPF1-BUDAT
                                                AND AUGBL = IT_BKPF1-BELNR
                                                AND BSCHL IN ('31' , '29', '26', '39', '25').
    I used Progress Indicator befor running this query and after this query also. But still It's giving me TIME-OUT error in this select query only.
      I run the same query for 10 records in IT_BKPF1 table, it runs perfectly. But when I run it for 1000 records it giving dump.
    And in actual bussiness my records are always more than 100 only.
    I also check the indexing. It having secondary indexing on this BUKRS, AUGDT, AUGBL fields. Then also it's giving error.
    so, How can I solve this dump..?? What could be the reason..??
    Thanks in advance...!!
    Regards,
    Poonam.

    Hi Poonam Patil,
    Try to provide BELNR and GJAHR in where condition...
    BKPF-DBBLG ==> BSAK-BELNR
    Also check
    BKPF-BLDAT ==> BSAK-AUGDT
    Check out above relation...
    If data is there in these fields of the table and both are matching then you can pass it and as they are in primary key of BSAK it will improve the performance...
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Issue regarding Progress Indicator on table row selection

    Hi Team,
    I have overridden onSelectionListener on a table. On click of any record in the table I am performing some operation which takes few seconds to execute. So, I have to show a processing bar on click of any records in the table till the execution completes. I have added a .gif image as the progress Indicator and referring this in the client attribute of the output text in the columns in the table.
    --Code added for the output text in table column
    <af:column sortProperty="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.name}"
    sortable="false" headerText="#{emqacerts_uiBundle.TAG_NUMBER}" id="c9"
    filterable="true" align="center"
    inlineStyle="#{row.sn_status eq 'PRINT'?'background-color:#c4ff94;' : row.sn_status eq 'DRAFT'? 'background-color:#ffefa3;':'background-color:#ffffff;'}">
    <af:inputText value="#{row.bindings.TagNumber.inputValue}"
    label="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.label}"
    required="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.mandatory}"
    columns="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.displayWidth}"
    maximumLength="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.precision}"
    shortDesc="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.tooltip}"
    id="it6" clientComponent="true">
    <f:validator binding="#{row.bindings.TagNumber.validator}"/>
    <af:clientAttribute name="loadingIndicatorId"
    value="#{backing_Pages_MainPage.loadingIndicatorId}"/>
    <af:clientListener method="showWhenBusy" type="click"/>
    </af:inputText>
    </af:column>--Code in the backing bean
    public void setLoadingBox(RichPanelBox loadingBox) {
    this.loadingBox = loadingBox;
    public RichPanelBox getLoadingBox() {
    return loadingBox;
    public String getLoadingIndicatorId() {
    return getLoadingBox().getClientId(FacesContext.getCurrentInstance());
    }--Code in the jsff page for the image
    <af:panelBox text="#{emqacerts_uiBundle.PROCESSINGPLEASEWAIT}" id="pb10" clientComponent="true"
    binding="#{backing_Pages_MainPage.loadingBox}" inlineStyle="display:none;"
    titleHalign="center" background="dark" showDisclosure="false" ramp="highlight">
    <af:panelGroupLayout id="pgl5" layout="horizontal" halign="center">
    <af:spacer width="60" height="10" id="s1"/>
    <af:image source="/images/progress.gif" id="i1"/>
    </af:panelGroupLayout>
    </af:panelBox>--JavaScript
    <af:resource type="javascript">
    //Global variable to hold the component ref.
    var loadingIndicatorComponent;
    function showWhenBusy(event) {
    //get the dialog or other component we want to show and hide
    var componentId = event.getSource().getProperty('loadingIndicatorId');
    loadingIndicatorComponent = AdfPage.PAGE.findComponent(componentId);
    if (loadingIndicatorComponent != null) {
    AdfPage.PAGE.addBusyStateListener(loadingIndicatorComponent, handleBusyStateCallback);
    event.preventUserInput();
    else {
    AdfLogger.LOGGER.logMessage(AdfLogger.SEVERE, "Requested indicator compoenent not found");
    function handleBusyStateCallback(event) {
    if (loadingIndicatorComponent != null) {
    // Check is this is a dialog as
    // this needs different treatment
    var isDialog = (loadingIndicatorComponent.getComponentType() == "oracle.adf.RichPopup");
    if (event.isBusy()) {
    if (isDialog) {
    loadingIndicatorComponent.show();
    else {
    loadingIndicatorComponentId = AdfAgent.AGENT.getElementById(loadingIndicatorComponent.getClientId());
    loadingIndicatorComponentId.style.display = "inherit";
    else {
    if (isDialog) {
    loadingIndicatorComponent.hide();
    else {
    loadingIndicatorComponentId = AdfAgent.AGENT.getElementById(loadingIndicatorComponent.getClientId());
    loadingIndicatorComponentId.style.display = "none";
    AdfPage.PAGE.removeBusyStateListener(loadingIndicatorComponent, handleBusyState);
    </af:resource>My problem is, if I click on any record in the table for first time, progress bar is not displayed. But from second click of any record, it starts displaying.
    If anyone has any idea on this then please let me know what the issue is.
    Thanks in advance,
    Kavitha

    Hi John,
    Thanks for your quick reply. I tried using af|statusIndicator component. But this doesnt disable the components on the page while the server is busy.
    Is there any way to disable the page/make the page read only when the processing is happening ?
    Thanks in advance,
    Kavitha

  • Progress indicator icon does not appear in Sap Portal

    Hi experts.
    Currently, i Have developed a WD ABAP which contains a progress indicator icon. When I execute this WD from backend (R/3 via SE80) the Icon progress appears while the WD is recovering data, building structure, etc...
    The problem appears when I access to the scenary from SAP Portal, because from SAP Portal does not appear the Progress Icon. Someone can tell me why the icon is not appearing, and how Can i solve it???
    Thank in advance.
    Best regards

    Hi Thomas.
    First of all, thanks for your answer.
    My problem is that I can obtain a progress indicator icon (a circle moving) when I am inside of my Ivew, but I need to show this icon also in the first step, during the initialization. The initialization of my scenary is a hard process which spent a lot of time, and I wonder if is possible show a Process indicator Icon while all data are being recovery. This icon is showed when I run my webdynpro in the Backend, but this icon does not appears qhen the new Internet Explorer Windows is opened.
    Do you know how to show it???
    Thanks again.

  • Progress Indicator not displaying

    Hello,
    We have an existing web application built using older version of Crystal Viewer control that doesn't display any progress indicator when the report starts running. However I see with CR 2008, it's possible to display a progress indicator.
    I have migrated the application to work against CR 2008, however I am unable to display the progress indicator. I added the following configuration entries but with no difference.
    <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="resourceURI" value="/crystalreportviewers12" />
            <add key="processingIndicatorDelay" value="5"/>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Has anybody experienced this problem?
    Please assist.

    I don't know if you are using the below, but if not, add it;
    <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler"; />
          </sectionGroup>
        </sectionGroup>
      </configSections>
    Also, use this code:
      <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
            <add key="processingIndicatorDelay" value="20"/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Finally, make sure you have applied SP 1;
    https://smpdl.sap-ag.de/~sapidp/012002523100006555792009E/cr2008win_sp1.exe
    Or SP2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Colors in Progress Indicator

    How to  change colors in Progress Indicator in ALV?

    hi
    good
    go through this hope this would help you to solve your problem
    Please check this sample code.
    data: index type i.
    do 4 times.
    index = sy-index * 25.
      call function 'SAPGUI_PROGRESS_INDICATOR'
           exporting
                percentage = index
                text       = 'Processing Data'.
      wait up to 1 seconds.
    enddo.
    Also check this thread for another sample codes.
    Function module to display % complete message
    reward point if helpful.
    thanks
    mrutyun^

  • Display Progress Indicator in the Run Time

    Hi All,
    How do display Progress Indicator in the Run Time for a JSF Page using ADF components?
    Regards
    Santosh

    I have similar problem.
    Basically my page do search in the database which takes some time. so when search starts I would like to display the progress indicator or some thing which will show some processging is going on in background. Once it completes the background processing, the same page displays the result. At this time I want to hide the progress indicator.
    Is there any way to do this. I am using EA17 with JDev.

  • Process Flows deployment: progress indicator is at 50%

    Process Flows deployment : progress indicator is at 50%.
    CPU on both client and server is 0%.
    The OWB client application needs to be killed.
    We have increase the value of the -Xmx and -Dlimit parameter on owbclient.bat
    from -Xmx384M -Dlimit=384M -
    to -Xmx784M -Dlimit=784M -
    the problem persists.
    can you help me?
    thanks

    Hi, I had this problem sometimes ago. And solved it increasing the -Xmx value at the file owb.cl at OWB_HOME\owb\bin\win32 from -Xmx128M to -Xmx768M.
    I think it will work for you too.
    Regards
    Nogs

  • Display a progress indicator in the jsp

    Hi to all;
    Once more i need your help.
    I have built a website that can connect insert and retrieve data into and from any database.
    My problem is that, since some of the insert operations take long to complete, I would like a pop up progress indicator to display in order to keep the user inform.
    I have tried AJAX stuff, but i am not satisfied.
    Is there another way to work this out?
    I use sun studio creator and java.
    Thanks

    Encephalopathic wrote:
    DrLaszloJamf wrote:
    What all the koolio kidz be using these days is JavaFX, although I calls it Jizzle.
    I'm not sure about the "koolio kidz", but Sun is sure putting its marketing and development might behind this and apparently to the detriment of Swing. :( Maybe we all will be FX'ing in the near future.I really am waiting for them to get a rapper to start shilling for JavaFX, the way Snoop Dogg played golf on a commercial with Lee Iacocca to sell the Chrysler 300.

  • Using a popup as a progress indicator.

    Hi All,
    I'm using Jdeveloper REL 1 (11.1.1.1.0)
    I'm relatively new to ADF development.
    Here's my use case:
    1. Display a set of records that will be processed.
    2. User selects OK button to process records
    3. A popup is launched displaying a progress indicator, in my case I went with an animated gif.
    4. After the popup is launched, execute some code to process the records.
    5. After processing code completes, close the popup and refresh the page that launched the popup.
    The problem I'm having is, my method is executed before the popup displays and I need it to run after the popup is displayed. Currently, I have the popup content is in a dynamic region that swaps out an empty task flow for the taskflow that contains the progress indicator jsff fragment. The method to be executed is configured as an executable in the page fragments pagedef file. It's obvious to me now that all the executables are executed during the prepare model phase and before the page is rendered. How do I work around this, or is there a different way to approach this problem?
    I've also tried launching the popup programatically from a managed bean and then run the processing code, however, once the popup is launched, nothing else happens until the popup is closed.
    Thank you,
    Edited by: rvlong on Apr 6, 2010 1:06 PM

    See if these help:
    http://andrejusb.blogspot.com/2008/08/glasspane-in-adf-faces-rc.html
    http://www.oracle.com/technology/products/jdev/tips/fnimphius/glasspane/glasspane.html

  • "PROGRESS INDICATOR" IN FORM OUTPUT !!

    HI
    I HAVE DEVELOPED A FORM BY TEMPLET.FMB.
    WHEN I RUN THIS FORM FROM FROUNT ENDI GET MINE FORM BUT WHENEVER I CLOSE THIS FORM I GET "PROGRESS INDICATOR" WINDOW .
    CAN U TELL ME WHY IT'S COME ?
    WHAT IS THE PROBLEM IN MINE TEMPLET FORM !?
    , HOW CAN I REMOVE THIS ?
    THANX

    This is an XML forum, not a Forms forum. You question is probably better suited for Forms
    You may need to get a new keyboard as your CAPS LOCK appears to be stuck on.

  • Progress indicator glitches

    Hi Guys :-)
    I really hope someone can help me, because this has been bugging me for a while.
    I programmed my sound setup on a mac pro running osx 10.6.8 and here I don't have any problems with the progress indicator.
    I've now started the session on my brand new macbook pro running 10.8 and here there's some glitches with the progress indicator.
    The pin is still turning around in the circle but the yellow colour only shows empty, half full or full.
    I'm running the latest version of Mainstage (2.21) on both machines
    Does anyone have a solution ?
    Any help would be greatly appreciated.
    Cheers
    Andy

    Hi
    Seems to work OK here with OSX.8.2 and both MS2.2.1 and 2.2.2.
    Does the issue happen in Edit, Perform or ?
    CCT

  • Progress indicator does not move

    Windows xp 64 bit. I have the newest version installed.
    When I try to do daily jigsaw at shockwave.com, it says:
    "adobe shockwave player is now installing" but nothing happens
    The progress indicator does not move. Self help did not work,
    uninstlling and reinstalling standalone, etc. The Flash advertisement
    befor the game works fine. Wasted several days on it.
    Thank you.

    i have sam problem to, anyone..??? help
    regards,
    -Made  Jaya -
    Find more choice for  kuta, legian seminyak hotels discount at  kutahotelsbali.com

  • Progress Indicator within ALV

    Hi all,
    I have another small problem. In my wd application ther is an ALV output. Within this list I want to display a progress indicator. I tried this:
      DATA: lr_cellvar TYPE REF TO cl_salv_wd_cv_standard,
            l_cellvar TYPE string,
            lr_progress_indicator TYPE REF TO cl_salv_wd_uie_progr_indicator,
            lt_columns                TYPE salv_wd_t_column_ref,
            ls_column                 TYPE salv_wd_s_column_ref,
            lr_column                 TYPE REF TO cl_salv_wd_column.
      LOOP AT lt_columns INTO ls_column.
        lr_column = ls_column-r_column.
        CASE ls_column-id.
          WHEN 'PROGRESS_STATUS'.
            CREATE OBJECT lr_cellvar.
            l_cellvar = 'CV_SB'.
            lr_cellvar->set_key( l_cellvar ).
            CREATE OBJECT lr_progress_indicator.
            lr_progress_indicator->set_percent_value_fieldname( 'PROGRESS_STATUS' ).
            lr_progress_indicator->set_display_value_fieldname( 'PROGRESS_DISP_VALUE' ).
            lr_progress_indicator->set_tooltip( 'Fortschrittsanzeige Status des Vorganges' ).
            lr_progress_indicator->set_bar_color( '00' ).
            lr_cellvar->set_editor( lr_progress_indicator ).
            lr_column->add_cell_variant( lr_cellvar ).
            lr_column->set_width( '75' ).
            lr_column->set_position( '-1' ).
            lr_column->set_selected_cell_variant( l_cellvar ).
        ENDCASE.
      ENDLOOP.
    But only the first row in ALV is shown as well as progress indicator.
    Any Ideas?
    Many Thx and best regards
    Stefan

    Stefan,
    How many elements do you have in your Node? If you have only one element, even if you alv table has 10 visible lines, it'll display only the first one with the progress indicator.
    Regards,
    Andre

Maybe you are looking for

  • "Adobe Bridge has stopped working"

    Just installed CS2 Version 9.0.  Having "Adobe Bridge has stopped working"  Windows 7 Pro 64.  Is there a solution to this problem? Thanks?

  • How to insert data from a table to database

    Hi all, My problem statement is that: I have jsp page, which has a table with some columns editable for inserting data. I am using MySql database. Now when I insert the data in the table and click submit button , the data entered must get stored in t

  • Dropship Process - Account assigned PO with Freight

    Hi Experts Scenario - We have a process defined for third-party drop ship with PO Account assigned to 'Y - 3rd Party W/O SN' and to a GL account based on this account assignment.  We have an automatic price determination for a condition type for 'Dro

  • Oc4j license

    Do I need a license (if yes, what kind) to run a web application on a standalone oc4j instance when the application is in use (the test period is over)?

  • IllegalStateException. Why?

    Hi, I have a page which renders different panels depending on user input. Everything works fine on the initial go around however when i leave that page and then come back to it i get the following exception and i have no idea why or what it means. ph