Heirarchical query...inside another to get connect_by_root

Given the following table:
CREATE TABLE TEST_HIERARCHY
CREATE TABLE TEST_HIERARCHY
UDL_GUID INTEGER,
DESCRIPTION VARCHAR2(50),
PARENT_UDL_GUID INTEGER,
CONSTRAINT TEST_HIERARCHY_PK
PRIMARY KEY
(UDL_GUID)
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(1, 'Parent 1', NULL);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(2, 'Child 1', 1);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(3, 'Child 2', 2);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(4, 'Child 3', 2);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(5, 'Parent 2', NULL);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(6, 'Child 4', 5);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(7, 'child 5', 5);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(8, 'child 6', 7);
Insert into TEST_HIERARCHY
(UDL_GUID, DESCRIPTION, PARENT_UDL_GUID)
Values
(9, 'child 7', 7);
COMMIT;
And running the following SELECT:
select level, description, udl_guid, parent_udl_guid
from test_hierarchy
start with parent_udl_guid in (
select distinct
connect_by_root udl_guid from test_hierarchy
where udl_guid in( 8, 4)
start with parent_udl_guid is null
connect by prior udl_guid = parent_udl_guid
connect by prior udl_guid = parent_udl_guid
I get this error:
ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], []
I'm guessing this isn't allowed or this is a bug?
What we're trying to do is....users get a list of items to be 'assigned' to a vehicle for transport. If an item is part of a parent child relationship (ie- a crate containing boxes of other items) then we need to ask the user if they want to bring along everything that is linked or nothing at all (no in between, all or nothing). So what I'm trying to do is get a statement that allows you to specify the items that were selected, and pull a result set of the entire heirarchy (or heirarchies) that the selected items are part of.
So the above inserts get you:
Parent 1
-- child 1
-- -- child 2
-- -- child 3
parent 2
-- child 4
-- child 5
-- -- child 6
-- -- child 7
So if a user were to select child 5 and 7, they would get the whole parent 2 hierarchy. If they select 7 and 2, they would get both parent 1 and 2's hierarchy. (I know the above columns listed are not guids, I had to dumb this down for myself so I could follow who was chasing who. Integers are so much easier)
Searching metalink didn't get me any obvious results. I can run either query by itself and get results. I can even run a subquery for the main hierarchical query which is a normal SELECT. Oracle falls apart when trying to process them both.
Anybody see a different way to do this? This is 10gR2 running on RHEL4. Thanks.

ora-600's should always be checked against metalink
https://metalink.oracle.com/metalink/plsql/f?p=130:14:3038746456038321058::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,248095.1,1,0,1,helvetica
also, it works fine for me
SQL> select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
PL/SQL Release 10.1.0.2.0 - Production
CORE    10.1.0.2.0      Production
TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
NLSRTL Version 10.1.0.2.0 - Production
5 rows selected.
SQL> select level, description, udl_guid, parent_udl_guid
  2  from test_hierarchy
  3  start with parent_udl_guid in (
  4  select distinct
  5  connect_by_root udl_guid from test_hierarchy
  6  where udl_guid in( 8, 4)
  7  start with parent_udl_guid is null
  8  connect by prior udl_guid = parent_udl_guid
  9  )
10  connect by prior udl_guid = parent_udl_guid
11  /
     LEVEL DESCRIPTION                                          UDL_GUID PARENT_UDL_GUID
         1 Child 1                                                     2               1
         2 Child 2                                                     3               2
         2 Child 3                                                     4               2
         1 Child 4                                                     6               5
         1 child 5                                                     7               5
         2 child 6                                                     8               7
         2 child 7                                                     9               7
7 rows selected.

Similar Messages

  • How to get save result from EXECUTE from a dynamic SQL query in another table?

    Hi everyone, 
    I have this query:
    declare @query varchar(max) = ''
    declare @par varchar(10)
    SELECT @par = col1 FROM Set
    declare @region varchar(50)
    SELECT @region = Region FROM Customer
    declare @key int
    SELECT @key = CustomerKey FROM Customer
    SET @query = 'SELECT CustomerKey FROM Customer where ' + @par + ' = '+ @key+ ' '
    EXECUTE (@query)
    With this query I want get col1 from SET and compare it to the column Region from Customer. I would like to get the matching CustomerKey for it.
    After execution it says commands are executed successfully. But I want to save the result from @query in another table. I looked it up and most people say to use sp_executesql. I tried a few constructions as sampled and I would always get this error: 
    Msg 214, Level 16, State 2, Procedure sp_executesql, Line 12
    Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.
    So the output should be a list of CustomerKeys in another table.
    How can I save the results from EXECUTE into a variable? Then I assume I can INSERT INTO - SELECT in another table. 
    Thanks

    CREATE TABLE Customer
    (CustomerKey INT , Name NVARCHAR(100));
    GO
    INSERT dbo.Customer
    VALUES ( 1, N'Sam' )
    GO
    DECLARE @query nvarchar(max) = ''
    declare @par varchar(10) = 'Name',
    @key varchar(10) = 'Sam'
    CREATE TABLE #temp ( CustomerKey INT );
    SET @query =
    insert #temp
    SELECT CustomerKey
    FROM Customer
    where ' + @par + ' = '''+ @key+ ''' '
    PRINT @query
    EXEC sp_executesql @query
    SELECT *
    FROM #temp
    DROP TABLE #temp;
    DROP TABLE dbo.Customer
    Cheers,
    Saeid Hasani
    Database Consultant
    Please feel free to contact me at [email protected] as well as on Twitter and Facebook.
    [My Writings on TechNet Wiki] [T-SQL Blog] [Curah!]
    [Twitter] [Facebook] [Email]

  • Get the ID of a dynamically created symbol from library, INSIDE another symbol.

    Hi everyone,
    I'm trying to get the id from a dynamic created symbol from library.
    When dynamically creating the symbol directly on the stage (or composition level), there's no problem.
    But I just can't get it to work when creating the symbol inside another symbol. 
    Below some examples using both "getChildSymbols()" and "aSymbolInstances" 
    // USING "getChildSymbols()" ///////////////////////////////////////////////////////////////////////// 
    // ON THE STAGE 
    var m_item = sym.createChildSymbol("m_item","Stage");
    var symbolChildren = sym.getChildSymbols(); 
    console.log(symbolChildren[0].getSymbolElement().attr('id')); // ok eid_1391853893203
    // INSIDE ANOTHER SYMBOL
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement()); 
    var symbolChildren = sym.getSymbol("holder").getChildSymbols(); // Am i using this wrong maybe?
    console.log(symbolChildren.length) // returns 0 so can't get no ID either
    // USING "aSymbolInstances"" ////////////////////////////////////////////////////////////////////////// 
    // ON THE STAGE
    var m_item = sym.createChildSymbol("m_item","Stage"); 
    console.log(sym.aSymbolInstances[0]); // ok (i guess) x.fn.x.init[1] 0: div#eid_1391854141436
    // INSIDE ANOTHER SYMBOL
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement());
    console.log(sym.getSymbol("holder").aSymbolInstances[0]); // Javascript error in event handler! Event Type = element 
    In this post http://forums.adobe.com/message/5691824 is written: "mySym.aSymbolInstances will give you an array with all "names" when you create symbols"
    Could it be this only works on the stage/ composition level only and not inside a symbol? 
    The following methods to achieve the same are indeed possible, but i simply DON'T want to use them in this case:
    1) Storing a reference of the created symbol in an array and call it later by index.
    2) Giving the items an ID manually on creation and use document.getElementById() afterwards.
    I can't believe this isn't possible. I am probably missing something here.
    Forgive me I am a newbie using Adobe Edge!
    I really hope someone can help me out here.
    Anyway, thnx in advance people!
    Kind Regards,
    Lester.

    Hi,
    Thanks for the quick response!
    True this is also a possibility. But this method is almost the same of "Giving the items an ID manually on creation and use document.getElementById() afterwards".
    In this way (correct me if i'm wrong) you have to give it an unique ID yourself. In a (very) big project this isn't the most practical way.
    Although I know it is possible.
    Now when Edge creates a symbol dynamically on the Stage (or composition level) or inside another symbol it always gives the symbol an ID like "eid_1391853893203".
    I want to reuse this (unique) ID given by Edge after creation.
    If created on the stage directly you can get this ID very easy. Like this;
    var m_item = sym.createChildSymbol("m_item","Stage");
    var symbolChildren = sym.getChildSymbols(); 
    console.log(symbolChildren[0].getSymbolElement().attr('id')); // ok eid_1391853893203
    I want to do exactly the same when created INSIDE another symbol.
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement());
    Now how can I accomplish this? How can I get the Id of a dynamically created symbol INSIDE another symbol instead of created directly on the stage?
    This is what i'm after.
    Thnx in advance!

  • Getting the coordinates of 1 bufferedimage inside another buffered image

    hi, i'm kinda new to this.
    is there a way to get the starting x and y coordinates of 1 bufferedimage inside another bufferedimage
    let's say this is bufferedimage 1
    http://img293.imageshack.us/i/oracle.png/
    and this is bufferedimage2
    http://img38.imageshack.us/i/buffered2.png/
    i would like a method to return the x and y coordinates of image1 inside image2
    is there anyway to approach this?
    or was there a prewritten method?
    thanks

    bep -
    The problem is that the two rectangles have points in common. When the CWIMAQVision.RegionsToMask is done, it sets any point that is in any region to a non-zero value, and all other points to 0. So, when the CWIMAQVision.Label is done, it sees one big rectangle of non-zero values, and labels that (and so the CWIMAQVision.Quantify sees the one rectangle as well).
    The easiest way around this problem (if the rectangles must have points in common) is to only make one region active at a time, so CWIMAQVision.RegionsToMask will only use that region to create the mask image, and then call CWIMAQVision.Quantify twice. So, the code would look like this:
    Set pMaskImage = New CWIMAQImage
    pMaskImage.Type = cwimaqImageTypeU8
    Me.CWIMAQViewer1.R
    egions(1).Active = True
    Me.CWIMAQViewer1.Regions(2).Active = False
    Me.CWIMAQVision1.RegionsToMask pMaskImage, Me.CWIMAQViewer1.Regions
    Me.CWIMAQVision1.Label pMaskImage, pMaskImage, avgPixelVal
    Me.CWIMAQVision1.Quantify Me.CWIMAQViewer1.Image, globalReport, regionsReport, pMaskImage
    dblROImean = regionsReport.Item(1).Mean
    Me.CWIMAQViewer1.Regions(1).Active = False
    Me.CWIMAQViewer1.Regions(2).Active = True
    Me.CWIMAQVision1.RegionsToMask pMaskImage, Me.CWIMAQViewer1.Regions
    Me.CWIMAQVision1.Label pMaskImage, pMaskImage, avgPixelVal
    Me.CWIMAQVision1.Quantify Me.CWIMAQViewer1.Image, globalReport, regionsReport, pMaskImage
    dblSurrROImean = regionsReport.Item(1).Mean
    Let me know if this gives you problems.
    Greg Stoll
    IMAQ R & D
    National Instruments
    Greg Stoll
    LabVIEW R&D

  • Scheduling one background job inside another

    Hi All,
    Is it possible to Scheduling one background job inside another.? i.e In my Z program I am calling job_open, job_submit, job_close and to execute one standard report in background. And after that I am executing my Z program itself  from SE38 as Program->Execute->Background->Execute Immediately. Is this logically correct? I am asking this because I am not getting the desired result
    Thanks & Regards,
    Neethu.

    HI,
    Check the job steps in SM36.
    First schedule the Standard job and in the job steps schedule the z report.
    Schedule job in chain

  • How to access a variable from inside another symbol

    So i did this tutorial, Leveraging Independent Symbol Timelines created by Eliane...it's rockin, btw.  ;-)
    All's well but now i have a symbol on the stage called mc-home.  inside of mc-home is a button called btn-go.
    On the stage in composition ready there's a variable sym.setVariable("current", "mc-home");
    This code works for a symbol that's on the stage but, how do i get this code to work on a button that's inside another symbol that's on the stage?
    var current = sym.getVariable("current");
    if (current != "") {
        sym.getSymbol(current).play("OUT");
    sym.getSymbol("mc-something").play("IN");
    sym.setVariable("current", "mc-something");

    sorry, i was kind of confused myself too, don't worry about it but thanks for your patience for reading it anyway

  • How to link 2 queries in 11g (passing the result of 1 query to another)?

    Hi,
    I am using 11g and I have 2 queries q1,q2. the first query returns a column I need to use in q2 to get my data.
    q1:
    select name, dept
    from x
    where dept = :p_y
    q2:
    select u, b
    from y
    where name = :*name* (from q1)
    when I tried to do that BIP created a bind parameter (name). when I ran get xml, no data came out of q2!
    my question is how can I pass a column from 1 query to another?
    I hope this is clear
    Thanks,
    Edited by: Odeh on Oct 9, 2010 9:18 PM

    Thanks for your reply. I am sorry if I wasn't clear, may be this will help
    I am converting oracle report 6i into BI publisher.
    in my report (invoice), I am going to pass only one parameter (*p_invoice_no*)
    Q1:
    select address_id, vendor_id, bill_date, x, y,z
    from t1
    where invoice_no = :p_invoice_no
    now I need to display the payer address info. the address come from 2 different tables based on address_id and vendor_id
    Q2:
    SELECT NAME,
    ADDRESS1,
    ADDRESS2,
    CITY,
    STATE,
    ZIP,
    FROM address_1
    WHERE address_id = decode(*:vendor_id*, '28',*:address_id*, NULL)
    union
    SELECT VENDOR name,
    VENDOR_ADDRESS1 address1,
    VENDOR_ADDRESS2 address2,
    CITY,
    STATE,
    ZIP ,
    FROM address_2
    WHERE vendor_id = :*vendor_id*
    and vendor_id <> '28'
    as you can see from Q2, the address depends on address_id, vendor_id from Q1. it will be so much easier
    if I could just do that instead of doing nested statements. you would think with 11g this should be
    easily achievable. am I wrong ?
    I hope this helps
    Thanks again,

  • How to register one MBean inside another MBean

    Hi All,
    When i try to register one MBean(DynMBean1) inside another(DynMBean2) by passing object name of this MBean as attribute to the other MBean,iam getting the following error:
    Following shows the adapter interface
    List of MBean attributes:
    Name Type Access Value
    DynBean2 java.lang.ObjectName RW Type Not Supported: [                                                      [DynBean2:bean=sample]
    name java.lang.String RW
    if the above code works properly,in the ''value' column there should be ''view' button and only [DynBean2:bean=sample]' should be present in the value column.Also,if we click on Can any predict what the problem is......?
    Regards
    Ravi
    Mail Me:[email protected]

    I don't understand what you mean by register a bean inside another bean.

  • Retreiving the file names from directory inside another directory from application server

    Hi,
    I had a problem in retreiving the file names from a directory inside another directory.
    I tried using the FM's  SUBST_GET_FILE_LIST, RZL_READ_DIR_LOCAL and EPS_GET_DIRECTORY_LISTING
    But here I am getting only one directory details.
    Actually my file is located a directory inside one more directory and one more directory and inside the files are located.
    i.e total 3 directories inside the 3rd one my files are there.
    I need to read the latest file name in the directory.
    So that i can do some manipulation after getting the file name.
    Is there option like OPEN DATASET , READ DATASET and CLOSE DATASET?
    Can anyone please let me know How can i acheive this one.
    Regards
    Ram

    Hi Ram,
        Following thread can be helpful for you, were it shows in the tables structure rsfillst a field RSFILLST-TYPE whether its a directory or file..........
    http://scn.sap.com/thread/865272
    thanks and regards,
    narayan

  • Problem in reading an object inside another obj in C thru JNI

    Hi All,
    I am passing a java class object from Jave to C thru JNI.
    This object has many integer fields + one object of another class, which also has some fields.
    I am able to read integer fields from C but not able to read fields inside another object.
    Can anyone plz help me in reading the object inside another object from C.
    I m pasting class here for better understanding :
    public class ImageMergeInformation {
    public ImageInformation outputImageInfo;
    public ImageInformation[] inputImageInfo = new ImageInformation[8];
    public int topMargin;
    public int bottomMargin;
    I wanna read ImageInformation obj.
    Plz help me...
    Thanks in Advance,
    Regards,
    Sneha

    You have to get the field id (getFieldID) of the variable you want, e.g. outputImageInfo, then get the object (getObjectField) in that field. At this point, you can start over (get the class, get the field id, get the object).

  • How to put an MSO inside another MSO

    Hello all!
    An interesting question came up in the following post by Folobo:
    http://forums.adobe.com/message/4572897#4572897
    "Is it possible to use a slideshow embedded in a big overlay slideshow?"
    I'd like to rephrase this question:
    "Is it possible to put a MultiStateObject (MSO) inside another MultiStateObject?"
    And further: if the answer is "yes", could we put that to use with the DPS?
    @Folobo – this is an interesting question. A quick test is showing that you cannot do it in the UI (correct me if I'm wrong).
    Let's try it this way:
    If you have two objects:
    1. an MSO #1 (with two rectangles, rectangle #1, rectangle #2)
    2. Another rectangle on the page: rectangle #3
    Now select the two objects and make an MSO out of it (using the "Object States" panel).
    You would think, now I get an MSO with two states, state 1 with rectangle #3 together with state 2 with MSO #1.
    But not so:
    Result: One new MSO with three states (rectangle #1, rectangle #2, rectangle #3)
    Hm. I don't give up on that. Let's try it another way:
    Could we select at least two objects inside a state of an MSO and make that a new MSO?
    Sure, We could select two objects inside a state, but since we are *inside* an MSO the "Object States" panel does not show the possibility to make a new MSO. You can only add states or add objects to states…
    Frustrating. End of story? Maybe…
    Be forewarned. The following is highly experimental!
    Let's try it by scripting (ExtendScript/JavaScript).
    The scripting reference is showing that an MSO "MultiStateObject" object has an add()-method. And further on, that add()-method could be applied to:
    Document
    Spread
    MasterSpread
    Page
    Layer
    pageItem
    And that is the key to a possible solution. We could add a new MSO to a "pageItem" object.
    A simple rectangle should be qualify for a "pageItem" object; and that, of course, could reside in a state of an MSO.
    So, we could add a new MSO to a rectangle inside of a MSO!
    How can we access a rectangle inside a MSO? Easy: We could select it and work with that selection.
    So let's do that: select the rectangle in the first state of an MSO and run this one-line-script (be sure you did select the rectangle and not the MSO or one of its states:
    app.selection[0].multiStateObjects.add();
    We now have an MSO inside another MSO!
    Explanation:
    A "generic MSO" was added with the add()-function to a selection (the container object: in our case the selected rectangle).
    The "generic MSO" is a two state MSO consisting of one rectangle in each state of a very small size (10px x 10px).
    At first it is invisible, because it is very likely that it is positioned outside the geometric bounds of its container object (the rectangle).
    But we can customize this!
    Go to the layers palette and select the new MSO, move it inside the geometric bounds of its container object, readjust its size, add states as you wish, populate the states with images, and other objects etc.pp.
    So, what can we do with an MSO inside another MSO? (As I already said, this is highly experimental.)
    My experiments with that are very fresh. I did not try a lot. But it seems that we could at least autoplay this MSO.
    I have to test more thoroughly what is possible and what will work with buttons etc.pp…
    I really like to hear from you what you will find out and if you can put it to any use.
    Uwe
    Message was edited by: Laubender

    @Mobly – in case it did not work out for you, here some screen grabs for the different steps:
    1. Select an MSO:
    2. Select a "graphic frame" inside the MSO; in this case a "<square>"; you can see the big blue dot in the Layers panel behind the generic name "<square>":
    3. Open the Scripts Panel and select the script:
    4. Run the script by double-clicking the script; the generic name of your selected object has changed to "graphic frame", but trust me, it's still a square…
    5. Click the "Ok" button of the message and InDesign will select the new MSO ("Multi-state 2") as you can see here. It has two states with one rectangle each,  fill and stroke is "None":
    And: you can see that this new MSO is nested inside the MSO ("Multi-state 1").
    What you do with that construct is up to you:
    6. Color the "<square>" of state 1 of "Multi-state 2":
    7. Resize and change position of "Multi-state 2":
    8. But remember: "Multi-state 2" is nested in the graphic frame you selected before running the script:
    I hope you get the picture now…
    Uwe

  • Is it possible to update a query with another query?

    I'm trying to update a query with another query (see attached
    code). Here's my setup: I've got a table in an Access database in
    which I enter a string into a form and update. This string
    corresponds to a single record in another table of the same
    datasource. The first table has only one record to provide the
    second, which has many and will have more. Basically what I'm
    wondering is: Is this a valid thing to do in coldfusion? If not
    please help with an alterate method. I'm still a novice at
    coldfusion.
    The overall effect I'm going for is to display the one record
    as a featured truck profile on the web site:
    www.truckerstoystore.net.
    I currently get an error when I try to display the page with the
    current query setup.
    Check this page to see the error:
    www.truckerstoystore.net/currentTOW2.cfm
    Help on this issue is very much appreciated.
    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------

    I think this is what you are after
    <!--- this query will get all the records from the DB
    --->
    <cfquery name="cTOW" datasource="tow">
    SELECT *
    FROM currentTOW
    <!--- Do you need to find a particular record in the
    database --->
    <!--- If so, then you need a 'where' clause in here
    --->
    </cfquery>
    <!-- Loop the cTOW query for each record returned -->
    <cfloop query="cTOW">
    <!--- For the record returned from the cTOW query you now
    need to update the table --->
    <!-- Update the table -->
    <cfquery name="currentTOW" datasource="tow">
    UPDATE Your tblName
    SET
    Dataname = cTOW.DataValue
    </cfquery>
    </cfloop>
    thats it
    PS: I think your original query needs modifying. To return
    the exact records that you want to update from the original table.
    ie: Primary and foreign key relationship

  • I need help with searching for an image inside another image

    I need to write a program that checks for a specific image (a jpg) inside another, larger, image (a jpg). If so, it returns a value of true. Can anyone help me?
    Winner takes all. First person to solve this gets 10 dukes.
    Please help.

    Hi,
    I would use a full screen image Sequence made with png for transparency and put your article behind. no auto play, stop at first and last image. and information for swipe to display article.

  • Using a custom Viewstack inside another gives an error

    Hi, can anybody tell me why using two custom ViewStacks components inside one another I get this (workspace log) error?
    "Custom component model has recursive definition: components.ViewStack"
    My component ViewStack.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:ViewStack xmlns:fx="http://ns.adobe.com/mxml/2009"
                  xmlns:s="library://ns.adobe.com/flex/spark"
                  xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%">
    </mx:ViewStack>
    MyApplication.mxml
        <c:ViewStack id="views" >
            <c:ViewStack id="mainViews2" >   
            </c:ViewStack>
        </c:ViewStack>  
    Any combination involving the real mx:ViewStack works fine.
    Using FlashBuilder 4.5
    Thanks

    Thank you. This did the trick
    package components {
        import mx.containers.ViewStack;
        public class ViewStack extends mx.containers.ViewStack {
            public function ViewStack() {
                super();
                percentWidth = 100;
                percentHeight = 100;

  • Select Query after the Event "GET  node "

    Hi,
    My requirements is I am calling get object event in my report and preparing an internal table in the get event, after this i need to write a select query based on this internal table..
    i want to avoid select query inside get event, my problem is to end the GET event and write a select query..
    How can i do that..
    can i write it in the end-of-selection.( i don't think so)
    it looks like this.
    start-of-selection.
    get objec.
    " Internal table preparation
    ????????event name needed??????????
    select query.....
    please suggest.

    END-OF-SELECTION.
    Effect
    This statement defines an event block, whose event is raised by the ABAP-runtime environment during the calling of an executable program , if the logical database, with which the program is linked, has completely finished its work.
    Moderator message - Sandeep - if you have to cut and paste from the help, please note it as such.
    Edited by: Rob Burbank on Nov 26, 2009 12:42 PM

Maybe you are looking for

  • Problem while renaming a table

    Hi, I am running oracle 10.2.0.4.0 on AIX 5.3. While i issue a table rename statement it just hangs. the table contains 1500 million rows. Please suggest what should i check before running a table rename statement.

  • Service selection tab in Service entry sheet

    Hi, When i am trying to create Service Entry Sheet using ML81N, service selection tab is not displayed at the bottom. So i am not able to adopt the services from PO. This is working fine in dev and prd, but the problem is with qas. please let me know

  • Message Mapping: different Queues.

    Hi All, I have a problem. I have a source structure where i check 2 fields. example: <root> <element> <id>Z01</id> <sub>   <text>01Text</text> </sub> <element> <element> <id>Z02</id> <sub>   <text>02Text</text> </sub> <element> <element> <id>Z03</id>

  • SRT (Soap Runtime) service on sicf could not be started or found.

    Hello all, I have the following problem: I built an enterprise service from ABAP and now i want to generate its WSDL, but when i'm trying to do that, the system throws me several errors like: http://server:8000/sap/bc/srt/ could not be started or fou

  • Macintosh User Issues

    During a recent test MAC users identified the following issues: Required signatures, dates, text ended up on the signed result in the wrong location Some required entries did not appear anywhere on the signed result. Initials were displaced upwards o