Re-order manual menu items?

When working with a manual menu, is there any way to change the order of the menu items once created, or are you forced to manually delete the menu item, and create a new one in the proper place?

Interesting ..... I am sure you could just drag it like you can accordion and tabs. But however, there is a way to do it anyways! ;-)
If you want a new menu item in the middle, just select the button next to where you want to add a new button and click on the + where you would like the new button inserted. You can add a new button left, right or below your main menu buttons. If it is a drop down button you are adding to an existing drop down you can add the new button in all four directions.

Similar Messages

  • How Do You Control the Order That Menu Items Are Selected

    I am using iDVD 6 with the Portfolio Theme (iDVD 5). I created a project with one 15-minutes iMovie project and seven slideshows (created in iDVD).
    In Preview mode (or with the final) DVD, the order that entries on the main menu are selected does not seem to follow a logical pattern. As I try to advance using the right cursor, the second item (horizontally) is skipped. (I have two rows, each with four items). When I have one of the other three items in that row selected, the second item is selected if I hit the down arrow.
    In 'flowchart view' the eight items are in the order I want them to be selected. That is, the item that is being skipped is in the second position on the flowchart.
    Any insight on this would be appreciated.
    PowerBook G4 1.33 Ghz (me) & FP iMac - 1.0 Ghz (kids)   Mac OS X (10.4.4)   iMac (for the kids)

    I created an iMovie and then exported to iDVD, iDVD used the same sequence as the iMovie. When you build you Movie or slide show it follows the sequence that you place them in the time line. I have a Slide Show movie with video clips in the time line all of the shows and clips play in the order that I placed them. When you move through the menu use the right arrow to move accross the menu and the down arrow to move down to the next row. There is an button to move to the next menu. I have 13 chapters in my iDVD and they appear on 3 menus. Each menu shows 6 buttons you can edit the button titles and reposition them if you deselect the snap to grid and select the other option. When I open my project after exporting the titles overlayed each other. The buttons picted up my iMovie titles so I had to fix them and reduce the type size and move the buttons to separate them. The time line sets the order and the arrow keys move throgh the buttons on you Mac screen you can select with the mouse by clicking the button. On a DVD player you are stuck with the arrows and enter keys on the remote. You may have a glitch in your data check the time line along bottom of your original to see if the chapter markers are in position.
    Richard
    1.25 GHz Dual G4 Desk Top Mac OS X (10.4.6)

  • How can I change the order of menu items using Term Store Navigation?

    A cool new feature in SharePoint 2013 is term store navigation. However SharePoint seems to be ordering my terms (menu tabs) alphabetically. This is not a desired action.
    I tried to enter the terms in the order I wanted them to appear (IE - Home, About, Contact etc. ) but my menus are still sorted by alpha (About, Contact, Home). I have tried to change the order using the interface but it doesn't seem to work.
    Any suggestions on how to obtain the desired effect?  If there is no workaround this feature is practically useless.
    The Web Guy

    Never mind, I just found the custom sort tab hidden away!
    The Web Guy

  • IE reversing order of spry menu items

    I've created a horizontal spry menu bar, and it works great except for one problem. When I open my page in Internet Explorer, the order of menu items from left to right is reversed. For example, "Home", which is my first item in the menu, is supposed to appear on the left, but instead it appears on the right. The menu bar itself is in the correct position, it's just the menu items that are reversed. When I open the page in Firefox or Safari, the order is correct - it's just an IE problem. Any suggestions would be much appreciated. Thanks!

    Thanks Ben, here's the code. I was doing some experimenting, and I changed the float property under ul.MenuBarHorizontal li.MenuBarItemIE to "right" instead of "left" as it is shown below. This caused the menu items to appear in the correct order, but it also caused the sub-menu items to appear in a horizontal line below the menu, when in fact they should be hidden until you hover over the corresponding item in the main menu. So I traded one problem for another! Any help would be much appreciated.
    To see how it`s rendering, visit http://www.leagueheadquarters.com/RAB. If you look at it in Firefox, you`ll see how it`s supposed to look, and in IE you`ll see the menu items reversed.
    CODE:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
        font-family: Verdana, Geneva, sans-serif;
        font-variant: normal;
        text-transform: none;
        color: #1f3d73;
        float: right;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 12px;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: auto;
        float: right;
        line-height: 13px;
        height: 16px;
        font-family: Verdana, Geneva, sans-serif;
        font-variant: normal;
        font-style: normal;
        color: #1f3d73;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: auto;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
        width: 8.7em;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 7em;
        text-align: left;
        height: 25px;
        background-color: #1f3d73;
        border-color: #FFF;
        border-right-style: solid;
        border-right-width: thin;
        border-left-style: solid;
        border-left-width: thin;
        border-bottom-style: solid;
        border-bottom-width: thin;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        color: #fff;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #1f3d73;
        color: #1f3d73;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #1f3d73;
        color: #96B0E2;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        background: #1f3d73;
        float: left;

  • Is there a video tutorial which shows how to manually assign pages to menu items?

    I have a need to build out two separate menus. In order to do that, I need to be able to manually assign pages to the menu. Thanks

    Here's a tutorial on adding a Manual horizontal menu widget that should help - http://www.adobekb.com/building_your_first_website_pt07.html#addingmanual.
    Basically you just need to switch to a Manual menu type through Menu options, select the menu item and link/edit its label. You add more menu items to the menu by hitting the + symbol that appears when a menu item is selected.
    Thanks,
    Vinayak

  • How do I change the order of context menu items in Private Windows?

    In the context menu that appears when I right-click on a link, I prefer to have "Open Link in New Window" at the top of the menu instead of "Open Link in New Tab". I have added code to userChrome.css to make that switch:
    #context-openlink {
    -moz-box-ordinal-group: 1 !important;
    #contentAreaContextMenu > * {
    -moz-box-ordinal-group: 2;
    Firefox version 20 added Private Browsing Windows. The above code still works for the non-Private windows, but doesn't affect the Private Windows, so in those I still have "Open Link in New Tab" at the top of the context menu, and "Open Link in New Private Window" as the second item. Is there a way to change the order of these menu items in Private Windows?

    Clarification: In the code snippets above, the "1."s are supposed to be pound-signs; they got auto-reformatted incorrectly.

  • Missing menu item attachment list in GOS regarding purchase order

    Hello All,
    I customized the archiving for different kinds of documents.
    There is all quite good for example with sales orders or invoices. I can call the transaction codes to view a speacial document - in those cases VA03 / VF03 - , click on the special GOS-icon and select from the drop-down menu the attachment list. The attachment list opens as a popup and there I see all created PDF documents.
    Only with purchase orders it won't work. Calling the ME23N and clicking on the GOS-icon the menu item attachment list is not active (light grey). With administration transaction OAAD I can see that there are archived PDF documents. So, the archiving works but still not the viewing of archived purchase orders.
    How can I activate the attachment list in this case? Maybe I forgot to do something?
    Thank you very much for your help!

    Hi,
    Check if note 1506581 is present in your system,if not please implement the same.
    Also check if in /SPRO -> IMG Customizing -> "Integration with
    our mysap.com components" -> Supplier Relationship Management ->
    Message Control -> "Activate Document Transfer"
    the customizing is correctly set for BUS2012 (Purchase Order).
    If not, please maintain this entry correctly and re-test the
    scenario.
    Regards,
    Ashwini.

  • Is it possible to change "link" context menu items' order (I want "open in new window.." be the first) ?

    I made an upgrade FF from v3.6.xx to v17.0.x and found that "Link" context menu items' order is not the same.
    v3.6 menu looks as following: 1."Open Link in new Window", 2."Open Link in new Tab",
    v17.0 menu items' order is opposit 1."Open Link in new Tab",2."Open Link in new Window",
    All other items' position are uninteresting for me.
    How to swap this two upper items in "link" context menu?

    Both ways are useful:
    * Menu Editor [https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ https://addons.mozilla.org/en-US/firefox/addon/menu-editor/]
    'Drag-n-drop' in editor window is working.
    * Editing "userChrome.css" [https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497 https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497] .
    For my Windows XP path looks: "C:\Documents and Settings\%account%\Application Data\Mozilla\Firefox\Profiles\%random_name%\chrome\userChrome.css".

  • Manual menu shows two active menu items on one page

    Hi--I'm having an issue where a manually-created menu shows two active menu items on the same page (as if two pages were active at the same time).
    You can see the issue on my test site here:
    http://teknationnewsite.businesscatalyst.com/telecommunications-services.html
    On the left hand menu, even though only the Telecommunications Services page is active, the menu shows an active state for the menu item below it also. How can I fix this? The states look like they are created correctly in the states panel.
    Thanks,
    Jennifer

    Okay, never mind. I am an idiot. It was a linking issue. I can't figure out how to delete this thread, however, so just please ignore.

  • Why the "Work Orders" Menu Item is hided in 2005 Edtion?

    David:
      Thank you!
      The "Work Orders" menu item in 2004 edtion is must useful, But it be hided in 2005,Why ?
      and whether can I show it and use it?
      help me, please!
      thank you!

    Fu
    in the SAP help the following is written:
    Work Order Window
    Definition
    The Work Order Window, from earlier versions of SAPBusiness One, has been replaced by the Production Oder. However, if you had open Work Orders when upgrading, the old Work Orders can still be viewed.
    When a Production Order is open, click on the base document icon  on the toolbar to display the Work Order on which it is based.
    i recommend you to use F1 in your sbo client
    and search for "work orders"
    than select title "Work Order Window" and there is everything in Detail !
    regards
    David

  • Missing Javascript menu items on Acrobat 9 Standard

    I've been trying to get into some more advanced JS coding within Acrobat for forms, and I'm running into a bit of a roadblock in accessing the javascript tools.  Specifically, I keep seeing references to Javascript menu items under the Advanced menu, but my Acrobat doesn't seem to have these at all.  I also can't open the JS Debugger/console with Ctrl-J, but it will open if i put in a syntactically incorrect javascript statement and try to execute it (from a form field, etc).
    Anyone have any ideas how to correct this?  I found references online to this being an issue if Acrobat Reader is also installed on the same machine (it was), so i removed that, but the problem persists.  I can enter javascript into an individual field, but i can't add a document-level script at all.
    thanks

    Sweet! I got it working.   My function reads in the contents of a range (30+) of combo boxes and text boxes, does a little editing and then sorts, and then puts them back in the same range of boxes but with the blanks filtered out and in alpha order.  I  used a nested array and it worked pretty well. 
    The only thing i'm still stymied on is that it works perfectly for everything except if the textbox field is a number with a '+' in front of it (like +1 or +2200).  It strips the + sign out, I'm assuming that's because of javascript special characters, but the escape/unescape function did not fix it.  Doesn't matter if there are plus signs in the rest of the field, only at the beginning (and minus signs don't cause the same issue).  I'm going to try manually escaping with quotes before reading into the array I think, but if you have seen this sort of thing before please let me know.

  • Where are the SSRS menu items?

    Hi
    I've set up Sharepoint Foundation 2013 and Reporting Services 2014 in integrated mode. I've created a library and added my data source to that library. I've created another library for reports, and uploaded a report there. However, I remember that in SharePoint
    2010 there used to be menu items for reports such as "Manage Data Sources" and so on, which are not there in 2013.
    I've been through the steps to add the Report Builder Report content type to the library and make it the default. I've tried uploading rdl files manually, deploying them through Visual Studio, and creating them from scratch using Report Builder from the
    Files>New Document>Report Builder Report ribbon item. Still no menus.
    Are they no longer available in SharePoint 2013 or have I misconfigured something somewhere? I was hoping to be able to bulk upload a bunch of rdl's and point them individually at my data source. I'll be able to do it another way, but now I'm really confused
    as to where the option has gone.
    Any ideas?
    Duncan

    Hi Trevor
    Yes, I had to in order to get the reporting services integration to work. I've got 2 servers, and SharePoint Foundation and SQL Server Standard, so for licencing cost reasons I installed SharePoint on both the SharePoint and SQL Servers, and SQL Express
    on the main SharePoint server. Not best practice I realize, but since SharePoint is free and SQL is not, I couldn't intall full SSRS on the SharePoint server as my understanding was that I would need 2 SQL licences rather than one.
    So I've got a farm with 2 SharePoint servers, one of which just runs the Reporting Services service, secure store service and workflow timer service and is on the SQL Server. The main SharePoint server has the SSRS add-in installed, and runs everything else
    - Central Admin, the site collection, Claims to Windows Token service, Search etc. The main server has a copy of SQL 2014 Express for its various databases, and the SSRS databases are on the SQL Server.
    I hope that makes sense!
    Duncan

  • Menu item stroke problems

    I am unable to add a right aligned stroke on the word 'Snowdon Super Cup' because the border cuts across the word 'Cup'. (the stroke appears where the word 'Cup' starts)
    How to I extend the border area in order for the menu item 'Snowdon Super Cup' to fit within the correct boundaries?

    Hello,
    Please confirm are you using Manual menu here?
    If yes, please select the label "Snowdon Super Cup" by clicking on it twice and stretch the text box.
    You can also clock on the tiny white arrow in blue circle at the top right corner, and in widget properties, change the "Item size" drop down to uniform size or uniform spacing.
    Hope this helps.
    Regards,
    Sachin

  • Free Goods - Not showing in sales order as subsequent item

    Dear Gurus,
    I have created a Free Goods procedure determination and maintained it at Customer/ Material level in VBN01.
    The procedure is inclusive as follow:
    For every 100 units purchased, the customer gets 10 units free
    However at sales order level there is no indication at all that the Free Goods are being triggered.
    When I check the pricing procedure, the condition record NA00 that I have used doesn't show-up.
    There is no subsequent item in the sales order under the main item showing the Free-Goods discount.
    Could you please help me go through the customizing process to correct the error?
    Many thanks for your help
    Chris

    Hi,
    FYI
    Free goods can be configured in SAP by following two methods.
    (1) Manually
    (2) Automatically
    Manually: By specifying higher level item category for a line item we can determine free goods as a free of charge
    items during sales order processing.
    Automatically: System proposes free of goods automatically in the sales order. In automatic free goods
    configuration system follows two methods.
    (1) Exclusive
    (2) Inclusive
    Exclusive: System configures free goods in exclusive option like free goods quantity is going to be excluded in
    order quantity. Ex: For 10 items 1 item is free. Then system configures free goods as 10 + 1.
    Inclusive: System configures free goods in inclusive option like free goods quantity is going to be included in order
    quantity. Ex: For 10 items 1 item is free. Then system configures free goods as 9 + 1.
    NOTE: In exclusive method other items also can be given as a free of charge items for order item.
    Configuration steps: INCLUSIVE
    SAP follows condition technique to configure free goods automatically.
    Maintain pricing procedure
    Path:
    IMG
    Sales and distribution
    Basic functions
    Free goods
    Condition technique for free goods
    Maintain pricing procedures
    Choose free goods procedure NA0001 and select it
    Click on copy icon on application tool bar and rename it Ex: SRI001
    Condition type is NA00 and Access sequence also NA00
    Save it and Exit
    Activate free goods determination
    Path:
    IMG
    Sales and distribution
    Basic functions
    Free goods
    Condition technique for free goods
    Activate free goods determination
    Go to new entries
    Specify our sales area, document pricing procedure, customer pricing procedure and specify our free goods
    procedure Ex: SRI001
    Save and Exit
    Control free goods pricing
    Path:
    IMG
    Sales and distribution
    Basic functions
    Free goods
    Control free goods pricing
    Control pricing for free goods item category
    Choose item category TAN from position button
    Specify the pricing as X = Pricing standard
    Choose item category TANN from position button
    Specify pricing as B = Pricing for free goods (100% discount)
    Save and Exit
    Maintain condition type for 100% discount
    Path:
    IMG
    Sales and distribution
    Basic functions
    Free goods
    Control free goods pricing
    Maintain condition type for 100% discount
    Check whether condition type R100 is available or not (R100 = is 100% discount)
    Exit
    Maintain pricing procedure for pricing
    Path:
    IMG
    Sales and distribution
    Basic functions
    Free goods
    Control free goods pricing
    Maintain pricing procedure for pricing
    Choose our pricing procedure form position button and select it
    Click on control data icon under dialog structure
    Include condition type R100 between the steps of discounts.
    Specify requirement = 55 and Routine No: 28 (100% discount) in Alt. CBV.
    Save and Exit
    Requirement 55: The Routine No. 55 is assigned to condition type R100. If the user wants to look both revenues
    and sales deductions for the free items since the product that we are going to give as a free of charge item can be
    sold separately in the same sales order. Then the item category of free goods TANN has the pricing value as B.
    Then the system calculates value of the free goods as 100% discount as we discussed above the same material [that
    is going to be given as a free of charge item]. Some times the same item is going to be given as a normal item.
    Then system calculates price for normal item and system should not calculate price for same item [free of charge
    item]. So as to perform this calculation we have to assign Requirement/Routine 55 is to assign condition type
    R100.
    Alt CBV = 28: [100% Discount] Condition type R100 should be taken as a ZERO value. The formula 28
    calculates condition type R100 value as a ZERO.
    Set Transfer of cost to Main item: [Copy control]: Transaction code: VTFL
    Copy control is a concept by which the system copies the data from source document to target document.
    Path:
    IMG
    Sales and Distribution
    Basic functions
    Pricing
    Free goods
    Control free goods pricing
    Set transfer of cost to main item [copy control]
    Choose Billing type F2 Delivery document type LF from position button
    Select it and click on itemicon under dialog structure
    Choose item category Ex: TAN
    Click on details icon
    Click on display or change icon
    Choose item category as TAN again
    Select it and click on details icon
    Check cumulative cost
    Save and Exit
    Cumulative cost controls whether the cost value (VPRS) is to be copied from relevant sub items into main items.
    Sub items cost are not relevant for billing.
    Maintain copying control: Transaction code: VTAA
    Path:
    IMG
    Sales and Distribution
    Basic functions
    Free goods
    Control free goods pricing
    Maintain copying control
    We maintain copy control at item level category for free goods. In this field we can control whether the
    free goods should also be transferred when we copy from one document to another document.
    Choose source document type as QT and target document type as OR from position button
    Select it and click on item control button under dialog structure
    Choose AGN item category from position button
    Click on display or change button
    Again click on AGN
    Click on details icon
    Check Re u2013 explode structure/Free goods
    Save and Exit
    This indicator controls whether the free goods are copied from source document to target document or redetermined
    again.
    Maintain condition records for Free goods [INCLUSIVE]: Transaction code: VBN1
    Path:
    Logistics
    Sales and Distribution
    Master data
    Conditions
    Free goods
    VBN1 u2013 Create
    Specify condition type NA00
    Click on key combination
    Specify all the data
    Choose inclusive by clicking the INCLUSIVE/EXCLUSIVE push button
    Specify the Material No., Minimum order quantity (Ex: 10), Specify [from] the free goods quantity (Ex:
    10), Unit of measure u201CEAu201D (Each), Free goods (are free goods) as u201C1u201D.
    Calculation procedure: We can specify the Routines for calculation procedure as 1 or 2 or 3
    1 = Pro u2013 Rata (Proportionate): Ex: If the customer places order for 100 cases of material u201CXu201D, then customer
    receives 20 cases of same material as free. That means, the business can say that buy 100 and get 20. If the
    customer orders for 162 cases, then system automatically grants 32 cases as a free of cost (162x20/100 = 32 Cases).
    2 = Unit of reference: When customer orders for 100 cases of material u201CXu201D, then the customer receives an
    additional 20 cases as a free of goods. That means business can say that buy 100 get 20 free by granting 200 free
    for every full of 100 cases. The customer places order for 162, then system automatically grants only 20 cases
    (100x20/100=20).
    3 = Whole unit: When a customer places order for 100 cases of material u201CXu201D, then the customer receives additional
    20 cases of material u201CXu201D as a free of goods item. The business can say that buy 100 and get 20 free of charge items.
    If the customer orders for increment of 100 that means 200 (100 + 100) items, then he gets 40. If he placed the
    order for 101 u2013 199 items he gets only ZERO.
    Save and Exit
    Condition record for EXCLUSIVE: Transaction code: VBN1
    Path:
    Logistics
    Sales and Distribution
    Master data
    Conditions free goods
    Specify the discount type u201CNA00u201D
    Click on key combination
    Click on Choose inclusive by clicking the INCLUSIVE/EXCLUSIVE push button
    Specify the sales organization, distribution channel
    Specify customer number and validity periods, material, minimum quantity, order quantity, unit of
    measure, calculation procedure, free goods (3)
    Specify additional material free goods (if other goods is going to be given as a free of charge item.
    Save and Exit
    Go to VA01 and raise the sales order for INCLUSIVE and EXCLUSIVE.
    See the Free Goods effect.
    Condition type NRAB = Free goods: Requirement = 59, Alt CBV = 29: [only for INCLUSIVE purpose]
    Requirement 59: We have to assign requirement 59 to the condition type NRAB. If the customer buys 100 cases
    of product u201CXu201D, then he receives 10 cases of the product free. If the user would not like the additional line item in
    the sales order for free goods rather than the discount of the 10 cases is represent in the same line item as other 90
    cases. If the free goods discount should not apply on credit for returns that do not make reference in the previous
    document.
    Alt CBV 29: The condition type NRAB is to be assigned with 29 formula to support inclusive free goods
    agreement where the user would have to apply the discount to the order item rather than having a sub item
    generated for the free quantity.
    Ex: The customer orders for 100 cases of product u201CXu201D, 10 cases are free instead of having a free sub item generated
    b the system to represent the free 10 cases, the user would like to have a discount applied to the 100 cases line item
    equal to the value of the 10 cases.
    NOTE: Free goods can only be configured on document category type u201CCu201D (OR). That means we cannot configure
    free goods on Inquiry and Quotation.
    Header Conditions
    SAP has delivered two kinds of condition types: (1) Header conditions
    (2) Item conditions
    Header conditions: The value of the header condition applies to the whole items in the sales document.
    Header conditions do not have any access sequence.
    So that, value of the header conditions should be maintained manually.
    Ex: HA00, HB00
    Configuration settings:
    Include condition types HA00, HB00 in V/08 in between the discount condition types.
    Go to VA01 and raise the sales order
    Select line item and go to Go to button
    Header Conditions
    Include condition type HA00 HB00 with values [HA00 is percentage discount and HB00 is absolute
    discount]
    If HA00 = 1%, then system applies 1% on base value on all items in the sales order.
    If HB00 = 100/- Rupees, then system applies 100/- Rupees proportionately to all items in the sales order. If sales
    order has two items, then system applies 50/- Rupees to each item.
    Click on activate button
    Go to item condition screen
    Check how system applied header conditions for line items
    NOTE: Make sure that sales order contains more than one item.
    Condition Scales
    We can maintain scales for each and every condition type. So that we can determine pricing conditions values
    depending upon the range of the order quantity.
    Ex: If you maintain condition record for PR00 for material one as a 100/- Rs. For 1 material, then we can maintain
    scales for this material like below:
    From Quantity Price
    1 u2013 10 1000
    11 u2013 20 999
    21 u2013 30 998
    31 u2013 40 997
    Configuration settings:
    Go to VK11
    Maintain condition record for PR00
    Select line item and click on scales icon on the application tool bar
    Maintain scales and scale rates accordingly
    Save and Exit
    Go to VA01 and raise the sales order
    Enter the order quantity according to the scale and see the scale effect
    Regards,
    Siva

  • Start Menu items/shotcuts and Start Menu search ability on multiple workstations

    2/13/2014 our IT department began to receive complaints of missing programs. After investigation of a few users we were able to determine that the programs existed but all shortcuts and items from the start menu had been completely removed. In addition the
    searching feature of the start menu was not functional. This happened to about 90% of our environment and the catalyst seemed to be Windows updates or at least occurred after the auto reboot initiated by Windows Updates.  The only items visible in start
    menu were items added after the fact, internet explorer, magnifier, command prompt, and notepad. All other items, folders, and the ability to search installed programs or folders were completely removed. However all programs are present in the program files
    folders. THe start menu folder in program data was empty except for the aforementioned items. Additionally properties of start menu had all necessary checks in boxes such as search program files and folders etc. Also show hidden items and folders is enabled
    for many users so the items were not hidden but gone. And the biggest kicker of all was after a full domain investigation into the issues we found that the majority of our windows server platforms, primarily 2008, were also affected and system restore is unavailable.
    This conflicts with our idea that Windows Updates caused this since our servers get their updates on a manual initiated basis by their admins which we have not performed as of yet for this month. This caused me to begin looking at SCCM SCEP as all systems
    have System Center Endpoint Protection and received definition updates. Also accessing different user profiles or even a new profile did not make a difference, issue still present.
    Due to the enormous inconvenience we sent out a company wide email asking users to perform system restores to get us in a stable state. A system restore to the day before Windows updates (second Wednesday of every month configured by SCCM SCUP) restored
    the start menu items.
    On a multitude of machines IT performed troubleshooting and system restores recording the changes removed and added. We then, on a healthy machine, started to apply the windows updates and SCEP (antivirus) definitions 1 by 1 with out success of replicating
    the issue. Next we performed a system wide antivirus full scan and did not find any viruses. This is obviously not a system criticle issue bringing us down but is a huge concern for us in IT as it happened company wide and caused a large flux of tickets and
    some down time for non-technical users. We most definitely want to know the cause and after several days of investigation and troubleshooting Im turning to the Microsoft community for help.
    I know I categorized this as a Windows 7 issue and its affecting windows server 2008, 2003, and 7, but I did not see a forum for all windows platforms. Since the majority of affected users are Windows 7 I opened it here.
    So to summarize in a bulleted format:
    Issue: Wide spread issue affecting around 60-70 users and servers, all profiles, were all start menu items save one or two system defaults were removed. Additionally the searching feature for the start menu looks to be broken as programs
    exist in program files and are unsearchable from start menu. IT was also affected and I remain affected until I find the cause.
    Investigation and Troubleshooting:
    Start menu properties: nothing has changed and search options are enabled.
    Missing items are not hidden, hiding and unhiding does nothing and folder options show hidden files is checked.
    Program data start menu location is indeed empty as well as user app data start menu location
    No group policy's are in place altering start menu items and no group policy changes were made as of recent
    No SCCM packages pushed company wide in last month or pushed individually
    Windows Updates occurred on windows 7 machines only before the issue occurred and computers restarted and the issue surfaced
    System Center Endpoint Protection Antivirus updates and definitions deployed just before the occurrence with windows updates. SCEP def updates happen on all windows boxes to include servers
    Paint.exe was completely missing from system32 folder for some users machines to include my own
    System restore to that morning before restarts or previous day fixes the issue for windows 7 users
    No windows updates were initiated on any servers
    Servers were also affected with windows 7 machines
    About half the users affected had corrupt Microsoft Office 2013 Pro Plus Click to Run installations and for some the system restore did not fix this and we had to re-install office for around 10 users
    SCEP antivirus did not catch any viruses that could cause this, I performed MBAM scans on a handful of machines and didn't find anything either.
    Re-creating start menu shortcuts works
    Happened to two of our companies locations NH and MA, all part of the same domain but different LANS of course. Companies are interconnected by MPLS connection.
    I combed through SCCM to see if anything deployed and found nothing. Currently I have SCUP updates and SCEP updates disabled. I will post a list of Windows Updates that occurred when the issue occurred as well as the SCEP updates. I have read all the threads
    about this types of issues and tried all steps without success. Googling the issue also did not rear results.
    MichaelSpaulding

    Hi,
    I would like to suggest you try these steps to figure out what could be causing this problem.
    1. Run Troubleshooter
    Open the Search and Indexing troubleshooter
    http://windows.microsoft.com/en-US/windows7/Open-the-Search-and-Indexing-troubleshooter
    2. Create a new library and include fewer folders for test purpose. Now search for a file from that folder. See if it works.
    Create a new library
    http://windows.microsoft.com/en-US/windows7/Create-a-new-library
    3. Try to rebuild search indexing. Refer the steps from the following article.
    http://windows.microsoft.com/en-US/windows7/Change-advanced-indexing-options
    Also you may use the System File Checker tool (SFC.exe) to check the issue. The sfc /scannow command scans all protected system files and replaces incorrect versions with correct Microsoft versions.
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on Windows 7
    http://support.microsoft.com/kb/929833
    In addition, you may refer to the following Microsoft TechNet article for the Windows Search related Group Policies.
    Group Policy for Windows Search
    http://technet.microsoft.com/en-us/library/cc732491(WS.10).aspx
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

Maybe you are looking for

  • How can i open a windows unc link in a email on the ipad?

    I work with my ipad in my enterprise and my exchange is sync on it. Sometime i receive some links for a doc or else on a windows share like \\server\path\example.doc. I want to be able to click and open it directly instead using Filebrowser. Sometime

  • VAT amt in MIRO

    Dear All, We have taken the taxcode in PO, V3(8%BED2%EC1%HSEC+12.5%VAT), and against this PO we have 30 GR. Now we are posting the inv for first 10 GR. Here the VAT amt is coming 1.24 Rs higher than the calculated% ie:12.5%. Can anybody came across t

  • Microphone does not function after installing Windows 7 RC on a HP Mini 1000 (1030NR)

    Hi. I recently purchased a HP Mini 1000 (1030NR) and upgraded it to Windows 7 Release Canidate. After install, I added the trackpad drivers, and everything else works fine except for the microphone. The computer recognizes it but when I speak nothing

  • .Max Files in After Effects

    We are trying to create a movie with a roving drone. The movie is being created in FCP; and edited in after effects. Beacause we are only doing this for a school project we do not want to pay for any models. My question: Are we able to import .MAX, .

  • Cisco Unified Attendant Console Upgrade

    All - I currently have CUEAC 8.6.1, and I am looking to get to 10.0.1. Can I upgrade to CUEAC 9.1.1, and then upgrade to 10.0.1? I found a document that stated I can do upgrade migration from 9.1.1 to 10.0.1, but couldnt find any specific details. An