How do I retrieve the Current Interactive Report Tab Identification

I have found the FLOWS_030100.Tables.WWV_FLOW_WORKSHEETS and related tables which contain the information relating to the Interactive reports.
I am writing a Procedure which need the 'Conditions' relating to a Saved Report tab of a Interactive report.
I am able to retrieve the some current info via 'Substitution Strings' like:
Flow_ID via APP_ID
Page_ID via APP_PAGE_ID
Session_ID via APP_SESSION
This info will get me to the WWV_FLOW_WORKSHEET_RPTS table which relates to the individual Saved Reports for a IR.
But if I have multiple Saved Reports on a single IR, I need to find the WWV_FLOW_WORKSHEET_RPTS.ID to be able to find the related rows on the WWV_FLOW_WORKSHEET_CONDITIONS table.
Is there a location where I can find the current IR information like the 'Substitution Strings' I listed above that will get me this info?
How would you attack this problem?
Thanks

Trying to report off of an interactive report conditions reliably will lead you down a long road of frustration. Getting the current tab ID is not too tricky here is some JS to get you started:
function getCurTab() {
  //alert('function called');
  //Populate the array with all the page tags
  var tabs = $x('apexir_REPORT_TABS').getElementsByTagName("span");
  //Cycle through the tags using a for loop
  for (i=0; i<tabs.length; i++) {
    //alert(tabs.className);
//Pick out the tags with our class name
if (tabs[i].className=='current') {
//Manipulate this in whatever way you want
alert(tabs[i].id);
setTimeout("getCurTab()",5000);
getCurTab();
This is just a rough and dirty example. This could greatly be improved by using jQuery and an onclick event rather than the timeout. So dont use this in any sort of production environment.
Cheers,
Tyson Jouglet                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • CMC- How do I retreive the current Crystal report source?

    I am very new to CMC. where do I locate a source for CR?

    Hi Paul,
    It seems that you are trying to find location for Reports Instance(scheduled reports).
    Instances are stored in Output FRS and Reports are stored in Input FRS.
    So if you want to find location of an Instance there is a different approach to this.
    Open Query Builder: (http://<server>:<port>/AdminTools)
    Login and type the below Query:
    select SI_NAME, SI_FILES from CI_INFOOBJECTS where SI_PARENTID=<Report ID>
    Where Report ID is the SI_ID of the report .
    In the results , you will see, SI_PATH, this will be the path of the report instance.
    ** If a report has more than one instance there will be more than one results and instances will be stored in more than one location.
    For eg:
    If you have a report named "Test",  which has say only one instance.
    Then you will first right click properties of report(Test) ->Copy the ID, say 1127
    Login to Query Builder: and run query select SI_NAME, SI_FILES from CI_INFOOBJECTS where SI_PARENTID=1127
    This will List the SI_PATh property for the report instance.
    Regards,
    RVS

  • How can we retrieve the Payload information from B2B

    Hello,
    We are trying to send the payload information back to the client for a failed BPEL Transaction from B2B's b2b_instancemessage view. We are enqueing messages to IP_OUT_QUEUE using BPEL. We see the payload coming correctly in the B2B Business Message Reports. But we don't see the payload coming in the b2b_instancemessage view for failed B2B transactions. How can we see the payload in b2b_instancemessage view for failed B2B transactions as well? or How can we retrieve the Payload information from B2B?
    Any help is greatly appreciated! Thanks. - Sam.
    Edited by: user12049162 on Dec 4, 2009 2:04 PM

    I am not sure about the PDK API to get the group name. But using LDAP API its easy to get the User Group.
    If you find the answer to get the group name using PDK API, Please update in forum. It will really help others.
    --Balaji S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • My iPhone was stolen.  How do I retrieve the pictures etc that were on imt.  I know they must be in the iCloud but I don't know how to get into it from my iPad.  Also, I would like to try to locate the phone ...how do I do that from my iPad?

    My iPhone was stolen.  How do I retrieve the pictures etc that were on imt.  I know they must be in the iCloud but I don't know how to get into it from my iPad.  Also, I would like to try to locate the phone ...how do I do that from my iPad?

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
     Cheers, Tom

  • How to selectively disable Header & Footer/How do we retrieve the PageName in the custom navtype cla

    I would like to disable the Header and Footer for the login page. In my Custom Navigation Type class, I went ahead and made the following changes to the isFeatureEnabled() function.
    if(feature.Equals(NavFeatureEnum.TOPBAR))
    returnfalse;
    if (feature.Equals(NavFeatureEnum.HEADER))
    return false;
    But this essentially disables the header and footer for the entire Sub Portal. How can I retrieve the PAGE NAME in the Navigation Type class so that I can selectively disable the feature. This is what I would like to do
    if (pageName.equals("LOGIN")) {
    if (feature.Equals(NavFeatureEnum.HEADER))
    return false;
    Appreciate anyone's help in resolving this issue.
    Thanks
    Vikram

    Vikram,
    Unfortunately, you there is no way to check for page name inside the IsFeatureEnabled method. What you could do, if you want to always disable the header and footer in all navigation schemes, is to change com.plumtree.portalpages.common.uiparts.PlumtreeDP to have it check for current page name. In the Display method, search for
    displayHeader = GetPlugNavFeature(navType,NavFeatureEnum.HEADER);displayFooter = GetPlugNavFeature(navType,NavFeatureEnum.FOOTER);
    and change it to:
    if ( !LoginAS.STR_MVC_CLASS_NAME.equals(GetOwner().GetName()) ) { displayHeader = GetPlugNavFeature(navType, NavFeatureEnum.HEADER); displayFooter = GetPlugNavFeature(navType, NavFeatureEnum.FOOTER);} else { displayHeader = false; displayFooter = false;}
    Just remember that we might make changes in PlumtreeDP in future updates. You would have to add this code in again if we do.

  • How can we know the format of report

    Developed a web application using java SDK.
    How can we know the format of report that is is it a crystal report , PDF or excel or hyperling.
    If it is crystal report then i use openDoc and the report is opened but if its a hyperlink or PDf i am not able to open the report .
    Please help.
    Thanks

    Check the si_kind or so_progid property of object. You can use oInfoObject.getKind() to retrieve that.
    a crystal report would return crystalreport a pdf would return pdf etc.

  • How can we retrieve the name of the Parent Space from the subspace?

    We wish to use a hyperlink in a subspace template which allows a user to link back from the subspace to its parent space.
    This hyperlink should show the name of the parent space.
    These Expression Language Expressions return parent information, but they so not show the Name of the parent space or other details like the Parent Space URL.
    #{spaceContext.currentSpace.parent}
    #{spaceContext.space['bpo'].parent}
    How can we retrieve the name of the Parent Space?

    I agree!
    I can't top this approach.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How can I retrieve the inbound XML messages (invoices) by ABAP program?

    Where are the inbound XML messages (invoices) saved in XI box?
    How can I retrieve the inbound XML invoices in XI box by ABAP program?
    Is there any method/BADI/function module to retrieve these XML invoices, so I can output these XML invoices in an ABAP report?
    Thanks in advance for your help!

    Hello Fisher,
    This Webblog will help you.
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    From this blog you will understand the code behind SXMB moni .. which performs the selection from database. You can write a report as well.
    Cheers,
    Himadri

  • HT1414 If I lose my iphone, how do I retrieve the info backed up on itunes and apply it to a new phone?

    If I lose my iphone, how do I retrieve the info backed up on itunes and apply it to a new phone?

    Restore the new phone from the backup of the old phone. See:
    iOS: How to back up
    Also, as applicable,
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • How do I retrieve the .exe path?

    How do I retrieve the .exe path?  In Window_Loaded I have:
                System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
    but Visual Studio does not like "Assembly" ... does not exist in the current context.
    bhs67

    System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
    Or import System.Reflection at the top:
    using System.Reflection;
    Armin

  • I lost my itouch (4th gen.) on Thursday at 6pm, and I would like as much feedback on ways to track it. How do I retrieve the serial number?

    I lost my itouch (4th gen.) on Thursday at 6pm, and I would like as much feedback on ways to track it. How do I retrieve the serial number by launching itunes?

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have to iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I updated my iPod and it erased everything i had on it.  How do i retrieve the songs that i bought from the iTunes store?  when i try to download/buy them again they tell me i have already purchased them do i want to buy them again?

    I updated my iPod and it erased everything i had on it.  How do i retrieve the songs that i bought from the iTunes store?  when i try to download/buy them again they tell me i have already purchased them do i want to buy them again?  I have authorized my computer but none of them are in my music now.

    You buy one and only one download.
    It is your responsibility to move/copy/backup your music.
    Certainly you did not update your ipod without making sure that you had transferred anything purchased on the ipod to your computer and included it in your regular backup copy of your computer.

  • I want to update iCloud account with new apple id but don't know password for old apple id.  Plus can no longer receive email at old apple id.  How can I delete the current iCloud account on my iPhone if the previously stated conditions exist?

    I want to update iCloud account with new apple id but don't know password for old apple id.  Plus can no longer receive email at old apple id.  How can I delete the current iCloud account on my iPhone if the previously stated conditions exist?

    If the old ID is yours, and if it is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I forgot my password to get inot email on Thunderbird. How do I retrieve the password or set a new one?

    When I ttry to get my email through Thunderbird, it is now asking me for my password, but I have forgotten it, it has been so long since I have been asked for it. How do I retrieve the password, or set a new one?
    YOU CANNOT EMAIL ME MY ANSWER SINCE I CANNOT OPEN MY EMAIL. CALL at 240-305-7128 or email at [email protected]
    == This happened ==
    Every time Firefox opened
    == yesterday

    You need to go to the website of your email provider, only there can you change your password, or let them send you a new one to a different address. Thunderbird can't help you with that.

  • I recently removed an outlook account and now all of my calendar events are missing. The majority of them were added from my iphone 4s. How do I retrieve the events? Backing up with iCloud did not help, as I assumed it would.

    I recently removed an outlook account and now all of my calendar events are missing. The majority of them were added from my iphone 4s. How do I retrieve the events? Backing up with iCloud did not help, as I assumed it would.

    Outlook is a mail client for PC's (and Macs). It is not a type of account. Do you mean an "Exchange Account"?
    If so, then re-add it. The calendar events live on the Exchange Server. The only way to get them back is to re-add the account to the phone. The contents of Exchange and IMAP accounts are not part of the 'backup' as they already exist elsewhere.

Maybe you are looking for

  • Aspect ratio issue when watching 16'9 idvd created DVDs on regular players

    I am having problems with the aspect ratio of any DVDs that I burn in iDVD as 16'9 - The original video is 16'9 and edited as such in FCP, then exported with current settings selected and then in iDVD I select a widescreen project - preview of the pr

  • How to pass a javascript variable to a query in BEx?

    Hi All, We're using BEx SAP BW 3.x I'm using portal eventing to pass a variable to a BW template.  While I can pick up this value using javascript, I do not know how to pass it to the query. Let me just say, I am new to BEx, so any guidance you could

  • Serial number when production order creation in MTO

    Dear sir serial number profile assinged in the material master of finfished product . i have sales ordernumber    x  and  qty for finished product 10EA. when i run md50 for mto . then pland order qty converted to production order for 10ea. then produ

  • What will be the query to generate this reports ?

    Dear Exparts, Here is my banner Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod PL/SQL Release 10.2.0.3.0 - Production "CORE     10.2.0.3.0     Production" TNS for 32-bit Windows: Version 10.2.0.3.0 - Production NLSRTL Version 10.2.0

  • Ini Flash component properties on beginSprite event

    Hi, I spend some time searching the web for a solution to initialize Flash components (buttons, input text, list, tree, and so on) properties on the beginSprite Director's event and I couldn't find any practical solution then I'd like to share with y