How does Tree Finder creates the BPEL flow tree - using ORABPEL schema

I want to understand how does Tree Finder option on BPEL console gets the BPEL flow tree displayed ? How does the references to further BPEL processe instances get stored w.r.t the current BPEL process instance ? Which tables in ORABPEL schema are involved or store such references ?
Basically, I wish to get a similar tree given a BPEL instance id in my code. Pls help.
Analysis Done:
if I see the audit trail of the BPEl instance, it gives me an XML with multiple nodes having wikey and partnerWSDL elements. Does this partnerWSDL holds the key here ?
wikey="10011-BpInv0-BpSeq0.3-2"
wikey=<cikey>-<node_id>-<scope_id> [orabpel.WORK_ITEM]
Thanks.

Is it based on root_id/parent_id column in orabpel.CUBE_INSTANCE ?

Similar Messages

  • How can we find out the disk which is used for a mount point

    How can we find out the disk which is used for a mount point?
    one of our mount point(/u03/oracle/prod) was using high I/O and this was causing slowness in the server.
    I can see a disk operation error in errpt at the same time as below. Wanted to check whether the mount point /u03/oracle/prod is using the disk hdisk31
    $errpt|more
    IDENTIFIER TIMESTAMP T C RESOURCE_NAME DESCRIPTION
    DXB78877 1125032114 T H hdisk31 DISK OPERATION ERROR
    OS version:AIX 6.1
    DB:11.2.0.2

    this is the output for cat /etc/filesystem
    /u02:
            dev             = /dev/fslv00
            vfs             = jfs2
            log             = /dev/loglv00
            mount           = true
            options         = rw
            account         = false
    /u01:
            dev             = /dev/fslv01
            vfs             = jfs2
            log             = /dev/loglv00
            mount           = true
            options         = rw
            account         = false

  • How does one find out the database name , service name in a database

    hi,
    how do u find out the database name , service name , SID in a database.
    Please reply.
    Thanks ,
    Regards,
    RC

    This particular information is available in the view V_$PARAMETER owned by SYS. But you can also login with Server Manager as user INTERNAL and run:
    SHOW PARAMETERS
    The entries pertaining to the naming of the database are:
    1. db_name
    2. db_domain
    3. db_name
    4. instance_name
    5. service_names
    GLOBAL_NAME is a static (not changing) Data Dictionary view which has just 1 attribute (column) called GLOBAL_NAME.
    When you run:
    select GLOBAL_NAME from GLOBAL_NAME;
    You are returned the full global name of the database, i.e. the db_name and the db_domain joined together by dot (.) For e.g. if your db_name = mgmt and db_domain = tech.co.in, then your global_name will be MGMT.TECH.CO.IN.
    Ciao.
    null

  • How do i find out the tables (data)effected in a schema after a particular time stamp

    how do i find out the tables (data not structure)effected in a schema after a particular time stamp?
    pls email in [email protected]

    You can't do that. That would be a real security risc.
    /KAj

  • How do I find out the template that was used to create a new page?

    We inherited a website from a previous developer. It is in ASP. When
    we try to change say the background color of a page it says the page uses a template the changes we make will
    not be changed. There is a template folder but each of the templates in it give us
    the same message. There is also a New Templates folder but each of the templates there give us the same e
    rror message when we try to chang them.
    If I open say the home.asp page how can I tell what template was used to create the page?

    I tried to change the background color of all the include pages I found like header.asp, etc. None of the includes are the main template. Is there another way to find out that it is?
    Thanks alot.

  • How can I find out the specific Illustrator settings used to create a PDF I have?

    Hey guys, I have a PDF file and neet to set up some illustrator files in the same manner for print purposes in house. The illustrator files are all correct, just the person responsible didn't finish creating PDFs. I have one to use as a reference but need to know exactly which settings he used to create it from illustrator, are these somehow embedded in the PDF?

    Hi Bill
    Thanks for your quick reply.
    I think it is much deeper than that, we have been proofing colours to take to artwork using PMS separations and have the Ai files ready to go, just wouldn't know where to start setting them up for our Plotter.
    We have got all the colours right and the Epson is coping pretty well with matching them, just can't get the PDF settings right.
    Harrumph.

  • How do I find out the compression that was used on a mp4?

    hello, I have this video file that I got from someone. I want to know if it is possible to know what compression was used specifically on it? anyway to look that up in the metadata of the file perhaps? thanks..

    Open it in QuickTime Player. Press command & i keys to bring up the inspector window.

  • How do I find all the tables that are used by an application component?

    .

    Hi ,
                Goto SE93, then pull down the Transactioncode field then select  SAPApplications. Then you will get all the T-codes application wise. Then try to analyze the tables used by the T-codes.
    Regards,
    Hari.
    Edited by: Hariprasad K on Mar 31, 2008 6:40 PM

  • How do I find out the ID of a reminder created with an applescript?

    I created an applescript to create a reminder from Quicksilver, but I want it to show the reminder once it has been created if Reminders was already open. If I use this, then another reminder with the same name sometimes gets shown. How do I find out the ID of a reminder when I create it and set it to a variable so that it will select the reminde I want it to, and if this is not possible, how should I do it?
    Here is the applescript:
    using terms from application "Quicksilver"
              on process text reminderData
                        if reminderData is "help" then return "Syntax: \"Name:Priority Time Date List Notes\""
                        set isName to true
                        set isPriority to false
                        set hasBeenPriority to false
                        set priorityEntered to false
                        set isTime to false
                        set hasBeenTime to false
                        set timeEntered to false
                        set isDate to false
                        set hasBeenDate to false
                        set dateEntered to false
                        set isList to false
                        set hasBeenList to false
                        set listEntered to false
                        set isNotes to false
                        set reminderName to ""
                        set reminderPriority to ""
                        set reminderTime to ""
                        set reminderDate to ""
                        set reminderNotes to ""
                        set reminderList to ""
                        set reminderDataCharacters to the characters of reminderData
                        repeat with i from 1 to number of items in reminderDataCharacters
                                  set currentItem to item i of reminderDataCharacters
                                  if isName is false and hasBeenPriority is false then set isPriority to true
                                  if hasBeenPriority and hasBeenTime is false then set isTime to true
                                  if hasBeenTime and hasBeenDate is false then set isDate to true
                                  if hasBeenDate and hasBeenList is false then set isList to true
                                  if hasBeenList then set isNotes to true
                                  if isName then
                                            if currentItem is ":" then
                                                      set isName to false
                                            else
                                                      set reminderName to reminderName & currentItem
                                            end if
                                  end if
                                  if isPriority then
                                            if currentItem is "!" or currentItem is "-" then
                                                      if currentItem is "!" then set reminderPriority to reminderPriority & "!"
                                                      set priorityEntered to true
                                            else
                                                      if currentItem is " " and priorityEntered then
                                                                set isPriority to false
                                                                set hasBeenPriority to true
                                                      end if
                                            end if
                                  end if
                                  if isTime then
                                            if currentItem is " " then
                                                      if timeEntered then
                                                                set isTime to false
                                                                set hasBeenTime to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderTime to reminderTime & currentItem
                                                      set timeEntered to true
                                            end if
                                  end if
                                  if isDate then
                                            if currentItem is " " then
                                                      if dateEntered then
                                                                set isDate to false
                                                                set hasBeenDate to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderDate to reminderDate & currentItem
                                                      set dateEntered to true
                                            end if
                                  end if
                                  if isList then
                                            if currentItem is " " then
                                                      if listEntered then
                                                                set isList to false
                                                                set hasBeenList to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderList to reminderList & currentItem
                                                      set listEntered to true
                                            end if
                                  end if
                                  if isNotes then set reminderNotes to reminderNotes & currentItem
                        end repeat
                        if reminderDate is not "" then
                                  if reminderTime is "" then set reminderTime to time string of (current date)
                        end if
                        if reminderTime is not "" and reminderTime does not contain "am" and reminderTime does not contain "pm" then
                                  try
                                            if (item 1 of the characters of reminderTime) as number is greater than or equal to 8 and (item 1 of the characters of reminderTime) as number is less than or equal to 11 then
                                                      set reminderTime to reminderTime & "am"
                                            else
                                                      set reminderTime to reminderTime & "pm"
                                            end if
                                  end try
                        end if
                        try
                                  set reminderDateAndTime to date (date string of (date (reminderDate & "/" & last word of (date string of (current date)))) & " " & time string of (date reminderTime))
                        on error
                                  set reminderDateAndTime to false
                        end try
      createReminder(reminderName, reminderPriority, reminderNotes, reminderList, reminderDateAndTime)
                        tell application "Quicksilver" to show notification "The reminder was created successfully" text "Quicksilver successfully created your reminder."
              end process text
              on createReminder(theName, thePriority, theNotes, theList, theDate)
                        if thePriority is 1 then set thePriority to 9
                        if thePriority is "!" then set thePriority to 9
                        if thePriority is 2 then set thePriority to 5
                        if thePriority is "!!" then set thePriority to 5
                        if thePriority is 3 then set thePriority to 1
                        if thePriority is "!!!" then set thePriority to 1
                        tell application "System Events"
                                  if exists process "Reminders" then
                                            set wasOpen to true
                                  else
                                            set wasOpen to false
                                  end if
                        end tell
                        tell application "Reminders"
                                  if theDate is false then
                                            try
      make new reminder at list theList with properties {name:theName, body:theNotes, priority:thePriority}
                                            on error
      make new reminder with properties {name:theName, body:theNotes, priority:thePriority}
                                            end try
                                  else
                                            try
      make new reminder at list theList with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                            on error
      make new reminder with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                            end try
                                  end if
                                  if wasOpen then
      show reminder theName
                                  else
                                            quit
                                  end if
                        end tell
              end createReminder
    end using terms from

    This seems to find the ID, which is sort of the answer to my question, but I still don't seem to be able to use it to show to right reminder. I get this error:
    error "Reminders got an error: Can’t make reminder id \"1E436B16-561C-4F88-8CA6-78029BE68BBF\" into type integer." number -1700 from reminder id "1E436B16-561C-4F88-8CA6-78029BE68BBF" to integer
    What is wrong, and how should I fix it?
    Here is the createReminder block now:
    on createReminder(theName, thePriority, theNotes, theList, theDate)
              if thePriority is 1 then set thePriority to 9
              if thePriority is "!" then set thePriority to 9
              if thePriority is 2 then set thePriority to 5
              if thePriority is "!!" then set thePriority to 5
              if thePriority is 3 then set thePriority to 1
              if thePriority is "!!!" then set thePriority to 1
              tell application "System Events"
                        if exists process "Reminders" then
                                  set wasOpen to true
                        else
                                  set wasOpen to false
                        end if
              end tell
              tell application "Reminders"
                        if theDate is false then
                                  try
                                            set theReminder to make new reminder at list theList with properties {name:theName, body:theNotes, priority:thePriority}
                                  on error
                                            set theReminder to make new reminder with properties {name:theName, body:theNotes, priority:thePriority}
                                  end try
                        else
                                  try
                                            set theReminder to make new reminder at list theList with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                  on error
                                            set theReminder to make new reminder with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                  end try
                        end if
                        set theID to the id of theReminder
                        if wasOpen then
      show theID
                        else
      quit
                        end if
              end tell
    end createReminder

  • In the new Keynote how does one find the Wrap Inspector to wrap text around a photo??? Thanks

    In the new keynote, the help section refers to the Wrap Inspector.  How does one find that or how does one wrap text around a photo??   Thanks

    You can also use the shape tool to draw a shape roughly following the outline of the graphic you want to wrap text around, change the fill and stroke to "none", then paste your text within the shape. It's a few more steps, but it opens you up to many creative alternative layouts.

  • How to create the Cash Flow  step by step?

    How to create the Cash Flow  step by step?

    Run S_ALR_87012271 (menu path A/C-FA-GL-Info System- GL Reports - BS/PL/Cashflow-general-cash flow)
    In the screen enter the year & Company code, & execute. you will reach to another screen.
    Click on the "FORM" & you will reach another screen having various forms. The form related to Cash flow is already highlighted.
    Go to EDIT-General Data Selection - Change the financial statment version pertaining to your company
    Then, click on each line item in the form which is being displayed and enter corresponding GLs.
    Save it & execute S_ALR_87012271
    Hope this solves your problem.

  • TS1389 does anybody know how i can find out the answers to my security questions or change my security questions?  thanks for any help you may be able to give me.

    does anybody know how i can find out the answers to my security questions or change my security questions?  thanks for any help you may be able to give me.

    Didn't the link to contact the iTunes Store staff in the 'Additional Information' section of that article work for you? If you don't already have a valid rescue email address, only Apple itself can reset the questions; nobody on these boards can.
    (90863)

  • How can I find out the overall time and not only the time of a single clip?

    I have set up two cameras in one room. Both cameras record the same thing from different perspectives at the same time. I have found an interesting scene for video 1 (recorded by camera 1). Now I would like to find the time at which the interesting scene takes place in video 2.
    However, I have not seen any way to get displayed, at what time the scene starts in relation to the total length of the video (e.g: scene starts after 5 minutes from total 10 minutes).
    The indicated time refers only to a part of the clip and not to the overall project, even if a special clip is not selected. Does anyone know, how I can find out the time?

    Go to Settings>iCloud>Storage & Backup.  It will be shown just below the Back Up Now button at the bottom.

  • How can I find out the apn number of the battery without having it?

    I dont have the battery of my iphone 5 anymore but how can i find out the apn number of the battery? I would like to change it but i need to know the apn number to choose the right battery.

    Apple does not provide any user-serviceable parts (other than accessories or sometimes a SIM card tray).
    Therefore, there are no legitimate iPhone batteries available for sale anywhere.
    Anything you find will either be salvaged, counterfeit, or stolen.

  • How do I find out the exact path of each and every file that LabVIEW finds and loads into memory for a given top level vi?

    How do I find out the exact path of each and every file that LabVIEW finds and loads into memory for a given top level vi? There is probably a trivial, easy way to get this info, but I have not yet found it!  Thanks..

    Or if you want to grab all the paths programatically, try the attached VI.
    Open the top level that you want all the paths from and close all others, then open the
    attached and run it. It will return an array of all the VIs that the VI
    in question uses, including vi.lib VIs. You can filter these as well if
    you like.
    Ed
    Message Edited by Ed Dickens on 08-01-2005 07:01 PM
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Get all paths.vi ‏29 KB

Maybe you are looking for

  • What the **** is going on????

    Alright, I'm still having problems using my iPod as an external drive. Basically, it won't let me drag and drop .avi, .mpg, etc, files When I try to move such files from my C: drive to the iPod I ALWAYS get a Write Delayed Failed error. The write cac

  • Oh boy am i having some trouble!

    I'm not very au fait with computers so i tried to search how to do somthing in the help function for finder. the search function doesn't seem to be working and when i tried the links they didnt work either. i tried help through a couple of other prog

  • Issue on copying standard role

    Dear Guru's, We're implementing E-rec system and we have two users name as user1 & user2, standard role was assigned to both the users User1 - SAP_RCF_EXTERNAL_CANDIDATE User2 - SAP_RCT_UNREGISTERED_CANDIDATE webdynpro application was working fine wi

  • Query a search query

    Hi i am doing a site where clients can do a seach based on caseworker name. i need to get the information from 2 tables. <cfquery name="caseworker2" datasource="webconveyancer" dbtype="ODBC">select caseworkerid from caseworker where caseworkername li

  • Trouble with Mobilink sync

    Hello, all I was wondering if someone can help me with this strange error in the Mobilink sync. The table in question is only supposed to be for upload, no download. Why does Mobilink try to download data from table, when the table is only supposed t