Horizontal scrollbar isn't showed when using HTMLCSS format

I'm using iAS Rel 1
when creating "Right to Left" reports in HTMLCSS format with the report server , the horizontal scrollbar
isn't showed !
is there anyone can help me ?
I'mm be really thankfull

Hi Kamran,
So you are using Reports 6i. Even in Reports 6i, you should not be hitting this problem. Pl install the latest 6i patchset 15 from Metalink (patch number 3171855). However, it is also possible that this is not actually a Reports issue. Pl try to view the report output in a different browser and see if the issue reproduces.
If it reproduces, you can also try to see a report in the "left to right" direction also results in this problem.
Navneet.

Similar Messages

  • How do you add a new thumbnail to a slide show when using in-browser editing?

    how do you add a new thumbnail to a slide show when using in-browser editing?

    At this moment you can’t add pictures to a slideshow. You only can replace them.

  • How to keep display as Show when using Hide Show region with pagination?

    We are trying to use a 'Hide Show' region with pagination. The problem is that if you 'Show' (ie expand) the region and then hit the link for the next page, the next page displays Hidden (ie collapsed). We want to keep the page display as 'show' when you move to the next set of records.
    There is a fix in this forum for this issue in version 2.2 (Application Express) but we are on 2.0.0.00.49 (HTML DB). Does anyone know of a similar fix for HTML DB 2?
    Ver 2.2 fix is at:
    http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html#STICKY
    Thanks.
    David.

    Thanks for your reply.
    Running the application install script via SQL Plus using FLOWS_020000 produces result:
    NOT COMPATIBLE (Your export may contain calls not supported by your HTMLDB version.)
    The wwv_flow_api package routines that are not available in our version appear to be:
    create_or_remove_file
    create_install
    create_install_script
    Is there any way to handle these calls in other ways?
    Thanks
    David.

  • Page tiles not showing when using Adobe Muse and Web marketing hosting

    Hello
    I have created a muse site that has the correct page titles showing in the browser when using the web basics hosting. But I need the same site to now contain a blog so have changed the hosting to web marketing, this has resulted in the pages not showing their page titles in the browser
    Does anybody know why this is or what I can do about it?
    thanks for any info
    regards
    Martin

    Page title should not change with site plan change unless it is done manually , or if modified file is uploaded from Muse.
    Please check the titles added on page if they exist or not, if still same issue , provide the site url.
    Thanks,
    Sanjit

  • Kernel panic when using FAT formatted external storage

    I have a PowerBook G4 17" with 1GB RAM and since updating to 10.4.8 from 10.4.7 I have received on three occasions a kernel panic, i.e. a message that says "You need to restart your computer. Hold down the Power button for several seconds or press the Restart button."
    Looking at the conditions under which this event occured, on all three occasions, this looks to be disk I/O related using external drives however the cause could be something else like Spotlight indexing for example - I am hoping this is not hardware.
    On the occasions where the problem has occured the attached storage devices have been:
    1. A FAT formatted, bus powered Firewire attached 2.5" IDE drive
    2. A FAT formatted PC Card drive
    I had this happen to me last night with the PC card drive when I found I couldn’t delete any data from the drive but could write and overwrite data. My internal IDE drive seems to be fine however I decided to eject the drive and reinsert it but on reinsertion the system could not see or mount it. I then tried a FAT formatted CF card with PC Card reader/adapter – same thing, it wouldn’t mount. I then decided it was time to reboot and that is when the message popped up as the transparent grey bitmap (http://docs.info.apple.com/article.html?artnum=106227). After rebooting I got a kernel error stack trace telling me something bad happened hence the reboot. This thread seems to be very similar to my problem except with a new Intel version of the 17":
    http://forums.macnn.com/90/mac-os-x/312947/what-does-mean-when/
    Any ideas? In all cases this has occured when using an external FAT formatted drive and actively writing data to it - it doesn't seem to matter how it is attached or specifically which drive it is. I have not had this problem previously when using external storage media and I am not using any backup software when this occurs - I am simply saving files from various applications be it PhotoShop or a Safari download. One last note, I am using Intego VirusBarrier X4.
    Right now my plan will be to run the disk utility, disable anti-virus and possibly disable indexing on external drives and try to reproduce the issue - the only problem with this is with the exception of the 10.4.8 update, what changed?
    PowerBook G4 17" 1.33Ghz   Mac OS X (10.4.8)   1GB RAM

    Funnily enough I can backup to my USB attached bus powered 2.5" drive formatted as Mac OS Extended, this is why I am wondering if there is a relationship between externally attached FAT formatted storage and kernel panics.
    My system disk checks out with no errors BTW - I also rarely travel with my PowerBook so it is relatively well looked after and should have a lower exposure to issues relating to faulty hardware.

  • Justification property is not working when using a format mask

    Hi all,
    I have a text item with number data type and right to left reading order,
    I put the justification property to right.
    I used a format mask to set two decimal places for the entered number.
    The problem is the justification property is not aligning right, I noticed that it's aligning right only if i removed the format mask or changed the reading order to (left to right).
    I hope there is a solution for this
    Thanks

    Format mask and justification will not work for Non english character sets.
    To support bidirectional languages such as Arabic, do not use Left or
    Right justification (numeric text items can use Right justification). Use
    Start and End instead.
    Rajesh ALex

  • Why JFileChooser doesn´t show when using JWS?

    I have this code where a JFileChooser is shown and the user must choose a directory where JasperReport must be exported to Excel.
    Everything works fine when running locally (the jar file) but when I put in the server and my client runs it using JWS the JFileChooser dialog doesnt show up.
    I am aware that the JNLP must have all-permissions, and it is but still does not show the diago to select the directory. And worse, no exceptions are shown else well.
    final JFileChooser fc = new JFileChooser();
    int choice = 0;
    try {
         fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
         System.out.println("1"); // DOES NOT REACH THIS LINE
         fc.setDialogTitle("Select Directory to Export");
         System.out.println("2");
         fc.setApproveButtonText("Select");
         System.out.println("3");
         fc.setMultiSelectionEnabled(false);
         System.out.println("4");
         fc.setCurrentDirectory(new File("C:/Kooky/SigGraf"));
         System.out.println("5");
         choice = fc.showOpenDialog(frame);
         System.out.println("6");
    } catch (Exception ex) {
         ex.printStackTrace();
    if (choice == JFileChooser.APPROVE_OPTION) {
         Thread worker = new Thread() {
              @Override
              public void run() {
                   String msg = "";
                   try {
                        File dir = fc.getSelectedFile();
                        String local = dir.getPath();
                        msg = Report.exportarParaExcel(startDate, endDate, local);
                   } catch (Exception ex) {
                        ex.printStackTrace();
                   final String msg2 = msg;
                   SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                             JOptionPane.showMessageDialog(frame, msg2);
         worker.start();
    } else {
         JOptionPane.showMessageDialog(frame, "You did not select a directory to export the report.");
    }The JNLP file:
         <security>
              <all-permissions/>
         </security>
    All the jars are signed with the same certificate.

    FranzAnthony wrote:
    Amazing your answer, you asked for exactly what I posted, thanks a lot for your help, let it be.Please read the SSCCE link again, as it isn't "exactly" what you posted. It's so much easier to answer questions when a nice compilable and runnable example has been provided by the OP. You are not required to do this of course, but if you do provide one, the odds of getting a quick helpful answer will be greatly increased.
    Or you can post a snarky comment and antagonize all the rest of the forum regulars who otherwise would have helped you. Your call.

  • Pivot table total on a computed column not showing when using a filter

    I have this strange issue. I will try to explain.
    I have three columns in my report - Delivered Qty, Opened Quantity, and the third one is computed that is (Delivered Qty - Opened Qty). The data is displayed in a table by quarter. So basically I have Quarter, Delivered Qty, Open Qty, Not Opened Qty. I also have the total row. A pie chart shows the opened vs. un-opened quantities. It all works fine.
    The issue is when I add a prompt and the corresponding filter, the total for the computed field is blank. This happens whether it is pivot table or a regular table. That causes the pie chart to show 100% for the Opened qty.
    When I remove the filter, it works again. I can see the total for the computed field and the pie chart looks great.
    Can anyone please help me? I have a number of hours trying to play around with this and also looked in the forum to see if any one might have already discussed similar issue in the past. I could not find any.
    Thanks.

    I found the issue with my table total not showing up. Basically the new materialized view had its own data table alias. However, in the filter I was using date columns from different date table alias (copy and paste problem). As soon as I changed to the right date columns from the associated alias table, the row total showed up.
    Thanks anyways for your support.

  • ARD Client Doesn't Show When Using Scanner and Network Range

    All-
    When I use the Scanner in ARD3 to scan a remote Network Range over the internet, the ARD client that I KNOW EXISTS in that same IP range DOES NOT show up (other ARD clients that I'm not interested in do show up, but not the specific ARD client I need to observe/control).
    If I then call the user at the remote ARD client on the telephone, and have them give me their IP address (using www.whatismyip.com, for example), I can use the Scanner in ARD3 to "find" the ARD client and add it to my All Computers list. Process: change the popup box to read "Network Address" instead of "Network Range" and set the IP address field to the address provided by the user.
    Why doesn't the remote ARD client show up when I scan for it using a Network Range in ARD3? Obviously, I don't want to have to call up each user every time I need to perform maintenance/control a client to get their (dynamic) IP address.
    I could use dynamic DNS, but that's overkill. If I know (from experience) that my ARD clients are in IP ranges X, Y, and Z, then I SHOULD be able to simply scan for them (or so I thought).
    Any help appreceated.

    Updated to ARD3.1 (admin and clients), but that did not solve the issue.
    Let me try to restate the problem:
    The ARD client is out of state/across the country (i.e., different sub-net) using a dynamically assigned IP adddress. I can (for now) connect to that ARD client successfully, and perform all ARD functions (that I've tried so far) becasue I know (for now) that client's IP address (I called and spoke with the user who used www.whatismyip.com to give me their IP address). So what's the problem, you ask?
    Some time in the future, that same ARD client will have a new, dynamically assigned IP address. I'd like to be able to connect to that client without having to call on the telephone and ask the user what IP address they have been assigned now.
    My thinking was that I could make a pretty good guess at their IP address (based on their old IP address, and the way Cable and Telco ISPs allocate/lease IP addresses). For example, if their current dynamic IP address is 999.888.777.45, I could guess that a subsequent dynamically assigned IP address would be in the range 999.888.777.2 to 999.888.777.255. With ARD, I could simply scan that range of network addresses using the Scanner and quickly find the ARD client I want.
    I tried to do just that, and the ARD scanner did not find my client when I scanned the network range that the ARD client was actually in. It showed other ARD clients (that I do not administer, own, or want to hack into), but not the one I do want to observe/control/maintain (and have a legal right to). Somewhat paradoxically, when I used the Scanner to find the same ARD client by specific IP address, there was no problem.
    Why doesn't the ARD Scanner "see" the ARD client when scanning the network range?

  • Pages don't always show when using cfinclude

    For our site we have a page template, a shell, that we use to
    display pages. It uses a cfinclude to call the page into the
    template:
    <cfinclude page=#url.PageName#.cfm>
    The link for that page would look like:
    <a href="index.cfm?PageName=contact">
    However, on a number of occassions, users click a link for a
    page, and get the error "page not found". If they simply hit
    refresh, the page shows up without a problem. The page is there,
    and it works, but it just doesn't always show until refreshed. Of
    course, most users don't know to refresh, and it's a pain to do
    anyway.
    Any ideas why this happens? Suggested solutions?
    Thanks,
    Tim

    i use cfinclude constantly with no problem... when you get
    the 404 page, right click, go to properties and see what page is
    being called.
    i doubt this would be an issue but try dropping the "url."
    from variable... (never know). i usually misspell things like
    "PageName" for the same reason (never know) so would be pgName or
    something. i never use common words unless i have to in variables
    and db fields.
    love CF but it has got tons of weird bugs that you just have
    to work around.
    hope this helps....

  • Data in itab does not show when using FM REUSE_ALV_POPUP_TO_SELECT

    Hello Experts,
    I am using the said FM to display some data when the user clicks on a
    custom button I made. But no data is displayed in the popup window. I
    debugged it and the itab I am passing has a value in it. Below is my code:
    WRITE icon_green_light AS ICON TO wa_legend-legend.
            wa_legend-column      = text-t05.
            wa_legend-description = text-d01.
            APPEND wa_legend TO lt_legend.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            DEFINE m_fill_fieldcat.
              wa_fieldcat-fieldname = &1.
              wa_fieldcat-tabname   = &2.
              wa_fieldcat-seltext_m = &3.
              wa_fieldcat-icon      = &4.
              wa_fieldcat-outputlen = &5.
              append wa_fieldcat to lt_fieldcat.
              clear wa_fieldcat.
            END-OF-DEFINITION.
            m_fill_fieldcat 'LEGEND'      'ITAB' text-t04 'X' '14'.
            m_fill_fieldcat 'COLUMN'      'ITAB' text-t11 ''  '50'.
            m_fill_fieldcat 'DESCRIPTION' 'ITAB' text-t12 ''  '50'.
            CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
    *           I_TITLE                       =
    *           I_SELECTION                   = 'X'
    *           I_ALLOW_NO_SELECTION          =
                i_zebra                       = 'X'
    *           I_SCREEN_START_COLUMN         =
    *           I_SCREEN_START_LINE           =
    *           I_SCREEN_END_COLUMN           =
    *           I_SCREEN_END_LINE             =
    *           I_CHECKBOX_FIELDNAME          =
    *           I_LINEMARK_FIELDNAME          =
    *           I_SCROLL_TO_SEL_LINE          = 'X'
                i_tabname                     = 'LT_LEGEND'
    *           I_STRUCTURE_NAME              =
                it_fieldcat                   = lt_fieldcat[]
    *           IT_EXCLUDING                  =
    *           I_CALLBACK_PROGRAM            =
    *           I_CALLBACK_USER_COMMAND       =
    *           IS_PRIVATE                    =
    *         IMPORTING
    *           ES_SELFIELD                   =
    *           E_EXIT                        =
              TABLES
                t_outtab                      = lt_legend[]
             EXCEPTIONS
               program_error                 = 1
               OTHERS                        = 2.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
    Hope you can help me guys. Thank you and take care!

    Hi,
    check this code and modify your FM accordingly then it'll work,
    Q. i_checkbox_fieldname = 'CHECKBOX'
    A. If the table output in the popup has checkboxes at the beginning of the rows (e.g. for multiple selection), the internal table must contain a field containing the value of the checkbox.
    Assign the name of this field to the parameter I_CHECKBOX_FIELDNAME.
    Q. i_tabname = 'TLINE'
    A. This is the name of ur input help internal table
    Q. it_fieldcat = fieldcat[]
    A The table u gonna display has to have a fieldcat.
    Q. it_excluding = extab[].
    A. In case u wanna exclude some functions.
    Below is a working example, paste it in se38 and activate.
    !!! Warning SAVE IT AS A LOCAL OBJECT !!!
    report ztests1.
    type-pools: slis.
    data: index type i.
    data: l_kunnr like kna1-kunnr.
    data: input(10) type c,
    text(4) type c,
    text1(5) type c.
    data: begin of itab occurs 10,
    kunnr like kna1-kunnr,
    name1 like kna1-name1,
    end of itab.
    data: e_exit.
    data: fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    parameter: p_kunnr(10) type c.
    at selection-screen on value-request for p_kunnr.
    select kunnr name1 up to 10 rows
    from kna1
    into table itab.
    fieldcat-tabname = 'ITAB'.
    fieldcat-fieldname = 'KUNNR'.
    fieldcat-seltext_m = 'Cust'.
    fieldcat-ddictxt = 'M'.
    fieldcat-outputlen = 10.
    APPEND fieldcat.
    CLEAR fieldcat.
    fieldcat-tabname = 'ITAB'.
    fieldcat-fieldname = 'NAME1'.
    fieldcat-seltext_m = 'Cust Name'.
    fieldcat-ddictxt = 'M'.
    fieldcat-outputlen = 30.
    APPEND fieldcat.
    CLEAR fieldcat.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
    EXPORTING
    I_TITLE = 'Customer Selection'
    I_SELECTION = 'X'
    I_ALLOW_NO_SELECTION =
    I_ZEBRA = ' '
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    I_CHECKBOX_FIELDNAME =
    I_LINEMARK_FIELDNAME =
    I_SCROLL_TO_SEL_LINE = 'X'
    i_tabname = 'ITAB'
    I_STRUCTURE_NAME =
    IT_FIELDCAT = fieldcat[]
    IT_EXCLUDING =
    I_CALLBACK_PROGRAM =
    I_CALLBACK_USER_COMMAND =
    IS_PRIVATE =
    IMPORTING
    ES_SELFIELD =
    E_EXIT = e_exit
    tables
    t_outtab = itab
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    seshu.

  • P30: External HD isn't detected when using IEEE 1394 cable

    My P30 won't/ can't detect my newly aquired Western Digitak Extreme Lighted Drive 320GB when I connect it via the firewire port. I use a 6 pin to 4 pin cable (which cost a fortune, by the way) that is supposed to be a way to connect this drive to a pc.
    My ieee 1394 driver seems to be called "VIA OHCI Compliant IEEE 1394 host controller".
    Can anyone tell me what to do? I really need to connect this drive by firewire because I need the USBs for other devices.
    Thank you!

    This may sound like an obvious problem, but is the drive:
    1. Set to Master on the jumpers?
    2. Formatted?
    If the drive is not set to master, the computer will not recognise it using 1394. And if it is set to master, but it has not yet been formatted, the computer will register that something using 1394 is connected, but will not know what to do. To format you right click on My Computer, and select manage.
    Mike

  • Rectangle isn't showing when I highlight object with selection tool

    I am no longer able to change size of an object as the size rectangle doesn't surround it anymore when i highlight it.
    Any help would be very much apprectiated.
    Thanks

    Try View > Show bounding box

  • Validator isn't fired when using example code from chapter 40: Validating Data

    When following example code, mentioned in the Flex Developer
    Guide on page 1282 is copied into an mxml example application and I
    run the application, validation is never fired.
    When I have a look at other example code, which is using the
    listener- and trigger-property on the validator everything works
    fine.
    Could you explain why the example code from the Dev-guide
    doesn't work as mentioned in the guide?

    Nathalie,
    I believe you need to specify the "trigger" and "listener"
    properties as well. For more information, see the last example on
    this page:
    http://livedocs.adobe.com/flex/201/html/validators_093_04.html

  • Don't want TOC to show when using Bookmark feature

    I want to use the bookmark feature on a quiz but the TOC shows on the screen.  How do you take it off?

    If you are NOT using an LMS then you can turn on Self Paced Learning in the TOC settings.
    If you ARE using an LMS, then Self Paced Learning is disabled and you need to rely on Resume Data Bookmarking which is on by default whenever you report to an LMS (unless you have Never Send Resume Data checked in your LMS Customization Settings in Captivate).

Maybe you are looking for