Why cannot copy routine of shipment be used to transfer delivery data?

Hi
i create new copy routine for shipment to transfer some data of delivery (such as; shipping cond). I would like to use copy routine rather than user exit.
Who have the best solution , please tell me.
Best Regards,
Autsnee P
Message was edited by:
        Autsnee Phuangchaisri

Hello.
As the standard of SAP provide us to be able to copy data from Delivery by routine only : FwdAgent, Route and Deadline, so if you would like to copy other datas from delivery , you can use the user exit : EXIT_SAPLV56F_010 to copy other datas from Delivery to Shipment.
You can see the note no.387541
Autsnee P.

Similar Messages

  • Why cannot I take unflipped selfie picture using front camera in IOS 8?

    Why cannot I take unflipped selfie picture using front camera in IOS 8? In IOS 7, I can do that.

    I misunderstood your question. By load I thought you meant from the time you take the picture to how long it takes to appear in Photos.. I have no problems with a delay when I want to view photos already in the photos app. If this makes any difference I'm using the new iCloud photo Library but still keep full copies of the photos on the device.

  • Cannot copy files from my network using finder

    If I try to copy files from my NAS or my PC to my Macmini running Leopard, I cannot copy files that are larger than 64kb. Otherwise I get an error message. Interestingly, if I use the cp command in the console instead, he can copy the file, but the file is corrupt in the sense that it is smaller than the original and not working. Weirdest thing is that I can access the same files from itunes or iphoto or vlc or whatever. Any ideas?

    After the update I cannot connect to my router anymore
    (see other threat)

  • Cannot copy file, file is in use

    Macbook pro 13 mid 2009 with Yosemite fresh install. (i have the same problem with the old MacOSX).
    When i try to copy a file, or a bunch of files, to the wdtvlivehub i have the message error "cannot copy file, the file is in use".
    I try the following:
    - in the wdtvlivehub activated the DNLA, WINDOWS and Itunes Server (and the linux).
    - try both via wifi and ethernet
    - repair permission on disk
    - deactivate the show miniatures on the mac and on the wdtvlivehub
    - drag & drop the file and cut e copy via keyboard or with the right click of the pad or mouse
    - connect the wdtvlivehub via SMB, CIFS
    - Try with AFP but i get a error message
    - with an app i search for a program that block the file but it didn't find anything
    -Basically i try everything suggest in this board and over the web but nothing resolve the problem.
    The file sometimes been copied but i have to try a billion times....not so comfort in this.
    What i have to do?
    P.S. Sorry for my bad english.

    Hi,
    We often see this file in use when the file has not been closed. Is it just a regular file that was opened and how did you open it? I use AppleScript to close it if it was opened with AppleScript.
    Edited: try this: Run Script Editor. Enter:
    set f to choose file -- select the file
    close access f
    run it in Script Editor.
    gl,
    kel

  • Use BAPI_SALESORDER_CREATEFROMDAT2 with delivery date in Header

    Hi all,
    In my current project I try to use BAPI_SALESORDER_CREATEFROMDAT2 to create the SO ,
    I can create the SO without setting delivery date in header.
    but after I set the delivery date like following, the error message occured. Could someone help me?
    ORDER_HEADER_IN-REQ_DATE_H = '20110330'
    ORDER_HEADER_IN-DATE_TYPE = '1'
    I try to add the requirment delivery date in schedule line ,but fail too.
    ORDER_SCHEDULES_IN-REQ_DATE =  '20110405'
    ORDER_SCHEDULES_IN-DATE_TYPE =  '1'

    Nothing special,
    TYPE: e
    ID: V4
    NUMBER: 219
    MESSAGE :Sales document  was not changed
    I  try to see the log in ST22 too. but nothing in there.
    I also try to use BAPI_SALESORDER_SIMULATE to generat SO ITEM to fill
    the ORDER_ITEMS_IN (after some data formate translated) but, still got the same result.
    My codes in VS as following:
    when without delivery date setting, the SO is OK, So I belive the data transport is fine.
    The promble is mainly occur in BAPI.
                   IRfcFunction function = repo.CreateFunction("ZCMT_RFC_SO_CREATE2");
                    //importing parameter
                    IRfcStructure salehd = function.GetStructure("ORDER_HEADER_IN");
                    IRfcStructure salehdx = function.GetStructure("ORDER_HEADER_INX");
                    //Tables
                    IRfcTable returntable = function.GetTable("RETURN");
                    IRfcTable item = function.GetTable("ORDER_ITEMS_IN");
                    IRfcTable itemx = function.GetTable("ORDER_ITEMS_INX");
                    IRfcTable partner = function.GetTable("ORDER_PARTNERS");
                    IRfcTable schedule = function.GetTable("ORDER_SCHEDULES_IN");
                    IRfcTable schedulex = function.GetTable("ORDER_SCHEDULES_INX");
                    //IRfcTable condition = function.GetTable("ORDER_CONDITIONS_IN");   //commented
                    //IRfcTable conditionx = function.GetTable("ORDER_CONDITIONS_INX");   //commented
    //* Build order header
                    salehd.SetValue("DOC_TYPE", "ZOR");       
                    salehd.SetValue("SALES_ORG", "2011");    
                    salehd.SetValue("DISTR_CHAN", "01");     
                    salehd.SetValue("DIVISION","00");       
                    salehd.SetValue("REQ_DATE_H", "20110412");
                    salehd.SetValue("DATE_TYPE", "1");
                    salehd.SetValue("PURCH_NO_C", "test");       
                    salehd.SetValue("PRICE_DATE", "20110331");
                    salehd.SetValue("PMNTTRMS", "0002");       
                    salehdx.SetValue("UPDATEFLAG", "I");       
                    salehdx.SetValue("DOC_TYPE","X");       
                    salehdx.SetValue("SALES_ORG","X");    
                    salehdx.SetValue("DISTR_CHAN","X");     
                    salehdx.SetValue("DIVISION","X");       
                    salehdx.SetValue("REQ_DATE_H", "X");
                    salehdx.SetValue("DATE_TYPE", "X");
                    salehdx.SetValue("PURCH_NO_C", "X");       
                    salehdx.SetValue("PRICE_DATE", "X");
                    salehdx.SetValue("PMNTTRMS", "X");       
    //* Build order item(s) - Only 1 is used in this example
                    item.Append();
                    item[0].SetValue("ITM_NUMBER", "000010");       
                    item[0].SetValue("MATERIAL", "HMS690C-T002-A1");       
                    item[0].SetValue("PLANT", "2011");      
                    item[0].SetValue("TARGET_QTY", "3.000");      
                    item[0].SetValue("SALES_UNIT", "PCS");      
                    itemx.Append();
                    itemx[0].SetValue("UPDATEFLAG", "I");       
                    itemx[0].SetValue("ITM_NUMBER", "000000");       
                    itemx[0].SetValue("MATERIAL", "X");       
                    itemx[0].SetValue("PLANT", "X");      
                    itemx[0].SetValue("STORE_LOC", "X");  
                    itemx[0].SetValue("TARGET_QTY", "X");      
                    itemx[0].SetValue("SALES_UNIT", "X");      
                    schedule.Append();
                    schedule[0].SetValue("ITM_NUMBER", "000010");
                    schedule[0].SetValue("SCHED_LINE", "0001");
                    schedule[0].SetValue("REQ_QTY", "3.000");
                    schedule[0].SetValue("REQ_DATE", "20110331");
                    schedule[0].SetValue("DATE_TYPE", "1");
                    schedulex.Append();
                    schedulex[0].SetValue("UPDATEFLAG", "I");
                    schedulex[0].SetValue("ITM_NUMBER", "000010");
                    schedulex[0].SetValue("SCHED_LINE", "0001");
                    schedulex[0].SetValue("REQ_QTY", "X");
                    schedulex[0].SetValue("REQ_DATE", "X");
                    schedulex[0].SetValue("DATE_TYPE", "X");
    //* Build partner information
                    partner.Append(2);
                    partner[0].SetValue("PARTN_ROLE", "AG");       
                    partner[0].SetValue("PARTN_NUMB", "C10006");       
                    partner[1].SetValue("PARTN_ROLE", "WE");       
                    partner[1].SetValue("PARTN_NUMB", "C10006");

  • Use Cellular data for: with 8.1.1 in my iPhone 5, I can only see two options 'FaceTime' and ''Passbook'. Any idea why cannot I see other apps to turn on with cellular data ???

    Can not use all apps with cellular data

    In Settings/General/Restrictions if you tap on Cellular Data Use there should be 2 options: Allow Changes or Don't Allow Changes. If you don't see these options is that where you see "Cellular data is turned off for 'Setting'?
    Do you have a corporate MS Exchange email account on your phone? If so your administrator may have added an override on this setting.

  • HT204053 In Messages, my phone number is in gray. Why cannot I be reached in iMessage using my phone number?

    Why is my phone number is gray... indicating that iMessage will not work on my phone? It has always worked. I changed my Apple ID password and now I do not have iMessage on my phone. Any ideas? Thank you.

    Mine has been acting up all day like this.  Was perfectly fine last night.  Grey bubble for texts sent to me, and blue bubbles when I send text to iPhone users.  This morning, without doing anything different to my phone other then texting, it was green bubbles when I send to iPhone users.  And no replies ALL DAY.  I texted Android users I know, and they received my texts, and I received theirs.  Just when I got home, I finally received a text from my brother.  But when I replied back, it was still a green bubble.  But he tells me, it's blue for him when he sends to other iPhone users.  Yes, iMessage is turned on.  Short of resetting my phone to factory, I've done all the troubleshooting involved with fixing iMessage issues.  All of it.  No luck. 

  • Why is iPhone all of a sudden using insane amounts of data, and how do I make it stop? Verizon useless -- laughing all the way to the bank, no doubt.

    Got replacement iPhone from Asurion (%$&@ing rat b@stards that they are). All of a sudden, phone using 1G of data every other day. Verizon is useless and can't help me figure out WHAT is using this data. Roaming is off. No new apps. What could be causing this?

    What do you find when you check Settings > Cellular to see which apps are using all this data?

  • On a Mac mini OS X server 10.8.5 TimeMchine cannot copy 2.5 TB to a 6 TB Thunderbolt disk, runs out of space, Carbon Copy Cloner works perfectly

    On a Mac mini OS X server 10.8.5 TimeMachine cannot copy 2.5 TB (from a Lacie 2big Thunderbolt data disk) to another 6 TB Thunderbolt disk, runs out of space, Carbon Copy Cloner works perfectly: claiming just 2.5 TB after the copy. Thunderbolt disk is
    LaCie 2big Thunderbolt Series 6 TB

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message that corresponds to an abnormal backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showning, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them to the Clipboard by pressing the key combination command-C. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the text field.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • WHY THE IPHONE GETTING HOT WHEN USING 3G PLUS WITH DATa?, WHY THE IPHONE GETTING HOT WHEN USING 3G PLUS WITH DATA?

    why my iphone 4s getting hot when using 3g plus with data?
    then my phone left side speaker didnt work when i list songs?

    It is normal for the phone to get hot when your using data such as YouTube videos, streaming music etc.. And as for the left speaker not working, the left speaker is a microphone, the right one is for sound. Don't worry, everything your iPhone is doing is normal.

  • Is LSMW tool only used to update master data??

    Hi experts,
    Is LSMW tool only used to update master data??i.e for updating material master,customer master etc.,
    or it can be used to updated configuration tables also.i.e when we do configuration a CTS is to be created.then how the CTS generation is handled.
    Can anyone plesae explain me in detail?
    Thanks in advance,
    Regards,
    N.Sreelatha

    Hi
    LSMW is used to transfer Legacy data from one system to another system.
    Obvioulsy Configuration objects should be transported through CTS only and not with LSMW .
    Cheers,
    Hakim

  • Cannot copy files from CD or DVD using Finder.

    Hi,
    I cannot copy files and folders from a CD or DVD to my home folder or any folder therein using Finder. I just get the "Not Permitted" symbol next to the mouse pointer when I try to drag a folder out of the CD (or DVD) to my home folder.
    I have checked that I have sufficient permissions to perform this operation and when I copy files from the CD or DVD using the command line, it works without any hassles.
    This is extremely strange and I cannot think of why it should happen.
    A solution would be most welcome as I would prefer not to have to drop into a command line when I have to copy files from CDs or DVDs.
    Regards,
    Apurva
    Apple iBook G4   Mac OS X (10.4)  

    I am experiencing the same problem: after undoing a copy in the Finder from my CD-drive to my Seagate 200GB FW-drive, I am no longer able to copy single files in the Finder from other drives than my harddisk. I can copy from my hard disk to my external harddisk, I can move and copy files within the harddisk, but I cannot copy from my external hard drive or my CD/DVD-drive to my harddisk or from my CD/DVD-drive to my external hard drive or the internal harddisk.
    What is increasingly weird, is that I can easily copy two or more files using drag and drop! I also get a nice green + sometimes when trying to move the files, but there is just no response.
    I have tried the following:
    0) rebooted.
    1) rm com.apple.finder.plist + killall -9 Finder
    2) done that in the finder using cmd-alt-esc to kill the finder.
    3) removed cache files using Yasu from http://jimmitchelldesigns.com/yasu.html, including rebooting
    4) Doublechecked permissions, including locked bits
    5) run periodic everything from the Terminal
    6) repaired permissions
    7) checked the hard disk using disk utility
    8) Logged in as another admin user to no avail.
    I can use the Terminal to copy the files without any problems, and I can open files in other applications and save them where ever from there, but the Finder refuses to let me.
    May Gods wrath kill the Finder for good! I certainly hope 10.5 will show a new Finder!

  • I've seen all the posts for fixing the wifi on the 4s, none of them work!  So, who can tell me why my iPhone 4S cannot find any wifi when it used to easily, and when it does it can never connect?

    I've seen all the posts for fixing the wifi on the 4s, none of them work!  So, who can tell me why my iPhone 4S cannot find any wifi when it used to find wifi, and when it does find a wifi network it can never connect?  You think apple would have a clue how to fix it!  Because turning the wifi on and off doesn't work, resorting network settings doesn't work, even restoring phone to factory default doesn't work...

    Did not work. I've selected iMessage to ON and left it. After a few hours I recieved a message "activation unsuccessful. Turn on iMessage to try again". This has been going on for the past 3 days.

  • Cannot copy file because it is in use

    On my new iMac I have some files that I have downloaded and want to archive on an external drive. For some reasons Finder complains that the file cannot be copied because it is in use. And it is not. I have tried all that I have found on the Internet including compressing the file and then copying it. But even the compressed file appears to Finder to be in use. Anything you can suggest would be appreciated.
    Farzad

    Thanks, Don.
    You are correct. I agree that no one besides me would know what I have or have not tired. Sorry, Kappy - thanks for having responded to my message. I thought it would be a given that anyone smart enough to find Apple Support Forum would have known to try some initial stuff before getting here. Never the less, I should have mentioned it in another way and been clear.
    I have found a solution - for anyone else who may stumble on this discussion. I have sort of succeeded with using the Ternminal to manually copy the files that Finder refuses to copy. But now I can't do that either. It seems the problem is with large files and based on questions of others on the general internet, that it is not just me - it could be the OS. Some of these files I am dealing with are between 1.0 to 6.0 GB.
    Thanks again, folks.
    Farzad

  • How to transfer data from macbook pro to an external hard drive, im using (WD 1TB 3.0) ???. I cannot copy anything from my mac to it not a single file.

    how to transfer data from macbook pro to an external hard drive, im using (WD 1TB 3.0) ???. I cannot copy anything from my mac to it not a single file.

    ok - since you'll be sharing it with a PC - connect it to your windows pc - then format from there - instead of NTFS format - choose exFAT.
    or, you can read the link below on how to do it in dos mode.
    http://answers.microsoft.com/en-us/windows/forum/windows_7-files/how-can-i-forma t-external-drive-in-exfat-not-in/0f6bf19a-19d6-4470-ae05-53ddf26bb476?msgId=1860 eae3-3488-4eea-8326-f87b89d9851b
    once you've formatted it - you can now use it in both your macbook and windows computer.

Maybe you are looking for