Menu problem, going to submenu in stead of first play

I've authored a DVD that has a main menu with five buttons for five submenus. Each submenu then has five buttons for the movies plus another button to return to the main menu. Everything works in the simulator, disc starts on first play main menu everything is selectable. Problem is on the burned DVD choosing main menu goes to one of the submenus although choosing main menu button does send you to the main menu. What'sd going on. I've used the same procedure to build a disc several times and no problem

A couple of questions: how long is the first play
video? Is the audio the same length? Does the first
menu have any video or audio? Also, it doesn't happen
in Simulator, but does it happen if you play the
VIDEO_TS folder on your hard disk with DVD Player?
Just trying to determine if your set-top box is the
cause, or whether maybe the audio is repeating
because it's not the same length as the video.
That was it. Audio was longer than video. Thanks!

Similar Messages

  • Encore CS6 First Play problem

    Long-time Adobe user with CS6 Master Collection. Not come across this one before, though.
    Simple Encore project using 3 PPro sequences via Dynamic Link.
    Set up so a 20 sec video plays automatically then drops into a static menu offering choice of two timelines.
    All tests OK, previews in Encore OK, and builds OK.
    HOWEVER, the resulting DVD skips the intro video and starts with the menu, despite the intro video being set as First Play and testing OK inside Encore.
    I've built the project from scratch twice now with the same result.
    Any hints as to cause and cure?

    OK. I eventually tracked it down.
    Before adding the intro element, I started with the menu. When I added the intro movie, all looked good on the flowchart and it played OK in Encore, but, as I explained initially, when burned to DVD playback started with the old menu, not the new first play.
    I tried deleting Encores preferences (start with SHIFT+CONTROL) to no effect.
    I tried adding STOP at the end of menus, to no effect.
    I also tried a variety of other first play items, but the DVD always started with the non-first-play menu.
    Eventually I looked at the project properties and found that the title button and main timeline were still pointing at the original first-play menu item, not the one currently selected. Changing the main timeline had no effect, but changing the Title Button to the new first-play timeline finally solved my problem.
    It seems possible that there is an issue with updating all relevant items in Encore CS6 (Windows, fully updated) when changing first play. Or am I missing something that makes it my fault here?

  • Menu problem with IE

    menu problems with IE connected with spry - see site:
    1.
    http://www.whatwomenwant-tv.com/index.html
    (horizontal menu bar - will not display fully, probably to do with
    flash)
    2.
    http://www.whatwomenwant-tv.com/about.html
    (horizontal menu bar swerves to the left)
    3.
    http://www.whatwomenwant-tv.com/streetinterviewswomen.html
    (vertical menu bars in questions are all over the page)
    thanks 4 help.

    I tried in Firefox 3 and IE7 and they both seemed fairly slow
    for any action to take place. But IE7 did seem pretty slugish.
    It seems that you're already determined what the issue is,
    you have waaaaaay too many menu items. Seems to me that that number
    of items don't belong in a menu. There are even menus that are too
    long to appear entirely on the page, so they can't be easily
    accessed without accidentally hiding the menus again, which I did
    several times. IN particular:
    Cartuchos > Technologica
    If you cannot change to a different format to show all of the
    items, then perhaps you can split up the menu so that you don't
    have too many at one time. I checked the code of your page and it
    seems that you've got a lot of other scripting going on there
    besides Spry, so is the issue with Spry or with everything else
    you're trying to do with that menu. If you can try to recreate the
    page with only the menu items on it (and not pulled in dynamically
    on the fly), and then add back to your page a bit a time, you might
    be able to find out what is really causing the delays.

  • Mx.controls.menu - set position of submenu flush with parent

    My boss has issues with the Flex Menu control and it's submenu's being positioned slighty down and overlapping to the parent Menu. I have been able to change the position by extending the Menu class, but now the submenu's don't hide - they stick around when they should hide on parent item rollover or document click... anyone got a fast fix for this? I am still learning the basics, so any help with be appreciated.
    Thanks in advance.
    Custom Menu code attached: (scuse the spaced out code)
    package {
    import mx.controls.Menu; 
    import mx.core.mx_internal; 
    import flash.display.DisplayObjectContainer; 
    import mx.controls.listClasses.IListItemRenderer; 
    import mx.core.Application; 
    import mx.controls.menuClasses.IMenuItemRenderer; 
    import mx.managers.PopUpManager; 
    import flash.geom.Point; 
    import flash.display.DisplayObject; 
    import flash.geom.Rectangle; 
    import flash.utils.clearInterval; 
    use namespace mx_internal; 
    public class CustomMenu extends Menu{
    private var isDirectionLeft:Boolean = false; 
    private var subMenu:Menu; 
    public function CustomMenu(){
    super();}
    public static function createMenu(parent:DisplayObjectContainer, mdp:Object, showRoot:Boolean = true):CustomMenu{
    var menu:CustomMenu = new CustomMenu();menu.tabEnabled =
    false;menu.owner = DisplayObjectContainer(Application.application);
    menu.showRoot = showRoot;
    popUpMenu(menu, parent, mdp);
    return menu;}
    override mx_internal function openSubMenu(row:IListItemRenderer):void
    supposedToLoseFocus =
    true; 
    var r:Menu = getRootMenu(); 
    var menu:CustomMenu; 
    // check to see if the menu exists, if not create it
    if (!IMenuItemRenderer(row).menu){
    menu =
    new CustomMenu();menu.parentMenu =
    this;menu.owner =
    this;menu.showRoot = showRoot;
    menu.dataDescriptor = r.dataDescriptor;
    menu.styleName = r;
    menu.labelField = r.labelField;
    menu.labelFunction = r.labelFunction;
    menu.iconField = r.iconField;
    menu.iconFunction = r.iconFunction;
    menu.itemRenderer = r.itemRenderer;
    menu.rowHeight = r.rowHeight;
    menu.scaleY = r.scaleY;
    menu.scaleX = r.scaleX;
    // if there's data and it has children then add the items
    if (row.data &&_dataDescriptor.isBranch(row.data) &&
    _dataDescriptor.hasChildren(row.data))
    menu.dataProvider = _dataDescriptor.getChildren(row.data);
    menu.sourceMenuBar = sourceMenuBar;
    menu.sourceMenuBarItem = sourceMenuBarItem;
    IMenuItemRenderer(row).menu = menu;
    PopUpManager.addPopUp(menu, r,
    false);}
    else
    //commented out can't resolve Implicit coercion error
    //menu = IMenuItemRenderer(row).menu;
    var _do:DisplayObject = DisplayObject(row); 
    var sandBoxRootPoint:Point = new Point(0,0);sandBoxRootPoint = _do.localToGlobal(sandBoxRootPoint);
    // when loadMovied, you may not be in global coordinates
    if (_do.root) //verify this is sufficient
    sandBoxRootPoint = _do.root.globalToLocal(sandBoxRootPoint);
    // showX, showY are in sandbox root coordinates
    var showY:Number = sandBoxRootPoint.y; 
    var showX:Number; 
    if (!isDirectionLeft)showX = sandBoxRootPoint.x + row.width+10;
    else
    showX = sandBoxRootPoint.x - menu.getExplicitOrMeasuredWidth();
    // convert to global coordinates to compare with getVisibleApplicationRect(). 
    // the screen is the visible coordinates of our sandbox (written in global coordinates) 
    var screen:Rectangle = systemManager.getVisibleApplicationRect(); 
    var sbRoot:DisplayObject = systemManager.getSandboxRoot(); 
    var screenPoint:Point = sbRoot.localToGlobal(new Point(showX, showY)); 
    // do x 
    var shift:Number = screenPoint.x + menu.getExplicitOrMeasuredWidth() - screen.right; 
    if (shift > 0 || screenPoint.x < screen.x){
    // if we want to ensure our parent's visible, let's  
    // modify the shift so that we're not just on-screen 
    // but we're also shifted away from our parent. 
    var shiftForParent:Number = getExplicitOrMeasuredWidth() + menu.getExplicitOrMeasuredWidth(); 
    // if was going left, shift to right. otherwise, shift to left 
    if (isDirectionLeft)shiftForParent *= -1;
    showX = Math.max(showX - shiftForParent, 0);
    // now make sure we're still on-screen againscreenPoint =
    new Point(showX, showY);screenPoint = sbRoot.localToGlobal(screenPoint);
    // only shift if greater our position + width > width of screenshift = Math.max(0, screenPoint.x + width - screen.right);
    showX = Math.max(showX - shift, 0);
    menu.isDirectionLeft =
    this.x > showX; 
    // now do yshift = screenPoint.y + height - screen.bottom;
    if (shift > 0 || screenPoint.y < screen.y)showY = Math.max(showY - shift, 0);
    menu.show(showX, showY);
    subMenu = menu;
    clearInterval(openSubMenuTimer);
    openSubMenuTimer = 0;

    Maybe call menu.move instead of menu.show

  • The menu bar goes transparent after 50-60 seconds and my mouse scroll wheel and keyboard wont work unless I click somewhere on the screen

    I hope someone can help. I'm using Firefox 31.0.1
    The menu bar at the top of the screen is a white transparent color and everything is working fine but after 50 or 60 seconds it changes to completely transparent, I can still read the words file, edit etc. This is where the scroll wheel on the mouse and anything I am typing stops working. Now all I have to do is click somewhere in the window and it works again but only for 50-60 seconds. I have had to click the screen twice since I started typing this because when I look at the screen, everything I have typed is not there because the menu bar went transparent again while I was typing. Its driving me nuts.
    I don't remember this being a problem before today, if it was I would surely have noticed. Have I pressed something or clicked on something by accident??
    I'm considering throwing the lot out the window, its really annoying, please help lads and ladies.

    Hello,
    According to your user agent, you are on Firefox 32. If you planned to use Firefox 31 ESR, you can grab a copy here:
    * https://www.mozilla.org/en-US/firefox/organizations/
    Out of curiosity, when it turns transparent, is there a "(Not Responding)" appended to the end of the window title? If you don't have the Window title being shown, it might show up if you have window titles shown on your taskbar, or in the task manager (right click on your taskbar and select "Start Task Manager"). If you do see a Not Responding, it could be a slow script on one of the pages you are viewing.
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Firefox in Windows. When I click on a link, Firefox will hang up with a rotating cursor. Problem goes away by moving mouse. This does not happen with IE.

    Using Firefox 27.0, when I click on any link, a rotating cursor appears and continues to rotate. Moving the cursor will solve the problem. I have had this problem for several versions of Firefox, and I use auto updates.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Newbie... menu problem  :) Lit'l help plez

    I'm trying to create a menu, that uses css and a bit of java, of which both my knowledge is minimal to say the least.
    but... Im making slow progress. Basically my problem is the submenu components, when you mouse over the items that have a sub menu, show behind the main menu. I need the sub menu items to show on top of the main menu, so that I can see the sub menu items. I know this is some code in the java page, but do to my lack of java script, I'm a bit lost. Could anyone out there please help me fix this. Any and all suggestions are greatly appreciated!
    below is the code to each defined document.
    horizontal.htm
    <!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"><head><title>Horizontal Drop Down Menus</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script type="text/javascript" src="horizontal2_files/drop_down"></script>
    <style type="text/css">
    @import "style2.css";
    </style></head>
    <body>
    <ul id="nav">
      <li><a href="#">Home</a></li>
      <li><a href="#">Shade Sail Technology</a></li> 
      <li><a href="#">Shade Sail Fabrics</a>
        <ul>
          <li><a href="#">High Density Polyethylene(HDPE)</a></li>
          <li><a href="#">Fire Retardant High Density Polyethylene(FR/HDPE)</a></li>
          <li><a href="#">PVC Composite Fabrics</a></li>
           <li><a href="#">Warranties</a></li>
        </ul>
      </li>
      <li><a href="#">Dangers of UV</a></li>
      <li><a href="#">Architects / Designers</a></li>
      <li><a href="#">Application Gallery</a>
        <ul>
          <li><a href="#">Residential</a></li>
          <li><a href="#">Commercial</a></li>
          <li><a href="#">Schools</a></li>
          <li><a href="#">Playgrounds</a></li>
          <li><a href="#">Restaurants</a></li>
           <li><a href="#">Sports Venue</a></li>
          <li><a href="#">Auto Dealerships</a></li>
          <li><a href="#">Parking Areas</a></li>
          <li><a href="#">Resorts</a></li>
          <li><a href="#">Campus Designs</a></li>
           <li><a href="#">Parks & Recreation</a></li>
          <li><a href="#">Kiosks</a></li>  
        </ul>
      </li>
      <li><a href="#">External Links</a>
        <ul>
          <li><a href="#">SunWise Program</a></li>
          <li><a href="#">SkyShades USA</a></li>
          <li><a href="#">Skin Cancer Foundation</a></li>
          <li><a href="#">WeatherStopper </a></li>
        </ul>
      </li>
      <li><a href="#">Contact Us</a></li>
    </ul>
    </body></html> --------------------------------------------------------
    the css document: style2.css
    body {
         font: normal 10px verdana;
    ul {
         margin: 0;
         padding: 0;
         list-style: none;
         width: 258px; /* Width of Menu Items */
         border-bottom: 1px solid #ccc;
    ul li {
         position: relative;
    li ul {
         position: absolute;
         width: 137px;
         left: 130px;
         top: 0;
         display: none;
    /* Styles for Menu Items */
    ul li a {
         display: block;
         text-decoration: none;
         color: #333366;
         background: #fff; /* IE6 Bug */
         padding: 5px;
         border: 1px solid #ccc;
         border-bottom: 0;
    /* Fix IE. Hide from IE Mac \*/
    * html ul li { float: left; height: 1%; }
    * html ul li a { height: 1%; }
    /* End */
    ul li a:hover { color: #21536A; background: #DDEEFF; } /* Hover Styles */
    li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
    li:hover ul, li.over ul { display: block; }---------------------------------------------------------------------------
    and finally the js file: drop_down.js
    // JavaScript Document
    startList = function() {
    if (document.all&&document.getElementById) {
    navRoot = document.getElementById("nav");
    for (i=0; i<navRoot.childNodes.length; i++) {
    node = navRoot.childNodes;
    if (node.nodeName=="LI") {
    node.onmouseover=function() {
    this.className+=" over";
    node.onmouseout=function() {
    this.className=this.className.replace(" over", "");
    window.onload=startList;
    thanx again,
    Kim

    Java and Javascript are different languages. This forum is about Java. You are asking about Javascript.

  • Can some body give me an advice, my cursor can not be controlled after I shut it down, and open again. But this problem goes away after I closed and opened the lid

    Can some body give me an advice, my cursor can not be controlled (using pad) after I shut it down, and open again. But this problem goes away after I close and open the lid.

    Boot from your OS installer disk and run Repair Disk from Disk Utility.

  • I cannot install iTunes 10.5. Problem is that there are rest of installations. I uninstalled all iTunes, Quicktime, Bonjour, Apples components, but problem goes on. I run WIN XP SP 3 32 BITS. I accept ideas to solve, thanks.

    I cannot install iTunes 10.5. Problem is that there are rest of installations. I uninstalled all iTunes, Quicktime, Bonjour, Apples components, but problem goes on. I run WIN XP SP 3 32 BITS. I accept ideas to solve, thanks.

    A bit of repetition, mainly for the benefit of anyone else with the same issue. In your case the "for older video cards" version might be worth a try.
    When cleaning folders you need to check both the Program Files and Program Files (x86) folders, which you may well have done but didn't mention in the detail above.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if Apple Mobile Device Support won't install normally.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with third party software.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Context menu problem in ADF 11g

    Hi All,
    A context menu problem puzzle me. Following is the source,
    =======================================
    <af:tree id="tree" value="#{treeTest.collectionModel}" var="node"
    contentDelivery="immediate"
    disclosedRowKeys="#{treeTest.treeDisclosedRowKeys}"
    rowDisclosureListener="#{treeTest.rowDisclosureListener}"
    rowSelection="single">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:image source="/image/#{node.treeLevel}.jpg" id="i1"
    inlineStyle="width:16px; height:16px; vertical-align:middle;"/>
    <af:outputText id="ddl" value="#{node.name}">
    <af:showPopupBehavior popupId="myPopup" triggerType="contextMenu"/>
    </af:outputText>
    </af:group>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="myPopup" popupFetchListener="#{treeTest.popupListener}"
    contentDelivery="lazyUncached">
    <af:switcher id="s1" facetName="#{treeTest.level}">
    <f:facet name="1">
    <af:menu text="menu 1" id="m1">
    <af:forEach items="#{treeTest.menuItems['0']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    <f:facet name="2">
    <af:menu text="menu 2" id="menu1">
    <af:forEach items="#{treeTest.menuItems['1']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    </af:switcher>
    </af:popup>
    </f:facet>
    </af:tree>
    ========================================================
    I want to get the commandMenuItem tag's information, i use following code in onNodeClicked method try to get it,
    FacesContext facesContext =FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    ExpressionFactory expressionFactory =facesContext.getApplication().getExpressionFactory();
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);
    but the exp is null.
    Please help me to solve this problem.
    Thank you very much.
    Edited by: Yitao Li on Dec 4, 2009 1:06 PM

    You might need a #
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);

  • Some recipients receive my images attached to emails, some find they are embedded and difficult to impossible to separate. Just found out that if I remove my attached signature, the problem goes away. How to send images   signature reliably?

    Some recipients receive my images attached to emails, some find they are embedded and difficult to impossible to separate. Just found out that if I remove my attached signature, the problem goes away. How to send images plus signature reliably?

    When you attach things, make sure to check the box that says [√] Send Windows-Friendly attachments

  • Sudden menu problem in CS4:  Running OS10 Mavericks. Anyone got a clue?

    Cannot keep history and layers windows open simultaneously. Others likewise. By sudden I mean, one day it's fine, the next there's a menu problem. Assistance appreciated.

    If you have placed your layout the way you want it, use the Save Workspace, give it a name, and only check Palette location in the Save dialog.
    Then switch to another Workspace and back to your saved workspace to see if that fixes the problem.
    Last resort is to reset Prefs. Hold down ctrl-alt-shift, start Photoshop and agree to the reset.
    Gene

  • Spry menu problem - CS6 Dreamweaver

    I wonder if anyone can help me with my spry menu problem which I have with a fixed 960px wide horizonal menu bar that has 8 items in it. The sub-menus don't seem to display properly when you click on them in that some of the submenus only show up at the end of the menu bar itself in Explorer browsers 8/9. Does anyone know of any code I can apply to fix this problem? I am new to spry menu features and so any help would be very much appreciated.

    Also validate the rest of the code in your pages to see if you have any critical errors that need fixing.  For example, a missing doc type declaration might explain Spry failures.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    As an FYI, Adobe abandonded the Spry Framework late last year, after CS6 was released because Spry drop-menus don't hold up well on touch screen devices.   If you can't get satisfaction with Spry, try jQuery Superfish.  It's a better menu system.
    http://users.tpg.com.au/j_birch/plugins/superfish/
    Nancy O.

  • Problem going to one particular domain

    I have a problem going to one particular domain, sanjoseca.gov. Any websites starting with http://www.sanjoseca.gov/ do not load. I've tried enptying the cache, but that doesn't work. I have no problem loading any other domain. I used to be able to access the city's sites without problem up to a couple of seeks ago, but since then, I can't load. I tried using Firefox, but can't with it, either. The city says they have no problems with their site and a city employee went onto the internet while I was talking with her and had no problem. Any suggestions?

    jwsapp-
    That site loads fine for me.
    I would quit Safari and delete all cookies having to do with that site --
    or dump them all. Safari Prefs>Security>Cookies>Show All Cookies.
    Also, make sure you've cleared your Safari Cache & History.
    It also might be helpful to trash your icons folder:
    Your HOME (YourName) folder>Library>Safari>Icons.
    Restart Safari.
    Do those & report back, OK.

  • Any problems going from Japanese to English version of LabView?

    I would like to convert some vi's that were developed with the Japanese version of LV to English. Has anyone done this? Any tips?

    LabVIEW was converted from English to Japanese. I do not think there would be an problems going the other way (provided you know Japanese). There are a couple of examples on the web for converting VIs between languages. Start you search on the advanced search page: www.ni.com >> support >> advanced search (it is at the bottom--click on the words).
    Jeremy

Maybe you are looking for

  • S_ALR_87013643 Cost Center Report - Range Orders

    Hi, I am executing T Code S_ALR_87013643, which is based on Cost Center, Cost Element and Order. I am restricting the selection for 1 Production cost center and 1 Production Order. The cost center section of the report is displaying costs against the

  • Buggy external monitor

    Hi I am using a macbook pro 13" and an eternal monitor running lion Opened cs6 then dragged it to the external monitor (no more free floating wondows??). Com/n brought up the new doc dialog. Upon click OK the whole viewer screen tried to replicate di

  • Error when adding a ZFS Storage in the Desktop Provider configuration in Oracle VDI

    Hello, When I tried to add a Desktop Provider in Oracle VDI I received an error in the 4 option after the Certificate verification in Specify Storages. Here's the log: LA M▒<81>S FINA: thr#20197:"Thread-46528" Congestion Retry 1 for root at 10.10.10.

  • How to create prompt for inline filter?

    HI All. Can anyone plz help me, how to create prompt for inline filter? Let me give an examle... Suppose I've taken two columns as # of New Invoices and # of Cancelled Invoices Now, If I set a date prompt / month prompt, then the "# of cancelled invo

  • Business Intelligence and report Link

     Business Intelligence and report Link is not visible in one of the User Profile with all Required rights,Its visible for other but not for that individual with same rights and permissions In pWA 2010.