SAP Auxillary Packaging Materials

Hello,
Auxillary packaging material can be used to supplement the packaging in a HU. Has anyone used this and if you can let me know how to use this in the packaging screen for outbound delivery.
I know I have to create a packaging material type which has a packaging material category as 'Auxillary material'
How does this have to be handled in the packaging screens.
I have an HU - Pallet. I am looking at addign an auxilllary material to be added to the HU(Conatiner)
Thanks ,
SL

Hi Kota sandy,
Implementing cross-system processes is accomplished through SAP Exchange Infrastructure (SAP XI) . It enables you to connect systems from different vendors (non-SAP and SAP) in different versions and implemented in different programming languages (Java, ABAP, and so on) to each other.
You can get the SAP XI material from that links
http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
IF USEFULL GIVE REWARDED POINTS

Similar Messages

  • In Supplier View SNC Packaging Materials F4 help has no values

    Dear Friends,
    While creating ASN and subsequent HU: In Supplier View SNC Packaging Materials F4 help has no values. Although this material/ product exists in customer location.
    Thanks and Best Regards, Manoj

    Hi Manoj,
    Click below link this may help you
    http://help.sap.com/saphelp_snc70/helpdata/EN/46/7542dd6d8c69dfe10000000a11466f/frameset.htm
    In our system i am able get packaging material when i press F4 after maintaing data in packaging tab.
    When i create ASN then click on package button then click on Create HU and then go to Packaging material field and press F4 i am able to view packaging material data.
    I am sure you have assign this material location to model 000 but just check.
    Let me know if your issue is resolved.
    Thanks,
    Nikhil

  • Sale Packaging Materials - VERP via Stock Transp. Order - UB, or Sales Ord.

    Hi,
    Could you please advice is there a way to sale only packaging materials (Item Category Group: VERP)?
    Thanks,
    Marian

    Hi,
    The material type is PACK (Item Categoy Group: VERP). I can't change it because I have existing stock in Valuation Area, and Plant Level and s.o. (tr. code MMAM).
    When I create STO - UB there isn't problem. The problem is when i try to make Goods Issue of subsequent Delivery. The the system give me this error message:
    000001 VV4400100022       CARTON 560X390X400 SOTINI                               1  EA
           E KI 235
           Account 6101600 requires an assignment to a CO object
    Thanks,
    Marian

  • Hu_packing_and_unpacking of auxiliary packaging materials

    Hello Gurus!
    I am trying to add auxiliary packaging materials to HU with HU_PACKING_AND_UNPACKING and this one works fine (I can see material and quantity added to VL32N->Pack screen, and relevant entry in table VEPO is created). The problem is, that when I do it with VL32N and I provide the transaction with PSTYV (Item Category), WERKS (Plant) and LGORT (Stor. Location) a new position in delivery is created and POSNR_GEN is filled with its value.
    I am unable to do the same with HU_PACKING_AND_UNPACKING. I provide FM with is_packing_request-werks, -lgort and -pstyv but the delivery positions are not automatically generated and assigned. Only LGORT gets filled with supplied data ... other fields (WERKS, PSTYV) not and of course POSNR_GEN stays empty
    Any ideas how to make it work from FM as it works from T-Code?
    Regards,
    FS

    I have tried HU_PACKING_REFRESH ... but it is not working as supposed

  • Can i use the SAP standard package for lock object creation ?

    Dear Guru ,
    I want to create a new lock ojbect for my abap program .
    When i completed the creation , SAP required a new request and it said the object only can be imported to SAP standard package .
    But i saw the help from SAP said :
    >* Package begins with A-S or U-X:
    >These packages are for SAP standard objects. Customer objects cannot be created in them. Changes to objects of these packages are recorded by the Transport Organizer (Request management) and can be transported (see field transport layer.
    In this case ,  Can i use one of the SAP standard package for this creation ? Does it will affect the SAP system ( such as the system upgrade ) ?
    Thanks .
    Best Regards,
    Carlos Zhang
    Moderator message - Please do not use code tags to format text - it should only be used for code
    Edited by: Rob Burbank on May 25, 2010 11:12 AM

    Hi Carlos...
    First , You will never be able to use any standard SAP Package for your custom programs. So don't go for it.
    So in your case what you need to do is , when you save your Lock object , 
    - if you want Transport request to be created , then 
    in the screen shown you need to enter the Z package name (the same package as that of your ABAP Program)
    or
    -if you want it to be stored as local object , then
    specify package as $tmp
    Regards,
    Uma

  • Generate delivery items for packaging materials but aggregate in one line

    Hy, we have a requirement for delivery process, we have WM and we make picking by RF, and automatic generate items for packaging materials, but one line per pallet and the deliveries have a lot of line items that we want to aggregate in only one line item, instead of having for e.g. 30 lines with one pallet we need to have one line item with quantity 30.
    can you help us,
    Thanks in advance.
    jonh

    Hi,
    You can very well achieve this by usinh a spilt routine in your copy control from sales document to delivery document.
    Goto tcode: VOFM - Data transfer - deliveries.
    For this you need to write a routine with the help of  your ABAPer & to include logic something like this:
    You have to identify some unique feild in the two material or even the material code itself.
    Then in the routine logic, you pass this feilds in the combination criterai field in delivery that is "ZUKRL"
    Then in copy control sales doc to delivery: you attach this routine in header details in data transfer "Header Data"
    See the code below for your help:
    SELECT SINGLE PRAT1 PRAT2 PRAT3 PRAT4 PRAT5 INTO (MVKE-PRAT1,MVKE-PRAT2,MVKE-PRAT3,MVKE-PRAT4,MVKE-PRAT5) FROM MVKE
                      WHERE MATNR = CVBAP-MATNR
                      AND   VKORG = CVBAK-VKORG
                      AND   VTWEG = CVBAK-VTWEG.
    IF NOT MVKE-PRAT1 IS INITIAL.
    ZUK1-C+0(1) = 'O'.  "FOR OIL
    *LIKP-ZUKRL = ZUK1.
    ENDIF.
    IF NOT MVKE-PRAT2 IS INITIAL.
    ZUK1-C+0(1) = '1'.  " FOR FRAGILE 1
    *LIKP-ZUKRL = ZUK1.
    ENDIF.
    IF NOT MVKE-PRAT3 IS INITIAL.
    ZUK1-C+0(1) = 'N'.  " FOR NON FRAGILE
    LIKP-ZUKRL = ZUK1.
    ENDIF.
    IF NOT MVKE-PRAT4 IS INITIAL.
    ZUK1-C+0(1) = '2'.  " FOR FRAGILE 2
    LIKP-ZUKRL = ZUK1.
    ENDIF.
    IF NOT MVKE-PRAT5 IS INITIAL.
    ZUK1-C+0(1) = 'B'.  " FOR BULK / OVERWEIGHT
    LIKP-ZUKRL = ZUK1.
    ENDIF.
       LIKP-ZUKRL = ZUK1.
    CONDENSE LIKP-ZUKRL NO-GAPS.
    endif.
    Hope this helps you
    Regards,
    Dhananjay

  • Quantity and Value consumption for Packaging Materials

    Dear Experts,
    My client having retails stores all over India and there is problem in packaging materials consumption. Now we are followed below mentioned process. We have created STO supplying site is ABC to receiving site is 9999.After PGI the same one accoutning entry is posted like
    Packaging Consumption account Dr.....
    Packaging material......................Cr...
    Here value is nulfying.Quantity is updated in 9999 Plant;Business need that same quanityt also nulify at the time of PGI automatically.
    Please suggest
    Best Rgds
    SumaMani

    Dear Praveen,
    Packaging material getting credited in ABC distribution channel and also Consumption account getting debited in my store 9999.However there is no value in my store for packaging materials,but quanity is showing is showing in 9999 books. (MB52)
    That is not required to business. Business would like to treat quanity is consumed at PGI
    This internal report purpose
    Best Rgds
    SumaMani

  • Subcontracting of Packaging Materials

    Hi Gurus.
    1) What are the essential and characteristic views and fields of packaging material in Material Master?
    2) If Subcontracting of Packaging Materials is involved, then is handling unit invloved? if yes, can you please explain in details how is handling unit involved in this case?
    3)Is GR an internal or external document? I mean when truck comes with the goods, what document does truck driver bring with him?
    Itls urgent!! Please help
    Thanks,
    Kumar

    Hi,
         The GR is an internal document....Whenever the truck driver comes....he has the paper described details about invoice price for the given delivery of the material...which is provided to you for checking....pls do insert these details only if you have full faith on the vendor ie. abt delievered qty...price charged etc....
    Your answer to first question is :
    VERP (packaging materials)
    Packaging materials are used to transport goods and come with the goods free of charge. A material master record of this material type is managed both on a quantity basis and by value.
    Hope it helps....
    Regards,
    Priyanka.P
    Further answers will be updated....
    AWARD IF HELPFULL

  • Packaging material type and packaging materials

    Hello all,
    I would like to know how to generate specific means of transport based on packaging material type and packaging materials.
    Thanks,
    Maxx

    can we know answer for your qtn?

  • Total Volume of HU Packaging materials/Containers not being updated

    Hello Guys,
    I've just noticed that when a pack some materials or sub HU into another HU (packaging materials/containers), its total volume is not being updated. Well I assume that the total volume must be the sum of the volume of its contents right? But in my case, the total volume is not being displayed (it shows a value of "zero").
    Then I have observed in the material master record of the HU packaging material, the value for its volume is zero and its unit of measure is empty.
    Then I check the HU contents (the one that I packed in the HU containers), they have values for their volume, the unit of measure is present as well.
    Do you guys have an idea why these behavior occurs? I'm thinking if I could just enter a unit of measure for the HU containers even if the value for the volume is zero. Well I just need some confirmation/validation from you guys.
    Thanks for your help!

    We use the UOM "EA" in our packaging material master data and the volume is getting updated in the deliveries.
    I believe there are numerous setting that must be maintained but I can tell you that we do use UOM for packaging materials

  • SAP HR Course Materials

    Hi All,
    Can someone send me the SAP HR course materials?
    Thanks
    Anand

    hia anand on which module
    http://www.sapbrainsonline.com/TUTORIALS/FUNCTIONAL/HR_tutorial.html
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    http://www50.sap.com/useducation/certification/curriculum-rid=565.asp
    http://www50.sap.com/useducation/certification/curriculum-rid=565&vid=5.asp
    pls check these links and let me know if u wan any thing else

  • SAP XI BASIS materials

    hi
         plz can anyone send me the SAP XI BASIS materials..its very urgent if u can send me ASAP.. thanx in advance...

    Hi Kota sandy,
    Implementing cross-system processes is accomplished through SAP Exchange Infrastructure (SAP XI) . It enables you to connect systems from different vendors (non-SAP and SAP) in different versions and implemented in different programming languages (Java, ABAP, and so on) to each other.
    You can get the SAP XI material from that links
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    IF USEFULL GIVE REWARDED POINTS

  • Spreadsheet of SAP Business Packages

    Has anyone come across a Spreadsheet of SAP Business Packages ?
    I managed to get hold of one last year, but can't find any obvious place in SDN or Service Marketplace where I can get an updated copy.
    Thanks

    You can download the latest excel on Portal Business Packages from here -
    Predefined Portal Content Integration
    Predefined Portal Content Integration

  • Default Sites and subscriptions with SAP installation package

    Hello,
    Does anyone knw what are the default Sites and subscriptions provided with SAP installation package - i.e. in client 000, 001.
    Rgds
    Priyanka

    You can go to Tcode SMOEAC and check.
    Pls reward points if helpful.
    PB

  • Change the SAP Script Package

    Hi,
    How to change the SAP Script Package..when i use option copy from client option, it ask for a package but after copied it shows in the $TMP package...
    how can i change it.
    Regards,

    Hi,
    Goto SE80 --> select LOCAL OBJECTS from the drop down and hit enter.
    You will be displayed a list of all local objects.
    Locate your SAP SCRIPT --> right click on this script name --> click More Functions --> click Change Package Assignment and you will be prompted for a package name.
    Give new package name and click done.
    Your script is now assigned into the specified package.
    Regards,
    Tarun

Maybe you are looking for

  • Can i add a solid state drive to my late 2006 macbook

    Got a dumb amateur question. I have a 120g hard drive in my late 2006 macbook and two 2 one gig memory cards upgraded from apple when purchased. Can i upgrade to a SSD and more memory on this mac? Can it be done on a amateur level. Is it worth it?

  • Information about javascript in pdf forms

    Hello folks. Could anybody tell me where i can find information about application javascript language in pdf forms? I've visited adobe.com and found a lot of pdf articles but they are really useless. I want to find about object model of pdf form, abo

  • Dynamic Text

    I'm using dynamic text and in works fine until I refresh the page. After I refresh it displays all the html code and instead of rendering it.

  • Sap pi certification

    Hi, I am ready to take up the PI 3.0 certification. I heard that partial marks are given to partial answers. is that true? thanks, murali.

  • Validate "work e-mail" from user information list --give me wrong result

    How can I validate the user "work email" from User Information List is working properly? I am following this >> http://social.msdn.microsoft.com/Forums/sharepoint/en-US/e4d41f77-c7e4-40ef-b85f-de7f972f2a3f/allow-submitter-see-only-the-items-that-are-