How to find child requests?

Hi DBA's
Pls tell me how to find the child request of the parent request? from front end and as well as backend...
Regards,
SG

from front end - Login to System Administrator Responsibility
- View > Requests > Find
- View > Query by Example > Enter
- In the Parent field put the request id for the parent request
- View > Query by Example > Run
as well as backendNote: 134035.1 - ANALYZEREQ.SQL - Detailed Analysis of One Concurrent Request (Release 11 and up)
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=134035.1

Similar Messages

  • How to monitor child request for concurrent?

    Hi,
    User shedules concurrent request. that request completed but child requests are runnig. how to identify child requestes for that concurrent program
    apps version=11.5.10
    db version=10.1.5
    thanks in advance

    Taher,
    I have doubt on this. Can the parent request be completed without completing child requests.No.
    Regards,
    Hussein

  • How to find child records is exists before to delete parent records.

    Dear Everyone,
    I would like to ask you, is there any simple way to find child records is exists before to delete parent records.
    I have a master table defined primary key and I have referenced that as foreign key in many tables.
    I have used Delete_Record to delete but it isn't display the message 'child record exist' but it cleared the record from the form. So I need to know how to find child records is exists or not before to do delete_record so that I can display message in-case it exists.
    I do know we can able to check in every table matching the column manually, but what if we use 100 of tables then it is not possible to check manually.
    I am sure there must be simple way to find as how the oracle identifies when we execute delete query.
    Please help me on this.
    Thanks in advance.

    Simple solution is to run the query I have given for all child tables or to try a single query for all child tables withj something like:
    select <parent_key>
    from <parent_table>
    where <parent_key> in
              (select <foreign_key_1> from <child_table_1> union
               select <foreign_key_2> from <child_table_2> union
               ... );More complicate solution could be to change the foreign key constraints to cascade DELETE on parent table to child tables:
    SQL>
    SQL> create table p(x int primary key);
    Table created.
    SQL> create table c1(x1 int);
    Table created.
    SQL> create table c2(x2 int);
    Table created.
    SQL>
    SQL> alter table c1 add constraint fk1 foreign key(x1) references p;
    Table altered.
    SQL> alter table c2 add constraint fk2 foreign key (x2) references p;
    Table altered.
    SQL>
    SQL>
    SQL> insert into p values(1);
    1 row created.
    SQL> insert into c1 values(1);
    1 row created.
    SQL> insert into c2 values(1);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL>
    SQL> alter table c1 drop constraint fk1;
    Table altered.
    SQL> alter table c2 drop constraint fk2;
    Table altered.
    SQL>
    SQL> alter table c1 add constraint fk1 foreign key(x1) references p on delete cascade;
    Table altered.
    SQL> alter table c2 add constraint fk2 foreign key (x2) references p on delete cascade;
    Table altered.
    SQL>
    SQL> delete p where x=1;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> select * from p;
    no rows selected
    SQL> select * from c1;
    no rows selected
    SQL> select * from c2;
    no rows selected
    SQL>Edited by: P. Forstmann on 27 oct. 2011 14:01

  • How to find CR Request Number inside a package

    Hi Folks,
    how to find the CR Request Number list present inside one package.
    Reg,
    Hariharan

    Hi ,
    i had gone through the Transaction se03 Search for Object in Request/Task, in the selection screen no option for Package can you just breaf about the Selection Screen Step.
    Reg,
    Hari.

  • How to find the request id for these suspect dead concurrent request

    Dear All,
    Good afternoon.
    Below are the CMCICU (Updated Standard Cost) concurrent request which we can not find in the front-end of Oralce EBS.
    We want to verify the concurrent request id for these.
    How can we do it?
    myermt01@oracle:/home/oracle> ps -ef|grep CMCICU
    oracle 24533 22566 1 15:17:00 pts/2 0:00 grep CMCICU
    oracle 29625 2028 3 Aug 22 ? 27:20 CMCICU APPS/7484718500033DFF77FFB8BC77FFB9B077FFBAA477FFBB98401
    oracle 15881 8762 4 Aug 23 ? 27:36 CMCICU APPS/7484718700033DFF00000000000000040000000000000000400
    oracle 4913 6136 7 Aug 23 ? 28:03 CMCICU APPS/7484718800033DFF00000000000000040000000000000000400
    oracle 7913 23291 5 Aug 22 ? 27:50 CMCICU APPS/7484718500033DFF77FFB8BC77FFB9B077FFBAA477FFBB98401
    oracle 3813 23290 5 Aug 23 ? 27:47 CMCICU APPS/7484718800033DFF00000000000000040000000000000000402
    oracle 5858 23115 7 Aug 22 ? 27:58 CMCICU APPS/7484718500033DFF77FFB8BC77FFB9B077FFBAA477FFBB98401
    oracle 2166 19728 5 Aug 22 ? 27:15 CMCICU APPS/7484718500033DFF00000000000000040000000000000000400
    oracle 2165 24039 3 Aug 22 ? 27:31 CMCICU APPS/7484718500033DFF77FFB8BC77FFB9B077FFBAA477FFBB98401
    oracle 26105 22429 4 Aug 23 ? 27:23 CMCICU APPS/7484718500033DFF00000000000000040000000000000000401
    oracle 8703 8698 3 Aug 22 ? 27:30 CMCICU APPS/7484718500033DFF000000000000000A0000000100000000400

    Hi Henry;
    Please check below thread which could be helps you
    Concurrent program- How to find database session
    Re: Reg: Apps Concurrent
    Concurrent Request-whcih is submmited by one of the Oracle USER
    How to See Others Concurrent Request Oracle 11i
    Regard
    Helios

  • How to find child records given a parent key

    I have a master table which is parent for several child tables. I want to display a button to delete a record in master table. I would prefer show this button conditionally so when a master record has child records, I don't show delete button and no error is raised.
    Of course I could scan every child table to find out child records, but I think must exist a generic method
    How can I find out if a given parent key has child records?
    Thanks in advance
    Oscar
    P.S: I'm using 10gR2
    Edited by: user10712087 on 13/01/2009 02:31 PM

    Oscar
    There's no magic/generic way to check that a master row has no associated detail rows. As Pavan says, you have to decide which detail tables to check, and check them using SQL as usual. (Actually, there is a quick way - you delete the row and if there are any child rows with foreign keys that don't cascade, the delete will fail; but of course you can't use this in case the delete succeeds but the user never wants to press the button).
    One addition to Pavan's answer: DO NOT under any circumstances count all the records in every detail table. All you want to know is, is there at least 1 detail record in at least 1 of the tables. No need to count 100 or 1000 rows...
    You can do this like this in your PL/SQL
    FUNCTION check_children(p_master_id IN INTEGER) RETURN BOOLEAN
    IS
      CURSOR c_child1  IS
      select 1 from child_table_1 where master_id = check_children.p_master_id;
      CURSOR c_child2 IS
      select 1 from child_table_2 where master_id = check_children.p_master_id;
      -- etc for all child tables
    l_rec_present integer := null;
    BEGIN
        OPEN c_child_1;
        FETCH c_child_1 INTO l_rec_present;
        CLOSE c_child_1;
        IF l_rec_present i= 1 THEN
            -- there is a child in child_table_1
            RETURN TRUE;
        END IF;
        OPEN c_child_2;
        FETCH c_child_2 INTO l_rec_present;
        CLOSE c_child_2;
        IF l_rec_present i= 1 THEN
            RETURN TRUE;
        END IF;
    -- etc for each child; finally, if no child found:
       RETURN FALSE;
    END;This makes sure that (1) you stop as soon as you find any child, and (2) you don't get any NO_DATA_FOUND or TOO_MANY_ROWS exceptions raised.
    HTH
    Regards Nigel

  • How  to find the Request in R/3??

    HI Guru's
    I have done the Re-process of InfoPackage in BW and the data is coming from R/3
    I want to see the request in R/3
    I know the request in R/3 will start with BI
    but i don't know how to see in R/3
    any help much appreciated...
    Regards,
    BH

    Hi BH,
    If you want to see the status of the extraction job you can go directly from the monitor screen (Path- Environment->Jobv Overview->In the Source system). Give your login and you should be able to see the job.
    Alternatively you can use tcode sm37 to goto the Job Monitor screen and give the job id(BI appended with the request id in BW).
    Hope that helps.
    Regards.

  • How 2 find the "Requests from the SQL Developer Exchange Included" in 2.1.1

    Hi,
    I would like to explore the new features from 2.1.1
    http://www.oracle.com/technology/products/database/sql_developer/files/BugsFixed_v211.html
    But can not find them in:
    http://apex.oracle.com/pls/otn/f?p=42626:46
    Where are they explained...?
    Thanks, Juergen

    Thanks K,
    good hint with the filtering of the status...!
    I was just wondering if you can find the ID's. When you scroll to the end on: http://www.oracle.com/technology/products/database/sql_developer/files/BugsFixed_v211.html
    there you find the section "Requests from the SQL Developer Exchange Included" with a lot of IDs...
    8411043 : Commit confirmation
    8755723 : Copy column name to clipboard (ctrl - shift- C)
    8487257 : Do not use ora_rowscn (Request implemented using a preference)
    but the filtering is good for me too...
    Juergen

  • How to find concurrent Request ID?

    Hi,
    One seeded concurrent program ('Pay on receipt Autoinvoice Program') internally submit the one more seeded concurrent program('Payable Open Interface').Now my requirmnet is finding request id of 'Payable open Interface' .
    Is it possible?
    If Yes,Please let me know the process?
    Thanks
    Praveen

    You can either get that from the application as mentioned above, or use the following query:
    SQL> SELECT request_id, user_concurrent_program_name
    FROM apps.fnd_concurrent_programs_tl cp, apps.fnd_concurrent_requests cr
    WHERE cp.application_id = cr.program_application_id
    AND cp.concurrent_program_id = cr.concurrent_program_id
    AND cp.LANGUAGE = 'US'
    AND user_concurrent_program_name = '%Concurrent Program Name%';

  • How do find child table

    Hi,
    DB = Ora 11g
    I am truncating a table but it won't allow me because it is referenced by a child table.
    I am running this query to find the child table but no row selected.
    SELECT a.table_name, c.column_name, b.table_name AS CHILD_TABLE, d.column_name, b.R_CONSTRAINT_NAME FROM user_constraints a,
    user_constraints b, user_ind_columns c, user_cons_columns d WHERE a.constraint_type = 'P' AND a.CONSTRAINT_NAME = b.R_CONSTRAINT_NAME AND
    b.CONSTRAINT_TYPE = 'R' AND a.table_name = c.table_name AND a.constraint_name = c.index_name AND b.CONSTRAINT_NAME = d.constraint_name
    AND a.table_name = '<TABLE_NAME>'Can you give me some other queries please...
    Thanks

    Try simplifying:
    SELECT a.owner, a.table_name, b.owner as child_owner,b.table_name AS CHILD_TABLE,  b.CONSTRAINT_NAME
    FROM all_constraints a,  all_constraints b
    WHERE a.CONSTRAINT_NAME = b.R_CONSTRAINT_NAME
    AND  a.OWNER = b.R_OWNER
    AND b.CONSTRAINT_TYPE = 'R'
    AND a.table_name = '<TABLE_NAME>';Also note:
    - I used all_constraints because it is possible that the child table is in a different schema (and consequently added predicates on owner, r_owner)
    - I removed the constraint_type='P' predicate - an FK constraint can refer to a unique constraint that is not a primary key.

  • How to find Childs of a perticular WBS Element

    Hi All,
    Is there any FM/ Class method which gives me all Child WBS element for a perticular WBS element for same project.
    EX:
    POSNR                    PSPHI                    UP                       DOWN                     LEFT                     RIGHT                                                                               
    J-M-000376-1             J-M-000376                                        J-M-000376-2                                                    
    J-M-000376-2             J-M-000376               J-M-000376-1                                                               J-M-000376-3  
    J-M-000376-3             J-M-000376               J-M-000376-1                                      J-M-000376-2             J-M-000376-4  
    J-M-000376-4             J-M-000376               J-M-000376-1                                      J-M-000376-3             J-M-000376-5  
    J-M-000376-5             J-M-000376               J-M-000376-1                                      J-M-000376-4             J-M-000376-6  
    J-M-000376-6             J-M-000376               J-M-000376-1                                      J-M-000376-5             J-M-000376-7  
    J-M-000376-7             J-M-000376               J-M-000376-1                                      J-M-000376-6             J-M-000376-8  
    J-M-000376-8             J-M-000376               J-M-000376-1                                      J-M-000376-7                           
    If i enter J-M-000376-1 it has 7 childs so it should give me 7 Child WBS.
    If i enter J-M-000376-4 it does'nt have any child it so no child WBS element.
    Any one have idea about this.
    Regards
    Amar

    Hi,
    Refer table PRHI to see WBSE Hierachy.
    Also you can try using function module: BAPI_PROJECT_GETINFO. which may be helpful to you.
    Regards,
    Sandeep

  • How to find Childs of a perticular WBS Element(PRPS-PSPNR)

    Hi All,
    Is there any FM/ Class method which gives me all Child WBS element for a perticular WBS element for same project.
    EX:
    POSNR PSPHI UP DOWN LEFT RIGHT
    J-M-000376-1 J-M-000376 J-M-000376-2
    J-M-000376-2 J-M-000376 J-M-000376-1 J-M-000376-3
    J-M-000376-3 J-M-000376 J-M-000376-1 J-M-000376-2 J-M-000376-4
    J-M-000376-4 J-M-000376 J-M-000376-1 J-M-000376-3 J-M-000376-5
    J-M-000376-5 J-M-000376 J-M-000376-1 J-M-000376-4 J-M-000376-6
    J-M-000376-6 J-M-000376 J-M-000376-1 J-M-000376-5 J-M-000376-7
    J-M-000376-7 J-M-000376 J-M-000376-1 J-M-000376-6 J-M-000376-8
    J-M-000376-8 J-M-000376 J-M-000376-1 J-M-000376-7
    If i enter J-M-000376-1 it has 7 childs so it should give me 7 Child WBS.
    If i enter J-M-000376-4 it does'nt have any child it so no child WBS element.
    Any one have idea about this.
    Regards
    Amar

    Hi,
    The Perfect FM for your Requirement is BBP_PS_PROJECT_GET_LIST
    Use this FM..Give the Name of the Project Only to this FM and it would bring you back the complete hierarchy of the Project as you see in CJ20N.
    CALL FUNCTION 'BBP_PS_PROJECT_GET_LIST'
        EXPORTING
          i_ps_sel   = i_ps_sel
          i_username = sy-uname
        TABLES
          et_rsthie  = i_rsthie
          et_proj    = i_proj
          et_prps    = i_prps
          et_aufk    = i_aufk
          et_afvc    = i_afvc
          et_comp    = i_comp
          et_ctxt    = i_ctxt
          return     = return
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.

  • How to find Concurrent Request output file Document ID if exists

    Hi,
    My Concurrent Request when runs, it produces an output file.
    This output file is located on the server.
    Could any one let me know from which tables i could get the document id and the node id of the node where this document resides if it does in the Oracle Document Management System.
    I want to do is use this in the workflows to set the attribute value using procedure
    SetItemAttributeDocument
    Thanks in advance,
    P

    On the Concurrent Requests table (FND_CONCURRENT_REQUESTS), the OUTFILE_NODE_NAME and OUTFILE_NAME indicate where the output file is stored. As far as I know, this is only on the server running the concurrent manager and not in the Oracle Document Manager System.
    What are you trying to do with your output? If you are simply trying to provide access to it, you might be able to construct a URL similar to the standard concurrent request completed notification (basic email which provides a link to the output of the completed request).

  • How to find request number of SAP Script's Form

    Hi All,
    Can anyone tell me how to find out request number of scipt's form
    Regards
    Shashikant

    Hi,
    Se03->Search for Object in Requesta/Tasks--->Right Click ->Execute->Add a new entry with check box ticked,FORM,& Form name on the right side-->F8  It will display all the requests pertaining the form you have keyed in.
    Regards
    Raju Chitale

  • How to find request of deleted queries(its urgent)

    hi,
    i just want to know how to find the request of deleted queris to transport to quality and production system and what is the standard process to delete the queries.

    Hello Viral Shah,
    If you want to delete queries and transport them you can go to BEx->open Query->search for the query you want do delete->press the trash button->add to transport
    Now you can transport it to QA and PROD and that query will be deleted in all the systems where the transport went with success.
    You can do that to whatever queries you want.
    Please assign points,
    Diogo.

Maybe you are looking for

  • Nothing will download off the creative cloud app (Photoshop, Illustrator, etc...)

    Hey. I'm trying to download Photoshop and Illustrator from the creative cloud app. I can't seem  to get either of them to download after purchasing the monthly student package. Photoshop seems to download fine until it stops at either 42/51/52% and w

  • Download excel file to pc from sap

    Hi Experts, My requirement is After running the load program, if there are any errors with any of the records in Excel file, create an error file in Excel format and download to the selected file location.  Give an information message to the user if

  • Artist name does not appear in artist list but album name is in album list - Ipod Classic 160gb

    For an album I have imported onto my iPod from iTunes, the album name is in the Album list but the Artist name is not on the Artist list.  I have tried deleting the album from the iPod and re-adding from ITunes but the same result.  It is a single ar

  • Logon takes long time

    I have Mac mini running 10.6.8 with supplementary update.  After the update, the boot time has increased. Password input window appears after 20 minutes of clicking the user name in the logon UI. I ran the disk utility to correct permissions.  That d

  • Speeding up mac

    How to speed up my mac?