JDev 10.1.3 Prod Bug in Structure Window when using PL/SQL and Stored Types

Using JDev 10.1.3 build 3673
When loading/editing a PL/SQL package with code like the following:
rec := NEW Record001Row;
Where Record001Row is a stored type on the database gives an "Error Expecting ;" in the JDev Structure Window. Once the above line is commented out, the PL/SQL program structure appears in the Structure Window. I can then uncomment the above line and the structure of the PL/SQL program stays, but the "Error Expecting ;" still appears.

Logged the bug 5010466.
Thank you for reporting this.

Similar Messages

  • Bug in iPhoto v6 when using Mail

    Bug in image quality when sending photos with Mail.
    Description:
    I click on Email icon in iPhoto, and then choose Medium as the quality, that's when iPhoto tells me that the Photo Count = 1, and Estimated Size = 122Kb. And then the Mail app opens, and I see the same photo inside the message composition window, and now Mail tells me that the Message Size = 55Kb (on the status line at the bottom). And When I send that photo to myself, I receive a photo which is about 40Kb in size, and the photo looks just terrible... how can it look good at 640x480 with only 40Kb?
    Is this a bug, or I can change the jpeg quality somewhere? My friend has a 2-year old iMac with iPhoto 5 and when she sends me pictures the same Medium size they are closer to 100Kb each
    We did a little test: I sent her the same photo in original size, and then she sent me back the Medium Size, and it was around 90Kb. How can I fix/change this, or am I cursed by this BUG in iPhoto v. 6? or a bug in Mail?
    Thanks.
    MacBook Pro 2.4 GHz   Mac OS X (10.4.10)  

    Misio:
    Even though iPhoto said the final size would be 122 KB for a medium size, my test, a 4.2 MB file came in at 68 KB. Another test with a 2 MB file was estimated at 122 KB but came in around the 68 KB size. I think the 122 kb value is hard coded into the application as an approximation only before compressing and not really a bug. Maybe a poor approximation, however.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Bug in Flash 8 when using Strings Panel?

    A problem with the strings panel in Flash 8 I have found is
    that, when working with 6 languages, if you save and close down
    your Flash file with the Strings panel hidden, and re-open the FLA
    and then view the strings panel/view your text on the stage (or
    open the xml file) that, in my cae, some EN strings have been
    corrupted/mutated to other languages.
    This is obviously a bug in Flash which corrupts one of the
    XML files if the strings panel is closed. Why does it do this? Its
    very annoying having to remember to open the strings panel whenever
    I load that specific project, even if I am not going to use it. And
    the panel takes up a lot of space as it is so can't leave it open
    all the time for other projects.
    Any ideas?

    Howdy. I'm having a very similar problem. I'm working with 21
    languages (including EN) on the strings panel in Flash 8. I've
    found that my languages get corrupted -- EN strings get substituted
    in for some, not all localized strings in the panel -- when I
    publish or test the movie. I was publishing for Flash 7. When I
    changed my publishing settings to Flash 8, the problem went away.
    Have you gotten any answers to your problem?

  • Bug in HttpServletRequest.getParameter when using anchors (#)?

    When using
    response.sendRedirect("getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor");
    to redirect to a jsp, a call to getParameter in that JSP for parm2 returns "moreblurb#myanchor" rather than "moreblurb".
    I thought originally that I was building the URL incorrectly but IE5 navigates correctly to the anchor point in my HTML.
    Is this a bug in getParameter or am I doing something wrong?
    Many Thanks, full code below.
    getParameterError.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <%
        String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor";
        response.sendRedirect( response.encodeRedirectURL( newURL ) ) ;
    %>
    </body>
    </html>
    getParameterError_display.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <a href="getParameterError.jsp">try again</a>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <a name="myanchor">here is myanchor</a>
    <a href="getParameterError.jsp">try again</a>
    <p>The paramaters are:</p>
    <%
            Enumeration e = request.getParameterNames();
            String name;
            String [] values;
            while( e.hasMoreElements() ) {
                name = (String)e.nextElement();
                values = request.getParameterValues(name);
                for(int i=0; i< values.length; i++) {
    %>
                    <%= name + " = " + values%><br>
    <%
    %>
    </body>
    </html>
    Output
    The paramaters are:
    parm2 = moreblurb#myanchor
    parm1 = blurb

    I get the same problem in Tomcat 4.0.1. Fixed it by terminating the param string with "&".
    e.g. instead of
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor"; try
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb&#myanchor";This worked in IE6 and Netscape 6.2. Hope it works for you.

  • Anychart: Bug when using chart template and Javascript

    Hi all,
    When I create a chart using custom xml and a template -
    <templates path="#IMAGE_PREFIX#Chart_templates/my_chart_template.xml"/>If I call toggle a series using some javascript:
       var chart = getChart(); // function created by the chart embedding javascript to capture a reference to the chart object
       chart.showSeries('population_average', $('input[is_series_toggle="true"]').is(':checked'));
       chart.refresh();The series is toggled correctly but the chart is refreshed without applying the chart template, so it looks ugly.
    Anychart claim this is an Apex specific issue because Apex uses a special build of Anychart? Anyone else encountered this problem and have a workaround. Or any other suggestions would be welcome.

    Hello Sara,
    The behavior you are describing is a long time known issue. It is a bug that should have been resolved by now, but for some reason was not. Maybe it’s because none of the default (built-in) page templates is using images with TABs.
    The workaround is to create your own img tag in the appropriate page template section, using the #TAB_NAME# substitution string. The principle is to name your corresponding images like current_#TAB_NAME#.gif and non_current_#TAB_NAME#.gif, where the #TAB_NAME# part in the file name is replaced with the actual tab name. So, for a TAB called EMP, you’ll have two image files by the names current_EMP.gif and non_current_EMP.gif.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Music + loockscreen Bug (no album cover when iPhone is lock and play music)

    hello there.
    I have just got a weird bug on my iPhone 4, while playing music and the iPhone is lock.
    The issue is about what happens when I'm listening to music and my iPhone is lock-screen mode (simply say it is locked).
    What is happening is that when I'm trying to check the song name and cover of the album (one click on home button) there is only the title of the song and instead of the album cover there is my lock-screen background picture.
    I have tried to delete all the covers in iTunes and add them manualy (because when i click download the covers some of them are in wrong place) but it still apear the same problem.

    Found another post with a similar issue after upgrading to ios 5 and this worked for him, I might try this tonight and will re-post if it worked for ios 5.1:
    1)Connect phone
    2)Hightlight your phone on the left side of the iTunes window
    3)Click on the music tab towards the top middle of the iTunes window
    4)Uncheck "sync music"
    5) Click "Apply" down on the bottom right  At either this step or the preceding step you might get a
    pop up box that says "you have made changes" or something like that, click okay or apply.
    6)After this is finished, check to make sure there is no music left on your iPhone by double clicking on your
    iPhone in the left hand pane of iTunes and then click on "music" under your iPhone
    7)If there is no music on your iPhone, then recheck the "sync music" and then click "apply" down in the
    bottom righ.
    8)If you have a lot of music it will take hours to sync, but when finished your Dock accesorries should work again.

  • Table structure changes when using 'create table X as ( select * from X@remote_server )'

    I need to create and copy data from a remote Oracle server to a local server. The command I use is
    create table X as ( select * from X@remote_server )
    with remote_server is the tns name of the remote Oracle server.
    The local table is created and populated with data as expected but when I check the structure using 'desc X' it shows me all the CHAR fields of the local table are triple as large as of the remote table.
    I guess the problem is the difference  between the NLS_CHARACTERSET settings . The local charset is AL32UTF8 and the remote is  WE8MSWIN1252.
    How do I change the command to make the two tables have the same field sizes ?
    Thanks,
    Vu

    Do you want to be able to store all the data from the remote table in the local table?  Assuming you do, increasing the size of the column would be the correct behavior.
    By default, a VARCHAR2(10) allocates up to 10 bytes of storage.  In the Windows-1252 character set on the source, 1 character requires 1 byte of storage.  So a VARCHAR2(10) has space for up to 10 characters.  In the UTF-8 character set on the destination, however, 1 character can require up to 3 bytes of storage.  So a VARCHAR2(10) may allow you to store as few as 3 characters.  Since Oracle has no way of knowing what data you have (and will have) in the source system, it triples the size to ensure that all the data from the remote system will fit in the new table.  If you want the columns to be the same size on the destination that they are on the source, it is highly probable that you'll get errors inserting the data because at least one value will be too large for the destination column.
    Justin    

  • BUG: iTunes truncates lyrics when using COM Interface

    Hi!
    I am using iTunes 6.0.4.2 for Windows (Latest Version at the moment), running under Windows 2000, both in english. I wrote an application that accesses iTunes using the COM Interface, and i am using the latest type library (1.7).
    Everything works fine, except for one odd thing: Lyrics.
    When i get Lyrics from a track, they get truncated - one char for each line break.
    Tried the following: Added the following lyrics to a Track:
    12345678901234567890
    Works fine, when i get the lyrics, i get 20 chars and they are intact.
    Now, i change the Lyrics:
    1234567890
    1234567890
    When i now get the lyrics, i only get a string with 21 characters - the resulting string is
    1234567890<#13><#10>123456789
    (<#13><#10> are representing the ascii chars 13 and 10, not the actual strings <#13><#10>!)
    For every line break I add, i lose a char. With this Lyrics:
    1234567890
    1234567890
    1234567890
    1234567890
    the result is:
    1234567890
    1234567890
    1234567890
    1234567
    iTunes seems to have a problem with line breaks, as they are represented by 2 chars (CR+LF, Ascii 13+10) in Windows rather than 1 char (CR, Ascii 13) in UNIX.
    This seems to be a Bug in iTunes. I tried the following JScript Code:
    var iTunesApp = WScript.CreateObject("iTunes.Application");
    var currTrack = iTunesApp.CurrentTrack;
    var Lyrics = currTrack.Lyrics;
    WScript.Echo("Current Track: " + currTrack.Name);
    WScript.Echo(Lyrics);
    and this gives me:
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
    1234567890
    123456789
    As you see, it truncated the last 0.
    I am doing my real programming in Borland Delphi 7 Personal Edition, and it happens there as well - for every line break, I lose 1 Character.
    The display in iTunes Lyrics-Tab is fine and not truncated, so it just seems to be a bug in the COM-Interface. Not sure where to report them, so i'll just post here. maybe someone knows a remedy?
    Here are some Screenshots:
    iTunes and Script-Output:
    http://img474.imageshack.us/my.php?image=lyricsbroken3nd.jpg
    Selecting Lyrics in iTunes (Not sure if this is important, but notice the difference at the end of the first 3 lines and on the last one)
    http://img60.imageshack.us/my.php?image=lyrics4linesselected7yc.jpg
    My iTunes Version:
    http://img239.imageshack.us/my.php?image=version7fo.jpg
      Windows 2000   iTunes 6.0.4.2, iTunes Type Library 1.7

    Edit: I just tried a german Version of iTunes 6.0.4.2 on an english Windows 2003 Server with a different Track - same problem here.
    I then downgraded to iTunes 6.0.1.3 on the same machine - same: 1 lost char for each line break. It does not matter if I add "fresh" lyrics using iTunes 6.0.1.3 or if I query the ones made in 6.0.4.2.
    I don't have iTunes 5.0.1 anymore, but I will try to get it to try with this version.

  • Bug Report: Images broke when using get_blob_file_src and not authenticated

    Hi,
    it looks like that images which are retrieved with a
    apex_util.get_blob_file
    call are broken when the user is not authenticated. If the generated image URL is directly called in the browser, it shows a 404 Not found error with a "Invalid Session" in the error log file on the Apache.
    The above image URL is generated when using the apex_util.get_blob_file_src function call. If the new IMAGE format mask (eg. in an IRR) is used it seems to be fine, because that generates a apex_util.get_blob call.
    Testcase:
    1) http://apex.oracle.com/pls/otn/f?p=17201:3 (That's the sample application with page set to "doesn't need authentication")
    -> Image column is broken
    2) Login with demo/patricks_demo_workspace
    3) Go again to page 3 (Products)
    -> Image column is displayed correctly
    Thanks for looking into that
    Patrick
    Oracle APEX Essentials: http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

    Hi Scott,
    when I woke up today it also came into my mind that it may has something to do with the referenced P6_PRODUCT_IMAGE in the
    apex_util.get_blob_file_src('P6_PRODUCT_IMAGE',p.product_id)call which references a page item on a non-public page.
    I think apex_util.get_blob_file_src or better apex_util.get_blob_file shouldn't really care if the "definition" of how the BLOB looks like and where to read the information from is on a non-public page. Because it doesn't read or set actual data it just reads the definition, so it shouldn't be a security issue.
    Another question is, if it's so useful to reference a page item to get this BLOB information and not directly being able to specify this information as parameters in the apex_util.get_blob_file_src call. I think I also raised that during the 3.1 beta, because in case if you just want to display a BLOB you still have to create somewhere a page item of type "file browser" to being able to reference it in the get_blob_file_src call. Direct passing of the vales would also be more transparent and self documenting.
    BTW, the above code is an example of the "Sample Application" and wasn't made up by me, so probably a lot of people are using this technique to get rid of there own blob download procedures.
    Have a nice weekend
    Patrick
    Oracle APEX Essentials: [http://essentials.oracleapex.info/]
    My Blog, APEX Builder Plugin, ApexLib Framework: [http://www.oracleapex.info/]

  • Feature Request - Structure Window

    I don't know if this request has been made before, but I couldn't find it, so here it is...
    It would be nice to have some kind of structure view when editing PL/SQL source files, just like in the Enterprise Manager. This would make it a lot easier to navigate through large source files.
    If more people would like this feature, they are welcome to respond here.
    Greetz,
    Patrick.

    Hi Patrick,
    This feature has been implemented in the 10g (9.0.5) release. The preview should be available in time for OracleWorld in September.
    Thanks,
    Brian
    JDev Team

  • Jdev 11g: Warnings in structure window for jspx (makeCurrent)

    Hi,
    Jdev 11g generates code in jspx page which causes warnings in structure window.
    jspx-code:
                      <af:table value="#{bindings.VwBob0010Main0010.collectionModel}"
                                var="row"
                                rows="#{bindings.VwBob0010Main0010.rangeSize}"
                                emptyText="#{bindings.VwBob0010Main0010.viewable ? bundleCommon.TABLE_NO_ROWS_TEXT : bundleCommon.TABLE_ACCESS_DENIED_TEXT}"
                                fetchSize="#{bindings.VwBob0010Main0010.rangeSize}"
                                filterModel="#{bindings.VwBob0010Main0010Query.queryDescriptor}"
                                queryListener="#{bindings.VwBob0010Main0010Query.processQuery}"
                                filterVisible="true" varStatus="vs"
                                selectedRowKeys="#{bindings.VwBob0010Main0010.collectionModel.selectedRow}"
                                selectionListener="#{bindings.VwBob0010Main0010.collectionModel.makeCurrent}"
                                rowSelection="single" binding="#{Bob0010.table2}"
                                id="table2" inlineStyle="width:100%; height:290px;"
                                summary="#{viewcontrollerBundle.RECEIPT_HEAD_HEADER}">corresponding warning in structure window:
    Reference makeCurrent not found.
    Is this a bug?
    Can I ignore or (better) avoid this warning?
    regards
    Peter

    hi
    I have a master-detail table - table on a page.
    When I run this page I get this WARNING :
    {color:#ff0000}Nov 13, 2008 4:26:08 PM org.apache.myfaces.trinidadinternal.context.RequestContextImpl addPartialTriggerListeners
    WARNING: Could not find partial trigger mas1 from RichTable UIXFacesBeanImpl, id=table1 with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.{color}
    (mas1 is the master table and table1 is detail table)
    partialTriggers for detail table is
    {color:#3366ff}partialTriggers="mas1"{color}
    The selection listener for the master table is :
    {color:#3366ff}selectionListener="#{bindings.OuterDataType.collectionModel.makeCurrent}"{color}
    Is it because of this bug ??
    Thanks
    Edited by: user636546 on Nov 13, 2008 2:22 PM
    Edited by: user636546 on Nov 13, 2008 2:33 PM

  • Bug in JDev 9.0.3.3 when using derived views

    Hi,
    I observed in JDev 9.0.3.3 the following behavior when
    using derived views:
         -I'm creating the view V1 based on the entity E1, add to it a couple of fields from E1 without generating Java files and close the wizard
         -now I'm trying to create another view V1Ext that extends V1; when I try to add to V1Ext new fields from E1, the corresponding wizard button is disabled!!
    Regards,
    Dan

    If you whant to add additional attributes from E1 you must now the "magic clue" to tell Jdeveloper to make E1 editable. As far as I know this is not a bug, but a "feature" of JDeveloper:
    Do the following:
    In the ViewObject Wizard go to the Entities page and mark the Entity E1 on the left and also mark Entity E1 on the right. Now you will realize that the Button ">" will be enabled. If you click on it you will be asked if you "want to update Entity E1 with E1..." (don't know the actual message, sorry). Press "OK" and you will be able to edit attributes of E1.
    It's magic, isn't it?

  • JDev 10.1.3 EA: Bug in "File Types" preferences

    Hi,
    I've found a bug when using 10.1.3 EA, as follows:
    1. Yesterday, under Tools -> Preferences -> File Types I added a new File Type for files with extension ".vm" (Velocity), and I'd associated it with an HTML Source "File Type."
    2. I shut down JDev before going home.
    3. Today, I fire up JDev EA and I decide that I now want .vm files to be associated with a file type of "XML Document." But I can't, because the "File Type" drop down is grayed out, as well as the "Remove" button. I can't even remove the .vm extension to redo it!
    So, now I have to either hunt around in the JDev subfolders for the file(s) where this stuff is stored as a work-around, or completely reinstall JDev. Right? User-defined File Type extensions should remain editable, unless I'm missing something here...
    Thanks,
    Chris

    Hi Chris,
    We've got a bug tracking this, but in the meantime the extension is stored in \jdev\system\oracle.idex.10.1.3.34.12\preferences.xml.
    Shutdown JDev and do the following, search for the extension type in preferences.xml, there will be two occurences, delete the Item element encompasing the type and save the file. Start JDev and the file type will be removed.
    I had problems getting JDev to recognize newly added types, let us know if you have any further issues.
    Geoff

  • To JDev Team. PCOL_CONTROL table bug in JDev9i

    I have an application that I developed in 3.2 using BC4J. When I open my workspace in 9i, It upgrades BC4J, but I can navigate through the records of my larger BC4J View Objects. The smaller ones with less than 100 total rows work fine, but the ones with more rows (this one has 836) don't work. Here are the errors I get:-
    JBO-28020: Passivation error on collection AllWauView, node id 146
    BO-28030: Could not insert row into table null, id 146: ORA-00001: unique constraint (PGAT490.NULL_PK) violated
    ORA-06512: at line 1
    When I look at the database, looks like the BC4J engine is attempting to insert nulls into the primary key column. I had no problems in the Jdev 3.2. AllWauView is a view I built in expert mode, and all it does is a simple SELECT from a group of tables for a list of values. Please let me know if I am missing something here. I attempted to bump the prefetch count to 1000 but it doesn't help.

    Weird as this may sound, the problem has re-curred again. This time even after running the clean-up procedure that Steven posted seems to have no effect. I get the same exact error. I also notice a table called 'null' has been created in my schema, besides the PCST_* and PCOL_* tables. What is this null table? Is it supposed to have a different name and Jdeveloper gives null as the name? Anyway, now I am back to square one. The spill-over behaviour also seems to be random. Is it possible that running the clean up procedure (I installed the PL\SQL package into my schema) from SQL PLUS doesn't really fix anything, and that there is another reason for the problem? I even got a weird error message that said that an insert into the table null has failled, leading me to think this table was actually valid, but isn't null a reserved word that we can't use to name a table in Oracle? Sure it is a spill over problem as it only occurs with my larger view object, and interestingly enough, not when I navigate the rows one at a time, but when I attempt to scroll all the way to the last row while populating my LOV. This doesn't happen with 3.2, so I think there is actually a bug in the 9i implementation. Any comments on that?

  • BUG? JDev 10.1.3.1.0 on MacBook Pro - problem using space and delete keys

    Is anyone using JDev 10.1.3.1.0 production release on a Macbook Pro? I am experiencing problems using the delete and space keys. The delete key no longer seems to work at all when using any of the key bindings including Default MacOS X. Using the spacebar also seems to have a conflict with the code completion feature. I am finding that the code completion always pops up when the space bar is used and no space is inserted with the editor. The space bar only works when used in conjuction with the shift key. Can anyone verify if they are able to use these keys in JDeveloper 10.1.3.1.0 on a Macbook Pro?
    Thanks,
    Richard

    This was from the dmg file.
    I found that in Preferences | Accelerators, Completion Insight lists 'Space' as an accelerator, right after 'CommandAIC'. Removing that fixed the problem, but I still can't fix the Delete issue.
    The Delete action is assigned to the 'Delete' key, which is recognizes as the key combination fn-Delete. I tried to assign the Delete Previous Char to just the delete key, but pressing the Delete key while in the New Accelerator field is not recognized - it just pretends as if I had not pressed a key.
    I'm looking at the the file:
    jdevhome/system/oracle.jdeveloper.10.1.3.39.84/Default_macosx.kdf
    trying to find entries for Delete and they are not in there - is there some other place I should be looking?
    Thanks,
    --ee                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Unable to get Color Calendar Items from Outlook to Appear w/ Color on iPhon

    I have Outlook 2003 and I have my work items color-coded using the color labels available in outlook 2003, but when I sync up my iphone the color labels disappear and the items all appear in red color. Does anyone have any suggestions?

  • Gmail mail window doesn't display properly

    I have windows 7. When I open g-mail, the mail window shrinks and only displays who the e-mail is from and the time received. The other features and columns etc on the g-mail page are properly displayed. I don't have this problem in windows explorer.

  • Some values missing in FAX whereas same drivr program and smartfrm in print

    Hi Experts, I have a driver form and smartform in Print and same in fax configured in nace. But there are some values missing in FAX output whereas in print and email it is correct. Can anyone help with the reason. Thanks

  • Planned order number and Plnkn

    Dear All, I need the table link between planned order number and Number of the task list node(PLNKN). Thank you in advance Regards Sailendra.M Edited by: nivedita yadav on Jun 25, 2010 2:35 PM

  • Problem in Hierarchical Sequential List

    Hi All, I am developing an Hierarchical ALV List using OOABAP. In the output list, I have a checkbox to be displayed. I have taken the cell type as "CHECKBOX", it is displaying as disabled. I searched some sites for the resolution, it is mentioned if