Using session storage between Report and Frame Driver

I have an existing report that has a link calling a frame driver with multiple forms. I would like to make the Initial Target Frame Content dynamic based on information contained in the targeted record of the report. I am able to make this work (in basic concept) on the frame driver side, but have not been able to pass session variables from the report side. I can, of course, pass bind variables via a link from the report. Does anyone know of a way to access the parameter bind varaiables in the frame driver component using session storage or something else in order to make these variables available to the PL/Sql of the Initial Target Frame?
Message was edited by: PM
user477244

Seems that session is changed during logon or even if
web page (where the servlet is located) is refreshed!In Portal 10g (and maybe even in 9.0.2.6) the Web provider session is not lost any more when the user logs in to Portal.
PL/SQL doesn't lost the session storage data during
logon. But is it possible to find Java session storage
from PL/SQL session storage?No, you cannot share the session between database and Web providers. You need to find other ways to share information between portlets belonging to different providers. You can use parameter passing, or a persistent store, such as the database.
Java session storage doesn't use domain name or
subdomain which are mandatory for PL/SQL session
storage.The domain, sub-domain strings are irrelevant, as long as you can uniquely identify your session variable. For example, if you want to make sure that you have a separate session variable for every portlet instance, you should include the preference path in your domain or sub-domain. In case you want to share the session store between your portlets, don't include the unique portlet ID.
Peter

Similar Messages

  • Session storage between Java and PL/SQL

    Hi all,
    We have made Java servlet using session storage. The data stored is valid until session is changed. Seems that session is changed during logon or even if web page (where the servlet is located) is refreshed!
    PL/SQL doesn't lost the session storage data during logon. But is it possible to find Java session storage from PL/SQL session storage?
    Java session storage doesn't use domain name or subdomain which are mandatory for PL/SQL session storage.
    Portal version is 3.0.9.8.5
    Thanks,
    Jari

    See my answer Session storage between Java and PL/SQL.
    Peter

  • Link between reports and universes and universe name change

    I want to change a universe name.
    What is the impact on my WebI reports and DeskI reports ?
    Is it risky ? Will the link between reports and universes be saved ?
    Does someone know how the link between reports and universes works for WebI reports and DeskI reports ?
    Thanks

    Hello Umberto,
    I recommend to post this query to the [WEBI|SAP BusinessObjects Web Intelligence; and [DESKI|SAP BusinessObjects Desktop Intelligence; forums.
    These forums are monitored by qualified technicians and you will get a faster response there.
    Also, all Webi and Deski queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • How can I restrict the usage of a iPhone 5c?  I would only like my daughter to be able to use her phone between 7am and 10pm central.  Any ideas how to do this or an app to use?

    How can I restrict the usage of a iPhone 5c?  I would only like my daughter to be able to use her phone between 7am and 10pm central.  Any ideas how to do this or an app to use?

    Hi! i believe there is no preinstalled app than can do that for you, however you can use a third party software, such as this: http://www.bitworks-engineering.co.uk/Apps/TimeLock_App/Welcome.html or this https://itunes.apple.com/us/app/parental-timelock-time-limit/id689577280?mt=8

  • HT202574 what is the difference between Flash and Fusion Drives?

    what is the difference between Flash and Fusion Drives?

    Here's Apple's explanation Mac mini (Late 2012 and later), iMac (Late 2012 and later): About Fusion Drive - Apple Support

  • SSD in Bios and can be used as storage but not as general drive

    Hello I need some help and was pointed here by another MS Forum. The following is where I am at so far:
    Hello,
    I need some help. I have bought a SanDisk SSD and intalled it into my PC with the hope I could go from HDD to SSD but although the
    BIOS appears to show that it has picked the drive up and it can be used as Storage Space, I am not able to use it as a general or main drive or migrate so it becomes the main drive.
    I have Win 8.1 pro with media and a Asrock ConRoe 1333-D667 Motherboard.
    Any help possible?
    Geethu B replied on
    May 11, 2014
    Microsoft
    Support Engineer
    Hi Luke,
    For a better understanding of the issue, when you say “main drive”, do you want Windows 8.1 to be installed on SSD drive?
    You may create System Image of Windows 8.1 from HDD. Then remove HDD from the computer. Now Restore System Image to SSD and check if
    it works.
    To take System Image refer to the article.
    How to create a system image to refresh your
    Windows 8 PC
    To restore files to SSD, follow these steps.
    a. Open
    Recovery by pressing Windows Key + C, and typing
    Control Panel. In the search box, type recovery, and then click Recovery.
    b. Click
    Advanced recovery methods.
    c. Click
    Use a system image you created earlier to recover your computer, and then follow the steps.
    Hope this information helps. Reply to the post with updated status of the issue to assist you further.
    lukecahill replied
    on May 11, 2014
    Thank you,
    Yes I would like Windows to run from the SSD.
    The main problem I have is when I tried to clone the drive to SSD it not even registering as a drive the same if I try doing a clean
    install.
    It shows as an available drive to clone to if I set it as a storage device but then when you attempt it it says not enough room even
    though the drive has 127gb available and the drive being cloned only has bout 105gb on it.
    Geethu B replied on
    May 12, 2014
    Microsoft
    Support Engineer
    Hi Luke,
    Issues related to cloning drives are supported in TechNet Forums. I would suggest you to post the query in TechNet Forums.
    http://social.technet.microsoft.com/Forums/en-US/home?category=w8itpro
    Hope this information helps.

    Hi!
    If you have the possibility to do a clean installation, which I can see that you have, this is the best option.
    What you need to do is to remove all drives from your computer, then connect the SSD only, enter BIOS and change the SATA Compability mode to AHCI.
    Then install Windows to your drive and when completed, attach the other drives again.
    I hope this helps!
    Best regards
    Andreas Molin
    Andreas Molin | Site: www.guidestomicrosoft.com | Twitter: andreas_molin

  • Passing session data between jsp and servlet

    I have a servlet that I pass data to my jsp.
    I do a session.setAtrribute in the servlet. No problem.
    I get the data no problem in the jsp that I call.
    How do I pass this same data to the another servlet?
    I basically have an array of values that I already have in the existing jsp that has been set in session.
    When I call the secondary servlet, I don't have anything in this session variable related to my array.
    Prior to posting to my next servlet, do I need to do another setAttribute inside the jsp to get the data passed to the servlet?
    Thanks.

    Two different things. The encoding adds this to the URL (after the page, before the query string
    ;jsessionid=ABC123 but only if the user isn't using cookies.
    So in your example, you would do this (maybe):
    <%
      String url = response.encodeURL("Servlet");
    %>
      <form name="form1" method="post" action="<%= url %>?cmd=pay"> ... Or some modification.
    So the difference between encodeing and using a post is that
    1) encoding adds the jsessionid to the url string if necessary. It does nothing else
    2) POSTing will send a request to the provided URL via the POST method, including the inputs of the form as parameters to the URL.
    They really don't interact with each other. It is like asking what is the difference between the Color Orange and thr Size Big? They can both be applied to the same thing, or not... and have no real relation to each other.

  • How can we share session information between browser and WebView

    Hi
    I have a web application which launches a instance of JavaFX web view on a click of a button. My issue is that when i launch this web view it creates a  new session of its own ,how can you transfer the session information of the parent (browser) to the web view.
    One of the solution i found was to add the JSESSION_ID cookie into the default(System-wide) cookie handler so it would override the existing cookie within the WebView cookiehandler.
    http headers - Setting a cookie using JavaFX&amp;#39;s WebEngine/WebView - Stack Overflow
    Are there any other solution for sharing session information between the web view instance and browser that launches it ?

    O.K. then, is it at least possible to access a wwsto_api_session
    from Java in the following way?
    Calling PL/SQL from Java
    JDBC and SQLJ allow you to call PL/SQL stored functions and
    procedures. For example, suppose you want to call the following
    stored function, which returns
    the balance of a specified bank account:
    FUNCTION balance (acct_id NUMBER) RETURN NUMBER IS
    acct_bal NUMBER;
    BEGIN
    SELECT bal INTO acct_bal FROM accts
    WHERE acct_no = acct_id;
    RETURN acct_bal;
    END;
    From a JDBC program, your call to the function balance might look
    like this:
    CallableStatement cstmt = conn.prepareCall("{? = CALL balance(?)}");
    cstmt.registerOutParameter(1, Types.FLOAT);
    cstmt.setInt(2, acctNo);
    cstmt.executeUpdate();
    float acctBal = cstmt.getFloat(1);

  • Link between reports and universes

    Hi,
    How to have automatically the link between Universes and Reports in a repository ?
    Which universes are used and by which reports ?
    I know where to get the information manually on the report but I don't how to get it automatically.
    Is it possible to make a request on meta model ? Is there a tool provided ?

    Jerome,
    You have to install Auditing (unless it was installed with the initial install, which it looks like for you it wasn't).
    Locate the PDF "BusinessObjects Enterprise(tm) XI Release 2 Auditor's Guide" (xir2_bip_auditor_en.pdf).
    You will find, among other things, that you will have to locate your software and go through another installing situation, but this time choosing to only add the missing piece (Auditor) -- best to read through the PDF first to get a handle on everthing you need to set up.  Also know that DeskI activity is not captured, just WebI (Infoview, modify report, etc).
    Thanks,
    John

  • How can i use FNDLOAD for XML reports and data defnitions

    I registerd concurrent program and linked xml reports and data defnitions in staging instance, and successfully moved to DEV.. after that stage is refreshed and when i download the details from DEV and uploaded to Stage only concurrent program i can upload...Wheteher we can use FNDLOAD Command for the Data definitions or Data template for the XML Report,used FNDLOAD for the concurrent program, it uploaded only concurrent program details.

    Hi,
    Use XDOLoader.
    Note: 469585.1 - How To Use XDOLoader?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=469585.1
    Regards,
    Hussein

  • How to use url to open report and refresh report's data,but the report's toolbar haven't "refresh data" button

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    HI,
    scenario is
    I hope use url to open the report,and refresh the report data,but I didn't the user use the "refresh data" button to refresh the report's data.How to do that?
    regards

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    Thank you for your attention, amr_foci .
    I created a Web Intelligence report,there will be more than 30 companies use.The company only allowed to see the Company Data. I want to use the url of the way, from my company in the development of the system to open report, and refresh reported Table data.but do not want users to use the toolbar of "data refresh" button to refresh the data .
    Now the question of identity authentication system, as well as statements by url open the question of Has been resolved, but it can not shield statements through the pages of "data refresh" button.
    In addition, I now used by the business object XI system is posted on the JAVA environment.
    Regards,

  • Use check box for report and form

    Hi Expert,
    I try to use check box to select multiple rows in a report and then click on a button to go to a form on another page to choose some values from the form and then do a mass update for records selected in reports.
    I read the "How to Work with Check Boxes" in 2 Day Developer guide, it works fine to select mutiple rows in report and do update with process in that report page.
    However, if I click on a button to go to another page which contains a form, seems the values stored in the package array are cleared and not passed to that page.
    Do you know how I could make this work?
    Thanks a lot,
    Jessie

    Hello Sakti,
    I am also in ECC6.0 & if i see the definition of the BAdI BADI_TAX1_XTXIT_SET, "Multiple Use" checkbox is checked! What are you trying to do - trying to create an implementation?
    @Prabhu: Although the BAdI is "multiple-use", but there is not filter applied to it. Next time do your checks properly before replying
    BR,
    Suhas

  • PRoblems between audigy2zs and 9800pro drive

    I have been having a lot of trouble installing my new sound card into my system. Here is the steps I have taken. I installed windows xp pro w/sp2 integrated. I installed all mobo drivers(the onboard sound is disabled in the bios). I then installed the ATI catalyst driver latest version. Next I installed my sound card and software/driver that came with the soundcard. Now here is my problem, when I hit the equalizer on the creative taskbar(the one on the top of the desktop) it gives me an error message that it cannot find the device that that software operates. Now that doesnt sound like a big deal...but in addition to that it also causes my internet to go offline...the moment I start an application that uses hardware sound acceleration(games). Here is what I have done to try to repair this problem.
    ) Change the order of items installed. This is where I figured out that it was my catalyst drivers causing the creative software not to work correctly. The creative stuff wroks fine as long as the win xp default software is loaded in for my graphics card. The moment I install the updated graphics driver I loose the graphics equalizer.
    2) Change the slot that the sound card is intstalled into. (I have tried them all same result.)
    3) Updated drivers from creative.
    4) Tried different catalyst drivers.
    As a side note the only way I can get the internet to work with games is to disable the sound card in the system control panel...and onboard sound through the bios. Otherwise it will give me the boot everytime.
    Also I just wanted to mention that the entire system worked flawlessly before the addition of this card. I was simply unhappy with the quality of my on-board sound. I never had any idea I woul dhave this kind of problems. Here is my system specs.
    AMD 2500+Barton
    Soyo KT600 Ultra platnum plus
    WD 200Gig SATA dri've
    gig PC3200 Corsair XMS
    Soundblaster audigy2 zs platinum
    Hercules prophet 9800Pro
    I appreciate any help given with this problem I have never had problems like this and am somewhat lost in what to do. Thanks Ken

    well, i have ahn saphire 9800pro and audigy 2 sz platinum and internet cable and never had this kind of problem, try to install the audio card on the last slot.
    or try to install xp without the sp or 2.

  • Differentiate between report and generated scheduled report - report list

    How do I differentiate between a (.rpt) report and a (scheduled generated report) from this report (.rpt with data) when I list all the reports on the server.
    I need this information because when I view the scheduled report, I do not need to set the parameters via the crystal viewer.
    Thanks in advance.
    JM

    Ted.
    I am not sure why the scheduled report is saying si_instance=false.
    So I scheduled the sample report - Drilldown and named the scheduled instance as "DrilldownInstance",
    it created two info objects. One has SI_INSTANCE = true and the other has SI_INSTANCE = false!!!!!
    select * from CI_INFOOBJECTS
    where
    SI_PROGID = 'CrystalEnterprise.Report'
    and SI_KIND = 'CrystalReport'
    and si_name LIKE '%DrilldownInstance%'
    I presume it should have only created one object, and set si_instance=true
    Thanks,
    JM
    P.S
    Sorry to be a bother! but this is driving me nuts!
    Edited by: jam mend on Jan 20, 2009 9:07 PM

  • Is it possible to use screen sharing between lion and mountain lion

    I could always use screen sharing between my 2010 macbook and my 2007 macmini,both with lion.But now since I upgraded the macbook to mountain loin it doesn't work.The macmini did at first show up on the macbook finder sidebar under sharing like it always had done but as soon as I tried to connect the sharing option disappeared and won't come back.The macmini can still see the macbook however,its on the finder there.But when I try to connect from the mini to the macbook I get an error message that says something like "server error" and contact administrator(that's me!)I can't upgrade the mini to mountain lion as it's too old.So it this an incompatibility between the two operating systems or is it something else?
    I also tried to do it with BackTo My Mac,enabled through icloud on both computers but no luck,not even showing the Back to my Mac icon on either Finder sidebar like it's supposed to.When I did it through system preferences-icloud,it said this was successfully enabled but it just doesn't work at all.
    Cross about this since I always use the macbook to control the macmini which is plugged into a flat screen tv and it's much easier than fiddling around with a mouse and keyboard.

    I can screen share my wife's Lion iMac using Mountain Lion and the reverse is true. If the computer is not showing up to be selected under shard on the left column of the finder it is probable a connection issue. I would check my home network, restart the the macs and toggle the sharded settings and energy saving settings like wake for network activity. Be sure and set up iCloud on both your macs and turn on UPnP if you have a router for your home network serving up NAT IP Numbers. UPnG will make the port forwarding enteries in you router to allow you macs to connect behind the firewall created by nat addressing.
    I am currently having a problem with back to my mac. S
    creen shares great the the Lion iMac but Mountain Lion to Mountain on one computer will not connect if the computer is sleeping. It lights the screen on the sleeping computer but never shows on the computer requesting to share. File share always workd. If I wake the computere before I attemp the connection, screen share work as it should. If I try to screen share while the second computer is sleeping, It will never work again until I restart the iMac.

Maybe you are looking for