Smart data value display ? BUG sqldeveloper EA2 but works in plsqldeveloper

Hi,
The below mentioned debug facility works in plsqldevloper but the same does not work in sqldeveloper both on 10g and 11g Oracle Database
Has anyone enocuntered this bug as smart data value / tooltip not displayed in sub proc while debug in
sqldeveloper 3.0.02
tooltip and values are dispalyed during debug in v_var1 but as u debug further to (sub procedure within the main procedure code) i.e procedure test1 ,values of v_var2 not being displayed in tool tip / smart data value until the debugger cursor comes out the sub procedure . Kindly replicate the example shown below in sqldevloper EA2
create or replace
PROCEDURE PROCEDURE1 AS
v_var1 char(20);
v_var2 char(20);
v_var3 char(20);
procedure test1 is
begin
v_var2 := 'this is sub proc' ;
end test1;
BEGIN
v_var1 := 'this is a test';
test1;
END PROCEDURE1;
Any comments/solution will be appreciated
SS
Edited by: user575518 on Jan 17, 2011 11:20 PM
Edited by: user575518 on Jan 19, 2011 9:45 PM

Hi,
The below mentioned debug facility works in plsqldevloper but the same does not work in sqldeveloper both on 10g and 11g Oracle Database
Has anyone enocuntered this bug as smart data value / tooltip not displayed in sub proc while debug in
sqldeveloper 3.0.02
tooltip and values are dispalyed during debug in v_var1 but as u debug further to (sub procedure within the main procedure code) i.e procedure test1 ,values of v_var2 not being displayed in tool tip / smart data value until the debugger cursor comes out the sub procedure . Kindly replicate the example shown below in sqldevloper EA2
create or replace
PROCEDURE PROCEDURE1 AS
v_var1 char(20);
v_var2 char(20);
v_var3 char(20);
procedure test1 is
begin
v_var2 := 'this is sub proc' ;
end test1;
BEGIN
v_var1 := 'this is a test';
test1;
END PROCEDURE1;
Any comments/solution will be appreciated
SS
Edited by: user575518 on Jan 17, 2011 11:20 PM
Edited by: user575518 on Jan 19, 2011 9:45 PM

Similar Messages

  • SAP Dashboards - Area graph- Data values display - x-axis 1st value is not showing

    Hi
    Not able to show the first data value in area graph. 2500 is not showing in the chart...remaining values able to display...
    Kindly let us know, is there any specific setting to be done....

    Hi sunil,
    Your question has the answer. When we display same data in line chart or bar chart, you have the space to start displaying the value. But in this case the area chart will accumulate the whole chart to show the lagging & leading data from the start to end, so you cannot view the initial value to display.  If this chart doesn't suits your requirement you can go with other charts.
    The workaround will be like, if the month's are static like will you be displaying all twelve months in this chart then i would request you to take twelve text components in top of the chart or in any comfortable space where you can bind those value.
    Hope this information is helpful.

  • Wrong data values displayed for YTD in reports

    Hi,
    In my reports when i try to select measures as YTD, eg. March 2010 YTD, i get wrong values for entities. But, apart from YTD, i get absolutely correct values if i select measures as anually, quarterly or monthly.
    I have checked ISBEGINNING property in time dimension and assigned values as 0 and 1 for the respective values. I have also checked if i have any wrong statements in dbo.measureformula in SQL server Management studio which might give wrong calculations but could not find any.
    Please guide me through.
    Many thanks in advance.
    Regards,
    Poonam

    HI Nilanjan,
    Thanks for your suggestions but i do not have any data in Apshell to test if it is being displayed correct or not.
    Please advice me further.
    Regards,

  • Value displayed in the cube but not in BEx query

    Hi gurus,
    I have the field for no. of orders  (ANZAU) in the datasource 2LIS_11_VAHDR. It is displaying all the values in the column as '1' in the RSA3 and also in the cube but when the same field is selected in the query there is no display of value '1' .In the query all the values shown in the column is '0' .what is the reason.
    How to display the correct value '1' which is in RSA3?
    regards,
    man

    hi,
    Check out the following
    1.Check the report at the detailed level(line item level)
    2.Check if the report is from multiprovider, if so chk the field you needed is selceted from all the cubes you require.
    3.Run a full repair and chk upto PSA.
    Hope it helps you
    Assign points if so
    Ramesh

  • Truncated data value displayed in Answer

    Hi All ,
    When i make a query using a column in BI Answer, i am getting the truncated data.
    It does not display complete text data.
    I am using a XLS as data source. Size of this text data is 500 -600 char. By default it's data type is Varchar and size 255 at physical layer. Even If i increase it's size to 1000 , it shows only 255 characters.
    I also tried to change it's datatype to Longvarchar , but still same problem persists.
    Any idea in this regard? How can i resolve this problem?

    Hi Cosimo,
    Thanks for the reply.
    But i think ,in my case data format option is not required.
    Using Data Format option we can format only the displayed content of that column in
    the report. My problem is little bit different. Each time when i do ad hoc query using the
    column, i get the truncated result. I am not going to create any report using that
    column.
    The issue is due to some data type and it's size. But i am not able to find out any solution of this problem.

  • Data Grid Display Bug CS3

    I'm having problem with Data Grid Component leaving a color
    outline on the screen when I move out to another frame that does
    not contain the Grid component.
    This Only happens if I load a swf containing the Grid into
    another movie.
    Download
    Example
    Run Movie1 and select an item from the grid. This will jump
    you to frame 5. This works fine.
    Run Movie2 and click the button. This will load Movie1 into a
    mc. Now select and item, and when jump to frame 5 you'll see the
    green box appear...
    Changing the theme halo blue/orange will leave blue/orange
    boxes.
    If anyone out there has a fix. PLEASE let me know.
    Thanks,

    Hi Mugunda, did you ever find out how to do this?

  • Trigger not changing a null value to -1 on insert, but works on update?

    Here is the trigger I am working on.
    If i update a row it will update the org_type_id to -1. However, nightly a job runs to append new data to the table. I can't change the fact that every day a few "deleted org"'s have a org_type_id as null.
    So, this trigger was supposed to solve it, but it ONLY works if a row is updated, it doesn't work on inserted new rows.
    Thoughts?
    CREATE OR REPLACE TRIGGER MDMR.MDM_ORG_TYPE_ID
    BEFORE INSERT OR UPDATE
    ON MDMR.MDM_ORG
    FOR EACH ROW
    declare
    begin
    if (UPDATING) then
    if ((:old.org_name = 'Deleted Org') and (nvl(:old.org_type_id,0) = 0)) then
    :new.org_type_id := -1;
    end if;
    end if;
    if (INSERTING) then
    DBMS_OUTPUT.put_line ('INSERTING1');
    if ((:new.org_name = 'Deleted Org') and (nvl(:new.org_type_id,0) = 0)) then
    DBMS_OUTPUT.put_line ('INSERTING2');
    :new.org_type_id := -1;
    end if;
    end if;
    end;
    /

    Hi,
    It looks fine to me (or, rather, it would look fine if it were formatted), but I can't test it without your table.
    Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements), and the results you want from that data. In the case of DML problems (like this), the results are the contents of the changed table after each DML operation.
    Are you sure that 'Deleted Org' is spelled exactly the same in the trigger and in your INSERT statements? That includes capital letters and trailing spaces, including those automatically supplied for CHAR columns.
    Does it work when you test it, but fail during the nightly job?

  • Syncing stopping at a certain date on Windows Mobile (Lumia 635) but works fine on iPhone

    Hi All,
    As the title describes, we have Exchange 2003 estate with ActiveSync configured, have an issue with two user's account on a single server, with Email's not syncing past the 27/02/2015. Added both accounts via the same method to my iPhone and they sync perfectly,
    just won't sync on any of the Lumia 635's, tried it on 3 of them. No error messages, just the phone syncs for a long period of time before stopping and saying "Not up to date".
    Please can anyone give any pointers on where to start looking for the root cause?

    One thing that might help.
    If your primary server is hosted by your company, double check the outgoing settings.
    Host Name:
    Use SSL:
    Authentication:
    Server Port:
    If it zips through your primary server without effect, try turning the primary server off and one of the secondary on.
    If connected to Edge or 3G, you can use ATT's SMTP server.
    If issue still persists, then set up a gmail or yahoo account to test with.
    Both are free email services.
    If still fails, then general troubleshooting might help.
    Here are a couple of articles from the apple support website that might help out.
    http://support.apple.com/kb/HT1737
    http://support.apple.com/kb/HT1414
    http://support.apple.com/kb/TS1275
    You might need to reset and or restore the iphone to resolve any software issues.
    Hope this helps.

  • WebAn: select filter value on 0plant gives error (but works fine for other)

    Hi all,
    have something strange in the web analyzer:
    i have a query with 0plant in the free characteristics
    when I do 'select filter value' when it's in the free characteristics -> dump
    when 0plant is in the rows and I do 'select filter value' -> dump
    when I do 'select filter value' on 0customer that is in the free characteristics -> works fine
    In the BEx Analyzer it works fine...
    Anybody an idea?
    Ciao
    Joke
    the strange world of BI...

    Hello,
    Is it a 7.0 system? maybe the RSTT trace as per note 899572 can give you more information about this error.
    Thanks,
    Ricardo

  • WHY is my Smart Swipe device not compatible in Firefox but works fine in Explorer ?

    FIREFOX says SMART SWIPE CREDIT CARD DEVICE isn't compatible in firefox

    Hey TURTLE357,
    I am sorry to hear this and I can imagine that this is very frustrating. However, since the add on is not compatible the listed options are [https://support.mozilla.org/en-US/kb/unable-install-add-ons-or-extensions#w_add-on-is-not-compatible here]
    You may need to use the older version of Firefox that the add on is compatible with to use the Smart Swipe. I understand that you have already contacted Smart Swipe, do they know that it is not compatible with the current version of Firefox?

  • Firefox not displaying website slider properly but works in other browsers

    I am creating a website and the slider image is showing at the side of the website. I am using firefox 20 . It works fine on other browsers and other peoples firefox but for some reason it is not showing correctly on mine. This is the test website http://greatgreendeals.co.uk/exmoorsafari/. I have a screenshot but I can not see how to upload here

    The #megaMenu is floated to the left, so it pushes div.featuredposts to the right. Try adding clear:left to div.featuredposts so it wraps down past the float.

  • Crystal reports 11: Values displayed in crystal report not showing in VB6

    Hi!
    I updated an existing lower version of crystal report 7 to crystal report 11. Changes are the following:
    1. sql query in VB6 to add fields
    2. sql query in crystal report to manipulate values and not use formula. crx11 doesn't allow summary/total in formula fields.
    3. report orientation
    4. additional fields to view
    5. font sizes, length, can grow properties, etc.
    When I tested it directly in crx 11, all fields/values are displaying correctly. When I integrated it in VB 6 using Crystal ActiveX Report Viewer Library 11.0 and CR Viewer object, the field is blank.
    I've tried several checking like field suppressions, conditional suppressions, etc.
    By the way, I also have a report using a subrepot with conditional suppressions. Same thing is happening. The subreport data only displays the alloted space but does not show values in VB6.
    Thank you in advance for your help.
    Edited by: Naga01 on Jun 28, 2011 8:46 AM

    Thanks for your response.
    Before I read your response, I tried tweaking my reports and was able to resolve the issue.
    Steps taken to solve the issue are the following:
    a. Value not showing one field of four (4) reports.
    Solution: I created new ones and integrate it in VB 6. The values are now showing. Tweaked on the line object properties, got a problem with the extended line but solved it by adjusting the height of the detail section.
    b. Value not showing in sub-report.
    Solution: My report used a shared variable so I can pass the condition to my sub-report. I used the new reports and just pass a query during runtime. The values in the subreport is still not showing. I added a formula and called the value in it. Values in the subreport is now showing.
    I'll try to update the crystal reports version as suggested at a later time.

  • EBS R12 date format display error?

    Hi all,
    I am opening forms in EBS R12 but all the dates value displayed are DD-MM-RRRR instead
    of the format like 21-04-2008, how do I resolve this please?
    Thanks a lot

    Hi all,
    I am opening forms in EBS R12 but all the dates value
    displayed are DD-MM-RRRR instead
    of the format like 21-04-2008, how do I resolve this
    please?
    Thanks a lotWhat is the difference? if you need it in a different format, can you apply a format mask?
    Thanks,
    Chiru

  • In debuging "Smart Data" tab don't show value

    Hello Exparts,
    SQL Developer version 4.0 Build MAIN-13.80
    when i run my code in debuging for example procedure, Smart Data tab don't show the value. But Data tab show value.
    In earlier version it's working fine.
    Looking for your inputs.
    Ask2Learn.

    Thanks Jeff, for your reply.
    so, its a BUG. ?
    So, we will get it working in next build, soon. Its very useful.
    Thanks again.

  • Duplicate y-axis labels on charts for small data values -- is this a bug?

    Hi,
    I have several charts where the data values are small (1,2,3). The y-axis labels are duplicated for these charts. For example, if the data value was 2 the y-axis labels display as 0 1 1 1 2 2 2. I know that I can manually set the maximum y-axis value and also set the segments on the chart to eliminate the duplicate values. My issue is that I have over 100 charts in my dashboard and I have to manually set the values each month, and then in the next month when the data values are larger I have to remove the maximum y-axis value so the y-axis value is dynamically created. Is this a known bug within the software? Is there any fix for this besides what I'm already doing?
    Please let me know if anyone else has seen this issue and if this is a bug, or if this has been corrected in any fix packs.
    Thanks!!

    Hi Jim,
    I have data for three months in the data range A1 to B3 as given below -
    Jan - 1
    Feb - 2
    Mar - 3
    In Cell D1 write a formula =MAX(B1:B3)+1 (This will give you value 4)
    Go to Chart property -> Behavior -> Scale -> Manual (Y) Axis ->  Minimum 0 and Maximum will be pointing to cell D1.
    Go to Chart property -> Behavior -> Scale -> Division -> Size of Division 1 and Minor Divisions 1
    This will give you Y Axis values as 0,1,2,3,4
    Now change value of any month to 5.  Now value in D1 would become 6 and Y-Axis would change to 0,2,4,6.
    Hope this helps.
    Rashmi
    Edited by: RashmiG on Jan 8, 2010 4:45 PM

Maybe you are looking for

  • Eroracle patchset( 9.2.0.6.0) to Oracle (9.2.0.1.0)  on Windows Xp (32 bit)

    Hi All, I am trying to apply oracle patchset( 9.2.0.6.0) to Oracle (9.2.0.1.0) on Windows Xp (32 bit) system. While trying to apply this patch I got a message to shutdown OS services like RPC (Remote Procedure Call), COM3+ System Event which should n

  • Spry Horizontal Menus - strage background in non-submenu button

    Hi All, The page I am refering to is posted to: http://visionbyamit.com/avital/index2.html As you will see, there are two typs of buttons in this horizontal menu bar; ones with a dropdown submenu and ones without. The problem here is: that the button

  • My bookmarked website loads but when I log in, I get a blank page

    When I access a bookmarked website, it loads. When I try to log on to my account, I get a blank page

  • UK Signal/carriers...?

    Hi All, I am having major problems with my iphone signal in the UK. All was fine until I went into an area with a bad signal about 2 months ago now the phone constantly is low on signal or has no signal at all. It seems its always trying to find the

  • Can't Preview iView on remote server

    I had my iView working properly, however when I made a little change and deployed a par file I couldn't preview it anymore. I changed everything back, but it didn't help. Everything is working correctly on my local portal, but not on remote one. Plea