Unable to return to Menu or Title

I have a three Menu project. Menu1 selects menu 2 or 3. Menu 2 has 15 buttons on track 1 and Menu 3 has 22 buttons on track 2. They get me where I want to be but in simulation after selecting menu 2 and any button the menu and title become dimmed.(in DVD player it says not permitted). Doesn't happen with Menu 3. Parameters appear to be identical in both menu's. Appreciate any help.

Double check to make sure you did not disable actions on the menu and that you assigned the buttons (check to make sure you can navigate using the control in Simulator and not mouseing over)

Similar Messages

  • Unable to Delete a Menu.

    Hi,
    I am having problems removing a menu (NNTP Newsgroup Actions).
    I can successfully delete all the menu items below this menu but then when
    I then try to delete the menu itself, using the Delete method of the
    GWMenu object, no error is raised but the menu remains visible in the
    client.
    An overview of how my C3PO works:
    - Read a text file containing the menu items to be removed. This is
    performed during the Init function of the CommandFactory. A menu item is
    specified by the full 'path' e.g. Actions|NNTP Newsgroup Actions|New
    Discussion. The menu items are stored in a (globally declared) Scripting
    dictionary object.
    - In the CustomiseMenu function I call a procedure to iterate through the
    menu items to be removed. Beginning with the top level menu object, the
    code drills down the menu path identifying each menu level. If the menu
    item is found, the menu type is determined (i.e. GWMenu or GWMenuAction)
    and an appropriate object is instantiated and the Delete method called. I
    have pasted the functions below.
    - The CustomizeMenu function returns False so that the changes are not
    volatile and applied the first time an instance of a context is created.
    (Assume that the menus are removed regardless of the context.)
    Can anyone suggest what I am doing wrong?
    Many thanks in advance,
    Andy
    My environment:
    GroupWise client version: 7.0.2 (6/4/2007)
    Dev Language VB6 SP6
    OS: Windows XP
    Public Function CustomizeMenu(sGWContext As String, objGWMenu As Object)
    As Boolean
    'The changes are not volatile.
    CustomizeMenu = False
    'Remove the menu items listed in the global dictionary object:
    gdicMenuItems.
    Call UpdateLogFile("")
    Call UpdateLogFile("")
    Call
    UpdateLogFile("*********************************** *************************************")
    Call UpdateLogFile("*")
    Call UpdateLogFile("* CustomizeMenu Called for Context: " & sGWContext)
    Call UpdateLogFile("*")
    Call
    UpdateLogFile("*********************************** *************************************")
    Call UpdateLogFile("")
    Call RemoveMenus(objGWMenu)
    End Function
    Private Sub RemoveMenus(ByRef objTopMenu As Object)
    'This procedure goes through the list of menu items stored in the global
    dictionary object: gdicMenuItems
    'and if they exist, the item is deleted.
    'A typical entry in the dictionary object is "File|New|Document Version"
    'The last component in the menu item path is the menu item that is deleted.
    Dim objMenu As Object
    Dim objGWMenuAction As C3POTypeLibrary.IGWMenuAction
    Dim objGWMenu As C3POTypeLibrary.IGWMenu
    Dim varFullMenuPath As Variant ' Menu path found in dictionary
    object. e.g. "File|New|Document Version"
    Dim strFullMenuPath As String ' The full menu path as a string.
    Dim arrFullMenuPath() As String ' Menu path as an array, split by the
    '|' character.
    Dim strMenuItemName As String ' Menu path element e.g. File or New
    or Document Version.
    Dim lngMenuItemIdx As Long ' Loop index for drilling down the
    menu path.
    Dim blnMenuFound As Boolean ' Flag indicating whether the menu was
    found.
    Dim strMsgTxt As String ' Message box text.
    On Error Resume Next
    Call UpdateLogFile("RemoveMenus Procedure Started.")
    Call UpdateLogFile("")
    'Go through all the menus to be removed.
    For Each varFullMenuPath In gdicMenuItems
    'Convert the variant object representing the full menu path into a
    string.
    strFullMenuPath = CStr(varFullMenuPath)
    Call UpdateLogFile("Strip the menu item: " & strFullMenuPath & ".")
    'Split the menu into its component parts.
    arrFullMenuPath = Split(CStr(varFullMenuPath), "|")
    'Set the Menu object to represent the top level menu.
    Set objMenu = objTopMenu
    'Assume the menu can not be found.
    blnMenuFound = False
    'Drill down the menu path.
    For lngMenuItemIdx = LBound(arrFullMenuPath) To UBound(arrFullMenuPath)
    strMenuItemName = arrFullMenuPath(lngMenuItemIdx)
    'Set the Menu item object to be the desired child menu item.
    Set objMenu = objMenu.MenuItems.Item(strMenuItemName)
    Select Case Err.Number
    Case 0
    ' The child menu item was found.
    Call UpdateLogFile(String(lngMenuItemIdx, vbTab) & "Found
    menu item: '" & strMenuItemName & "'.")
    blnMenuFound = True
    Case 91
    ' The menu does not exist - therefore it does not have to
    be removed.
    Err.Clear
    Call UpdateLogFile(" * Unable to find the menu item: '" &
    strMenuItemName & "' as part of: " & strFullMenuPath & " in this context.")
    blnMenuFound = False
    Exit For
    Case Else
    strMsgTxt = "* An unexpected error was raised in the
    'RemoveMenus' procedure when attempting to " & _
    "instantiate an object representing a menu." &
    vbCrLf & vbCrLf & _
    "The full menu path was: " & strFullMenuPath & vbCrLf
    & vbCrLf & _
    "The menu item name was '" & strMenuItemName & "'." &
    vbCrLf & vbCrLf & _
    "The error number was " & Err.Number & " with the
    description:" & _
    vbCrLf & vbCrLf & Err.Description & vbCrLf & vbCrLf &
    cstrHelp
    Call UpdateLogFile(strMsgTxt)
    MsgBox strMsgTxt, vbExclamation, cstrAppTitle
    Err.Clear
    blnMenuFound = False
    Exit For
    End Select
    Next lngMenuItemIdx
    'If the menu item was found, try to delete it.
    If blnMenuFound = True Then
    Call UpdateLogFile("Menu Identified: " & strFullMenuPath & ".
    Caption: " & objMenu.Caption)
    ' If the menu has previously been stripped, the objMenu object may
    be 'Nothing'.
    ' In this case, do not attempt to remove it.
    Call UpdateLogFile("The menu type: " & TypeName(objMenu))
    If TypeName(objMenu) = "Nothing" Then
    Call UpdateLogFile("* The menu type is 'Nothing' therefore the
    menu no longer exists in this context.")
    Else
    Call UpdateLogFile("Stripping the menu ...")
    Select Case objMenu.ObjType
    Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENUACTION
    Set objGWMenuAction = objMenu
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to set a GW Menu
    Action type object to this menu. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    objGWMenuAction.Delete
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to delete a GW
    Menu Action type object. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    Call UpdateLogFile("Stripped the action menu
    item: " & strFullMenuPath & ".")
    End If
    End If
    Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENU
    Set objGWMenu = objMenu
    Call UpdateLogFile("The GW Menu has " &
    objGWMenu.MenuItems.Count & " sub menu items.")
    Call UpdateLogFile("The GW Menu Parent: " &
    objGWMenu.Parent.Caption)
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to set a GW Menu type
    object to this menu. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    objGWMenu.Delete
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to delete a GW
    Menu type object. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    Call UpdateLogFile("Stripped the menu item: "
    & strFullMenuPath & ".")
    End If
    End If
    End Select
    End If
    End If
    Next ' Next (full) menu path.
    Set objMenu = Nothing
    Set objGWMenuAction = Nothing
    Set objGWMenu = Nothing
    End Sub

    Hi,
    Novell informs me that the behaviour described below is normal. It is not
    possible to delete any standard menu object (i.e. any client menu provided
    by Novell). However, you can delete custom-made menus.
    I think the documentation is misleading in that it states that we can not
    delete 'root' menus. I understood this to be only the top level menus,
    but this is not the case. We can not delete any standard client menu
    which has child menu items regardless of their position in the menu
    structure.
    Thanks,
    Andy
    Andy Cooper wrote:
    > Hi,
    > I am having problems removing a menu (NNTP Newsgroup Actions).
    > I can successfully delete all the menu items below this menu but then when
    > I then try to delete the menu itself, using the Delete method of the
    > GWMenu object, no error is raised but the menu remains visible in the
    > client.
    > An overview of how my C3PO works:
    > - Read a text file containing the menu items to be removed. This is
    > performed during the Init function of the CommandFactory. A menu item is
    > specified by the full 'path' e.g. Actions|NNTP Newsgroup Actions|New
    > Discussion. The menu items are stored in a (globally declared) Scripting
    > dictionary object.
    > - In the CustomiseMenu function I call a procedure to iterate through the
    > menu items to be removed. Beginning with the top level menu object, the
    > code drills down the menu path identifying each menu level. If the menu
    > item is found, the menu type is determined (i.e. GWMenu or GWMenuAction)
    > and an appropriate object is instantiated and the Delete method called. I
    > have pasted the functions below.
    > - The CustomizeMenu function returns False so that the changes are not
    > volatile and applied the first time an instance of a context is created.
    > (Assume that the menus are removed regardless of the context.)
    > Can anyone suggest what I am doing wrong?
    > Many thanks in advance,
    > Andy
    > My environment:
    > GroupWise client version: 7.0.2 (6/4/2007)
    > Dev Language VB6 SP6
    > OS: Windows XP
    > Public Function CustomizeMenu(sGWContext As String, objGWMenu As Object)
    > As Boolean
    > '
    > 'The changes are not volatile.
    > CustomizeMenu = False
    > '
    > 'Remove the menu items listed in the global dictionary object:
    > gdicMenuItems.
    > Call UpdateLogFile("")
    > Call UpdateLogFile("")
    > Call
    >
    UpdateLogFile("*********************************** *************************************")
    > Call UpdateLogFile("*")
    > Call UpdateLogFile("* CustomizeMenu Called for Context: " & sGWContext)
    > Call UpdateLogFile("*")
    > Call
    >
    UpdateLogFile("*********************************** *************************************")
    > Call UpdateLogFile("")
    > '
    > Call RemoveMenus(objGWMenu)
    > '
    > End Function
    > Private Sub RemoveMenus(ByRef objTopMenu As Object)
    > '
    > 'This procedure goes through the list of menu items stored in the global
    > dictionary object: gdicMenuItems
    > 'and if they exist, the item is deleted.
    > '
    > 'A typical entry in the dictionary object is "File|New|Document Version"
    > '
    > 'The last component in the menu item path is the menu item that is deleted.
    > '
    > Dim objMenu As Object
    > Dim objGWMenuAction As C3POTypeLibrary.IGWMenuAction
    > Dim objGWMenu As C3POTypeLibrary.IGWMenu
    > Dim varFullMenuPath As Variant ' Menu path found in dictionary
    > object. e.g. "File|New|Document Version"
    > Dim strFullMenuPath As String ' The full menu path as a string.
    > Dim arrFullMenuPath() As String ' Menu path as an array, split by the
    > '|' character.
    > Dim strMenuItemName As String ' Menu path element e.g. File or New
    > or Document Version.
    > Dim lngMenuItemIdx As Long ' Loop index for drilling down the
    > menu path.
    > Dim blnMenuFound As Boolean ' Flag indicating whether the menu was
    > found.
    > Dim strMsgTxt As String ' Message box text.
    > '
    > On Error Resume Next
    > '
    > Call UpdateLogFile("RemoveMenus Procedure Started.")
    > Call UpdateLogFile("")
    > '
    > 'Go through all the menus to be removed.
    > For Each varFullMenuPath In gdicMenuItems
    > '
    > 'Convert the variant object representing the full menu path into a
    > string.
    > strFullMenuPath = CStr(varFullMenuPath)
    > Call UpdateLogFile("Strip the menu item: " & strFullMenuPath & ".")
    > 'Split the menu into its component parts.
    > arrFullMenuPath = Split(CStr(varFullMenuPath), "|")
    > '
    > 'Set the Menu object to represent the top level menu.
    > Set objMenu = objTopMenu
    > '
    > 'Assume the menu can not be found.
    > blnMenuFound = False
    > '
    > 'Drill down the menu path.
    > For lngMenuItemIdx = LBound(arrFullMenuPath) To UBound(arrFullMenuPath)
    > strMenuItemName = arrFullMenuPath(lngMenuItemIdx)
    > 'Set the Menu item object to be the desired child menu item.
    > Set objMenu = objMenu.MenuItems.Item(strMenuItemName)
    > Select Case Err.Number
    > Case 0
    > ' The child menu item was found.
    > Call UpdateLogFile(String(lngMenuItemIdx, vbTab) & "Found
    > menu item: '" & strMenuItemName & "'.")
    > blnMenuFound = True
    > Case 91
    > ' The menu does not exist - therefore it does not have to
    > be removed.
    > Err.Clear
    > Call UpdateLogFile(" * Unable to find the menu item: '" &
    > strMenuItemName & "' as part of: " & strFullMenuPath & " in this context.")
    > blnMenuFound = False
    > Exit For
    > Case Else
    > strMsgTxt = "* An unexpected error was raised in the
    > 'RemoveMenus' procedure when attempting to " & _
    > "instantiate an object representing a menu." &
    > vbCrLf & vbCrLf & _
    > "The full menu path was: " & strFullMenuPath & vbCrLf
    > & vbCrLf & _
    > "The menu item name was '" & strMenuItemName & "'." &
    > vbCrLf & vbCrLf & _
    > "The error number was " & Err.Number & " with the
    > description:" & _
    > vbCrLf & vbCrLf & Err.Description & vbCrLf & vbCrLf &
    > cstrHelp
    > Call UpdateLogFile(strMsgTxt)
    > MsgBox strMsgTxt, vbExclamation, cstrAppTitle
    > Err.Clear
    > blnMenuFound = False
    > Exit For
    > End Select
    > Next lngMenuItemIdx
    > '
    > 'If the menu item was found, try to delete it.
    > If blnMenuFound = True Then
    > Call UpdateLogFile("Menu Identified: " & strFullMenuPath & ".
    > Caption: " & objMenu.Caption)
    > ' If the menu has previously been stripped, the objMenu object may
    > be 'Nothing'.
    > ' In this case, do not attempt to remove it.
    > Call UpdateLogFile("The menu type: " & TypeName(objMenu))
    > If TypeName(objMenu) = "Nothing" Then
    > Call UpdateLogFile("* The menu type is 'Nothing' therefore the
    > menu no longer exists in this context.")
    > Else
    > Call UpdateLogFile("Stripping the menu ...")
    > Select Case objMenu.ObjType
    > Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENUACTION
    > Set objGWMenuAction = objMenu
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to set a GW Menu
    > Action type object to this menu. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > objGWMenuAction.Delete
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to delete a GW
    > Menu Action type object. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > Call UpdateLogFile("Stripped the action menu
    > item: " & strFullMenuPath & ".")
    > End If
    > End If
    > Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENU
    > Set objGWMenu = objMenu
    > Call UpdateLogFile("The GW Menu has " &
    > objGWMenu.MenuItems.Count & " sub menu items.")
    > Call UpdateLogFile("The GW Menu Parent: " &
    > objGWMenu.Parent.Caption)
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to set a GW Menu type
    > object to this menu. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > objGWMenu.Delete
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to delete a GW
    > Menu type object. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > Call UpdateLogFile("Stripped the menu item: "
    > & strFullMenuPath & ".")
    > End If
    > End If
    > End Select
    > End If
    > End If
    > '
    > Next ' Next (full) menu path.
    > '
    > Set objMenu = Nothing
    > Set objGWMenuAction = Nothing
    > Set objGWMenu = Nothing
    > '
    > End Sub

  • How to set Menu and Title functionality for a remote control in a menu?

    I have a main menu (countries) and under each country there is a submenu (regions). When I play my DVD on my Mac it seems to function alright:
    If I go to country C and hit the "menu" button, nothing happens (I see the "action prohibited" line popping up). And nothing should happen of you hit menu in a submenu. Only if you hit Title/Top menu you should be able to go to the main menu.
    However... When I play my DVD on a DVD player (and I tested it on 2 different ones) and I go to a the Country C and hit the "menu" button, I am suddenly transfered to Country A. And if I go from the main menu to Country D and I hit the "menu" button, I go to... Country A. The menu button seems to be linked to the first submenu. Which is very odd!
    So there is definately something going very wrong when using the menu/title buttons during playback when I am in a submenu (not while playing a track).
    Can someone help me? Is there a way to define what happens with the remote control buttons menu or title when you are in a submenu and NOT playing a track? I can not find any controls for that.
    Thanks!

    Does this mean I should select "not set" in the general tab at the dropdown menu's for Title, Menu and Return in the Remote Control section? I can't find any other place where I can select menu or title.
    But if I set these to "not set",the menu and title buttons still work in simulation mode... So I guess I should do something else in order to disable menu and title? Sorry for the amount of questions from my side!

  • Nokia E52 unable to acces contact menu

    I'm unable to access contacts menu from menu>contacts or from button which i had assignet contacts menu. When i select contacts it only only the menu name "contacts" appears on top for 1 second and is returning to initial menu.

    Is the situation same if you reboot the phone ? If it remains that way, then back-up your data and try a Factory Restore ..(Menu-->Ctrl. Panel-->Settings-->General-->FactorySettings.. )

  • Unable to Return Components of Production Order

    Hi,
    Created Production Order (PdO) with 9-10 components, the 8th component being Item HEX with planned quantity of 5 and actual issue of 200 at row number 8 of PdO. In meantime, someone had deleted some row of PdO. The user then tries to click "Report Completion" and "Return Components" and selects Item HEX. The row number for Item HEX is now strangely Row 9 and the user is unable to return the quantity of 200 for Item HEX.
    The "available batches" table of the Item HEX just does not show the quantity of 200 and the user is unavailable to "return components".
    Could someone help me what the problem could be?
    Thanks,
    Ajay Audich

    Hi Gordon,
    The item row deleted was some other item and not Item HEX. The Item HEX which now shows as row 9 DOES show the issued quantity as ~200 but the batches for this quantity are not visible and cannot be selected in the batch selection screen.
    Could the deletion of some OTHER item in the production order create this problem?
    Hi Sridharan- I do not understand your reply "wrongly posting"-could you please explain...this error is happening in the production order of SAP Business One.
    Thanks,
    Ajay Audich

  • Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • Unable to Create Certifications Menu Tab in sysdmin console of 11g R2 PS1

    Hi All,
    I installed 11g R2 PS1 Successfully. But i am unable see the Certifications menu tab in Sysadmin console.
    Can anyone please let me know how to resolve this issue.
    I applied following patches.
    Patch Numbers :
    16385074
    13913356
    16024267
    14196234
    16366204
    16478722
    Regards,
    idmr2

    This can happen due to OIM-LDAP wrong attribute mapping/value getting passed.
    Can you please first try with OOTB attributes and see how it behaves?
    J

  • Release is cancelled , unable to return material to vendor

    HI All,
    We have a BPA, against this BPA we have many releases.
    For example We have a release 100.
    For this release 100
    Total Quantity for an item - 35000
    We have received 15000 (received,accepted & deliver)
    Also received 20000( now we want to return this to vendor. (After receiving only we want to return it)
    But after receiving 15000 & 20000, the release 100 has be cancelled.
    We are unable to return the material now.
    Is there any way to return the material when the release is cancelled for a particular BPA>
    Regards,
    SYR

    Cancel is irreversible action. There is no way to revert it back systematically. If the line is canceled, we cannot do any receipt transactions (receive / correct / return) on the shipment.
    So the next best option I can think of is
    Do a Miscellaneous Issue to reduce the onhand
    Post negative accounting journals if required.
    Communicate to the Payables indicating that they need not pay the items that are returned.

  • CS4 menu and title bars missing

    Hello,
    I have just upgraded to CS4 and am attempting to get acquainted with the new workspace options.  Is there a way to maximize a floating window in Standard Screen Mode without losing the menu and title bars?  I figured out how to drag images to CS4 and have them open as floating windows instead of tabs.  However, when I maximize one of the images/floating windows, the menu and title bars are left out and are not visible.  I would like to set the menu and title bars  so that all images appear beneath them whether they or maximized or minimized.
    Regards,
    Scott

    Did you try the F10 key?
    Maybe this helps:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Tryng to return borrowed item.  Get following error message: Unable to return.  Error returning item. License server communication problem: E_BAD_LOAN_ID

    Tryng to return borrowed item.  Get following error message: Unable to return.  Error returning item. License server communication problem: E_BAD_LOAN_ID.  When I check authorization information I get a message that this computer is already authorized and a regurgitation of my email address and other info.  Does anyone have any suggestions on how to fix.

    I have the same message.

  • Unable to return vendor consign. to stock from delivery - LT0G

    Dear All,
    Unable to return vendor consignment  to stock from delivery using VL0G after performing Goods Movement  Reversal using TCode VL09 for Stock Transfer Order/Special Stock Consignment/Outbound Delivery
    Parameters:
    Stock Transfer Order from DC to Site - Vendor Consignment Inventory
    Reverse PGI - VL09
    Select Outbound Delivery - Item locked
    Message no. L1618 - Return storage for delivery is not possible when IM is active
    Your help will be greatly appreciated.
    Gaetan

    You can use the following:
    - stock can be moved from 916 to normal bin by LT01 / LT10
    AND
    - control message VL019 in OVM1 and VL173 as per OSS note 521409
    AND
    - delete the delivery item by setting the delivery qty to 0
    AND
    - create new delivery item
    Recreating the item and do the picking again. I received this answer from OSS.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Sep 16, 2009 7:37 PM

  • Unable to open message menu

    My phone nokia 7210 is unable to open messape menu.when open the menu and after that when i click to message than my phone show nothing and going to hang any key is not worked .
    Please help me. .

    Hi rohittomar,
    Thank you for your post and welcome to the Nokia discussion forums.
    Try doing a soft reset, to do this dial *#7780# and if prompted enter the default code 12345. This will reset your phone but not erase any data. Give this a go and let me know if it helps.
    Regards
    Raoul_Duke
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Unable to return a borrowed ebook due to this error. E_BAD_LOAN_ID. What gives?

    Unable to return a borrowed ebook due to this error. E_BAD_LOAN_ID. What gives?

    Please contact your library.
    Thanks

  • Unable to return borrowed book to library

    I have not had this problem before.  When trying to return book to library a note came up saying 'if this borrowed item was fulfilled with one or more other items, returning would also return all of these items.  I pushed return and message now says 'unable to return - Licence Server Communication Problem   E_BAD_LOAN_ID
    I have been able to transfer another book from library since this message

    I'm getting the same message. Would really appreciate a solution.

  • Unable to Return Frame Error Exporting to Encore

    I've been getting the Unable to Return Frame error while exporting to Encore and I can't seen to find a fix for the problem. Does anyone know how to fix this?
    Thanks
    - Jesse

    Hi Eddie,
    Thanks for giving me a hand with this. Unfortunately the info in the link you provided didn't fix the problem, I tried all the tips. Also, the link for the mainconcept update didn't work.
    www.mainconcept.com/adobemedia/downloads.html
    Is there anything else that might fix the problem?
    Thanks
    - Jesse

Maybe you are looking for