Delivery group 000 consists of only one item

Hi All,
I've the following issue(s):
Customer Master is set with "Complete delivery required by law" flag.
Partial Delivery per item = B.
Max. Partial deliveries = 1.
However, when I create an SO for this customer: then in the SO, the complete delivery flag is not set.
Also, i get the msg: "Delivery group 000 consists of only one item".
I checked the item category in VOV7, no delivery grp flag set.
Please help me with both issues.
Regards,
Raghu.

Dear,
For complete deliver select - C  (Only complete delivery allowed),in customer master,
Then in sales order it will appear with tick mark, and when you creating delivery & if you change delivery quantity then system will popup dialog box, saying complete delivery required.
Delivery group (items are delivered together)
A combination of items that should be delivered together.
Use
The system uses delivery groups to check the availability of items that should be delivered together. The delivery date of the latest schedule line in the delivery group is taken as the general date for the whole group.
Procedure
During sales order processing, you can enter a number (up to three digits) that identifies a delivery group. The number is freely definable.
Regards,
kapil
Edited by: Kapildev Farakte on Nov 18, 2009 11:33 AM

Similar Messages

  • Delivery from sales scheduling agreement with one item per schedule line

    Hi all,
    I have a sales scheduling agreement where the same part number has 3 different JIT schedule lines and I need to create a delivery with 3 item lines: every item line of the delivery has to be referred to one schedule line of the scheduling agreement.
    When I create the delivery with transaction VL10E it has only one item line and its quantity is the sum of the 3 schedule lines of the sales scheduling agreement.
    I've tried to change the customizing of the User Role, choosing the Split Schedule Line = 2 ("One item per schedule line") but the delivery is created again with only one item line.
    How can I solve this issue?
    Thanks in advance for reply

    Dear Alex
    The SAP standard behaviour is that all schedule items with delivery date in the past have to be rescheduled anyway to one date and are combined therefore.
    Partially this behaviour can be influenced in VL10* by 2 parameters in
    the user role : Split per sched.line and Rule (delivery qty).
    Please find below informations about these different parameters
    "Split per sched.line propose you 3 Rule for creating one delivery item
    per schedule line. In a delivery list in item view with multiple
    schedule lines, you can decide for the same document item whether you
    want to generate one delivery item per schedule line or whether you want
    to deliver the cumulated quantity of the last schedule lines selected.
    About rule for delivery quantity, the following rules are currently
    implemented:
    1. No cumulation
    The open schedule line quantity to be delivered is the quantity at which
    the list line is delivered.
    2. Sum of all open schedule line quantities to be delivered that fall
    before the chronologically latest date in the to field (following the
    Deliv. creation date field) of the selection criteria.
    3. Sum of all open schedule line quantities to be delivered whose
    delivery creation date falls within the selection time frame (between
    the dates in the Deliv. creation date and to fields, respectively),
    making the calculation of the quantity to be delivered consistent with
    selection criteria. However, calculationof the quantities delivered with
    the order's schedule line quantities is not affected."
    Hope this helps.
    Regards
    Tonia

  • PR created by MRP only one item each PR

    Hi Gurus,
    I ran MRP using T-Code MD01. Running succesful. But when I check PR created only had one material each PR, so too many PR Created in the system.
    The requirement is How can we run MRP then PR created in lot (each PR has many items) ? I've set in configuration (T-code: OMI8) to specify items in each PR created. But still only one items material each PR created.
    Any suggestion ?
    Regards,
    Tri W

    Hi Tri,
    This is standard SAP behaviour and you cannot change it as per my best knowledge.
    When you create PO you can convert several PR into one PO. You can even convert several PR into one PO item (as separate schedlue lines provided vendor, material, etc are the same).
    (PR is only for internal use,)
    Regards,
    Csaba

  • Selecting from Combobox with only one item

    I'm populating Comboboxes based on selections from other
    comboboxes. I pick up the selection with the 'change' trigger,
    however when you select the top item or if there is only one item,
    the change route doesn't work. So I tried to use the 'click' and
    even the 'close' triggers instead, but they give me an errors when
    I try to access the companion ArrayCollections which hold the IDs
    for the items in the list (as commented in the code). Any ideas how
    to get this to update with just one selection?
    <!-- The first three comboboxes populate the next one in
    the list in a 'drilldown' approach -->
    <mx:ComboBox minWidth="130" maxWidth="130" id="selectSys"
    dataProvider="{sysOps.lastResult.system.data}"
    change="fillComboBox(selectSys, selectSub, 'subsystem',
    subOps, sysIDs, 1)" rowCount="10" />
    <mx:ComboBox minWidth="130" maxWidth="130" id="selectSub"
    dataProvider="{subOps.lastResult.system.data}"
    change="fillComboBox(selectSub, selectDev, 'devices',
    devOps, subIDs, 2)"/>
    <mx:HTTPService id="sysOps" useProxy="false" method="GET"
    result="sysIDs = sysOps.lastResult.system.id as
    ArrayCollection;"
    fault="mx.core.Application.application.handleFault(event);"
    url="
    http://localhost:8080/TomCustodes/rocket"/>
    <mx:HTTPService id="subOps" useProxy="false" method="GET"
    result="subIDs = subOps.lastResult.system.id as
    ArrayCollection;"
    fault="mx.core.Application.application.handleFault(event);"
    url="
    http://localhost:8080/TomCustodes/rocket"/>
    // fill destination combobox based on selection from src
    combobox
    public function fillComboBox(src:ComboBox, dest:ComboBox,
    type:String,
    serv:HTTPService, idArray:ArrayCollection, element:int) :
    void {
    // choose ID from the associated ID array with the same
    selecetedIndex
    // error occurs as the idArray ArrayCollection comes up as
    null
    var selectedID:String = idArray.getItemAt(src.selectedIndex)
    as String;
    var params:Object = {};
    params[type] = type;
    var arg:String = "arg";
    var argList:Array = new Array();
    if (element > 1) {
    var ind:int = selectSys.selectedIndex;
    var sysName:String = sysIDs.getItemAt(ind) as String;
    argList.push(sysName);
    if (element > 2) {
    ind = selectSub.selectedIndex;
    var subName:String = subIDs.getItemAt(ind) as String;
    argList.push(subName);
    argList.push(selectedID);
    params[arg] = argList;
    serv.send(params);
    Thanks!

    I think the way I would go about that is having a result
    function for the HTTPServices and set your array collections how
    you are. Then after they are set I would check to see if the length
    == 1 and if it does then recall your fillComboBox method for the
    next combo box since there isn't a way for the user to change the
    combo box they might as well have the next one already filled out.
    The other approach you could take is after you set your array
    collection to your result add dummy items via
    myAC.addItemAt({label:"Choose one"}, 0); This will ensure the user
    always has an item to change to.

  • Need validation that ensures only one item has a value.

    Hello,
    I need a validation that ensures that only one item has a value. I want to allow a person entering information into a form to have the option to either select from a drop-down or enter something into a text box but not both.
    I have found some information about validation of this type but I'm not sure how to use it. Here is what I found:
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    This validation ensures that only one item (ITEM_1, ITEM_2) has a value.
    Example 5:
    Assume a function similar to the following exists:
    create or replace function sampleValidation (p_arg in varchar2) return boolean
    as
    begin
    if p_arg= '1' then
    return true;
    else
    return false;
    end if;
    end;
    A validation of type PL/SQL Expression could then reference this function returning a boolean using the following syntax:
    sampleValidation(v('MY_ITEM'))
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Please let me know how to implement this or give me another way to validate.
    Thanks
    Linda

    Linda,
    The best is to use a Validation of type PL/SQL Function Returning Error Text like this:
    BEGIN
       IF :p1_item_1 IS NULL AND :p1_item_2 IS NULL
       THEN
          RETURN 'One of the items must have a value.';
       ELSIF :p1_item_1 IS NOT NULL AND :p1_item_2 IS NOT NULL
       THEN
          RETURN 'Only one of the items must have a value.';
       END IF;
    END;Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • TableSelectMany selects only and only one item !!!

    this is my table source ...
    i select multiple items.but in back_bean code .set return only one item.
    <af:table value="#{bindings.GenfunctionsView1.collectionModel}"
    var="row" rows="#{bindings.GenfunctionsView1.rangeSize}"
    first="#{bindings.GenfunctionsView1.rangeStart}"
    emptyText="#{bindings.GenfunctionsView1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    binding="#{backing_ManySelection.table1}" id="table1"
    banding="none">
    <af:column sortProperty="Id" sortable="false"
    headerText="#{bindings.GenfunctionsView1.labels.Id}"
    binding="#{backing_ManySelection.column1}" id="column1">
    <af:inputText value="#{row.Id}"
    required="#{bindings.GenfunctionsView1.attrDefs.Id.mandatory}"
    columns="#{bindings.GenfunctionsView1.attrHints.Id.displayWidth}"
    binding="#{backing_ManySelection.inputText1}"
    id="inputText1">
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.GenfunctionsView1.formats.Id}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Functionname" sortable="false"
    headerText="#{bindings.GenfunctionsView1.labels.Functionname}"
    binding="#{backing_ManySelection.column2}" id="column2">
    <af:inputText value="#{row.Functionname}" simple="true"
    required="#{bindings.GenfunctionsView1.attrDefs.Functionname.mandatory}"
    columns="#{bindings.GenfunctionsView1.attrHints.Functionname.displayWidth}"
    binding="#{backing_ManySelection.inputText2}"
    id="inputText2"/>
    </af:column>
    <af:column sortProperty="Functionformula" sortable="false"
    headerText="#{bindings.GenfunctionsView1.labels.Functionformula}"
    binding="#{backing_ManySelection.column3}" id="column3">
    <af:inputText value="#{row.Functionformula}" simple="true"
    required="#{bindings.GenfunctionsView1.attrDefs.Functionformula.mandatory}"
    columns="#{bindings.GenfunctionsView1.attrHints.Functionformula.displayWidth}"
    binding="#{backing_ManySelection.inputText3}"
    id="inputText3"/>
    </af:column>
    <f:facet name="selection">
    <af:tableSelectMany text="Select items and ..."
    binding="#{backing_ManySelection.tableSelectMany1}"
    id="tableSelectMany1" required="true">
    <af:commandButton text="commandButton 1"
    binding="#{backing_ManySelection.commandButton1}"
    id="commandButton1"
    action="#{backing_ManySelection.commandButton1_action}"
    immediate="true" partialSubmit="true"/>
    </af:tableSelectMany>
    </f:facet>
    </af:table>
    public String commandButton1_action() {
    // Add event code here...
    Set KeySet=null;
    KeySet=getTable1().getSelectionState().getKeySet();
    System.out.println("KeySet Rows="+KeySet.size());
    return null;
    plz help me!

    Hi,
    create a SelectionListener on the table to pint to the following method in a managed bean
    public void SelectionLister(SelectionEvent selectionEvent) {
    int selectedKeysSize = selectionEvent.getSelectedKeys().getSize();
    Frank

  • Need programming help: Three Items selected, only one item displays.

    All the code is below.
    My client has a beach-wear website. It is VERY simple with three pages: Index, Order, and Invoice Page. If customers select the checkbox in front of three items, only one item is displayed on the invoice page. Why aren't all three displayed? I am new to programming:
    //INDEX PAGE:
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <form name="form1" method="get" action="jserv/Search.jsp">
    <table width="52%" border="1">
    <tr>
    <td width="20%">Enter Color:</td>
    <td width="80%">
    <input type="text" name="txtColor" size="30" maxlength="20">
    </td>
    </tr>
    </table>
    <p>
    <input type="submit" name="Submit" value="Color">
    </p>
    </form>
    <p> </p>
    //SEARCH PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varColor = "%";
    if (request.getParameter ("txtColor") !=null) {rsBeachwear__varColor = (String)request.getParameter ("txtColor");}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE Color LIKE '%" + rsBeachwear__varColor + "%';");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form2" method="post" action="Invoice.jsp">
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="16%">
    <input type="checkbox" name="valueCheckbox" value="<%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%>">
    </td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>
    <input type="submit" name="Submit" value="Submit">
    </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    //INVOICE PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID IN (" + rsBeachwear__varCheckbox + ")");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>  </p>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>

    Hi, Brad,
    I appreciate your help! I am a beginning Java student, so this code is more complex than what I can handle alone.
    A copy of the compilation error is at the very bottom of this message.
    I added " int chkValues[]; " to the beginning of your code, and then inserted the whole code snippet to the detail (Invoice) page as shown:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    int chkValues[];
    StringBuffer prepStr=new StringBuffer("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID=");
    for(int x=0;x<chkValues.length;++x){
    prepStr.append( chkValues[x] );//using an x instead of an i
    if((x+1)<chkValues.length){//another iteration
    prepStr.append(" OR ID=");
    }//end if
    }//end for loop
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.preparedStatement(prepStr);
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = -1;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form1" method="post" action="">
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <table width="75%" border="1">
    <tr>
    <td width="13%">ID:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">ITEM:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">COLOR:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">SIZE:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    </table>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    <p>  </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    ERROR:
    500 Internal Server Error
    /jserv/Invoice.jsp:
    Compilation error occured:
    Found 1 errors in JSP file:
    C:\\Inetpub\\wwwroot\\Beachwear\\jserv\\Invoice.jsp:27: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
    allaire.jrun.scripting.DefaultCFE:
    Errors reported by compiler:C:/Program Files/Allaire/JRun/servers/default/default-app/WEB-INF/jsp/jrun__jserv__Invoice2ejsp12.java:82:42:82:83: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
         at allaire.jrun.scripting.JavaCompilerService.compile(../scripting/JavaCompilerService.java:96)

  • Forms 10g only one item allowed to have a value

    Hi all,
    I was wondering. What is the best way to make sure that only one of my items has a value? I have a couple of textboxes with different meaning but want to restrict the user to only be available to fill in one of them.
    I suppose the best thing would be to disable the other items as soon as he starts to write in one of them.
    Are there any builtins for this behaviour or should I add some clever code to every items event (which one?)
    Regards
    Stefan

    You can enable/disable or set update allowed properties of other fields on WHEN-VALIDATE-ITEM trigger. If user enters anything in the the field, then disable other fields otherwise enable.
    If you have many items which needs this kind of behaviour work then you might consider (with caution) of putting the trigger on block level, otherwise you have to code it on all items.
    WHEN-VALIDATE-ITEM trigger on BLOCK3.TEXT_ITEM4
    IF :BLOCK3.TEXT_ITEM4 IS NOT NULL THEN
      SET_ITEM_PROPERTY('BLOCK3.TEXT_ITEM5', ENABLED, PROPERTY_FALSE);
    ELSE
      SET_ITEM_PROPERTY('BLOCK3.TEXT_ITEM5', ENABLED, PROPERTY_TRUE);
    END IF;

  • Two Delivery dates in Sale Order against one item

    Dear All
    I need two delivery dates in sale order. one is default at the time of creation sale order. second i need actual delivery date which will be confirmed by production planning department after analysis the order whether material can be ready on that delivery date or it need to change. Actual delivery date may vary from original delivery date and both need to preserve in system. kindly provide solution. best regards.
    Manjit

    You need to select the Availability & Transfer of Req. check box in Schedule Line Configuration.It will transfer the req. to PP.So while creating the sale order , schedule Lines will be confirmed as per the Available Stock.
    System will give you the Default Delivery Date as the Date added after Lead Time in days in the Configuration.Else system will give the Current Date.
    Best regards,
    Ankur

  • Update Session State for only one item

    I have several hidden items (e.g. fund, object and unit) that hold values that are input parameters for a function that returns a SQL statement to a 'PL/SQL Function Body Returning SQL Query' region. These hidden items are set when a user selects a value from a pop-up tree. I want to dynamically set corresponding visible prompt text items (fund_prompt, object_prompt and unit_prompt) to a descriptive value that makes sense to the user. I've tried using a source type of SQL and placing the following SQL statement in the source
    SELECT child_prompt
    FROM fr_hierarchy_fund
    WHERE child = :FUND;
    When the value in one of the hidden items is changed, the visible prompt item displays "undefined" until the page is submitted.
    Is there a way to set the session state of an item without submitting the page?
    Thanks
    David

    David,
    Items, hidden or not, are not set in session state until the page is submitted. You might consider submitting the page with a javascript event on your popups. The request value can be used to control what processing you do or don't do on page submission and a branch right back to the page should allow you to show everything based on current item values.
    Scott

  • I have tried to limit calendar to only one item on notifications screen (ios 8), and even to turn it off, no joy.

    The Calendar seems to show on the notifications screen, with room for 3 entries, regardless of settings.  Any way to limit it to one, or get it off the notifications screen?

    You're talking about two different things: notifications and widgets. The lock screen will only show notifications that you've enabled to show there. When you open notification center, there are two views: "Today" and "Notifications." Today shows widgets. That is where you see the calendar with room for events. It is basically a preview of your upcoming calendar. Under notifications is where you will get notifications if upcoming appointments that have reminders. The settings for each screen are different.
    To control your calendar notifications, go to settings--notifications--calendar.
    To control the widget, pull down notification center and select edit.
    You can turn off the widget but still receive notifications in notification center and on your lock screen or vice versa.

  • On my home page my icon suddenly got large and I can see only one item at a time.  How can I get the icon down to a normal small size?

    On my home page under view my icons suddenly go large and one folder fills the page.  How do I get it back to a normal size?

    You are
    Using a laptop and not a workstation
    talking about a browser
    Apple Safari
    Safari
    MacBook Pro

  • How do I stop auto sync then sync only one item manually

    I have 5 Macs. They are all set to sync using dot mac.
    I hadn't used 2 of them lately, the others were being synced.
    I noticed that mail had 2 of the exact smart folders (with several folders within them). And all of the criteria disappeared from the smart folders.
    I wanted to get the smart mailbox criteria from the computers I had not synced lately as that was still ok.
    So I thought I could turn off the syncing for mail rules, signatures and smart mailboxes by removing the check mark from that option. But immediately upon syncing, my smart mail box was replaced with 2 duplicates with no criteria available. So it seems that ignored the fact that the option was not checked when I synced.
    Now I have 1 mac left. On that Mac I would like to sync bookmarks, calendars, contacts, keychains. But I would like to keep the smart mailboxes the way they are and send them to the other macs.
    The problem is that my MacBook Pro is set for automatic syncing. And when I turn it on, it will connect wirelessly and automatically sync.
    How do I get to it quick enough so the sync will not happen and I can put it in manual mode?
    Then how do I sync just what I want to sync? And how do I then sync the smart mailboxes back to the other macs?
    I don't want to turn on the MBP until I know exactly what to do.

    This is actually a .Mac Sync issue, and has nothing to do with iSync. You'll find a forum for .Mac Sync users here:
    http://discussions.apple.com/forum.jspa?forumID=957
    To correct the issue you outline, you will have to start your MacBook Pro and disable AirPort at the first opportunity to prevent network connection and a subsequent synchronization event initiation.
    Then, launch the System Preferences application, press the Sync tab, and select Manually from the Synchronize with .Mac: menu. Once you've done that, turn AirPort on again.
    Then press the Advanced tab and wait for your registered device list to be refreshed. Press the Reset Sync Data… button in the lower left corner of the dialog box. From the Replace: menu, choose the Mail Rules, Signatures and Smart Mailboxes data descriptor that identifies the information you want to transfer from your MacBook Pro to the rest of the synchronization pool.
    Press the right-faccing arrow so that the animated orange arrow moves from left to right, and the label changes to read On .Mac with sync info from this computer. Then press the Replace button to propagate your smart mailbox structures to .Mac and your other sync clients.
    Remember that Automatically means essentially whenever a change is made, and in any event, no less than once each hour. Any change, even an inadvertent one, will propagate through the synchronization pools when an event is triggered, so you will want to carefully consider your selection of that option.

  • How do I stop auto sync then sync only one item

    I have 5 Macs. They are all set to sync using dot mac.
    I hadn't used 2 of them lately, the others were being synced.
    I noticed that mail had 2 of the exact smart folders (with several folders within them). And all of the criteria disappeared from the smart folders.
    I wanted to get the smart mailbox criteria from the computers I had not synced lately as that was still ok.
    So I thought I could turn off the syncing for mail rules, signatures and smart mailboxes by removing the check mark from that option. But immediately upon syncing, my smart mail box was replaced with 2 duplicates with no criteria available. So it seems that ignored the fact that the option was not checked when I synced.
    Now I have 1 mac left. On that Mac I would like to sync bookmarks, calendars, contacts, keychains. But I would like to keep the smart mailboxes the way they are and send them to the other macs.
    The problem is that my MacBook Pro is set for automatic syncing. And when I turn it on, it will connect wirelessly and automatically sync.
    How do I get to it quick enough so the sync will not happen and I can put it in manual mode?
    Then how do I sync just what I want to sync? And how do I then sync the smart mailboxes back to the other macs?
    I don't want to turn on the MBP until I know exactly what to do.

    This is actually a .Mac Sync issue, and has nothing to do with iSync. You'll find a forum for .Mac Sync users here:
    http://discussions.apple.com/forum.jspa?forumID=957
    To correct the issue you outline, you will have to start your MacBook Pro and disable AirPort at the first opportunity to prevent network connection and a subsequent synchronization event initiation.
    Then, launch the System Preferences application, press the Sync tab, and select Manually from the Synchronize with .Mac: menu. Once you've done that, turn AirPort on again.
    Then press the Advanced tab and wait for your registered device list to be refreshed. Press the Reset Sync Data… button in the lower left corner of the dialog box. From the Replace: menu, choose the Mail Rules, Signatures and Smart Mailboxes data descriptor that identifies the information you want to transfer from your MacBook Pro to the rest of the synchronization pool.
    Press the right-faccing arrow so that the animated orange arrow moves from left to right, and the label changes to read On .Mac with sync info from this computer. Then press the Replace button to propagate your smart mailbox structures to .Mac and your other sync clients.
    Remember that Automatically means essentially whenever a change is made, and in any event, no less than once each hour. Any change, even an inadvertent one, will propagate through the synchronization pools when an event is triggered, so you will want to carefully consider your selection of that option.

  • Delivery group message

    Hi,
    Everytime i try to save order iam getting a msg stating "delivery group 001 consists of only one item"
    Is that an error or warning or a simple msg. and what has to be configured so that i dont get this msg agian while saving order.
    Regards,
    John

    Check the delivery group in sales order-shipping tab
    delete the delivery group. It will be 001 and check.
    Ramesh

Maybe you are looking for