Copy controls is not copying the order reason and PO numbe and PO date

Hi All,
When i create credit memo request with reference to Invoice, it is not copying the order reason PO number and PO date to credit memo request from invoice.
Please let me konw what changes do i need to copy that.
Thanks in advance.

Hi,
Check below link
copy purchase order number and date from one sales order to other sales ord
Hope it'll help you !
Best regards,
Anupa

Similar Messages

  • Modification in copy control from Contract to Sales order

    Hello Gurus...
    We are using a standard copy control routine to copy header and item level data from Contract to Sales order.
    Now what happening is the price for some items is changing after creation of contract. But when the sales order is created it is copying old value from contract.
    I want to modify the routine in such a way that I can redetermine the price for the item.
    I can not change configuration as the same is used by multiple company codes and the change is required only for some company code.
    Any suggestions please?

    Hi there,
    You have do some customizing in the pricing type at the copy controls in item level.
    Define a copy control routine at the item level in VOFM. In the routine put a condition that the system should read the value in the pricing type. As per your requirement if the company code / sales org is 1000 / XXXX for eg, then the system should apply the pricing type that will carry out the new pricing at the order (I am not connected to SAP right now so not sure what that pricing type is). If the company code / sales org is apart from 1000 / XXXX, it should default the pricing type that is there in standard copy control VTAA.
    Check if that is possible with your ABAPer. What I feel is that you have to hard code the pricing type value (that will carry new pricing) in the new copy control routine.
    Regards,
    Sivanand

  • IPad syncing stays on step 5 of 5 "waiting for items to copy" but does not copy anything...  should I restore the iPad?

    iPad syncing stays on step 5 of 5 “waiting for items to copy” but does not copy anything...  should I restore the iPad?

    Hey, I was having the same problem,, i just got mine to work. Take off everything but your apps (meaning take off pictures, music, ringtones, movies, tv shows, etc just leave on the apps) Then go up to the top and go to Store and turn off Genius. Restore your iPhone (It'll ask you to back up, click yes.) Restore from back up, Let your apps come back then when those are done add each category one by one. (i.e. click Photos -> Sync Photos and let them finish, then click something else like music) Hope this helps!

  • How can I get the photos from iPhoto copied to a disk in the order I want?

    How can I get the photos from iPhoto copied to a disk in the order I want??

    To ensure a custom ordering, sort the files in an album and rename the files with a sequentially numbered filename.
    File > Export > Version/Originals
    Then use "Filename > Sequential"
    or "Filename > Album name with index"

  • Copy opening does not clear the destination data - Just appends

    Hi All,
    Copy opening does not clear the destination data. It just appends so if i run the copy opening package twice i can see the signed data get doubled.
    We have SAP BPC NW 7.5 SP08 Patch 1001.
    I working on the Periodic Application.
    Copy opening Script logic:
    *FOR %TIME% = %TIME_SET%
    *RUN_PROGRAM COPYOPENING
    CATEGORY = %CATEGORY_SET%
    CURRENCY = %CURRENCY_SET%
    TID_RA = %TIME%
    OTHER = [B_ENTITY=%B_ENTITY_SET%]
    *ENDRUN_PROGRAM
    *NEXT
    Carry-forward business rules
    Source account : BALANCE SHEET ACCOUNTS
    Source flow  : F99
    Dest account :
    Dest flow  : F00
    Reverse sign : FALSE
    Data source type :  ALL
    Same period      :FALSE
    Apply to YTD : False
    Category dimension:
    ID               ACTUAL               BUDGET
    EVDESCRIPTION          Actual               BUDGET
    PARENTH1          
    YEAR               2008               2011
    COMPARISON          BUDGET               NBUDGET
    STARTMTH               1               1
    CATEGORY_FOR_OPE                    ACTUAL
    FX_SOURCE_CATEGORY          
    RATE_CATEGORY          
    RATE_YEAR          
    RATE_PERIOD          
    FX_DIFFERENCE_ONLY          
    OPENING_YEAR          
    OPENING_PERIOD          
    OWNER               [ADMIN]               [ADMIN]
    STORED_CALC          
    REVIEWER_CAT          
    Appreciate any help.
    Regards
    Mehul

    Snote 1620613 has fixed the issue
    Regards
    Mehul

  • The Move/Copy option does not show the phones gall...

    Hello,
    I want to move some photos (wallpapers) to the phone's Gallery to use them for slide set but I can't do that... The Move/ Copy option does not show the phones gallery. It only shows the MMC, Games and My Apps. Please tell me what should I do.
    Thanks.
    Moderator's Note: Post was moved and changed the title into a subject-related title. This is to keep the forum organized and let other forum users easily see and respond to this post.

    Because you posted this message in a thread about the Nokia 301 before, are you about a Nokia 301 as well?
    Nokia 301 » Menu » Apps » Files or Gallery » … » (do not open but highlight) your file » Options » Move. Did that help?

  • Oracle insert problem(records not in the order they are inserted)

    hi, all:
    I tried to insert a word list into a oracle table, everything is fine except that the words are not in the order they are inserted. For example, the words are inserted in the following sequence:
    accreted     
    accreting     
    accretion     
    accretionary     
    accretive     
    bladebone
    bladed     
    bladeless
    bladelike
    When I retrived the resultset from the table and iterate through each of the record, the words are not in the order inserted, i.e., it may look like this,
    accreted     
    accreting     
    bladebone
    bladed     
    accretion     
    accretionary     
    accretive     
    bladeless
    bladelike
    This strange phenomenon won't happen when the word list is small, like 500 words or so, but when the number of words reaches around 10,000, it takes place. My coworker also experienced this problem when trying to insert large volume of data into oracle table.
    The code I used to insert into the DB table:
    BufferedReader reader=new BufferedReader(new FileReader("C:\\Dictionary.txt"));
    while( (line=reader.readLine())!=null )
         sql="INSERT INTO DICT " +
         "VALUES ('" + line +"')";                         
         statement.executeUpdate(sql);
    Any advice will be highly appreciated,
    thanks

    Well, the best thing to do is follows scsi-boy's advice and add the additional column and either put a sequence number in it from the Java side as you insert, or use an Oracle sequence object to put a sequence number in it from the Oracle side (which is sort of like an auto-generated value, but different).
    Note that an Oracle sequence generates numbers in sequence, but possibly with gaps (usually if the database is rebooted), unless you do some things that slow sequences down substantially. Sequences can also be something of a bottleneck on RAC clusters. See:
    http://www.dizwell.com/oracle/articles/autonumbering.html
    However, if your coworker is commiting after each and every insert (which is bad form and slows the database down, -10 points), and if your coworker is also never ever ever updating the columns after they've been inserted, and if your coworker is using Oracle 10g and not some older version such as 9i, then your coworker could use the ORA_ROWSCN pseudo-column to order by. Those are very very severe constraints and you shouldn't begin to consider doing it that way without a very good reason, and right now you and your coworker wouldn't know a good reason if it snuck up and bit you on the butt, you've got a lot of learning the basics first.

  • ISA contact can not see the Order made on oneSoldto and can check for other

    Hi All,
    i've one peculiar prob...in which assume X is the ISA contact person for two sold to parties Y and Z.where as the role is the same for X he cd able to check the orders he created for Y and cd not able to see the same for Z.please let me know how peculiar is the prob and what cd be the reason for this.
    Thanx in advance,
    Sarath

    Hi Sarath,
    How is the contact person X entering the webshop? I mean before entering the webshop the list of customers Y & Z for X will be displayed for selection. If contact person selects Y then he only be able to see Y orders and not of Z. This is a very much standard process in ISA. If you want to show both Y & Z orders then you need to modify the ISA functionality. Or in CRM5.0 ISA  you can achieve somewhat similar functionality by using customer hierarchy functionality.
    <b>Reward if helps,</b>
    Regards,
    Paul Kondaveeti

  • I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    go to settings>general>reset>reset home screen layout and see if they appear.

  • How change the sort order of searched items so last search item shows first. I DO NOT mean the order of search engines, but existing searches by down arrow key

    I want to be able to change the sort order of items I have already searched for in the search box. I want to be able to hit the down arrow key and see my previous searches in the order of last search showing first. At the moment I have no idea how it is sorting and it's very annoying to have to re-type a query I typed 5 minutes earlier but because I typed in another 10 since it is lost somewhere in the list. Can this be done, I have googled but did not find the topic anywhere. Just to clarify, I DO NOT MEAN the order of search engines (which is all that comes up in google), I mean the actual text typed in which has been saved in the drop down list.
    Thanks

    The "form fill" feature uses a "frecency" algorithm, frequency + recency, similar to the address bar autocomplete list.
    I found an extension that seems relevant, but the reviews are old so I'm not sure it's still working: [https://addons.mozilla.org/en-us/firefox/addon/searchbar-autocomplete-order/ Searchbar Autocomplete Order].
    But... is the autocomplete not working? I would expect that typing a couple characters of the earlier query would filter the list so you can easily select it? Or is the problem that the list doesn't remember enough searches for that?

  • Could not download the ordered file after five attaempts due to network problem

    Hi,
    Could not download the ordered file after five attaempts due to network problem.
    Help required.
    Regards,
    Nilesh Shah.

    http://prodesigntools.com/tag/ddl
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Mylenium

  • I purchased premiere elements 13. I followed the instructions. Loged into my account. Located my order number, but can not find the order detail page to download my product

    I purchased premiere elements 13. I followed the instructions. Logged in to my account. Located mu order number but could not find the order detail page to click the download your product button. I was also asked to download the Akamai download manager which i don't understand why. Also It said that once the manager was installed the download would appear in the browser which it never did. So, I have no idea if it did download or not. Not sure what else I can try. Would love some help.

    The Akamai download manager is used to download the software you purchased.  Try the download resources below.  The second one does not use the download manager.
    PE 10, 11, 12,13 - http://helpx.adobe.com/premiere-elements/kb/premiere-elements-10-11-downloads.html
    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • Windows control panel routine to designate Elements 12 as my default editor does not list the program. It loaded OK and accepted the key. Your regular help line could not help. What to do?

    Windows control panel routine to designate Elements 12 as my default editor does not list the program. It loaded OK and accepted the key. Your regular help line could not help. What to do?

    Hi Robbie,
    The editor program is NOT under the organizer path as you mentioned in your last message. The actual editor program is at the location I gave in message #1 i.e. as follows
    "C:\Program Files (x86)\Adobe\Photoshop Elements 12\PhotoshopElementsEditor.exe"
    The one under the organizer is actually the Welcome screen which you have probably set up to go directly to the editor.
    If you go to the Open With screen I showed in message #3 and browse to the actual editor as given above, it should show up in your list.
    If it doesn't, then Windows is playing up again - and we have to take extra steps.
    Brian

  • Trying to use iPhoto to buy a picture calendar.  It will not finish the order

    I am trying to purchase a calendar using iPhoto and it will not finalize the order.  Does anyone have a suggestion as to what I can do to finalize the order?

    it finally worked after about 2 hours! 

  • My old iMac and OS 10.4 will not accept the New iTunes Version 10 application and I can't get past the screen offering to download iTunes 10.  This is wrong and I need help getting past this situation. Help!

    My old iMac and OS 10.4 will not accept the New iTunes Version 10 application and I can't get past the screen offering to download iTunes 10.  This is wrong and I need help getting past this situation. Help!

    Sure, you can get around it if you don't need the newest version of iTunes. I still use version 7.5 because the newer versions didn't strike me as offering anything I needed.
    If you do need a version 10-something then you will have to upgrade your operating system to Leopard (fi your computer will support it) at least.  If you need 10.5 for some reason then there's no getting around it, you will have to buy a new computer.

Maybe you are looking for

  • Display/Edit mode in IR - SCV

    Hi all GURUS, I'm new to PI. I cannot edit any vlues in a particular Software Component Version & its name spaces & values (DT , MT, MM, SI,OM). This was previousely working fine & I wanted to change the DT of particlar name space & it doesnt allow m

  • Extract specific data packages from PSA

    Hi all, When loading 20 million records from the PSA to the DSO, 50 000 records (in 6 different data packages) have not been loaded (we got a dump). Now we want to do a delta load only containing these 50 000 records. Is it possible to choose exactly

  • Will installing itunes 10.7 to replace 10.6.3 remove my music library?

    I just got the iphone5 and to use it with Itunes I need to install 10.7, but the software update commend tells me my software is up to date version 10.6.3. I am afraid that if i downlaod the new software, it will delee my music library...I have a bun

  • 2.4ghz Intel Core 2 Duo iMac freezing when trying to update and non responsive

    I have a 2.4Ghz Core 2 Duo iMac.  The updates download but when the mac tries to restart to complete the process the screen is just grey with a tool bar across the top System Updates, however the imac is completely unresponsive and will not even forc

  • MPC sequencing Using Logic Plug ins

    Whats the best way to set up logic so I can sequence my music using the MPC 4000 sequencer therefore utilizing all Logic Virtual Instruments on midi channels in the MPC? Then when i'm done in the MPC I'll imort all the MIDI data to logic hence retain