How to use PROCESS_HU_INBOUND_DLVRY to pack HU to another HU

Hi Experts!
I was able to use PROCESS_HU_INBOUND_DLVRY to pack a material to an HU. I am now trying to pack the HU created earlier to another HU.
Anybody who has tried it? What parameters should I pass to the FM? Am I passing the correct ones?
i_save_step                  = 'ITEM'
i_pack_activity              = 'PACK'
i_delivery_type              = '7'
i_packing_activity           = 'PACK'
i_pack_type                  = 'MAT'
Thanks!

Hi
this may be a question  for many other developers for this reason  its better to give an answer:
to pack HU (hu1) to another HU(hu2) , before calling FM set:
i_pack_type = 'HU'
I_HU_ITEMS-VELIN = 3
I_HU_ITEMS-SUB_HU_EXIDV = HU2
I_HU_ITEMS--EXIDV = HU1
IS_ITEM_PROPOSAL-VELIN =3
IS_ITEM_PROPOSAL-EXIDV = HU1
IS_ITEM_PROPOSAL-SUB_HU_EXIDV =  HU2
rostami  reza / saphiran.com

Similar Messages

  • How to use one report column into the another report in obiee

    How to use one report column into the another report in obiee

    i dont want to use column as a filter for another report it should be report column for another report
    Thanks,
    Vivek

  • How to use iMovie 08 imported footage on another computer in iMovie 09?

    I had to import quite a lot of video from tape and had only firewire 400 cable so did it on a Mac running iMovie 08.
    Now, how can I move the imported data to another computer using iMovie 09?
    When I open iMovie 09, I can see the disk on the other computer (over the LAN) but how can I get iMovie 09 to recognise and use the data that iMovie 08 has imported?

    You can use these files, but the first time you open them in iMovie 09, they will be upgraded so they will no longer work in iMOvie 08. New cache and thumbnails files will be created.
    It is probably not working now because, for performance reasons, iMovie 09 will not work with a network drive. There are workarounds involving symbolic links. But you still have to deal with the performance issue.
    So, do you want these files to still work in iMovie 08?
    *If no...*
    Simple drag and drop these Event Folders to a locally attached external drive that is formatted as MacOS Extended (journaled). They should be placed in a folder called iMovie Events at the top level of the drive. Attach this drive to the computer with iMovie 09, and start iMovie 09.
    Note: You could also move these files to your internal hard drive if you have plenty of room. In this case, they go in the Movies/iMovie Events folder.
    *if yes..*.
    Attach a properly formatted external drive to the computer with iMovie 08. In the finder, copy (not move) the Event folders to folder named "iMovie Events" at the top level of the drive.
    Also, if you have created projects from your imported footage (the events), and you want to port your projects to iMovie 09, it gets a little more complicated. Let me know.
    Message was edited by: AppleMan1958

  • How to use one module pool program in another module pool programming?

    Hi
    I have one moodule pool program.
    In one of my screen i want to use some code which already developed in another module pool program.
    Is there any direct way for using one module pool programcode  in another module pool program.
    If there any approaches for this plz help me in this issue.

    Dear,
    If you want to use the code.
    first you can write your code in a subroutine in module pool program 1
    and then you can use it from module pool  program 2 by
    perform subroutine_name(program_name)
    using P_1
    changing C_1
    if you wan to use one module pool data into other module pool.
    so that is another requirement.

  • How to use SD_SHIPMENT_PROCESS to PACK deliveries into a HU?

    We are trying to duplicate the functionality behind the "Pack" button in the shipping document (vt03n) using the SD_SHIPMENT_PROCESS function module to associate deliveries to a handling unit.  Has anyone had experience with which structure need to be filled and passed to this function module. Any source of good documentation on this SD_SHIPMENT PROCESS FM?

    Hello Martin Rainer.
    If you are experienced in packing, please check out this thread. It drives me wild.
    The specified item was not found.
    Re: SD_SHIPMENT_PROCESS Reassign HUs

  • How to use value of Report Rows for another Item heading (interesting)

    Hi!
    This seem to be interesting question.
    I have a classic report which has 4 rows with date values. The Row1 has Date1, Row2 has Date2 and so on.
    The report is structured like this
    DATE_COL COL1 COL2
    Row1 Date1 100 101
    Row2 Date2
    I want to use the values of DATE_COL of ROW1 which is Date1 in the label of ITEM1 which can be on same page or different page.
    Also I want to sue the value of DaTE_COL of ROW2 which is Date2 in the label of Column 1 of Report 2.
    How to accomplish this? Appreciate your suggestions.
    Thanks,
    --CP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    cpora007 wrote:
    Hi!
    This seem to be interesting question.
    I have a classic report which has 4 rows with date values. The Row1 has Date1, Row2 has Date2 and so on.
    The report is structured like this
    DATE_COL COL1 COL2
    Row1 Date1 100 101
    Row2 Date2In your report attributes of DATE_COL column > add column link as follows
    Link Text: #DATE_COL#
    Target Type: URL
    URL: javascript:alert('#DATE_COL#');
    And set the Display as property to Standard Report Column
    Now when the link is clicked you will get the alert with corresponding value
    Next step is to set the value as the label of your item.
    If it is on the same page
    -- Use javascript to set the label
    If its on a different page then you will need to pass this value to that target page and set the label using *&P1_MY_ITEM_NAME.* syntax
    See this to learn how to pass the value in URL http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_url.htm#HTMDB03017
    I want to use the values of DATE_COL of ROW1 which is Date1 in the label of ITEM1 which can be on same page or different page.
    Also I want to sue the value of DaTE_COL of ROW2 which is Date2 in the label of Column 1 of Report 2. You can sue if you are in England! :)

  • How to use PropertyChangeSupport for a bean from another bean

    Hi all,
    I have a bean A that doesnot implements the PropertyChangeListener or have a PropertyChangeSupport as one of its member and I cant change its design. I want to fire an PropertyChangeEvent when a property is changed. I added A to PropertyChangeSupport of another bean B. The problem is that even if the Property of Bean A is changed it doesnot fire a event. Can anybody let me know how to do it?
    Thanks,
    Amit

    You need to wrap bean A inside another bean (B) that
    implements the accessor and mutator methods of Bean A
    and adds property change support in those methods
    where appropriate. You hide the actual instance of
    bean A inside an instance of bean B so no instances of
    bean A are visible to the application.This is OK, unless you don't want to change all places where A is referenced. You could subclass B from A, as long as the accessor and mutator methods are not final. Of course, instantation still has to know about B and you will have to cast to B, or use reflection, to add and remove the listeners.

  • How to use upgrade for primary number on another number

    The primary phone on our family contract is eligible for an early upgrade now but we want to upgrade the other phone.  Can this be done online or must I go to a Verizon store to do the switch?
    As an aside, I want a smartphone so I can have a single device rather than a phone + Palm Pilot.  I'm not really interested in a data plan, but it is required for a smartphone.  Having read some of the postings, I know I'm not the only one annoyed by the requirement to have a data plan with a smartphone. 

    orchid wrote:
    The primary phone on our family contract is eligible for an early upgrade now but we want to upgrade the other phone.  Can this be done online or must I go to a Verizon store to do the switch? To use your annual upgrade, the easiest way will be to just upgrade as normal online or over the phone.  When the new phone arrives, activate it briefly on the primary line following the instructions included with the phone.  Once it's activated, you will have accepted the terms of your new contract, and you can re-activate the phone that was previously on that line by dialing *228 and selecting option 1 from the old phone.  The new phone will now be available to activate on any Verizon line you would like.
    As an aside, I want a smartphone so I can have a single device rather than a phone + Palm Pilot.  I'm not really interested in a data plan, but it is required for a smartphone.  Having read some of the postings, I know I'm not the only one annoyed by the requirement to have a data plan with a smartphone.  Yes, it is annoying.  There's nothing you can do to get away from it though, so you'll just have to decide if carrying one device is worth the premium of a $15 or $29.99 monthly data fee.

  • How to use one Web Dynpro DC into another Web Dynpro Dc

    Hi All,
    I am trying to learn the usage of DC but I am unable to find a basic tutorial on this topic. I found a few tutorial and few blogs too, but none of them explains topics like:
    How to call child component methods from parent component and vice versa too if possible?
    Can somebody please provide me with a basic tutorial on this topic.
    Regards
    Sid

    Hi,
    Go through the Componentization tutorials
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/bd0e0401-0801-0010-aaab-d0e1742da383 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/751d003a-0b01-0010-8996-afbaa3fd5339 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#comp
    Regards,Anilkumar

  • How to use a db link created in another schema to another schema?

    Hi ,
    How to access a dblink in y schema when the link is created in x schema?
    Thanks in advance.
    Paritosh Sharma

    And to add to Toon Koppelaars, you could create a synonym in X schema for the table you would like to access via DB link and grant required permission on the synonym to the Y schema.
    hi i don't think making it public will resolve the issue.If you can make it as a public DB link, then it can be access from all the schema's and not just from Y and X. But you should consider security reasons.
    Edited by: Prazy on Jun 16, 2010 3:13 PM

  • How to use the system recovery after add another SSD?

    Dear all,
    I got a Zbook14 with 1TB HDD with Windows 7 in default. Soon after I received it, I added an M.2 256Gb SSD and migrated my system drive to the SSD. 
    After an malfunction of the HP Client Security that encrypted my system drive (in SSD). I used the HP recovery tool to reset the computer into the default factory status... This action, which I can not select the harddrive during the recovery, wiped my oroginal system paratation (now the data drive) in the 1TB HDD, and thus I have to migrate the system again (not mentioning the data in that partation..).
    I wonder if I can change the target drive for the recovery? I did not move the original HP partations from the HDD to SSD. Only the system partation is moved to SSD.
    Thanks. 

    You don't have any option in terms of changing the target drive for an HP recovery performed by the HP recovery manager.
    It is scripted and there is nothing that you as the user can change other than selecting the type of recovery desired.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How to use OEM to moniter sql server 2000

    Hi,
    I need to learn How to use OEM to moniter sql server 2000.
    Can anyone help me and give me some website or documents
    to read?
    So I can learn to do this job.
    Thanks.

    See Note 115302.1 in Metalink.oracle.com
    in how to use OEM Diagnostic pack addon for SQL Server
    Or search for
    oem "user events"
    to build your own monitor script.

  • How To use JVM (not CreateJavaVM)??

    Using JNI, I want to call the java class from C..
    Generally, I use "JNI_CreateJavaVM" method to create JavaVM's instance.
    when it continually call C execution file,
    it use much memory owing to creation of much JavaVM's Instances.
    1. I want to know how to use before create instance
    without creats another instance using "JNI_CreateJavaVM"
    2. I want to know how to use JavaVM that only create one it's instance.
    Any examples would be appreciated.
    Thank you very much.

    Hi,
    try to create one C thread for every Java application that you have to start. See http://java.sun.com/docs/books/tutorial/native1.1/invoking/invo.html file attach.c
    I.E. (hp-ux):
    pthread_create()...
    jvm->AttachCurrentThread((void **)&env,NULL);
    jobjectArray joa = env->NewObjectArray(argc, env->FindClass("java/lang/String"), NULL); // Parameters....
    jclass cls=env->FindClass("your class");
    jmethodID mid=env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
    [env->RegisterNatives(cls,pmethParGui,1);] JNI CALL
    env->CallStaticVoidMethod(cls, mid, joa);
    jvm->DetachCurrentThread();
    pthread_exit...
    If your Java application use static memory, your memory will be shared.

  • How I can use my family pack Microsoft Office Home

    How I can use my family pack Microsoft Office Home & Student 2010  PC software on my  current Mac Notebook?  Since my new operating system is "OS X" technically I wouldn't have such a issue, but it does & I couldn't run the office 2010.  By using iZip Unarciver only I was able to open the disk, but not to run 2010. 

    You have two choices if you want to use Office:
    1) purchase Mac: Office 2011
    2) install Windows on your Mac and use the Office 2010 you own

  • How to use outside Class in packed library plugins

    I have found the very useful article from Michael Lacasse (https://decibel.ni.com/content/docs/DOC-19176) on how to use packed library as plugins. This approach makes the most sense when you try to distribute additional code after your executable has already been installed.
    My problem is that when I try to use a class from the main code in a plugin, the plugins won't work anymore. Ideally, I would have liked the parent plugin-interface to inherit from a class used in the main code, or using the class as an input parameter of the plugin would be the next best thing.
    I got several errors, some at execution time (#1448) or at edit time ("This VI does not match other VIs in the method: connector pane terminal(s)"). I have settled to use clusters to pass data to the plugins.
    My question is: Is it possible to use a class defined in the main code in a packed-project-library, either inherited or as a parameter? If yes, do you have any example?
    Marc Dubois
    HaroTek LLC
    www.harotek.com
    Solved!
    Go to Solution.

    I should point out that it's important to use the copy THAT'S IN THE PPL, *-NOT-* the copy from your source.
    It will compile if you mix them together, but they aren't the same object, and won't share data.
    You should never refer to your source code for the class, except to build the PPL.
    (Consider using a separate project, to avoid temptation).
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

Maybe you are looking for

  • How do I require a password to print?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • NOKIA n80 firmware update version v5.0725.0.1 APAC

    buddy i update my nokia n80 firmware from v5.0719.0.2 to v5.0725.0.1 APAC guys the new firmware has small fonts it is not good.further iam looking for other changes in log any news regarding EMEA version.hope nokia corrects this problem Solved! Go to

  • RE: Vendor Sales in Report

    We sell variants article created under generic article. The POS sales captured the variant articles. The articles belonging to which vendor is current maintain under Purchase info record. However, in the case of variant, the pricing is maintained usi

  • Why i can`t setup my email on my 8520 CURVE

    I can`t setup my email help if (!$CURUSER){ require_once('main.php'); exit; stderr("Error", "Singura modalitate sigura de a nu gresi este sa nu ai idei noi."); header("Location: $BASEURL/"); die}; else stderr("Error", "In viata nu e important sa ai c

  • If i upgrade to lion, will my apache, mysql settings remain intact?

    Will these configs remain inrtact or will i need to reconfigure all my local settings? Hoping to upgrade from Snow lepoard..