Auto Population of number of packages field in the delivery document

I have a requirement wherein the number of packages field (LIKP-ANZPK) field needs to be populated automatically in the delivery document. I have maintained the packing instruction(POP1) and assigned the instruction to respective material(POF1). Is there anyway that standard SAP calculates the number of packages from POP1/POF1 and populates it into the delivery document?
It would be helpfull if someone can let me know if this scenario is possible via standard SAP config? If yes what other configs should i setup?
Thanks,
Harish

As far as i know SAP does not perform this calculation based on POP1/POF1 and this is not controlled in Configuration.  It is simply performed automatically by the system by calculating the number of HU's in the "Pack Screen" of the Delivery.
thanks,
A

Similar Messages

  • In SD i am looking to add some custom fields to the delivery document.

    In SD i am looking to add some custom fields to the delivery document. can any one help me out.

    hi,
    u have get the access key for the program with respective to the delivery document & user exit has has to done.
    This is job of abaper
    regards,
    Arun prasad

  • Add new field in the delivery document

    Dear Guru ,
    I want to add one Field  in the delivery document and that should be open after PGI done .Can you please help how to create one additional field in the delivery document.
    Thanks in advance ..
    Regards,
    Abhijit ...............

    Dear Abhijit
    Even after doing PGI, there are some fields which are in editable mode in delivery.  For example, in VL02N, if you select "Goto --> Header --> Shipment, you can see fields like Bill of Lading are in editable mode.
    If you specify what your requirement is, then probably, a better option can be given.
    Thanks
    G. Lakshmipathi

  • Population of Number of packages field(LIKP-ANZPK) in delivery document

    Hi,
    We have a requirement from our client that the number of packages field needs to be populated in the delivery document automatically.
    Scenario:
    The plant is a warehouse managed plant. The delivery document will be created and the TO will be created automaticaly and confirmed. On confirmation of the transfer order the delivery document should be updated with the number of packages field.
    We have setup the packing instructions using POP1. The number of materials in one carton will be mainatined through POF1(O/P type STOC with condition record for material/PLant/Sloc)
    We need information on any standard SAP program which will calculate the total number of cartons/Packing boxes required for the materials specified in the delivery document and this should be populated in the number of packages field in delivery document.
    Would appreciate help from someone who has worked on such a scenario.
    Thanks,
    Harish

    Hi,
    If you use pick and pack LM45 to pack the items as you pick when the TO is confirmed this field automatically updates with the number of HU used and you get an accurate packing hierarchy.
    James

  • Additional field in the 'Add document' subscreen while creating a Solar doc

    Hi Forum members,
    I need to add additional fields in the 'Add Document' sub-screen that appears when I create documents in SOLAR01.
    The subscreen currently has 'Title', 'Documentation Type', 'Status' and 5 radio buttons for 'Object type'.
    Please advise.

    Hi,
    I doubt if we have any option to add additional fields in that screen.
    What additional fields are you planning to add?

  • Disable Payment Term field in the Marketig Document

    Hi everyone,
    I would like to ask if I can make a particular field in the marketing document be active but disabled without having to modify it using SDK? I would like to make the Payment Terms field in the Accounting tab of the AP Invoice to be disabled from the user so that he cannot change the default value during encoding of invoice. If it is not possible what workaround can you suggest.
    Any help will be appreciated. Thanks
    Malu

    Hi,
    for further infos about Coresuite u may have a look at their homepage :
    http://www.coresystems.ch/coresuite-customize.html?&L=2
    We bought Customice & Designer. Customice enables you to change the hole forms, create new tabs eg. in BM Master form or to hide fields. The designer is a very nice form editor, much easier than XL Reporter and more powerful than pld.
    Regards Steffen
    P.S. I am not a employee of coresuite

  • Digitally Sign All Signature Fields in the Active Document

    I have a script which will sign a single digital signature field by the field name.
    I need to revise the script so it will sign multiple/all signature fields in the active document without having to put the field name in the script, as the field names will vary with each document.
    Can anyone please advise how to modify the script to sign all fields in the active document regardless of the field name?
    function myOtherTrustedFunction()
    app.beginPriv();
    // Get and login to security handler
    var oSigHdlr = security.getHandler( "Adobe.PPKLite" );
    oSigHdlr.login( "123","/c/Documents and Settings/name/Application Data/Adobe/Acrobat/10.0/Security/FirstNameLastName.pfx");
    // Setup Signing Properties
    var chk = this.getField("Checked");
    if (chk != null) {
    // Apply Signature and save back to original file
    var bRtn = chk.signatureSign({oSig:oSigHdlr, bUI:false, oInfo:{password:"123"}});
    app.endPriv();
    Any assistance will be most appreciated.

    Thank you for your help, the script will now count only the signature fields which have not been signed.
    I have added the second part of the script to then sign all of the blank signature fields.
    The script is only signing one of the digital signature fields instead of all of the blank signature fields.
    Can you please advise how I can modify the script to sign all of the blank signature fields?
    var count = 0;
    for (var i = 0; i < numFields; i++) {
        // Get the current field object
        f = getField(getNthFieldName(i));
        // If it's a signature field and not already signed, increment counter
        if (f.type === "signature" && !f.value) {
            count++;
    var myEngine = security.getHandler( "Adobe.PPKLite" );
    myEngine.login( "123", c/Documents and Settings/name/Application Data/Adobe/Acrobat/10.0/Security/FirstNameLastName.pfx" );
    // Sign the field
    f.signatureSign( myEngine,{password: "123"});

  • How can I lock the NumAtCard field in the marketing document screen

    Dear Experts,
    Is there any way I can lock the marketing documents' (say Goods Receipt PO) BP Ref Number field? meaning if there are already values in the field, I do not want any users to change it.
    Please help!
    Warmest Regards,
    Chinho

    Hi Chin,
    There are two options to resolve your problem i.e. using DI SDK code and SP_TN.
    if you want to to use SDK code, it requires big effort except you have a good programmer.
    if you using SP_TN, you could use this following sample:
    if @transaction_Type in ('A','U') and @object_type in ('20')
    begin
            if exists (
                    select a.DocEntry
                    from OPDN a inner join OPDN b on a.numatcard=b.numatcard and
                                            a.DocEntry<>b.DocEntry
                    where @object_type = '20' and (coalesce(a.numatcard,'')<>'' and (year(a.docdate) =
    year(getdate()) and year(b.docdate) =year(getdate())))
                            and a.DocEntry = @list_of_cols_val_tab_del
            begin
                    set @error = -1
                    set @error_message = 'BP ref no. has been used'
            end
    End
    The above query SP is to block the use of last year BP ref no. I also have modified so that not only last year but even yesterday.
    You can modify it by your own way.
    Rgds,
    JimM

  • How to update Reference field in the clearing document

    Hi Friends,
    While accounitng for billing document for sales Reference Key 2 is used for a data.
    Now when the payment is recieved from customer and accounted, how to update the Ref 2 automatically from the primary document.
    Pl, suggest.
    Thanks
    NNS

    Hi Robert,
    Thanks for answering.
    I am looking at Ref 2 should flow automatically to clearing document from the accounitng document for billing.
    Ex: Billing document is created and accounted. Ref 2 is AB
    Now when receipt is accounted for this biling document this AB should flow automatically to Ref 2 field.
    Thanks
    NNS.

  • Finding Purchase Order Number through the Delivery Document

    Dear all,
    I'm doing an EDI 856 ( ASN / Shipment Notice) and I need to know how can I find the PO Number if I only have the Shipment (Delivery) number.
    What I wanna know is the relation between PO and Delivery Document.
    Best Regards,
            Eduardo Arruda Pimentel.

    Hi Eudrado,
    There is no direct relation.
    Technically, the relation between PO and delivery is many to many i.e. one PO can be related to multiple deliveries and many POs can appear in single delivery..this depends on your business scenario.
    for ex., one sales oder might be split into multiple deliveries or many sales orders can be merged into one delivery.
    In this case, you can consider searching table VBFA by item number also..as VBKD contains line item number also.
    Regards,
    Raghu.

  • Custom field to add number of packages shipped along with Delivery

    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

    Hi All,
    We don't want to use BOM options.
    I have also checked "No. of packages'` at header level but my requirement is at item level.So we are also exploring the option of  APPEND  standard table and add this field.
    Kindly let me know  if we can do it without Appending standard table.
    Regards,
    Field to add to enter number of items which are  shipped to customer 

  • Populating values in a dropdown field on the interactive form using WD ABAP

    Hi All,
        I want to populate values in a dropdown field( of cardinality 0:n ) on interactive form,The values which i want to populate is from a 'z' table which i have created.I used a select query to fetch the entries but on my interactive form the values are flowing in many rows and not in the drop down.I want all the values to be in the dropdown.The dropdown is not showin even one value under it.I am using webdynpro abap and controls from webdynpro native.Can anyone guide me on this with a step by step procedure.
    Useful suggestions will be rewarded.
    Thanks and Regards,
    Srividya.

    You mean in PFR of controller , ie after user selects a record from LOV window and after its populated back into to the textItem on the main entry form ??
    The value is displayed correctly in the intended textItem which has viewInstance and viewValue attached to it .
    so this is what setup looks like
    Entry form
    Customer Name - lov
    Customer Number(d) - Display Only - Populated by Lovmappings from LOV - mapped to Customer Number attribute on LOV window. It also has viewInstance and ViewAttrib assigned to it .
    Save Action
    At this point of time , i am assuming i already have value in Customer Number(d)since its displayed on the screen,rite ??
    or Do i have to take the value in formValue and then explicitly do a setAttribute to set that value to view object /Customer Number(d)
    hope this helps to understand the scenario

  • Only the Largest number from a field in the details section

    I have one field that contains numbers dictating the number of entries in an assignment i.e. A call can be assigned to one person at a time, and once a call has been dealt with by a person they can close it or resign it to someone else......every time a call is assigned it gets and number.
    So if it is not assigned, then = 0
    Assigned once, then = 1
    Assigned twice, then = 2
    Assigned three times, then = 3
    Etc
    How can I run a report to only show me the details of the highest number?

    Hi,
    Formula for restricting records
    Similiar post..Check it out.
    Regards,
    Salah

  • Selecting just text fields throughout the entire document when editing forms in Acrobat Pro XI

    I edit PDF's all day and it is seriously time consuming to edit the properties of text fields when you can only select a few at a time due to other elements (checkboxes, radio buttons etc.) prohibiting you from simply "Selecting All" elements and editing them all at once. I do not want to change the Appearance properties of all elements, just all of one type throughout the document. Is there a way to do this?
    Long story short I would like to just edit all text fields at once, then all checkboxes at once etc.
    Thanks for you time!
    Sean

    In the form edit mode, one can order the display of the fields by "name" or "tab order".
    If I sort the fields by name order and then use the control key and left mouse button, I can select various field names and the right mouse click brings up the context menu and I can then select the "Properties" option and I now have the 5 tabs for the common properties for the selected fields. I believe using the control key and the left mouse button is the usual method for selecting specific items in a  window listing.

  • Combining two form fields from the same document, into one form field?

    I have a field called "first name" and one called "last name".  How do I create a third field called "full name".  I want it to just combine the first two.  Any ideas?

    In the field's calculation tab (under Custom Calculation), enter:
    event.value = this.getField("first name").value + " " + this.getField("last name").value
    Message was edited by: try67
    Forgot to paste a part of the code...

Maybe you are looking for

  • XPERIA Z -What kind of service/SUPPORT standards do you have? Is there any at all?

    Hi guys. Hello sony mobile people. My name is Isaiah and I'm from Manila, Philippines. I am a solid sony fan boy for morethan 10 years now (mobile phones). Or maybe was a solid sony fan boy. Not until yesterday happened. 12/17/2013.  I heavily suppor

  • IPod Nano Woes

    I have 3 iPod Nanos and an iPod Touch. One of the Nanos is not being recognized by iTunes on two different computers. The other three are working fine. When I connect the one that is not working to Windows XP, it is seen by Windows, but not by iTunes

  • SRM 4.0 (oracle 9.2) and ECC 6.0 (oracle 10.2) compatiblity

    Dear Experts, have a question reqarding compatibility of SRM 4.0 (SRM SERVER 500) on Oracle 9.2 with ECC 6.0 (Oracle 10.x). Currently we are on SRM 4.0 (Oracle 9.2) and R/3 4.6c (oracle 9.2) and we wanted to know if SRM 4.0 will work with ECC 6.0 on

  • Document category name for Standard Invoice is in disable mode ples urger!!

    Hi All, when i am creating the invoice in invoice work the document category is in disable mode. I did all the required setups but it is not allow me to enter document category. Version is 11.5 Regards, Raju. Edited by: 956206 on Sep 5, 2012 3:34 AM

  • Well-used iMac suddenly turning off

    My not-so-new 20" iMac is turning off on me. I have used this computer, many hours a day, for several years now. For the past 20 months, I've lived in an apartment with old outlets that haven't been replaced, and don't have great contact with the ele