[BOEXI3] Interactive editor sample

Hi.
I have the need to embed the interactive viewer (and / or the java applet) in a custom application.
To achiev that, I downloaded the interactive editor sample and tried to get the necessary information out of it.
What I can do now, is
- select a universe
- edit the query
- run the query and display a report (and do layout stuff)
Some might say, that this is everything I need - is partly right.
Now to describe my problem:
Lets say I build a query with two dimension objects without prompts, run the query, I get a report with a table with two colums - great.
The table head is blue, the table body is yellow, and the font is - well - not there.
If I select a cell and change the font size, I see the content of that cell.
So it seems, that the editor uses some default values for the colors and the fonts.
Can anybody tell me, or give me a hint, how I can fix that?
I already tried to update the libraries to 3.1, removed the version check warning and ran into the same problem.
Any help apreciated!
Regards
Jan

The default colors for Web Intelligence cells using ReportEngine SDK is indeed blue and gold.   If anyone is interested, this was so before BusinessObjects became part of SAP - so it's not SAP colors.
But all document report objects support the Decoration interface, for which you can set an Attributes property.
You set the colors as Attributes property.
If you want data filled, ensure you Refresh and getView the created document before saving.
Sincerely,
Ted Ueda

Similar Messages

  • XI 3.0 SAMPLE Interactive Editor Integration Java Sample

    Hi
    I am trying to run XI 3.0 sampe for Interactive Editor Integration provided at resdk_java_ieditIntegr_sample.zip.
    When I try to login I am getting the following error:
    org.apache.jasper.JasperException: /viewers/cdz_adv/wistartpage.jsp(16,0) The value for the useBean class attribute com.businessobjects.adv_ivcdzview.Utils is invalid.
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Can someone provide me help to resolve this problem.
    Thanks
    Venkata

    Hi Shawn,
    Copying the adv_ivcdzview.jar file from tomcat\webapp\AnalyticReporting\web-inf\lib resolved the issue for me.
    Thanks
    Venkata

  • Create hyperlinks in a report using online interactive editor

    Hi All,
    With 11g I want to add hyperlinks to columns in a report to link/open another report. Can I do that using online interactive editor, we don't use RTF templates.
    Thanks,
    Sri

    U can include any text rt click on it goto format text
    Hyperlink tab and add any type of hyperlink there.
    If you want to add something specific please do let me know

  • Interactive form sample code(ABAP)

    I make an ABAP program using form FP_EXAMPLE_01 folowing training document "Printing Forms with Interactive Forms Based on Adobe Software" . But it can not run.
    I am new in Interactive form. Can you help me a full code sample to run this form FP_EXAMPLE_01, please.

    Error in adobe form
    check this.
    look at the Adobe page here in SDN:
    Use the Tcode : SFP
    https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=AdobeForms.htm
    Check these links on Adobe forms
    http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/content.htm
    https://www.sdn.sap.com/irj/sdn/interactiveforms
    http://www.sap.com/solutions/solutionextensions/pdf/BWP_Interactive_Forms_Adobe.pdf
    It contains lots of useful information, documentation, and e-learning materials teaching you the basics.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/64348655fb46149098d95bdca103d0/frameset.htm
    follow these links.
    https://www.sdn.sap.com/irj/sdn/interactiveforms
    http://www.sapfinug.fi/downloads/2006/seminaari/uudet/SAP_Adobe.pdf
    https://weblogs.sdn.sap.com/weblogs/topic/45?x-o=50
    Interactive Forms based on Adobe software is SAP's new solution for forms development. Its first release has the focus on interactive use of forms. High-volume printing is supported in principle, but - being a new solution - the performance has not yet reached the same level as Smart Forms or SAPscript, two established solutions that had years to grow. Interactive Forms is the only solution that will continue to be enhanced with new features, while SAPscript and Smart Forms will be supported without limitations.
    When (or if) to move to Interactive Forms depends on your requirements. For interactive forms usage, i.e. the new functions, you have no choice, as the existing solutions don't support it. High-volume print scenarios need to be carefully analyzed to see whether your concrete requirements can be met at this point.
    However, it is possible to move to Smart Forms and design your forms in such a way that a migration at any point in the future would be but a small step. Smart Forms offers from Web AS 6.40 a migration wizard to Interactive Forms. Technically, everything can be migrated, but we recommend against things like ABAP program nodes, for example.
    You are not forced to ever go to Interactive Forms if you don't want to. It really depends on whether your client needs any of the new features in Interactive Forms. Also, if they are currently working with JetForms, they could enquire with Adobe directly what migration path they offer to the joint solution.
    go thru this links
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/4a94696de6429cada345c12098b009/frameset.htm
    example
    To get an overview idea about Adobe forms ,
    Using SFP Tcode , first you need to create a interface . in interface you can declare the import and export parameters and also the declaration part, coding etc : This is nothing but similar to Function module interface.
    And now we have to create the Form which is interactive. Create the form and enter the interface name which you have created in first step, so that the parameters , declarations of fields etc : will be copied and available in the form layout. So that you can drag and drop these declared fields ( dclared fields of interface ) to the layout.
    Create the context and layout in the form.
    The layout generated can be previewed and saved as PDF output.
    Now we need to integrate the driver program and the PDF form to get the final output as per the requirement.
    On activating and executing the form you will get a function module name just similar to smartforms.
    The driver program needs to call this FM.
    Refer to the below sample code :
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000043'
    EXPORTING
    /1bcdwb/docparams = docparams
    is_customer = is_customer
    it_bookings = it_bookings
    IV_IMAGE_URL =
    iv_sending_country = 'US'
    IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    IMPORTING
    E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Plzz reward if it is useful

  • Sample Editor - "sample accuracy" is a matter of opinion...

    In trying to figure out exactly what was going on with start/anchor/end points in the Sample Editor, I discovered the basic relationship between the Sample Editor and Arrange window... thought this might be useful to others.
    Basically, it's a matter of opinion whether or not the Sample Editor truly lets you make sample-accurate edits. By itself, the Sample Editor does let you move the start/anchor/end points to any sample value, and Logic will save and remember these settings, accurate to the sample.
    But, you can't rely on those sample-accurate edits when you place the region in the Arrange window. Logic always "remembers" them, but the results in the Arrange window can get sloppy.
    Bottom line: Logic forces all region start and end boundaries to rounded tick values. So, if you go into the Sample Editor and adjust the start/anchor/end by samples, it's impossible for all of these edits to get consistently represented in the Arrange window. To get that, Logic would have to allow the region start and end to be between ticks, and it won't allow that--something has to give.
    Here's what actually happens: you set the anchor with sample accuracy in the Sample Editor, then you place the region in the Arrange to be at exactly bar 5 (5 1 1 1 1), for instance. You'd expect the anchor to be at exactly bar 5, but it isn't... it's close, but what Logic actually does is line up the region by the region start marker. The region start marker never moves relative to the region's audio: when you try to put the anchor at bar 5, Logic actually slides the region to the nearest tick value--the start marker goes precisely on a tick, and the anchor ends up slightly ahead or behind the bar 5 marker.
    Now, this behavior isn't so bad in most cases--can you really hear a few samples difference between exactly where you put the anchor, and exactly where it ends up ? Almost certainly not, although I know an obsessive-compulsive post editor who isn't going to be happy when I tell him this...
    But the dark side of this behavior occurs with the region end point. Again, Logic never moves the region start relative to the region's audio--it shifts around the anchor to make the region start fall on a rounded tick. But what about the region end ? Unfortunately, even though the Sample Editor will let you put the region end anywhere you want it, and it will save the region/file that way, that region end will get shifted around to fall on the nearest tick in the Arrange.
    So, you cut a sample precisely in the Sample Editor, make sure the start and end fall on zero crossings, then you place the anchor at a transient point and spot the region in the Arrange. What actually happens is that
    1) your start region edit gets preserved
    2) the anchor gets put somewhere fairly close to the actual spot point
    3) the region end gets rounded to the nearest tick
    #1 is great, #2 probably OK, but #3 can be a problem. Your region may sound great in the Sample Editor, but it may click on the back end in the Arrange... unless the region's start and end happen by luck to be exact tick multiples of each other, the region end will get moved by a few samples, which may cause a glitch in playback.
    My suggestions:
    1) Be aware that anchor's aren't placed with sample-accuracy. You probably will never care, but it's good to know.
    2) Leave a tick or two of silence at the end of a region. If you use a Sample Editor to trim the region end precisely to a zero crossing, you'll probably get bitten when you put this region in the Arrange. Either do a destructive fade in the Sample Editor, or use the fade tool in the Arrange. (DAWs are going to have to take a few more steps forward before we can stop being superstitious about fading the start and end of every single region, even when edits are at zero-crossings. If the work is important, crossfade everything!)
    3) Apple... PLEASE, PLEASE, PLEASE revamp the Arrange window to be sample-accurate. There are so many kludgy little issues that would go away if the base timescale could be samples. Not to mention that almost every other DAW has this...
    James
    [email protected]
    Dual 1.25 G4   Mac OS X (10.4.8)  

    iSchwartz,
    Serves me right for not doing a listening test.
    Turns out that you're entirely right about what actually gets played back. I did a few tests by aligning two regions, phase-canceling them, then moving around the start, end, and anchor points.
    Sure enough, what I HEARD corresponded exactly to what I saw in the Sample Editor.
    But the Arrangement doesn't show things that way--I was looking instead of listening, and in these cases, the Arrangement can show things that are contrary to what gets played back.
    When you move that end marker to the right in the last step of your test, I'll bet the Arrange window doesn't show the little glitch that you're now able to hear. And if you take an Arrangement region that ends with a little glitch, you can remove it by sliding the region end a sample to the left in the Sample Editor, but you'll still SEE the glitch in the Arrange window. Looks like the Arrangement plays back exactly what you've got in the Sample Editor, but it DISPLAYS things rounded to the nearest tick.
    And this gets more confusing when you move around the anchor point. Trim one of your clicks so the anchor and the region start are both precisely on the transient, and move that region to a bar marker. Then look at the Arrange window at maximum zoom--you'll see exactly what you'd expect.
    But... now... go back to the Sample Editor and try moving the anchor a few samples to the right. When you go back to the Arrange window, nothing has changed--the transient still looks like it's precisely on the bar marker, while the Sample Editor shows that it's not.
    And it gets weirder... go back to the Sample Editor, and move the region start a few samples to the left. Now, when you go back to the Arrange window, what you see is exactly the opposite of what you'd expect. You'd expect the anchor to have stayed put, and the region start should have moved. Instead, the region start is still at the bar marker, but the audio inside the region appears to have moved.
    This is why I was so confused about what was going on. You're completely right about the playback--I did some tests, and all this strange behavior I'm seeing in the Arrange window, none of it makes it to playback. When the Arrange window and Sample Editor disagree, the Sample Editor seems to be ALWAYS right.
    But when you start doing sample-accurate editing with the Sample Editor, the Arrange window no longer reflects reality--region start and end markers appear to be on at rounded ticks, even though they're not, and audio will appear to be displaced within regions, even though it's actually lined up perfectly by the anchor.
    Just goes back to point #3... it's kludgy crap in the Arrangement resulting from the tick timebase. Logic 8 ?
    James
    [email protected]
    Dual 1.25 G4   Mac OS X (10.4.8)  

  • Digital waveform editor sample size limit?

    Hi,
    Can anybody please tell me the sample size limit of the Digital Waveform Editor? Thanks!
    Jing

    Hello,
    1) You can actually acquire as many points as you want. You may be worried about the throughput of all this data from the DAQ board into computer memory, but I don't think this will be much of a concern for your application. You're limited only by how much memory your computer has. Mainly, you should be concerned about what you are doing with all those samples after they are acquired. Are you just using them once then throwing them away? (Such as the "Cont Acq&Graph Voltage-Int Clk.vi" shipping example.) Or are you streaming them to disk? If you just keep them all in computer memory, then there would be some maximum number of samples you could hold but that number would be system dependant and you'd just have to experiment to find that number.
    2
    ) That's a great idea to take those voltage signals and make them digital inputs. This way you'll also free up some more bandwidth giving you the option to increase the sample rate on your other channels. However, you won't be able to include any DIO channels in the same task with your other analog channels. You need to create a separate task for these digital input channels. Lines 0,1,2, and 4 will be reserved for communication with your SCXI chassis by the way. You also won't be able to do any buffered sampling like you can with the analog channels. The DIO for the PCI-6024E is only immediate and software-timed. (You must poll the status of the line with a software loop.)
    Let me know if you have any other questions.
    Russell
    Applications Engineer
    National Instruments
    http://www.ni.com/support

  • Location of Editor Sample text

    I'm looking for the sample text for PL/SQL Syntax Colors. I've grepped all over, but I'm assuming this text is compiled in a jar. Does anyone know how I can modify it? The default sample is lacking.

    It would be nice to see actual PL/SQL instead of two DDLs and a handful of DMLs. Something more closely related to the sample in the SQL Formatter.

  • How do I create a slide/push interaction/animation?

    There's an interaction/animation I want to create, but I don't know how (or if FC currently supports it).
    For example, let's say I have a custom component that consists of a rectangle with some text in it. Below it are a "back" and a "next" button. When I click the "next" button, I want to create the effect of a second rectangle sliding in from the right and pushing the first rectangle off to the left, like when you move between home screens on an iPhone. It seems you'd need to set the right and left boundaries, like the scrollable content of a scroll panel. How could I create this effect in FC?
    Thanks for your help

    Hi Scott,
    You can do this using an action sequence. You'll need to create an interaction to start the action sequence (e.g. "on application start" or "on button click"). In the interaction editor and change "Play Transition to State" to "Play Action Sequence". When you hit OK, Catalyst will open the Timelines panel to the new action sequence. You can now sequence a bunch of arbitrary events in time. To create a slideshow, make your slides the states of a custom component, and create "set component state" actions when you want to change slides.
    -Adam

  • Next Gen Sampler V1 - Rampant Design Tools Review

    Good day,
    I am an occasional editor and was looking for a package that I could use to quickly add something extra to a show.
    Anyone have experience with this package? Next Gen Sampler V1 - Rampant Design Tools
    http://rampantdesigntools.com/product/rampant-next-gen-for-editors-sampler-v1/
    Any other suggestions welcome as well.
    Thanks in advance,
    John
    Note: I'm on a Win7 PC with CS6

    I've tried that unsuccessfully Ann (downloading free samples).
    But their preview video looks good and the price seems fair so I'll probably just buy them.
    Thanks, John

  • Open Document from a webi report

    Hi
    I am trying to open the webi document from a report and the data source is BW , can u guys help me out and give me the syntax
    thanks

    Hello,
    There no fine-grained control over the "Document Properties" frame specific to visibility of the "Created by:" field displayed, either in the Java Report Panel or DHTML Interactive Editor Extension Points. 
    You can try editing the Interactive Editor JSP file that controls that panel - it's relatively straightforward - but that would take your deployment out of support.
    One way for definiteness would be - instead - to modify the "createdby" Web Intelligence document property to something else, using ReportEngine Java SDK:
    documentInstance = reportEngine.openDocument(id);
    properties = documentInstance.getProperties();
    properties.setProperty(PropertiesType.AUTHOR, "pookie");
    documentInstance.setProperties(properties);
    documentInstance.save();
    Of course, this isn't what you want if you want to keep the "Created by:" field, but merely prevent it from being displayed in the viewers.
    Sincerely,
    Ted Ueda

  • Footer appears where it should in IE and FF but not in Safari or Chrome

    We are using php via Joomla. The footer in the  php page shows up where it theoretically be in IE (all versions) and FF but in Safari and Chrome the footer is 800px higher in the middle of the page.
    Here is the php code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr" >
        <head>
              <base href="http://192.102.10.31/cy/Presentation/index12.php" />
      <meta http-equiv="content-type" content="text/html; charset=utf-8" />
      <meta name="robots" content="index, follow" />
      <meta name="keywords" content="" />
      <meta name="rights" content="" />
      <meta name="language" content="en-GB" />
      <meta name="title" content="Landing Page" />
      <meta name="author" content="Super User" />
      <meta name="generator" content="Joomla! 1.6 - Open Source Content Management" />
      <title>COBI-DOME Online Speaker Portal - COBI-DOME OSP</title>
      <link href="/templates/cobiland/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
      <link rel="stylesheet" href="/modules/mod_pbr/css/mod_pbr.css" type="text/css" />
      <script src="/media/system/js/core.js" type="text/javascript"></script>
      <script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
      <script src="/media/system/js/caption.js" type="text/javascript"></script>
      <script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
      <script type="text/javascript">
            window.addEvent('domready', function() {
                $$('.hasTip').each(function(el) {
                    var title = el.get('title');
                    if (title) {
                        var parts = title.split('::', 2);
                        el.store('tip:title', parts[0]);
                        el.store('tip:text', parts[1]);
                var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: false});
    function keepAlive() {    var myAjax = new Request({method: "get", url: "index.php"}).send();} window.addEvent("domready", function(){ keepAlive.periodical(1740000); });
      </script>
            <script type="text/javascript" src="templates/cobiland/javascript/cobiland.js"></script>
            <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
            <link rel="stylesheet" href="templates/cobiland/css/cobiland.css" type="text/css" media="screen"/>
                                <link rel="stylesheet" href="/templates/cobiland/css/general.css" type="text/css" />
                                <link rel="stylesheet" href="/templates/cobiland/css/general_mozilla.css" type="text/css" />
                    <!--[if lte IE 6]>
            <link href="/templates/cobiland/css/ieonly.css" rel="stylesheet" type="text/css" />
            <style type="text/css">
            #line
            {      width:98% ;
            .header
                    height:75px;
            #header ul.menu
            display:block !important;
                  width:98.2% ;
             </style>
            <![endif]-->
            <!--[if IE 7]>
                    <link href="/templates/cobiland/css/ie7only.css" rel="stylesheet" type="text/css" />
            <![endif]-->
        </head>
        <body>
        <div id="masthead_container">
            <div id="masthead">
                 <div id="left_masthead"></div><!-- end #left_masthead -->
                 <div id="right_masthead">
                     <div id="welcome_logout_area">
                         <div id="welcome_label">WELCOME</div><!-- end #welcome_label -->
                         <div id="username">
                           Cy Unpingco                     </div><!-- end #username -->
                         <div id="logout_separator">|</div><!-- end #logout_separator -->
                         <div id="logout">
                            <form action="/index.php?Itemid=102" method="post" id="login-form">
        <div class="logout-button">
            <input type="submit" name="Submit" class="button" value="Logout" />
            <input type="hidden" name="option" value="com_users" />
            <input type="hidden" name="task" value="user.logout" />
            <input type="hidden" name="return" value="aW5kZXgucGhwP0l0ZW1pZD0xMDE=" />
            <input type="hidden" name="9f7ddfdb3f6e721706b66eb15bbcd009" value="1" />       
        </div>
    </form>
                         </div><!-- end #logout -->
                     </div><!-- end #welcome_logout_area -->
                     <div class="clear"></div><!-- end #clear -->
                     <div id="date_time">
                         <div id="date">04/25/2011</div><!-- end #date -->
                        <div id="time"></div><!-- end #time -->
                     </div><!-- end #date_time -->
                 </div><!-- end #right_masthead -->
            </div><!-- end #masthead -->
        </div><!-- end #masthead_container -->
        <div class id="tabs_area">
            <div id="tabs_container">
               <!-- <div class="item-page">
        <h2>
                Landing Page        </h2>
        <ul class="actions">
                        <li class="edit-icon">
                <span class="hasTip" title="Edit Article :: Published&lt;br /&gt;Tuesday, 05 April 2011&lt;br /&gt;Written by Super User"><a href="/index.php?task=article.edit&amp;a_id=1&amp;return=aHR0cDovLzE5Mi4xMDIuMT AuMzEvaW5kZXgucGhwP0l0ZW1pZD0xMDI%3D&amp;Itemid=102" ><img src="/media/system/images/edit.png" alt="Edit"  /></a></span>            </li>
        </ul>
        <p>Content Here</p>   
        </div>-->
    <ul class="menu_tabs">
    <li id="item-106"><a class="selected" href="/index.php/otolanding" >Presentations</a></li><li id="item-107"><a href="/index.php/otolanding" >Slide Sorter</a></li><li id="item-108"><a href="/index.php?Itemid=102" >Preview</a></li></ul>
    <ul class="menu_help">
    <li id="item-110"><a href="http://192.102.10.31/osphelp/help.htm" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no ,menubar=no,scrollbars=yes,resizable=yes,');return false;" title="COBI DOME Online Speaker Portal // HELP" ><img src="/images/HelpBtn_up.png" alt="Help" /><span class="image-title">Help</span> </a></li></ul>
                         </div><!-- end #tabs_container -->
         </div><!-- end #tabs_area -->
         <div id="content_area">
             <div id="content">
                                <!-- mod_pbr start  SQL UID = 14-->
    <div id='pbr_content'>
    <div id='pbr_faculty'>Therapeutic Area: Dermatology</div><!-- end #pbr_faculty -->
    <!-- Master Deck SDID =47 -->    <div id='pbr_master'>
    <div id='pbr_master_lt'><img src='/pie/dome/derma/25STD11023_V1.0/thumbs/mdimagefile.jpg' class='pbr_master_img' name='mastersd_'></div><!-- end #pbr_master_lt -->
        <div id='pbr_master_md'><ul><li id='pbr_master_title'>MASTER:</li><li id='pbr_master_title'>Case Studies in the Management of Moderate to Severe Plaque Psoriasis</li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_master_md -->
        <div id='pbr_master_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_m_edit_form'>
            <input type='image' name='pbr_m_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationDown.png') ;"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationOver.png') ;"
                src='/modules/mod_pbr/images/editPresentationUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NDc=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzI1U1REMTEwMjNfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_m_play_form'>
            <input type='image' name='pbr_m_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationDown.png') ;"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationOver.png') ;"
                src='/modules/mod_pbr/images/playPresentationUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NDc=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzI1U1REMTEwMjNfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_master_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_master -->
            <!-- Custom Deck MD ID=47 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/25STD11023_V1.0/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_217'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/23/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='MjE3' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzI1U1REMTEwMjNfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='MjE3' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzI1U1REMTEwMjNfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
    <!-- Master Deck SDID =7 -->    <div id='pbr_master'>
    <div id='pbr_master_lt'><img src='/pie/dome/derma/14STD56789_V1.0/thumbs/mdimagefile.jpg' class='pbr_master_img' name='mastersd_217'></div><!-- end #pbr_master_lt -->
        <div id='pbr_master_md'><ul><li id='pbr_master_title'>MASTER:</li><li id='pbr_master_title'>RainbowPony7</li><li>DATE ORIGINATED: 04/06/2011</li></ul></div><!-- end #pbr_master_md -->
        <div id='pbr_master_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_m_edit_form'>
            <input type='image' name='pbr_m_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationDown.png') ;"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editPresentationOver.png') ;"
                src='/modules/mod_pbr/images/editPresentationUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='Nw==' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_m_play_form'>
            <input type='image' name='pbr_m_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationDown.png') ;"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playPresentationOver.png') ;"
                src='/modules/mod_pbr/images/playPresentationUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='Nw==' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_master_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_master -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V1.0/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_71'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzE=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzE=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V1.0/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_72'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzI=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzI=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V1.0/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_73'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzM=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzM=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVjEuMA==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_74'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzQ=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzQ=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_75'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzU=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzU=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
            <!-- Custom Deck MD ID=7 -->
            <div id='pbr_custom'>
    <div id='pbr_custom_lt'><img src='/modules/mod_pbr/images/treeIndent.png' class='pbr_indent'> <img src='/pie/dome/derma/14STD56789_V/thumbs/mdimagefile.jpg' class='pbr_custom_img' name='customsd_76'></div><!-- end #pbr_custom_lt -->
            <div id='pbr_custom_md'><ul><li id='pbr_custom_title'>CUSTOM:</li><li id='pbr_custom_title'></li><li>LAST SAVED: </li><li>DATE ORIGINATED: 04/22/2011</li></ul></div><!-- end #pbr_custom_md -->
            <div id='pbr_custom_rt'>    <form action='/index.php/editslidedeck' method='post' target='_parent' id='pbr_c_edit_form'>
            <input type='image' name='pbr_c_edit_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/editDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/editUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/editOver.png');"
                src='/modules/mod_pbr/images/editUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzY=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form>    <form action='/index.php/playslidedeck' method='post' target='_parent' id='pbr_c_play_form'>
            <input type='image' name='pbr_c_play_btn' class='button'
                onclick="return true;"
                onmousedown="SetBtnImg(this,'/modules/mod_pbr/images/playDown.png');"
                onmouseout="SetBtnImg(this,'/modules/mod_pbr/images/playUp.png');"
                onmouseover="SetBtnImg(this,'/modules/mod_pbr/images/playOver.png');"
                src='/modules/mod_pbr/images/playUp.png' />
            <input name='pbr_sdeckid' id='pbr_sdeckid' type='hidden' value='NzY=' />
            <input name='pbr_assetpath' id='pbr_assetpath' type='hidden' value='L3BpZS9kb21lL2Rlcm1hLzE0U1RENTY3ODlfVg==' />
            <input name='pbr_userid' id='pbr_userid' type='hidden' value='MTQ=' />
            <input name='pbr_wsaddress' id='pbr_wsaddress' type='hidden' value='aHR0cDovLzE5Mi4xMDIuMTAuMzEvU3BlYWtlclBvcnRhbFdTL1NwZWFrZXJQb3J0YWxXUy5h c214P1dTREw=' />
        </form></div><!-- end #pbr_custom_rt -->
    <div id='clear_me'></div><!-- end #clear_me -->
    </div><!-- end #pbr_custom -->
    </div>
    <!-- mod_pbr end -->
                                                                                                                             <!-- if ever needed, include JDoc component here -->
            </div><!-- end #content -->
         </div><!-- end #content_area -->
            <div class="clear"></div><!-- end #clear -->
        <div id="footer">
                            <a href="http://64.127.125.190/LegalNotice.pdf" target="_blank" class="footer_link">legal notice</a>
            <a href="http://64.127.125.190/PrivacyPolicy.pdf" target="_blank" class="footer_link">privacy policy</a>
            <a href="javascript:popUp('/templates/cobiland/contactus.htm')" class="footer_link">contact us</a>
            <span class="footer_nolink">powered by viscira&reg;</span>
        </div><!-- end #footer -->
        <br />
        <div id="footer2">&copy; Centocor Ortho Biotech Inc. 2011. All rights reserved.  This site is published by Centocor Ortho Biotech Inc. which is solely responsible for its contents.  This information is intended for the use of our healthcare professional speakers in the United States of America only.  This page was last modified on: April 7, 2011 10:35am PST</font></div>
        </body>
    </html>
    Here is the css:
      /* CSS layout */
    body {
        margin: 0px;
        padding: 0px;
        font-family: Verdana, Helvetica, Geneva, sans-serif;
        font-size: 12px;
        background-color: #fff;
        border: none;
    a
        text-decoration: none;
        color: #876555;
        text-wrap: unrestricted;
    a:hover {
        text-decoration: underline;
        color: #4D3A31;
    #masthead_container {
        height: 83px;
        min-width: 1000px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    #masthead {
        background: url(../images/HeaderMid.png) repeat-x;
        margin-top: 4px;
        margin-bottom: 4px;
        height: 75px;
    #left_masthead {
        background: url(../images/Logo.png) no-repeat;
        width: 530px;          
        height: 75px;
        float: left;
    #right_masthead {
        background: url(../images/HeaderRight.png) no-repeat;
        width: 432px;            
        height: 75px;
        float: right;
    #welcome_logout_area {         
        height: 20px;
        margin-top: 18px;
        float: right;
    #welcome_label {         
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 13px;
        font-stretch: expanded;
        line-height: 20px;
        text-transform: uppercase;
        color: #919191;   
        margin-left: 10px;
        float: left;
    #username {         
        font-family: Helvetica Neue, Verdana, Helvetica, sans-serif;
        font-weight: bolder;
        font-stretch: condensed;
        font-size: 12px;
        line-height: 20px;
        text-transform: uppercase;
        color: #868686;   
        margin-left: 10px;
        float: left;
    #logout_separator {         
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 13px;
        line-height: 20px;
        text-transform: uppercase;
        color: #919191;   
        margin-left: 10px;
        margin-right: 10px;
        float: left;
    #logout {         
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 13px;
        font-stretch: expanded;
        line-height: 20px;
        text-transform: uppercase;
        color: #919191;
        margin-right: 25px;   
        float: left;
    #logout:hover {         
        color: #4e93cd;
        text-decoration: none;
    #date_time {         
        height: 20px;
        margin-top: 2px;
        float: right;
    #date {         
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: 700;
        font-size: 13px;
        font-stretch: expanded;
        line-height: 20px;
        text-transform: uppercase;
        color: #a9a9a9;
        margin-right: 15px;   
        float: left;
    #time {         
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: 700;
        font-size: 13px;
        font-stretch: expanded;
        line-height: 20px;
        text-transform: uppercase;
        color: #a9a9a9;
        margin-right: 25px;   
        float: left;
    #tabs_area {
        height: 33px;
        background: url(../images/MenuLeft.png) no-repeat;
        min-width: 1000px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    #tabs_container {
        height: 33px;
        background: url(../images/MenuRight.png) no-repeat;
        background-position: right;
        min-width: 1000px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    .menu_help {
        float:right;
        list-style-type: none;
        margin-top: -40px;
    ul.menu_help li a {
        display: block;
        font-family: Verdana, Geneva, sans-serif;
        font-weight: normal;
        font-size: 11px;
        line-height: 28px;
        text-transform: uppercase;
        color: #aeadad;
        text-decoration: none;
        text-align: left;
        padding-top: 0px;
        padding-right: -15px;
        padding-bottom: 10px;
        padding-left: 20px;
    ul.menu_help li a:hover {
      color: #4e93cd;
    ul.menu_tabs {
      list-style-type: none;
      padding: 0px;
      margin: 0px 15px;
      height: 33px;
    ul.menu_tabs li {
      float: left;
      padding: 0px;
      margin: 0px 1px 0px 1px;
      padding-top: 0px;
      height: 33px;
      width: 150px;
    ul.menu_tabs li a {
        display: block;
        font-family: Verdana, Geneva, sans-serif;
        font-weight: normal;
        font-size: 11px;
        line-height: 28px;
        text-transform: uppercase;
        color: #aeadad;
        text-decoration: none;
        text-align: left;
        padding-top: 0px;
        padding-right: -15px;
        padding-bottom: 10px;
        padding-left: 20px;
    ul.menu_tabs li a.selected {
      background: url(../images/TabSelected.png) no-repeat;
      font-weight: bolder;
      color: #868686;
      height: 33px;
    ul.menu_tabs li a:hover {
      color: #4e93cd;
    #content_area {
        height: 632px;
        background-image: url(../images/ContentLeft.png);
        min-width: 1000px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        background-repeat: no-repeat;
    /*.item-page {    needs work to remove gap created by inclusion of Joomla component display
        height: 1px;
    #content {
        height: 632px;
        background-position: right;
        font-family: "Helvetica Neue", Verdana, Helvetica, sans-serif;
        font-weight: bolder;
        font-size: 14px;
        text-align: center;
        color: #C00;
        min-width: 1000px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 22px;
        background-image: url(../images/ContentRight.png);
        background-repeat: no-repeat;
    #footer {
        color: #bdbcbc;
        clear: both;
        /*margin-left:300px;
        margin-right:300px;*/
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        height: 20px;
        width: 900px;    /*98%;*/
        text-align: center;
        /*display:block;*/
        margin-top:50px;
    #footer2{
        margin-top:0px;
        margin-left:auto;
        font-family:helvetica,sans-serif;
        font-size:12px;
        text-align:center;
        padding:10px;
    .footer_link {
      display: block;
      padding: 0px 45px;
      font-family: Helvetica Neue, Verdana, Helvetica, sans-serif;
      font-weight: bold;
      font-size: 13px;
      line-height: 22px;
      text-transform: capitalize;
      color: #aeadad;
      text-decoration: none;
      text-align: center;
      float: left;
    .footer_link:hover{
      color: #2f66a3;
      text-decoration: none;
    .clear {
        clear: both;
    #logout .logout-button .button {
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 13px;
        font-stretch: expanded;
        line-height: 20px;
        text-transform: uppercase;
        color: #919191;
        margin-right: 25px;   
        float: left;
        text-decoration:none;
        border:none;
        background:none;
        cursor: pointer; /* hand-shaped cursor */
        cursor: hand; /* for IE 5.x */
    .footer_nolink {
        display: block;
        padding: 0px 45px;
        font-family: Helvetica Neue, Verdana, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 13px;
        line-height: 22px;
        text-transform: capitalize;
        color: #aeadad;
        text-decoration: none;
        text-align: center;
        float: left;
        text-wrap: unrestricted;
    /*  ------------ Definitions for the Presentation Interactive Editor (PIE) Flex App -------------   */
    #pieclass
        position:relative;
        left:30px;
        height:97%;
        width:96%;
        overflow:hidden;
        text-align:center;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;
        font-style: italic;
        line-height: 20px;
        color: #9F0;
    #swfpieclass
        position:relative;
        left:30px;
        height:97%;
        with:96%;
        overflow:hidden;
        background-color: #000;
        margin: 0px;
        padding: 0px;
    Thanks in advance for your help!
    Regards,
    seeker7805

    Hi:
    Please go here:
    http://inetwebdesign.com/presentation/index12.php
    Thanks.
    Regards,
    seeker7805

  • Hide author properties from a WebI report?

    Hello,
    I need to u201CHideu201D the report Author from the properties in a Webi report.
    Can I do it with WebI Extension Points (Java or DHTML) or with REBEAN?
    Thanks,
    Paul

    Hello,
    There no fine-grained control over the "Document Properties" frame specific to visibility of the "Created by:" field displayed, either in the Java Report Panel or DHTML Interactive Editor Extension Points. 
    You can try editing the Interactive Editor JSP file that controls that panel - it's relatively straightforward - but that would take your deployment out of support.
    One way for definiteness would be - instead - to modify the "createdby" Web Intelligence document property to something else, using ReportEngine Java SDK:
    documentInstance = reportEngine.openDocument(id);
    properties = documentInstance.getProperties();
    properties.setProperty(PropertiesType.AUTHOR, "pookie");
    documentInstance.setProperties(properties);
    documentInstance.save();
    Of course, this isn't what you want if you want to keep the "Created by:" field, but merely prevent it from being displayed in the viewers.
    Sincerely,
    Ted Ueda

  • ORA-00900: invalid SQL statement error while running jobs in APEX 4.2

    Hi,
    the following procedure compiled successfully in Apex 4.2:
    create or replace procedure "DEVLOE" AS
    L_TEMPLATE VARCHAR2(32000);
    L_base_TEMPLATE VARCHAR2(32000);
    begin
    l_base_template := '<html>
    <head>
    <title>HTML Editor Sample Page</title>
    </head>
    <body>
    <p>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span class="plsql-literal" style="line-height: 14.65625px; white-space: nowrap;">Hi #Contact#,</span></span></span></p>
    <p>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span class="plsql-literal" style="line-height: 14.65625px; white-space: nowrap;">This is a notification message to inform you that <strong>Development </strong>effort </span><span class="plsql-literal" style="line-height: 14.65625px; white-space: nowrap;">and milestones are yet to be updated for ECR: </span><span class="plsql-operator" style="line-height: 14.65625px; white-space: nowrap;"></span><span class="plsql-word" style="line-height: 14.65625px; white-space: nowrap;">#ECR_NAME#. This ECR has priority #p#. </span></span></span></p>
    <table align="center" border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
    <tbody>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="color: rgb(255, 0, 0);"><span style="font-family: verdana, geneva, sans-serif;"><u><strong>Department</strong></u></span></span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span style="color: rgb(255, 0, 0);"><u><strong><span style="background-color: rgb(255, 255, 255);">Contact Name</span></strong></u></span></span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Product Management Contact</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#pdm#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">PMO Contact</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#PMO#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Dev Contact</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#Dev#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">QA Contact</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#QA#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Infodev Contact</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#Info#</span></span></td>
    </tr>
    </tbody>
    </table>
    <p>
     </p>
    <span fckbookmark="1" style="display: none;"> </span><span fckbookmark="1" style="display: none;"> </span>
    <table align="center" border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
    <tbody>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span style="color: rgb(0, 0, 255);">Team</span></span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span style="color: rgb(0, 0, 255);">Start Date</span></span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span style="color: rgb(0, 0, 255);">End Date</span></span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;"><span style="color: rgb(0, 0, 255);">Effort(in person days)</span></span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Development</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#d1#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#e1#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#L1#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Quality Assurance</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#d2#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#e2#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#L2#</span></span></td>
    </tr>
    <tr>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">Information Development</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#d3#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#e3#</span></span></td>
    <td>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">#L3#</span></span></td>
    </tr>
    </tbody>
    </table>
    <p>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">The ECR application is located</span> at </span>: https://apex.oraclecorp.com/pls/apex/f?p=1472:1<span fckbookmark="1" style="display: none;"> </span></p>
    <span fckbookmark="1" style="display: none;"> </span>
    <p>
    <span style="font-family: verdana, geneva, sans-serif; font-size: 14px;">Regards,</span></p>
    <p>
     </p>
    <p>
    <span style="font-size:14px;"><span style="font-family: verdana, geneva, sans-serif;">ECR Team</span></span></p>
    </body>
    </html>
    FOR c1 IN (select ECR_NAME,PMO_CONTACT, QE_LOE,INFODEV_LOE, DEV_START_DATE, DEV_END_DATE, QE_CONTACT,QE_START_DATE,INFODEV_START_DATE,INFODEV_END_DATE, QE_END_DATE, INFODEV_CONTACT, PDM_CONTACT, DEV_LOE,ECR_PRIORITY, DEV_CONTACT from ECR_NAME WHERE DEV_LOE IS NULL AND ECR_STATUS = 'Effort Estimation is in Progress' AND ECR_PRIORITY <=5)
    LOOP
    l_template := l_base_template;
    l_template:= replace(l_template, '#Contact#', c1.DEV_CONTACT);
    l_template:= replace(l_template, '#ECR_NAME#', c1.ECR_NAME);
    l_template:= replace(l_template, '#p#', c1.ECR_PRIORITY);
    l_template:= replace(l_template, '#PMO#', c1.PMO_CONTACT);
    l_template:= replace(l_template, '#pdm#', c1.PDM_CONTACT);
    l_template:= replace(l_template, '#Dev#', c1.DEV_CONTACT);
    l_template:= replace(l_template, '#QA#', c1.QE_CONTACT);
    l_template:= replace(l_template, '#Info#', c1.INFODEV_CONTACT);
    l_template:= replace(l_template, '#d1#', c1.DEV_START_DATE);
    l_template:= replace(l_template, '#L1#', c1.DEV_LOE);
    l_template:= replace(l_template, '#e1#', c1.DEV_END_DATE);
    l_template:= replace(l_template, '#d2#', c1.QE_START_DATE);
    l_template:= replace(l_template, '#L2#', c1.QE_LOE);
    l_template:= replace(l_template, '#e2#', c1.QE_END_DATE);
    l_template:= replace(l_template, '#d3#', c1.INFODEV_START_DATE);
    l_template:= replace(l_template, '#L3#', c1.INFODEV_LOE);
    l_template:= replace(l_template, '#e3#', c1.INFODEV_END_DATE);
    htmldb_mail.Send(p_to => '[email protected]',
    p_cc => '[email protected]',
    p_from => '[email protected]',
    p_body => l_template,
    p_body_html => l_template,
    p_subj => 'cxxxx:' ||c1.ECR_NAME );
    END LOOP;
    end;
    the when I ran:
    begin
    devloe();
    end;
    I received the mail as well.
    However, when I try to schedule this in the job:
    declare
    JobNo user_jobs.job%TYPE;
    begin
    dbms_job.submit(JobNo, 'BEGIN
    DEVLOE();
    END;', sysdate, 'sysdate + 1/24/60'); commit; end;
    The job status shows failures every minute.
    dbms_job.run(job_no);
    It gave : ORA-00900: invalid SQL statement

    First of all I don't see a procedure header.
    Secondly I see you commit inside your procedure. This is a bug.
    Thirdly I see you also commit inside a loop. This is also a bug, and needs to be removed asap.
    The error indicates a statement doesn't parse. As you don't post the error stack, nor a table definition no one can reproduce the problem.
    You need to isolate the statements, one by one, and run them through sql*plus to see what happens.
    Sybrand Bakker
    Senior Oracle DBA

  • Video behaving badly on macs and windows7

    I have an interactive PDF I'm working on, which I've uploaded here http://dl.dropbox.com/u/5075782/Interactive%20PDF/Sample%20ebook%20new.pdf
    The mp4 video was made in Premier pro at a size of 1920x1080, (I wanted to use the built-in media player in acrobat 9, but it doesn't respect the aspect ratio strictly enough, and looks much better using QuickTime, so I adopted for the legacy option v6 to embed the video)
    I maintain the "original H264 encoding" and "snap content to proportions"
    To fit the video on all screens, I opted to resize the video to 960x540 in a floating window, allowing the user to resize (respect aspect ratio turned on)
    On XP all is great
    On a mac, the window looks fine at 960x540 but resizing is very tricky as the window won't let you resize to any size you want, also it allows you to disregard the aspect ratio
    On vista and Windows 7, resizing is fine but the player controls disappear, the work around is to set the theme to basic, but this is not ideal.
    Has anyone else come across this problem and resolved it?
    Scott

    therjsmiths wrote:
    its been a week and i see no one has responded, should i expect anyone at Lenovo to be heloping out.
    Welcome to the forum!
    While there are a few Lenovo employees roaming around in here helping out on a volunteer basis, this is not an official support channel. Instead, this is designed to be a user-to-user support and discussion forum. You may or may not get an answer directly from one of the Lenovo employees as there are way more of us than them and all of them, even Mark, have full-time jobs doing other things.  Hopefully, another forum member who has the same hardware that you have will chime in.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Jane
    2015 X1 Carbon, ThinkPad Slate, T410s, X301, X200 Tablet, T60p, HP TouchPad, iPad Air 2, iPhone 5S, IdeaTab A2107A, Yoga Tablet, Yoga 3 Pro
    I am not a Lenovo Employee.
    I AM one of those crazy ThinkPad zealots!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!

  • MSAD Configuration with Shared Services

    Hi,
    I have just sucessfully configured MSAD to the HFM SS but 1 concern is that anyone with the domain suer login is able to login to shared service although limited function are available. Is there anyway to control other users except my users to login?
    I do not want to use Native to create user as it will means another set of password to rememberr for the users, would prefer they use their normal domain accoutn to login.
    Thanks

    In addition to other comments, users can only make changes in Shared Services if they have Shared services roles assigned. Also, we use MSAD with both local and AD groups, and as long as you know the effective rights, it works out fine either way. The Shared services roles are listed below (Security Administrator's Guide pp 135-136):
    Administrator: Provides control over all products that integrate with Shared Services. It enables more
    control over security than any other Hyperion product roles and should therefore be
    assigned sparingly. Administrators can perform all administrative tasks in User
    Management Console and can provision themselves.
    This role grants broad access to all applications registered with Shared Services. The
    Administrator role is, by default, assigned to the admin Native Directory user, which is
    the only user available after you deploy Shared Services.
    Directory Manager: Creates and manages users and groups within Native Directory.
    Do not assign to Directory Managers the Provisioning Manager role because combining
    these roles allows Directory Managers to provision themselves.
    The recommended practice is to grant one user the Directory Manager role and another
    user the Provisioning Manager role.
    LCM Manager: Runs the Artifact Life-Cycle Management utility to promote artifacts or data across product environments and operating systems
    Project Manager: Creates and manages projects within Shared Services
    Create Integrations: Creates Shared Services data integrations (the process of moving data between
    applications) using a wizard.
    For Oracle's Enterprise Performance Management Architect, creates and executes data
    synchronizations.
    Run Integrations: Views and runs Shared Services data integrations.
    For Performance Management Architect, executes data synchronizations.
    Dimension Editor ( includes Dimension Viewer and Interactive Editor):
    Creates and manages import profiles for dimension creation. Also, creates and manages
    dimensions manually within the Performance Management Architect user interface or the
    Classic Application Administration option.
    Required to access Classic Application Administration options for Financial Management
    and Planning using Web navigation.
    Dimension Viewer can read or view dimensions. This role automatically maps to the
    Dimension Reader access on dimensions.
    Interactive Editor can modify members within a dimension, and grants dimension writer
    access to all dimensions. Does not allow users to delete dimensions.
    Note: Dimension Viewer and Interactive Editor roles are reserved for future use.
    Application Creator (includes Analytic Services Application Creator, Financial Management Application Creator, Planning Application Creator,  External Application Creator): Creates and deploys Performance Management Architect applications. Users with this
    role can create applications, but can change only the dimensions to which they have
    access permissions.
    Required, in addition to the Dimension Editor role, for Financial Management and
    Planning users to be able to navigate to their product’s Classic Application Administration
    options.
    When a user with Application Creator role deploys an application from Performance
    Management Architect, that user automatically becomes the application administrator
    and provisioning manager for that application.
    The Application Creator can create all applications.
    The Analytic Services Application Creator can create Generic applications.
    The Financial Management Application Creator can create Consolidation applications
    and Performance Management Architect Generic applications. To create applications,
    the user must also be a member of the Application Creators group specified in Financial
    Management Configuration Utility.
    The Planning Application Creator can create Planning applications and Performance
    Management Architect Generic applications.
    The External Application Creator can create external views and export application views
    but cannot export the library.
    Note: External Application Creator role is reserved for future use.

Maybe you are looking for

  • How to work on external monitor with lid closed?

    I have an external monitor connected to my MB Pro and would like to work with the lid closed. When I shut it, the monitor also goes to sleep. Yesterday I did something right and the monitor woke but I was able to keep the computer closed. Today it's

  • SFTP vs. ASCII/Binary distinction

    SFTP in Dreamweaver 8 does not, apparently, understand how to convert ASCII files from Windows (with CR LF line divisions) to Unix/Linux (LF line divisions). Non-secure FTP does, but that's a standard feature of the FTP protocol. Dreamweaver seems to

  • Report Dataset NOT displaying Fields within Microsoft Visual Studio

    I have developed my Stored Procedure using two driven parameters. @ReportTypeName @YearParameter The @ReportTypeName is handled within an IF at the End of the Stored Procedure to produce the correct type of report..."New" or "Renewal" The @YearParame

  • Pcr To Get The Wage Type Value From Previous Years Master Data Records

    Hi I have an issue related to pcr.  I want to get the value of a wage type from previous year and it has to be added to another wage type.  Tried to write pcr by using the operation TABLE.  But i am not able to get the previous years data.  Request t

  • Explain commands

    hi, 1)wht is the effect on using following cmds: alter system alter session alter database how each one differ from each other. 2)when are the situation database shud be mounted. 3)how to identify db startup wth pfile or spfile. 4) what is the differ