Show busy indicator while loading chart

Hello Experts,
I have created a chart and while loading chart, the charts shows nodata
Instead of showing nodata I want it to show busy indicator till the chart is loaded
I tried using oBarChart.setNoData(oBarChart.setBusy(true)); - it works but even after loading chart the indicator is still visible.
How can I achieve this?
Similarly how can I show busy indicator for a table until table data is loaded?
Regards,
Rohit

Hi,
use odatamodel methods attachRequestSent, attachRequestCompleted and attachRequestFailed for starting and stoping busy indicator. refer more discussion in Several question regarding OData and Tables
Regards,
Chandra

Similar Messages

  • Revoke access to Business Areas while loading data

    Hi,
    What is the best practive to restrict access to business areas (or entire EUL) while data is being loaded?
    Currently users could use Discoverer to query the tables being loaded. What would be an efficient way to make sure they are not able to query the database while loading the data? We load using OWB (PL/SQL).
    Thanks,

    Hi
    In the first step of your data load revoke select rigths from your eul and in the last step grant it back.
    Ott Karesz
    http://www.trendo-kft.hu

  • Showing splash screen while loading...

    Hi,
    I'd like to show a splash screen while the application is loading (setting up hibernate session etc.) - here is my main method which is loading hibernate and starting up the application:
            public static void main(String[] args) {
              java.awt.EventQueue.invokeLater(new Runnable() {
                   public void run() {
                        MdbCheckerApp app = new MdbCheckerApp();
                        app.initializeLookAndFeel();
                        // preload Hibernate session
                        HibernateUtil.getSession();
                        // login successful
                        // if (app.login()) {
                        new MdbChecker().setVisible(true);
              HibernateUtil.closeSession();
         }How do I show my splash screen while simultaneously loading the hibernate session?
    Thanks in advance
    - Stephan

    However, I'm not quite sure on how to proceed...
        public static void main(String args[]) {
            final TestForm tf = new TestForm();
            tf.showSplash();
            tf.runInitializer(new Runnable() {
                public void run() {
                    try {
                        Thread.currentThread().sleep(3000);
                    } catch (Exception e) {}
                    tf.hideSplash();
        public void runInitializer(Runnable r) {
            Thread t = new Thread(r);
            t.start();
        public SplashScreen showSplash() {
            // if a splash window was already created...
            if(splash != null) {
                // if it's showing, leave it; else null it
                if(splash.isShowing()) {
                    return splash;
                } else {
                    splash = null;
            splash = new SplashScreen(null, true);
            centerComponent(splash);
            splash.show();
            return splash;
        public void hideSplash() {
            if (splash != null) {
                splash.dispose();
                splash = null;
        }I'm wondering why I do only see the splash screen (I was hoping that the splash screen would be disappearing after 3 seconds).
    Here is the code of my splash screen:
    public class SplashScreen extends javax.swing.JDialog {
        /** Creates new form SplashScreen */
        public SplashScreen(java.awt.Frame parent, boolean modal) {
            super(parent, modal);
            initComponents();
            setLocationRelativeTo(null);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            jLabel1 = new javax.swing.JLabel();
            jProgressBar1 = new javax.swing.JProgressBar();
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
            setTitle(java.util.ResourceBundle.getBundle("com/gigatronik/mdbchecker/ui/bundle/MdbCheckerMessages").getString("splashscreen.title"));
            setModal(true);
            setUndecorated(true);
            jPanel1.setBorder(javax.swing.BorderFactory.createEtchedBorder());
            jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/gigatronik/mdbchecker/ui/resources/gigatronik_4c_300.jpg")));
            jProgressBar1.setIndeterminate(true);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING, false)
                        .add(org.jdesktop.layout.GroupLayout.LEADING, jProgressBar1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .add(org.jdesktop.layout.GroupLayout.LEADING, jLabel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jLabel1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jProgressBar1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new SplashScreen(new javax.swing.JFrame(), true).setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JLabel jLabel1;
        private javax.swing.JPanel jPanel1;
        private javax.swing.JProgressBar jProgressBar1;
        // End of variables declaration                  
    }Any help would be greatly appreciated.
    - Stephan

  • Getting error in IC agent business role while loading components.

    The user has been allowed and access to all business role.user are using all business roles but when user click on the IC agent business role the following error arise.
    Cannot display view CRMCMP_BPIDENT/BuPaMultipleLayoutVS of UI Component CRMCMP_BPIDENT
    An exception has occurredException Class CX_CRM_GENIL_GENERAL_ERROR - Component set CRMIC_DEFAULT cannot be loaded with BP_APPL+EMPTY+IC_ACCT_ID since multiple object definitions exist for component SO2
    Method: CL_CRM_GENIL_INTERNAL_MODEL=>LOAD_COMPONENT_SET
    Source Text Row: 124
    Initialization of view CRMCMP_BPIDENT/BuPaMultipleLayoutVS of UI Component CRMCMP_BPIDENT failed
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View BPConfirmedPartners.MainWindow in component CRMCMP_BPIDENT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Cannot display view CRMCMP_BPIDENT/BuPaMainVS of UI Component CRMCMP_BPIDENT
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View BPConfirmedPartners.MainWindow in component CRMCMP_BPIDENT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Initialization of view CRMCMP_BPIDENT/BuPaMainVS of UI Component CRMCMP_BPIDENT failed
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRMCMP_BPIDENT/BuPaMultipleLayoutVS in component CRMCMP_BPIDENT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Cannot display view MainWindow of UI Component CRMCMP_BPIDENT
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRMCMP_BPIDENT/BuPaMultipleLayoutVS in component CRMCMP_BPIDENT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Initialization of view MainWindow of UI Component CRMCMP_BPIDENT failed
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRMCMP_BPIDENT/BuPaMainVS in component CRMCMP_BPIDENT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Cannot display view CRM_UI_FRAME/WorkAreaViewSet of UI Component CRM_UI_FRAME
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View BPIDENT.MainWindow in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Initialization of view CRM_UI_FRAME/WorkAreaViewSet of UI Component CRM_UI_FRAME failed
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View BSPWD_BASICS/WorkAreaHostViewSet in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Cannot display view CRM_UI_FRAME/MainWindow of UI Component CRM_UI_FRAME
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View BSPWD_BASICS/WorkAreaHostViewSet in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Initialization of view CRM_UI_FRAME/MainWindow of UI Component CRM_UI_FRAME failed
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRM_UI_FRAME/WorkAreaViewSet in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Cannot display view Root.htm of UI Component CRM_UI_FRAME
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRM_UI_FRAME/WorkAreaViewSet in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    An error occurred during initialization of the application
    An exception has occurredException Class CX_BSP_WD_RUNTIME_ERROR - View CRM_UI_FRAME/MainWindow in component CRM_UI_FRAME could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    I could not able to diagnose the error from where it is coming and I goggled lot but did not find anything about the above cited issue .
    if any of you can help me to solve this soon it will be highly appreciated .

    Hi,
    I am not sure if this appies here. You might check
    SPRO->CRM->crm cross-application components->
      Generic interaction Layer/Object Layer ->
         component-specific settings->
           define simple objects
    For these objects 2 rules apply:
    1. 'search object name' can only be used once.
    2. 'search object name' should not have the same name as any 'object
    name'.
    Do you have any entries, which break these rules?
    If it is related to component enhancement, note 1122248 might help.
    Best Regards,
    Sigrid

  • Is there a way to show busy cursor in indesign during long processing?

    Hi
    I have created an extension for inDesign. It has long processing. I want to show busy cursor while processing.
    Can anybody help me out?
    Best regards
    Sal

    @ stephen - Busy cursor is shown only on the extension and not anywhere in inDesign with "CursorManager.setBusyCursor();"
    @ Vamitul - its still showing normal cursor with setting ScriptPreference.enableRedraw to false

  • Firefox does not show url in navigation toolbar while loading webpage (in new tab)

    Firefox 3.6 when opening a link in new tab the url does not show in navigation toolbar while loading the web page. All ypu see is "Type a Web Adress" until the page load.
    Before with my older version the URL was visible in navigation toolbar even before page started loading. How can I get this back?

    A couple of possible causes. First check for an incompatible add-on, for details of how to do that see the [[troubleshooting extensions and themes]] article.
    Another possible cause is a problem with the file that stores bookmarks. One of the symptoms is the URL not being updated in the Location Bar as you browse. For details on this see [http://kb.mozillazine.org/Locked_or_damaged_places.sqlite locked or damaged places.sqlite].

  • Spry Slideshow Shows All While Loading

    The Spry Slideshow I built shows all the slides at once while it is loading for the first time. Is there a way to quell this, as it makes the viewer a little queasy -- especially on slow-loading connections. I tried moving the "unobtrusive" javascript file to the end of the page, but that did nothing.
    Suggestions?

    Excellent suggestion!
    First, here are the JS files that get linked in the head of the web page:
    SprySlidingPanels.js
    SpryDOMUtils.js
    Second, here is the basic structure of the slideshow (someone else worked on the CSS, so I cannot vouch for it--though the same thing seems to happen in any slideshow I build, so I seriously doubt there is a CSS issue causing this.)
    <div id="newsTicker">
    <div id="ticker" class="SlidingPanels">
    <div class="SlidingPanelsContentGroup">
                <div id="item1" class="SlidingPanelsContent">
                    <img src="irrelevant.jpg" width="641" height="246" alt="doesn't matter" />
                    <div class="next"><a href="#" id="link2">Next &gt;&gt;</a></div>
                </div>
                <div id="item2" class="SlidingPanelsContent">
                    <img src="irrelevant.jpg" width="641" height="246" alt="doesn't matter" />
                    <div class="prev"><a href="#" id="link1">Prev &lt;&lt;</a></div>
                    <div class="next"><a href="#" id="link3">Next &gt;&gt;</a></div>
                </div>
                <div id="item3" class="SlidingPanelsContent">
                    <img src="irrelevant.jpg" width="641" height="246" alt="doesn't matter" />
                    <div class="prev"><a href="#" id="link2">Prev &lt;&lt;</a></div>
                    <div class="next"><a href="#" id="link4">Next &gt;&gt;</a></div>
                </div>
                <div id="item4" class="SlidingPanelsContent">
                    <img src="irrelevant.jpg" width="641" height="246" alt="doesn't matter" />
                    <div class="prev"><a href="#" id="link3">Prev &lt;&lt;</a></div>
                    <div class="next"><a href="#" id="link5">Next &gt;&gt;</a></div>
                </div>
                <div id="item5" class="SlidingPanelsContent">
                    <img src="irrelevant.jpg" width="641" height="246" alt="doesn't matter" />
                    <div class="prev"><a href="#" id="link4">Prev &lt;&lt;</a></div>
                </div>
    </div>
    </div>
        <div class="bottback">
            <p class="navLinks">
              <a href="#" id="link1">Link</a> |
              <a href="#" id="link2">Link</a> |
              <a href="#" id="link3">Link</a> |
              <a href="#" id="link4">Link</a> |
              <a href="#" id="link5">Link</a>
            </p>
        </div>
      </div>
    Lastly, here is the "unobtrusive" code:
    //Declare the variable name outside the function so it is global.
    var sp;
    function InitPage()
    sp = new Spry.Widget.SlidingPanels("ticker");
    Spry.$$("#link1").addEventListener("click", function(){sp.showPanel('item1');return false; }, false);
    Spry.$$("#link2").addEventListener("click", function(){sp.showPanel('item2');return false; }, false);
    Spry.$$("#link3").addEventListener("click", function(){sp.showPanel('item3');return false; }, false);
    Spry.$$("#link4").addEventListener("click", function(){sp.showPanel('item4');return false; }, false);
    Spry.$$("#link5").addEventListener("click", function(){sp.showPanel('item5');return false; }, false);
    Spry.Utils.addLoadListener(InitPage);
    What's weird is that I seem to be the only soul in the universe experiencing this. And yet, every single slideshow I develop shows all panels on load... why?

  • Spry codes showing while loading

    Hi all.
    Does a spry page suppose to show its codes while its data
    & images being loaded to the page?
    It's doing it on a page that I'm testing at the moment. Any
    tips?

    Hi all.
    Does a spry page suppose to show its codes while its data
    & images being loaded to the page?
    It's doing it on a page that I'm testing at the moment. Any
    tips?

  • Problem while working with Business Indicator in oracle BPM11.1.1.7

    I am working for  process analytic and BAM dash board for our application. currently i am having following problems
    I have define  business indicator of type counter, measure and dimension.I am able to see counter and dimension business indicator(BI)   Both in data association editor and  custom dash board editor  in work space. However , measure BI appears in brown color in data association editor  and i am not able to perform any mapping to it. additionally,  Measure BI  does not appear  even in work space customer editor .
    Any solution for above problem is welcome

    Hi
    I have tried this and with small change this is working fine.
    TYPES :
    BEGIN OF ty_tadir,
    pgmid TYPE pgmid,
    object TYPE trobjtype,
    obj_name TYPE sobj_name,
    END OF ty_tadir.
    DATA : it_tadir TYPE STANDARD TABLE OF ty_tadir,
    wa_tadir TYPE ty_tadir.
    data: stmp_dokhl like TAB512 occurs 100000 with header line.
    data: options1 like rfc_db_opt occurs 10 with header line.
    data: wa_options1 like line of options1.
    data: nametab1 like rfc_db_fld occurs 10 with header line.
    START-OF-SELECTION.
    DATA : W_VALUE(5) TYPE C,
    W_VALUE1(20) TYPE C.
    W_VALUE1 = 'OBJ_NAME LIKE ''Z%'''.
    wa_options1-text = w_value1.
    APPEND wa_OPTIONS1 to OPTIONS1.
    CLEAR wa_OPTIONS1.
    call function 'RFC_READ_TABLE'
    *destination 'zard'
    exporting
    query_table = 'TADIR' "'ZBANK_GUARANTEE'
    tables
    options = options1
    fields = nametab1
    data = stmp_dokhl
    exceptions
    table_not_available = 1
    table_without_data = 2
    option_not_valid = 3
    field_not_valid = 4
    not_authorized = 5
    data_buffer_exceeded = 6
    others = 7 .

  • Data Records are missing in between while loading from R/3 (ECC) to BI.

    Dear Experts,
    I have created a custom DataSource on Custom Function Module.  This datasource contains 600 fields. (I know its a monster and splitting options are thinner).
    1) Validate the data using RSA3 in R/3 and showed the correct record count.
    2) Validate the data by debugging the FM, still showed the correct record count.
    But while loading from R/3 to BI, records are missing.
    Various Scenarios load from R/3 to BI:
    1a) Loaded full load (78000 records) with all default data transfer settings.  PSA showed up with 72000 records (missing 6000) only.  Compared the Idocs vs data packets, both reconciled.
    1b) Loaded full load (78000) with modified settings (15000 KB / data packet).  PSA showed up with 74000 records (missing 4000) only.
    2a) Loaded with selection parameters (took a small chunk) (7000 records) with default data transfer settings.  PSA showed up only 5000 records (missing 2000).
    2b) Loaded with selection parameters (7000 records) with modified settings (15000 KB / data packet).  PSA showed up all 7000 records.
    3a) Loaded with selection parameters (took further small chunk) (4000 records).  PSA showed up all records regardless data transfer settings.
    Also please look at this piece of code from the function module,
    IF l_wa_interface-isource = 'ZBI_ARD_TRANS'.
          l_package_size = l_wa_interface-maxsize DIV 60.
        ENDIF.
    I really appreciate your advise or help in this regard.
    Thanks much,
    Anil

    Hi,
    Which module u want?
    if its SD(for example)
    steps>>
    1>In AWB goto "business content"
    2> goto "Info provider"
    3>Under infoarea select SD cubes
    4> Drag related cubes and ODS to right panel
    5> Set the grouping option "In Data flow before&afterwards"
    6>Install the collected objects
    Go to R/3
    7> Use Tcode RSA5 Transfer all regarding SD module datasources
    Goto BW
    8> Right click on the source system "Replicate datasources"
    [DataSources|http://help.sap.com/saphelp_nw70/helpdata/en/3c/7b88408bc0bb4de10000000a1550b0/frameset.htm]
    Edited by: Obily on Jul 10, 2008 8:36 AM

  • Af:statusIndicator does not show busy icon when a command button is click

    Hi Guys,
    af:statusIndicator does not show busy icon or motion when a command button is click
    I am working on an excel data upload functionality on .jspx page. I use “af:inputFile” file uploader to upload an excel file then process the data and store it as a list of objects in memory and display it in “af:table” table
    I added “af:statusIndicator” to the page to show the user that the page is progressing while the data is uploading and when it is saving the data to the database.
    In this case, when the “af:inputFile” is clicked to upload the excel file - the status indicator shows a progress icon (movement) which is expected and is good. However, after the data have been display in the table when I click on a command button that saves the data to the database – I expected the status indicator to start its busy motion but that is not happening. Whereas, the command button grayed out and is disable when I clicked the button until the operation is completed.
    Is there any way to start the statusIndicator when a command button is clicked?
    I tried the following options
    *<af:statusIndicator id="si1_uploadStatus" partialTriggers="pc1:cb1 pc1:table"/>*
    Where pc1:cb1 is the command button and pc1:table is the table
    *<af:commandButton text="Submit Uploads" id="cb1"*
    *disabled="#{!viewScope.batchUploadController.allSavable}"*
    *partialTriggers="::infFilePath"*
    *action="#{viewScope.batchUploadController.saveUploadedData}"*
    *blocking="true"/>*
    Thanks,

    Can somebody please address this?
    Thanks,

  • Error While loading a image from database

    Purpose
    Error While loading the Image from the database
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Requirement:
    I am developing the web pages using PSP(Pl/sql Serverpages) . I have a requirement to show a image in the webpage. I got the following procedures from the oracle website.
    I have created the following table to store the images
    create table DEMO
    ID INTEGER not null,
    THEBLOB BLOB
    And I also uploaded the Images. Now I am try to get a image from the table using the following procedure .But I am getting the error message line 25( htp.prn( utl_raw.cast_to_varchar2( l_raw ) );) .at it throws the following error messages
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Procedure that I used to get the image
    create or replace package body image_get
    as
    procedure gif( p_id in demo.id%type )
    is
    l_lob blob;
    l_amt number default 30;
    l_off number default 1;
    l_raw raw(4096);
    begin
    select theBlob into l_lob
    from demo
    where id = p_id;
    -- make sure to change this for your type!
    owa_util.mime_header( 'image/gif' );
    begin
    loop
    dbms_lob.read( l_lob, l_amt, l_off, l_raw );
    -- it is vital to use htp.PRN to avoid
    -- spurious line feeds getting added to your
    -- document
    htp.prn( utl_raw.cast_to_varchar2( l_raw ) );
    l_off := l_off+l_amt;
    l_amt := 4096;
    end loop;
    exception
    when no_data_found then
    NULL;
    end;
    end;
    end;
    What I have to do to correct this problem. This demo procedure and table that I am downloaded from oracle. Some where I made a mistake. any help??
    Thanks,
    Nats

    Hi Satish,
    I have set the raw value as 3600 but still its gives the same error only. When I debug the procedure its throwing the error stack in
    SYS.htp.prn procedure of the following line of code
    if (rows_in < pack_after) then
    while ((len - loc) >= HTBUF_LEN)
    loop
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1, HTBUF_LEN);
    loc := loc + HTBUF_LEN;
    end loop;
    if (loc < len)
    then
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1);
    end if;
    return;
    end if;
    Its a system procedure. I don't no how to proceed .. I am really stucked on this....is their any other method to take picture from the database and displayed in the web page.....???? any idea..../suggesstion??
    Thanks for your help!!!.

  • Issue while loading of data from DSO to InfoCube

    Hi Experts,
    Can you tell me what might root casue if data is coming into DSO from R3 its correct and fine as required but while loading it to InfoCube from DSO its showing wrong data like some of Line Items that were closed were shown open in Cube AND also KF values were not right
    Also there is no Routine code involved b/w DSO and InfoCube.
    Thanks in adv .
    NP

    Hope you didnt delete some req from DSO without deleting change log . This might cause inconsistency.
    If so , delete data from dso by right click delete data  and reload .

  • Error while loading a CSV file

    Haii,
    While loading a csv file in Open Script I'm facing with the foll: error.
    Error loading the CSV file Caused by: java.io.SocketException occurred.
    Can anyone please help me sort it out.
    Thank You

    Hi,
    Are you creating a table and loading it in Openscript??
    If so, can you show the screen shot.
    One more information , you can also change the Excel sheet into a CSV file and you can add it as a databank in the Tree view of the Openscript.
    Thanks and Regards,
    Nishanth Soundararajan.

  • Error while loading xml file

    I am getting error while loading the XML file. I have attached the jpg file which shows error details.....pls let em know the solution....
    thanks

    What is the error message?  Where is the jpeg?

Maybe you are looking for