Why awful gray color of data results grid in the 1.1.23.64 ?

SQL Developer 1.1.23.64 Production is a great product. Really great. It will enormously boost the popularity of Oracle database. Hence, it is not understandable:
1. why SQL Developer development team insists on awful gray color of data results grid? It spoils very good look-and-feeling of SQL Developer IDE. The best solution would be to provide it as an option in Tools\Preferences
2. why font size of Help file is still too small and unreadable, specially on Linux platform (RHEL-4.4, Sun Java jdk1.5.0_10) ?
Cheers
Albert

Albert,
Were you also getting a grey color in the SQLWorksheet portion of the IDE? When I hit f9 after entering a script, the script portion turns an ugly gray color, but the results grid looks fine. I'm trying to figure out if your issue is the same as mine.
Thanks!

Similar Messages

  • Why is my color picker not showing up in the gradient panel?

    When I try to change the colors to a gradient I am not able to change the selected color.
    When I double click on the color slider I want to change, the pop up panel gives me grayed out CMYK sliders. And all of the fill and stroke icons go dark and display questions marks ????.
    When I click on the swatch button no swatch colors appear in the panel.
    Am I missing something obvious here? I haven't had this issue before today. I am running the latest version of CC on a windows 7 64 bit machine.  Please help! I need my gradients! I can't live with out them!

    I drew my shape, then went to the GRADIENT panel and clicked in the default gradient box to apply the default white to black gradient.  Normally you can click on either color to change it using the ways I described in my original post but those are not available to me.  The only way I could add a color was to drag it from the SWATCHES panel into the gradient colors slider.
    This means that I cannot make changes to colors directly in the gradient panel like before.  I have to make changes to the individual colors but clicking on the color in the gradient slider then going to the COLOR panel and adjusting the color there. Or by dragging in a whole new color from the COLOR or SWATCHES panels.  This is really killing my work flow.

  • Use two temporary tables to assign "color" to data results

    Hi, Everyone... Here's a rundown of what I'm trying to do, any help is obviously appreciated...
    Example Tables and Data:
    I have 5 Courses, each course has 2 assignments.
    with Courses as (
    select 100 courseID from dual union all
    select 200 from dual union all
    select 300 from dual union all
    select 400 from dual union all
    select 500 from dual
    ), Assigns as (
    select 'test100' name, 100 courseID from dual union all
    select 'test100', 100 from dual union all
    select 'test200', 200 from dual union all
    select 'test200', 200 from dual union all
    select 'test300', 300 from dual union all
    select 'test300', 300 from dual union all
    select 'test400', 400 from dual union all
    select 'test400', 400 from dual union all
    select 'test500', 500 from dual union all
    select 'test500', 500 from dual
    select assigns.name, assigns.courseID from courses
    inner join assigns on assigns.courseID = courses.courseIDI need each assignment to get a color assigned to it according to it's courseID. So my theory is that I'd have a temporary table with a list of colors; each courseID would get assigned a color but my question is how do I assign each courseID a color without anything to join the temporary table on? Once each courseID has a color, I'd join in Assigns so that each assignment has a color associated with it according to it's courseID.
    --Color table with 6 colors
    with Colors as (
    select 'red' color from dual union all
    select 'blue' from dual union all
    select 'yellow' from dual union all
    select 'green' from dual union all
    select 'purple' from dual union all
    select 'teal' from dual
    )I have a previous post about this but I didn't explain it well and to link to it would probably add confusion to this question... happy to delete that post if someone recommends it.
    Thanks for any help! Running Oracle 11g.

    Hi,
    939920 wrote:
    I don't have the ability to store the courseID with the colors...Then get it, or have someone with the ability make the change for you.
    Is the problem that you have more than 6 courses, but you want to color-code them with only 6 colors, and there's no telling which courses may be included in the results of a given query?
    If so, you can do somehting like this:
    WITH     colors     AS
         SELECT  'red' AS color_name     FROM dual UNION ALL
         SELECT  'blue'                FROM dual UNION ALL
         SELECT      'yellow'          FROM dual UNION ALL     
         SELECT     'green'               FROM dual UNION ALL
         SELECT  'purple'          FROM dual UNION ALL
         SELECT     'teal'                FROM dual
    ,     colors_plus     AS
         SELECT     color_name
         ,     ROW_NUMBER () OVER (ORDER BY NULL) - 1     AS color_id
         ,     COUNT (*)     OVER ()                    AS color_cnt
         FROM     colors
    ,     course_assigns     AS
         SELECT  a.name
         ,     a.courseid
         ,     DENSE_RANK () OVER (ORDER BY  a.courseid)     AS course_num
         FROM          assigns          a
         INNER JOIN      courses      c     ON   a.courseid   = c.courseid     -- If needed
    SELECT     ca.name
    ,     ca.courseid
    ,     cp.color_name
    FROM     course_assigns  ca
    JOIN     colors_plus       cp  ON   cp.color_id  = MOD ( ca.course_num
                                                 , cp.color_cnt
    ;Typical output:
    AME      COURSEID COLOR_
    test100        100 blue
    test100        100 blue
    test200        200 yellow
    test200        200 yellow
    test300        300 green
    test300        300 green
    test400        400 purple
    test400        400 purple
    test500        500 teal
    test500        500 tealIt would be better if you could create a real table like colors_plus.
    If there are more than 6 distinct courses in the output, then 2 or more courses may be coded with the same color, but no color will be used N times (N>1) until all colors have been used N-1 times.
    The assignment of courses to coolors is arbitrary. Depending on how fancy you want to make this, you might want to do something more complicated. For example, say you have 2 courses with 10 rows each, and 5 courses with 1 row each. The query above will have to assign the same color to 2 differenct courses, and it might assign the color 'blue' to the 2 courses with 10 rows each. The query above can be modified, if necessary, to assign the colors in order of frequency, to guarantee that the two 10-row courses get different colors, and that the colors are more evenly distibuted in general. I'll leave this as an execise. (Hint: use the frequency in the ORDER BY clause of DENSE_RANK. To get the frequency, use the analytic COUNT function in a sub-query. Why do you need a sub-query? Discuss amongst yourselves.)

  • 30EA2/30EA1 : Selection Behavior on Master-Detail Result Grid

    Hi,
    Tested on both Win XP and Win 7, SQL Dev with the included jre.
    I notice quite annoying behavior on Master-Detail Result Grid.
    This happen on either Report with master-detail layout (i.e Active Session from the built-in report), popup describe on several tabs, and objet viewer especially on Table's Partition tab.
    Here are the things :
    1. Why made the selection on header result cell lose its focus after selecting one?
    I understand, that SQL Dev needs to re-query for displaying the detail.
    But why not made the selection focus, goes back to the selected (shown by the rectangular yellow line around the cell) header cell ?
    2. Point 1 leads to another problem.
    In order to copy the cell value, we have to click once again to select the cell value (shown by the rectangular yellow line around the cell) from the master grid and press CTRL + C.
    What a waste extra effort here.
    Moreover, I noticed some strange thing on object viewer Table - Partition tab.
    It is really hard to copy the cell value from this tab, i.e copying the partition name value.
    Everytime I press CTRL + C to copy its content, suddenly the cell goes to edit mode, which is read-only of course. CTRL + V to paste seems does not work, like it has nothing in the clipboard to be copied.
    And, navigating the cursor from this point would cause the pointer goes to the last character of the cell content, as well as selecting the content using CTRL + Home, is useless.
    Is it because there is no detail record on the detail (in this case Subpartition) tab?
    However Partition tab on Popup Describe, which supposed to have the same behavior, CTRL + C works just fine.
    Is this an expected behavior?
    Regards,
    Buntoro

    Hi Raghu,
    RaghvendraSaboo wrote:
    When changing selection in Master grid, the Child grid is repopulated. This also cause the Master grid to lose focus which makes navigating & copying from master requiring to select a cell in it again.
    Right ?
    Yes. That's right.
    I see, you use Child as referred to me as Detail, on which I get the name from Reports (when create User Defined Reports on SQL Dev, there shows Master on the top panel and below is Detail. :-)
    If yes, this is the same issue as reported in other thread where executing Statement Runner in worksheet, the worksheet loses the focus & the results grid gets the focus.
    The grid has got focus hungry & I am fixing it.Maybe this explains, why there is a small delay before showing the result grid.
    I tried to compare from SQL Dev 2.1.1 and 3.0EA1.
    3.0EA1 gets a little late (a second maybe) when displaying the result.
    For the last item, here are the things :
    1. From the Schema Browser (Left Hand Side), expand Tables.
    2. Select a partitioned table from the tree, there shown Object Viewer (on Right Hand Side) for that Table. -- I use the term Object Viewer as shown on the Preferences : Automatically Freeze Object Viewer Windows
    3. Select Partitions tab
    4. Click a cell on Master grid, there you go the losen focus
    5. Now, click once again to select
    6. Press Ctrl + C
    7. It suddenly change to cell's edit mode (of course its read-only cell)
    Navigating the cursor from this point would cause the pointer goes to the last character of the cell content, as well as selecting the content using CTRL + Home, is useless
    8. Now, go to the worksheet, and press Ctrl + V, nothing happens as if the copied cell doesn't get into the clipboard.
    Regards,
    Buntoro

  • Why is my internet search page gray?  I am able to search a topic, but the 'results' part of the screen is a medium gray color and it won't respond.  Any ideas?

    Why is my internet search page gray?  I am able to search a topic, but the 'results' part of the screen is a medium gray color and it won't respond.  Any ideas?

    Try clearing Safari's cache : Settings > Safari > Clear Cache (and Clear History)
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why can't I see these results in the results grid

    If I run the pl/sql below as a script F5 I can see the results of the "select * from TestOutput", but If I execute it with F9 I don't see any results in the results grid. Anybody know why? Thanks in advance for any help.
    CREATE TABLE TestOutput (val1 varchar2(50), val2 varchar2(255) , numval1 NUMBER, numval2 NUMBER);
    DECLARE
    SomeText VARCHAR2(255);
    BEGIN
    SomeText := 'Hello';
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 1, 1);
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 2, 2);
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 3, 3);
    END;
    select * from TestOutput;
    drop table TestOutput;

    I think that you he is executing all the commands of a time, selecting everything and click in F9 or F5.
    If he will be this, this behavior is correct.
    Ps.:
    F5 - scripts.
    F9 - alone statements (not to be that they are separate for semicolons).

  • HELP !  why doesn't color picker select specific color ? i make secondary layer and use the tool but no colors are selected and the gray out menu shows nothing !

    HELP !  why doesn't color picker select specific color ? i make secondary layer and use the tool but no colors are selected and the gray out menu shows nothing !
    what am i missing ??!!

    Please add you system info and SpeedGrade version and build number if you actually want help.

  • Why the IPhone 6  space gray Color doesn't have a front camera , only white and gold has front camera?

    Hello, my question is,
    why my iphone6+ A Space Gray Color doesn't have a front camera, I saw white and gold has ?

    Of course it does have the camera, it is just darker, so you don't see it. You are also in the wrong forum: this one is for the professional audio application MainStage, not for the phone.

  • Color of columns in grid

    i have displayed data in grid from multiple tables. now i want to display the primary keys in color in the report. can anyone tell me how to do it.
    thanks
    pushpa

    check the sample program :
    REPORT zsharad_test1.
    TABLES: ekko.
    TYPE-POOLS: slis. "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    statu TYPE ekpo-statu,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    menge TYPE ekpo-menge,
    meins TYPE ekpo-meins,
    netpr TYPE ekpo-netpr,
    peinh TYPE ekpo-peinh,
    line_color(4) TYPE c, "Used to store row color attributes
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
    wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    gd_tab_group TYPE slis_t_sp_group_alv,
    gd_layout TYPE slis_layout_alv,
    gd_repid LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
    PERFORM data_retrieval.
    PERFORM build_fieldcatalog.
    PERFORM build_layout.
    PERFORM display_alv_report.
    *& Form BUILD_FIELDCATALOG
    Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but can
    also allow you more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such as
    total. You may need to provide more information than if you were
    simply displaying the result
    I.e. Field type may be required in-order for
    the 'TOTAL' function to work.
    fieldcatalog-fieldname = 'EBELN'.
    fieldcatalog-seltext_m = 'Purchase Order'.
    fieldcatalog-col_pos = 0.
    fieldcatalog-outputlen = 10.
    fieldcatalog-emphasize = 'X'.
    fieldcatalog-key = 'X'.
    fieldcatalog-do_sum = 'X'.
    fieldcatalog-no_zero = 'X'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'EBELP'.
    fieldcatalog-seltext_m = 'PO Item'.
    fieldcatalog-col_pos = 1.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'STATU'.
    fieldcatalog-seltext_m = 'Status'.
    fieldcatalog-col_pos = 2.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'AEDAT'.
    fieldcatalog-seltext_m = 'Item change date'.
    fieldcatalog-col_pos = 3.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MATNR'.
    fieldcatalog-seltext_m = 'Material Number'.
    fieldcatalog-col_pos = 4.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MENGE'.
    fieldcatalog-seltext_m = 'PO quantity'.
    fieldcatalog-col_pos = 5.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MEINS'.
    fieldcatalog-seltext_m = 'Order Unit'.
    fieldcatalog-col_pos = 6.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'NETPR'.
    fieldcatalog-seltext_m = 'Net Price'.
    fieldcatalog-col_pos = 7.
    fieldcatalog-outputlen = 15.
    fieldcatalog-datatype = 'CURR'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'PEINH'.
    fieldcatalog-seltext_m = 'Price Unit'.
    fieldcatalog-col_pos = 8.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    ENDFORM. " BUILD_FIELDCATALOG
    *& Form BUILD_LAYOUT
    Build layout for ALV grid report
    FORM build_layout.
    gd_layout-no_input = 'X'.
    gd_layout-colwidth_optimize = 'X'.
    gd_layout-totals_text = 'Totals'(201).
    Set layout field for row attributes(i.e. color)
    gd_layout-info_fieldname = 'LINE_COLOR'.
    gd_layout-totals_only = 'X'.
    gd_layout-f2code = 'DISP'. "Sets fcode for when double
    "click(press f2)
    gd_layout-zebra = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text = 'helllllo'.
    ENDFORM. " BUILD_LAYOUT
    *& Form DISPLAY_ALV_REPORT
    Display report using ALV grid
    FORM display_alv_report.
    gd_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    i_callback_program = gd_repid
    i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM
    i_callback_user_command = 'USER_COMMAND'
    i_grid_title = outtext
    is_layout = gd_layout
    it_fieldcat = fieldcatalog[]
    it_special_groups = gd_tabgroup
    IT_EVENTS = GT_XEVENTS
    i_save = 'X'
    is_variant = z_template
    TABLES
    t_outtab = it_ekko
    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.
    ENDFORM. " DISPLAY_ALV_REPORT
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    DATA: ld_color(1) TYPE c.
    SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekko.
    *Populate field with color attributes
    LOOP AT it_ekko INTO wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
    i.e. wa_ekko-line_color = 'C410'
    ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
    IF ld_color = 8.
    ld_color = 1.
    ENDIF.
    CONCATENATE 'C' ld_color '10' INTO wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
    MODIFY it_ekko FROM wa_ekko.
    ENDLOOP.
    ENDFORM. " DATA_RETRIEVAL

  • Resulting grid does not contain at least one row, one column and one POV

    I have upgraded to 9.3.3 recently.
    We have a front end app which will run MDX queries to retrieve data.
    Sometimes based on the users selections MDX query might get back nothing i.e will get #missing across all rows/columns and this works fine with the existing 9.3.1 essbase server.
    If I run the same query against a 9.3.3 essbase cube I get the error "Resulting grid does not contain at least one row, one column and one POV. If you have any suppress row options selected pls clear them."
    I DO NOT have Supress missing data/zero enabled. Not sure why I get this error even though I dont have that option enabled.
    Essbase 9.3.3 on HP-UX ITanium 11.31
    APS 9.3.3 on win 2003 R2
    Smartview 9.3.3 - also tried with smartview 9.3.1.6 and see the same error.
    Any suggestions to fix this issues?

    The front end is using a VBA command "hypexecutequery" and with 9.3.3 essbase I get a return code -9 which means Operation was cancelled as per the smartview doc.
    In 9.3.1 essbase I get the return code 0 which means the query is fine even if it does not return any data.
    The query I am using now will return nothing as it is a check to see if there is any data. But with 9.3.3 Essbase I get an error code -9 which looks like it does not like the syntax or something.
    Any suggestions?

  • When I click on a result of a Google search and then go that web site, the Back button on the toolbar is grayed out and I cannot return to the search results.

    When using FF3.6 and making a Google search, when I click on a result and then go that web site, the Back button on the toolbar is grayed out and I cannot return to the search results without going to History. This does not happen all the time; about 1/2 of the time.
    This problem is not limited to Google, but occurs with other sites as well.

    If you are talking about searches from - http://www.google.com/ - are you logged into a Google account all the time? If so, check your "Search Settings" from the "gear" in the upper-right corner of that Google search page and see if you have '''Open search results in a new browser window.''' check-marked, at the bottom of that preferences page. When that is check-marked and you have Tab options in Firefox set to '''Open new windows in a new tab instead''', you will get search results always opening in a new tab instead of the same tab. As to why that works different for "sponsored links" I don't know, I haven't seen the "sponsored links" for years now, I have a GM script that blocks those advertisements.

  • 5200: Error executing query: The data form grid is invalid.

    Hi,
    I am getting this error " 5200: Error executing query: The data form grid is invalid. Verify that all members selected are in Essbase. Check log for details.
    com.hyperion.planning.HspException;hasPovDims=1;povXML=<?xml version="1.0"?><datasources><datasource name="Profit " dsid="228af2c3_129ca3dd85c_-77b1" allowEdit="1"><dim name="Period" dimIndex="1" dsName="Profit " keyDimName="Period" memberName="Apr" displayName="Period: Apr"/><dim name="Year" dimIndex="2" dsName="Profit " keyDimName="Year" memberName="FY10" displayName="Year: FY10"/><dim name="Entity" dimIndex="5" dsName="Profit " keyDimName="Entity" memberName="9999" displayName="Entity: 9999"/></datasource></datasources>"
    I have checked that both the systems essbase and planning are same. nothing's different. still i cannot find the exact reason why the report is not working.
    can any please help me.
    btw, i am using Hyperion Planning 9.3.1
    Thanks,
    BIMS

    Hi
    You probably deleted some members from outline that are used by report
    I would recommend you to open you report/grid via rep.client and try to find which elements are abcent
    Regards
    Alexander
    Edited by: Softperson on 19/8/2010 17:38

  • How to use variables, get results in a grid, without the Binds dialog.

    Hi all,
    I have recently embarked on the Oracle path, however am quite a seasoned MS SQL Server enthusiast.
    I would like to be able to use inline variables within my SQL Worksheet adhoc queries without having to bother with the BIND Popup window.
    I note that if I Run Script (F5) my code works flawlessly, but the results are not vary usable (i.e. not in a grid).
    When I use Run Statement (Ctrl+Enter) SQL Developer pops up the Enter Binds dialog, and requires I enter a value for each variable declared.
    Anyway of having my cake and eating it too?
    i.e. declaring variable, setting variable and returning results in grid, without having to be disturbed with the dialogue?
    Sample code here:
    variable vMyVariable1 number
    exec :vMyVariable1 := 7
    select MyColumn from MyTable
    where MyColumn = :vMyVariable1;
    Could someone please advise me if what I am after is possible?
    And if so point me in teh right direction?
    Thanks
    Marty

    The variable needs assigned a value, that's why you're getting prompted. When you execute the statement, it's not executing the variable and exec lines.
    Having script output available in a grid would be an enhancement request.

  • Can this be changed in Mail messages? Light gray color.

    When viewing and printing email from my Inbox, the "To" line and the date (upper right on email) appear in a pale gray color.
    Am printing email on a Canon PIXMA MX310, and printing in full standard color becaue I need too keep the messages intact as far as font colors, highlights, etc. 
    Problem is when these pages are faxed and photocopied, the two pale gray areas often come out very light, too faded. 
    Can it be changed?     .
    Thanx.
    P.S.  An example is this cut and paste from this Apple Support Communities page where it shows the "sign out" link.  See how pale the "Welcome" is.  It is even lighter than that in my email.
    Welcome, ParrotPal

    I found that they do list in the order you put them on the phone, but when I had to do a reset/restore it placed them into a nearly alphabetical order.
    I have found no way to manually change the order nor did my local Genius Bar.

  • Data Encryption : Length of the result data in RAW

    Hello,
    I am pretty new in data encryption, and in 10g, I use package DBMS_CRYPTO.
    I have no problem with that.
    I want to save to encrypted data in a table.
    I think about using RAW columns.
    The origine strings are saved into VARCHAR2(4000).
    How can I roughly compute and figure out the number of RAWs resulting of the encryption? Is there a kind of formula ?
    Is this connected with the length of the encryption key?
    Thanks a lot,
    Olivier

    Hi Murali,
    Thanks for your reply.
    Yes that's why I found it was weird.
    I always have a nice pop up window when click "Data Mart Status of The Request"...
    usually.
    It also didn't happen to all ODS/Cube,
    some of it still shows a nice pop up window,
    for loading using InfoPackage or DTP.
    So it's not a system problem... there's still pop up window.
    However in particular ODS/Cube,
    the symbol is correct - that data has been loaded,
    but there's no Pop Up window.

Maybe you are looking for