Field to add to enter number of items which are  shipped to customer

Hi Sap Experts,
We have scenario, we have created sales order with quantity 1(Like soft copy or hard copy of CD).
Now we want to create delivery with sales order and quantity is 1(Copy from sales order).
Our requirement is some time we have to send additional things like hard copy of manual or complement gift which we are not entering in sales order.
Exp: Sales order- quantity 1.
Want to deliver quantity 1(+ manual+ complement gift, these items are not part of standard order)
For more clarity, we have to add one field and want to enter number (How many items we have send along with main materials and these items are not relevant for pricing also).
So requirement is add one additional field in delivery header/item.
Customer doesn’t want to use Free of goods or BOM which we have propose him. How to customize standard table and standard program.
Kindly suggest.
Regards,
Kotli
20

Hi,
Thanks.We want to add a field, might be like this.We just want to enter only no of extra items like 3.
Exp.
Delivery Qty-1
extra items:3
Regards,
Custom field to add number of packages shipped along with Delivery 

Similar Messages

  • Im trying to send an e-mail to LIST a number of items which are due, to the owner of these items

     I want a single e-mail and not a whole plethora of e-mails.  How can I do this?  I don't have access to the server, or anything other than sharepoint list and the designer.

    Hi robert,
    You can use the Retention Policy to trigger the workflow to send mail to users based on a due date, then the timer job should daily check if today is the due date to trigger the workflow sending mail for each items in list.
    Thanks
    Daniel Yang
    TechNet Community Support

  • I am trying to update a number of items which the software check brings up:      It runs and says it is installing but at the end I get this error message:    The update could not be expanded, and may have been corrupted during downloading. The update wil

    Hi,
    I am trying to update a number of items which the software check brings up:
    It runs and says it is installing but at the end I get this error message:
    BUT then I ge tthis:
    Can anyone help me to enable the software to update?
    Thanks

    Thanks.  Something isn't right as I just tried to download the iphoto update - it said it had competed the download but then when I clicked on the download item I get this:
    Think will have to take it into the store.....
    thanks for replying.

  • PO items which are not GRed

    Hello.
    I have a requirement wherein I need to print all the PO item which are not fully goods receipt ( open goods receipt qty). Can some one let me know exact logic and table from where data can be picked.
    Thank you!
    Arvind

    Hi,
    You can check in table EKPO field: WEPOS     WEPOS     CHAR     1     0     Goods Receipt Indicator
    which shows if item is GRed or not.
    Also check the following and use whichever is apt.
    ELIKZ     ELIKZ     CHAR     1     0     "Delivery Completed" Indicator
    EREKZ     EREKZ     CHAR     1     0     Final Invoice Indicator
    TWRKZ     TWRKZ     CHAR     1     0     Partial Invoice Indicator
    Regards,
    Karthik

  • Setting ToolTips for items which are disabled.

    Folks,
    No offence meant if this is a repeat.
    I have a JPopupMenu with Action as its components.
    1) I have disabled certain menu items to false.
    2) I would like to use a ToolTipText to show a message 'You have no permission'
    when the user hovers over the menu items which are disabled/set to false
    3) I wrote my own ToolTipText,but what is happening is that I am getting the tool tip text
    for all menu items.
    Please can anyone help me in how to get tooltiptext for menu items which are enabled to false?
    Help much appreciated
    // JPopupMenu
    JPopupMenu pm = new JPopupMenu();
    // Add Action
    pm.add(new GraphAction());      
    pm.add(new DescendantsAction());
    pm.add(new DebugAction()).setEnabled(false);
    ToolTipTextForMenuItems.setToolTipForIndividualItem(pm.getComponent()) // Does not display any Tool Tip.
    pm.add(new ResetAction()).setEnabled(false);
    ToolTipTextForMenuItems.setToolTipTextForMenuItem(pm); // Shows ToolTipText for all menu items (disabled and enabled)
    ToolTip Code
    public class ToolTipTextForMenuItems {
    private static final String TOOL_TIP_TEXT = "You have no permission";
         public static void setToolTipTextForMenuItem(JPopupMenu popupMenu){
                 for (int i=0; i<popupMenu.getComponentCount(); i++){
                    Component c = popupMenu.getComponent(i);
                    if (c instanceof JComponent) {
                              ((JComponent)c).setToolTipText(TOOL_TIP_TEXT);
         public static void setToolTipForIndividualItem(Component c){
               if (c instanceof JComponent) {
                         ((JComponent)c).setToolTipText(TOOL_TIP_TEXT);
    }

    Yes,I have looked at the Abstract Action code sent in
    I have not used Action and Abstract Action before,hence if you can/could just
    modify this as per my requirement,then I can enhance on this.
    No offence meant for the above
    Thanks

  • With a wired keyboard and a 2014 iMac I cannot select multiple items which are not next to each other

    I have recently changed from Windows 7 desktop to a new iMac running Mavericks.  I have chosen a wired keyboard as I like  the usual Delete key function.
    I cannot find out how to select several items which are not next to each other (e.g. words in Pages).  The well known method in Windows, which is repeated in the the Apple Finder Help screen, does not work.  Would be grateful for advice

    Hi JBowfin,
    If I am understanding your question correctly, I believe that I have an article that will address this question for you:
    Mac OS X 10.0: Use Command Key to Select Multiple Items in List and Column Views
    http://support.apple.com/kb/TA20396
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Deleting items which are cheked in CheckBox

    Hi
    I am deleting some items which are checked by the user in the check box.
    If user checks 3 items and click delete, I should delete all the items which are checked.
    help me in solving this issue.
    Sample code will be very helpful.
    Thanks
    soori

    hi there :))
    in the page u have:
    <f:view>
        <h:form>
            <h:selectManyCheckbox layout="lineDirection" value="#{userBean.result}">
                <f:selectItems value="#{userBean.data}" />
            </h:selectManyCheckbox>
            <h:commandButton value="Submit" action="#{userBean.action}"/>
        </h:form>
    </f:view>UserBean class:
            private String result[];
         private HashMap data;
         public String action() {
              if (result.length > 2) {
                   for (String res : result) {
                        data.remove(res);
              return "";
         public HashMap getData() {
              if (data == null) {
                   data = new HashMap();
                   data.put("1", "1");
                   data.put("2", "2");
                   data.put("3", "3");
                   data.put("4", "4");
                   data.put("5", "5");
              return data;
         public String[] getResult() {
              return result;
         public void setResult(String[] result) {
              this.result = result;
         }in action method u check how many check boxes are clicked and if they`re more then 2 u delete them from the HashMap

  • How can we change background colour for number of photos which are in a folder?

    how can we change background colour for number of photos which are in a folder?

    Same for you please show an example. Also it is wise to create your own thread. Keep it in mind next time.

  • Turning Open items which are partially payed into Close items.. How?

    Hello,
    In our company we use partial payment to Vendors using transaction F-59 and also automatic paymant of full amounts. Everything is working correctly but since we use very offen partial way of paymant, on transaction FBL1N I have a lot of open items and most of the time I don't know exactly how much do I own to vendor(s).
    To explain it easier I will show one simple example:
    1. I own to one of my vendors amount Eur 10.000
    2. Using transaction F-59 (partial payment) I pay him Eur 3.000
    3. When I open transaction FBL1N for that vendor and if I choose to show only Open items
    total amount shows me that I own him Eur 10.000 instead of due amount 7.000
    I understand that total amount of Eur 10.000 instead of Eur 7.000 is shown because we use partial instead of residual way of paymant but I would like to know is there any way I could manually turn these Eur 3.000 into close item because they are already payed?
    Searching through Internet I found that transaction F-44 could be used for similar but I am not sure it can do exactly what I need: to turn all partial payed open items to close items so for each vendor then I could see exact amount I own them.
    I hope someone can help me with this because I must solve it ASAP and it's slowing me down at my workplace and it would be great if I could manually close some open items, because they are already payed.
    Greetings,
    Adi
    Moderator: Please, try searching before posting a new thread. Clearing issues are well described on these forums
    Edited by: samnovice on Jul 30, 2011 3:50 PM

    Hi:
         Knocking off invoices against partial payments in F-44 is a standard procedure that is used to clear open item outstanding in Vendor ledger FBL1N. You should ideally clear partial payment in Residual Tab of F-44 and for remaining amount e.g 7 in your case you should double click in residual item column next to amount. By doing so system will also copy the original invoice reference to the partial document AB (with 7 amount) as per setting defined in OBA0 for residual item clearing.
    Line item 10 and its payment line item 3 are standing open in ledger because you did not apply them in F-44. You could have also directly apply them in F-59 of F-53. Partial document will be generated with document type as per setting you have defined in OBXH. Hope this will clear your understanding.
    Regards

  • How can I get a birthday reminder from items which are in the read-only cal

    I am looking for a solution to get a reminder message for birtdays which are within the read-only calender imported/updated from he address book. I so far have not found the option where to turn on the reminder and I do not want to duplicate items (ie creating another birthday calender inside iCal).
    Thanks for comments.
    PB G4 Ti, 1GHz, 10.2.8   Mac OS X (10.4.7)  

    Hi ontour,
    This limitation is one of the many reasons I wrote Dates to iCal. It is a replacement for the Birthdays calendar in iCal, so you would need to turn the Birthdays calendar off in iCal's preferences.
    See here: http://discussions.apple.com/thread.jspa?threadID=466478
    Best wishes
    John M

  • VSB1N--Deleting items which are in status 'Processed with errors.'

    Hi Friends,
    There is one issue which needs your guidance,
    In SAP there is an transaction called VSB1N where all our incoming SBI invoices gets received. When an SBI is received it can end up in either 1."Processed without errors" or 2. "Processed with errors". If the SBI ends up in the second state it requires a manual correction and then it can be processed again so it ends up in state one.
    The issue here is with number 2 mentioned above, i.e. "Processed with errors". Some of the items do not belong to this list & will not be corrected. So what client want is to delete them and here is where the problem gets in, they cannot be deleted.
    Is there any way to have these items deleted?
    Many Thanks!
    Sadanand.

    Check the following notes:-
    a)  Note 371489 - SBWAP: Posting step terminates
    b)  Note 557344 - Processing step ends with errors
    c)  Note 1605859 - FAQ: Processing step in SD self-billing procedure
    G. Lakshmipathi

  • I need to add a website to the sites which are allowed to install add-ons & have instructions to do so but do not have a yellow bar across the top of my screen in order to click on "Edit Options."

    I tried to install an update for Adobe Reader but Mozilla Firefox will not install it until I add them to the Allowed List. The first step is to click on "Edit Options" in the yellow bar across the top, but i don't have a yellow bar or actually anything that says Edit Options.
    == I needed to install an update for Adobe Reader

    The instructions on the Adobe site are outdated and do no longer apply to current Firefox versions and you can ignore those instructions and save the Adobe installer to your desktop and start the installation with a double-click on that file.
    See [[How do I edit options to add Adobe to the list of allowed sites]]

  • Outlook 2007 instead search does not show the items which are actually present in the inbox and folders

    Scenario:
    when user search for any particular email item by using the sender name or subject name it does not show any result. At the same time it works fine when he specify the search folder(target folder) instead of searching it across all the folders/sub-folders.
    1. We tried reconfiguring the outlook profile but this not fixed the issue.
    2. It is specific to only few users but so far for all the others users it works fine.
    3. Restarted the “Microsoft Exchange Indexer Service” but this is also not fixed the issue.
    4. Hence the outlook reconfigure not worked, rebuild the search index not tried yet, but will give a try.

    Hi,
    Did the user select All Mail Items scope when searching in Outlook?
    In addition, please make sure the user is not searching in a shared mailbox because in some configurations, you are limited to using the
    Current Folder search scope when searching in a shared mailbox.
    Please also let me know the result if you have tried rebuilding index.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Primary key based on multiple fields which are of a custom class type

    Hello!
    I have the following two classes.
    public class Application
    protected String appName;
    protected Set moduleOptions = new HashSet(); //Set<ModuleOption>
    public class Option
    protected String name;
    protected Application application;
    Now, I need for Option to have a composite primary key based on both its
    fields. How do I do this?
    For starters, I just need a few hints on how this should be done in Kodo
    because I already have this thing working in JPOX and that solution does
    not map directly to Kodo. JPOX defines the OptionPK (primary key class)
    to contain field ApplicationPK, and not Application. But Kodo does not
    accept this because of a mismatch between fields in class and its primary
    key class. (Not implying that Kodo should accept the same kind of
    solution.)
    Btw, I'm evaluating version 3.2.3.
    Thanks in advance!

    Viktor,
    The typical Kodo pattern for doing this is to create a private field in
    Option for each primary key in Application, map those fields as
    primary-key (but not the field of type Application), and therefore put
    those fields in the OptionPK. These fields should then be mapped to the
    same columns as the Application reference. Then, set the primary key
    fields to the same value as they are in the related object.
    Kodo allows multiple fields to be mapped to the same column in the
    database, and throws an exception if your actions would set the column
    to different values. So, typically, this might look like:
    public class Application
    protected String appName; // I'm assuming that this is the PK
    protected Set moduleOptions = new HashSet ();
    public class Option
    protected String name; // pk
    protected Application application; // not pk
    private String applicationAppName; // pk
    public Option (String n, Application a)
    name = n;
    application = a;
    applicationAppName = a.appName;
    -Patrick
    Viktor Matic wrote:
    Hello!
    I have the following two classes.
    public class Application
    protected String appName;
    protected Set moduleOptions = new HashSet(); //Set<ModuleOption>
    public class Option
    protected String name;
    protected Application application;
    Now, I need for Option to have a composite primary key based on both its
    fields. How do I do this?
    For starters, I just need a few hints on how this should be done in Kodo
    because I already have this thing working in JPOX and that solution does
    not map directly to Kodo. JPOX defines the OptionPK (primary key class)
    to contain field ApplicationPK, and not Application. But Kodo does not
    accept this because of a mismatch between fields in class and its primary
    key class. (Not implying that Kodo should accept the same kind of
    solution.)
    Btw, I'm evaluating version 3.2.3.
    Thanks in advance!

  • Prevent object link to PR items which are released

    Hi,
    I want to prevent any DIR from doing a object link to PR which is released.
    From PR side once it is released it does not allow to add any more object link but from DMS I can link to it.
    I want to avoid this. Any way to achieve this.
    Regards
    Abhi

    Hi Benakaraj,
    I am presently using the same scenario. But this does not prevent a user from creating a new DIR  and linking it to a released PR.
    I am looking for a solution to prevent the later from hapenning.
    Any help in this would be appreciated.
    Thanks & regards
    Abhi

Maybe you are looking for

  • Work Paths, selections, and general doing my job better question...

    I currently work for a company that prints "Fathead" like wall graphics, i set the images up to print for them, but im looking for a better way to do what i do. Specifically my working with illustrator and Photoshop to setup the cut line for each ima

  • Configure RAC for SAP on Oracle database

    My client has SAP installed on oracle 10g database, they want me to configure RAC so that 4 other servers will share the same database as the the production database. can anyone guide me on how to go about it I have already installed SAP on the 4 oth

  • How do i uninstall mpkg packages in Mac OS X?

    How do I uninstall mpkg packages in mac os when they are installed onto the main hard disk? For other applications I use AppZapper, what is the best method to uninstall packages that are installed by a mpkg? Thank you for any help.

  • Help needed for tabbed panels

    I'm having problems with my html pages that utilize Spry tabbed panels. The majority of them look as expected but when a page requires a scroll bar because of it's increased length, there's a noticeable shift from page to page. Almost looks like the

  • Needing a OEM copy win windows 8 for my HP pavilion g6 (dont want to buy recoverymedia)

    So i installed windows 7 and the recovery partiton got wiped to, but i want to switch back since its going very slow