Vendor line items transferred from one vendor to another vendor

Dear SAP Guru's
My client created one vendor called "X" under General Vendor Group by mistake, now they realized that "X" vendor should be created under Related Party Vendor Group. Now they want all line items posted to that vendor should be transferred to New Vendor created under Related Party Vendor Group,
Can you please suggest how to go about the data migration in this case
Regards
Sreenivasulu

Hi Deepa
As you suggested we would be blocking "X" (Vendor No - 110001) old Vendor and create new vendor "X" (Vendor No - 130012) and what about transfer of line items existing in old vendor (Vendor No-110001)
my client wants to transfer all the line items (existing) of old vendor (Vendor No - 110001) to New Vendor (Vendor No - 130012) for entire year,
Simultaneously my client don't want to run the report by combining both vendors to know how much business has done with that particular vendor, because of that reason we need to transfer all the line items from old vendor to new vendor
Regards
Sreenivasulu

Similar Messages

  • ABAP Question- line item transfer from one customer to another

    Dear SAP Guru's-
    I have a hot issue so any help would be greatly appreciate. 
    I have a customer that needs to move open A/R line items to one payer to another and without using F-30 or F-21, I recall seeing a program or t-code that gave one the ability to move the line items from one customer to another by selecting all line items or listing specific document numbers.  Does anyone know what I am talking about?
    If so, does anyone have any information that could share with me so that I can do it or any documentation to start me in the right direction?
    POINTS PROMISED

    Thank you Murali and Sunil
    These t-codes are not helpful and tideous if you have many like a 1000 line items.  In addition, you lose the history, the due date information and the document type change for invoices, etc. 
    I KNOW I saw something that moved all or selected items by document number from one customer to another.  It was called payer to payer transfer.  I cannot find any information on it.
    Any help or more input, more points awarded.
    THANKS!

  • Vendor Open items transfer from one Recon to Another recon

    We have wrongly maintained one recon account in Vendor. 
    Is there any way to trnasfer Vendor Open items transfer from one Recon to Another reconciliation account..

    Hi,
    The best way is to transfer the items from old to new reconciliation account.
    Please use the following entries to transfer.
    1. Dr Vendor a/c(Old recon a/c)
        Cr Vendor clearing a/c
    After nullifying the balance in old recon account, here chage recon in the master.
    2. Dr Vendor clearing a/c
        Cr Vendor a/c(New recon a/c)
    F101 only post the adjustment entry at period end and reverse the same entry in next period. So, transferring the items is the best method. If you have volume of data, then create a LSMW for this.
    Rgds
    Murali. N

  • Line items transfer from one GL account to another GL account

    Dear Experts,
    Greetings for the day !
    Is it possible to transfer all the line items of a GL account to another GL account instead of transferring the balance of the GL account.
    Thanks in advance.

    Dear Nico,
    Thanks for your suggestion.
    Actually the account is having more than thounsand line items.  is there any automated process through which we can transfer all the line items in one shot.
    Thanks & Regards

  • Moving a List Item attachment from one list to another

    Hi,
    What are the best way of coping / moving the List Item attachment using
    jQuery / JavaScript in SharePoint 2013 from one list to another.
    Thanks
    Saroj
    Impossible is nth but good coding :-)

    For your needs better try to code your own solution. See
    SharePoint JavaScript Class Library for details. You can have two possible architectures:
    Make all work from JavaScript. And the first your step will be
    addItem method of SP.List.
    Make processing of selection on client in JavaScript and call your custom server-side component (may be an application page) for items copying (creating copies in new list of already existed items from initial list.). See
    this for example.
    Also be careful with context.load. It's recommended to write all next code in context.executeQueryAsync. Use Firebug in FF and developer tools in Chrome for debugging your code and to find what is wrong.
    Or 
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/1d01a48f-c28b-467b-acd1-22e5fb266670/how-to-retrieve-list-items-and-copy-it-to-other-list-using-javascript-object-model?forum=sharepointdevelopmentprevious
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(retrieveListItems, "sp.js");
    var siteUrl = 'Site Url';
    function retrieveListItems() {
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('List1');
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View><Query><Where><Geq><FieldRef Name=\'ID\'/>' +
    '<Value Type=\'Number\'>1</Value></Geq></Where></Query><RowLimit>10</RowLimit></View>');
    this.collListItem = oList.getItems(camlQuery);
    clientContext.load(collListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded(sender, args) {
    var listItemInfo = '';
    var listItemEnumerator = collListItem.getEnumerator();
    while (listItemEnumerator.moveNext()) {
    var objListItem = listItemEnumerator.get_current();
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('List2');
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', objListItem.get_item('Title'));
    oListItem.update();
    clientContext.load(oListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceededFinal), Function.createDelegate(this, this.onQueryFailed));
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    function onQuerySucceededFinal(sender, args) {
    //Do next set of operation if needed
    </script><input name="btnVarIQReject" onclick="retrieveListItems()" type="button" value="Submit"/>
    Please use my above POC code to start. This will copy all the title field value from list1 to list2
    If this helped you resolve your issue, please mark it Answered

  • How to convert data when transferring from one table to another

    I have two tables and these are the structure of the tables
    create table E1(
    ID NUMBER
    ,NAME VARCHAR2(30)
    , DESIGNATION VARCHAR2(30)
    ,GENDER VARCHAR2(10));
    create table E2(
    ID NUMBER
    ,NAME VARCHAR2(30)
    , DESIGNATION VARCHAR2(3)
    ,GENDER NUMBER); Now I want to transfer records from one table to another using a master tables where data are compared because the datatypes in tables are different
    The first one is a gender table to match the gender and convert
    create table Gender(
    E1 varchar2(10),
    E2 number);The second is for the designation
    create table Designation(
    E1 varchar2(30),
    E2 varchar2(3);How to match and convert the data so that it can be transfered.

    Peeyush wrote:
    Can we do it with the help of a cursor.
    All SQL executed by the database are parsed as cursors and executed as cursors.
    I mean I have to insert data in bulk and I want to use cursor for it.The read and write (select and insert) are done by the SQL engine. The read part reads data and passes it to the write part that inserts the data.
    Now why would using PL/SQL and bulk processing make this faster? It will reside in-between the read part and the write part being done by the SQL engine.
    So the SQL engine reads the data. This then travels all the way to the PL/SQL engine as a bulk collect. PL./SQL then issues an insert (the write part to be done by the SQL engine). And now this very same data travels all the way from the PL/SQL engine to the SQL engine for insertion.
    So just how is this approach, where you add extra travel time to data, faster?
    and i want to commit the transaction after every 50 recordsWhy? What makes you think this is better? What makes you think you have a problem with not committing every 50 rows?

  • Data not transfering from one form to another

    I have designed two forms in which i want to transfer data from one form to another which contains lot of fields.Process starts wid filling the first form(form1) from the workspace and all the data from dat form will be transfered to next level user who is having form2.Both forms contains two pages each.I tried with the SETVALUE ACTIVITY after designing two forms but its showing error.

    No am not using any xml schema .i have designed the two forms with the same fileds and field names.what cpould be the problem.After submitting the task from the start process it is going to the next user level but the form is getting added twice in the to do list of that user and data is not getting bound.If u want i can sned u my lca files or forms.

  • Revenue transferred  from one WBS to Another

    Hi ,
    Is any realationship exists to check the revenue transferred and realted information from one WBS to another.WBS ? The main criteria is -From WBS  to TO WBS  for revenue transfer?
    Thanks
    Anil Kumar

    CJI3 report with the field Partner Object should show you the sender and receiver WBS if revenues have been manually reposted.
    Regards
    Sreenivas

  • Transferring from one ipod to another ipod, both 30gb video

    Is there a way to transfer a music library from one ipod to another ipod. One ipod is used through windows and the other is through a mac. Help please

    I figured it out. I was trying to get my daughters ipod song onto my wifes new ipod. New computer and didn't have them backed up. Thanks anyways!

  • Vendor line item transfer from one profit center to another profit center

    Dear All
    We have posted vendor line item in wrong profit center. now we want to transfer to correct profit center
    what is the procedure?
    Vishvas

    Hi!
    You can  transfer  worng PCA line  item  in any Suspnese GL  and  then  you can  make   new entry  in Vendor  line  item  with new PCA/CC.
    regard,
    Rup

  • Problem viewing mail transferred from one Mac to another

    I recently purchased a new Mac.  I used Time Machine to back up my old Mac, and then had it transfer all the information and settings from my old Mac to my new one.
    One problem I've had is that when I open up Mail on my new Mac, none of the emails from my old computer can be seen.  All the mailboxes and associated settings transferred over without a hitch, but none of the emails are visible.  When I access the Mail folder (via Users/[My Name]/Library/Mail/V2), I can find the files of my old emails in the various subfolders; so they obviously transferred to the new computer.  But I can't figure out why I can't view them.
    Any advice or help on how I can solve this issue would be very much appreciated.

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens by pressing command-V, then press return.
    A folder window will open. Inside it there should be files with names as follows:
    Envelope Index
    ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK. Typically, the process takes a few minutes, but it may take hours if you have gigantic mailboxes. In that case, you may be able to speed things up by temporarily adding your home folder to the Privacy list in the Spotlight preference pane. Remove it when Mail has finished importing.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • All sorts of problems transferring from one computer to another

    This looked so easy on the Apple Website. I followed the instructions to the letter I am sure.
    Just bought a new computer using Vista. Wanted to transfer a 16gb library from the old computer to another. Used the iPod as the hard drive to do so. Managed to get the files onto the new computer and opening the iTunes music folder from My Computer shows all the tracks are in there.
    However, opening up the library using iTunes itself - nothing. Nothing at all listed.
    I have checked the "Copy to library" thing in the settings - still nothing. Its like they are all in the right place (the folder identity is exactly the same as the one showing on settings i.e. iTunes Music). Nothing.
    I even copied them into another folder and called it iTunes Music 2 and told iTunes to look there - nothing.
    They are definitely in the new computer - if I click on a track from within the folder itself it will play - using iTunes - and then it appears in the library but the thought of doing this for 16gigs of music is not good. Why can't iTunes see them. I daren't plug my ipod into it now (I have changed it to manual by the way.)
    To make things worse - I think I have lost half of my purchased tracks in the process. They are still there but I bought them under an AOL name and when I created a new Apple ID later...... it now wants to know all the details of the AOL account to authorise them. The AOL account doesn't exist anymore.
    Help. Please.

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • Session state of page item different from one region to another region

    hi,
    on one particular page I have two regions. A page item (LOV pop-up) is set in the first region. I leave this region with a button and jump back with a branch to the same page. The page item has now the selected value (as is shown by session state window). So far so good.
    The second region (SQL query type) uses this page item. However, for some reason the page item is NULL in that second region.
    Can anyone explain this behavior ?
    ron

    thanks Joel,
    I did already what you suggested. The title in region 2 is evaluated to the same value as in region 1.
    The SQL query (that actually runned with identical syntax before) is:
    select bla from blatable where bla = :P920_RU
    this generates:
    report error:
    ORA-12801: error signaled in parallel query server P000
    ORA-01741: illegal zero-length identifier
    So apperently the bind variable is evaluted to (or cached as) NULL.
    I noticed something strange in the session window. There are several page items in the application. All of them are listed in the 'Session State' region. The page item that makes problems is the only one that is also listed in the 'Page Items' region. It is even listed when I start the session window from another page. Weird.
    any other ideas ?
    Actually, how could you possibly clear session state between rendering two regions ?
    Ron

  • Transferring from one ipad to another

    How do you wipethe content one one iPad and then reinstall all contents to a new iPad?

    Before wiping the "one" iPad, you need to create a backup.  You can do it using iTunes but you might find the restore process easier if you backup with iCloud.
    On the "new" iPad go to Settings>General>Reset>Erase All Content and Settings.
    This allows you to reapeat the setup you did when you first powered on the device.  When you get to the page that asks, "Setup as New iPad" select the second item on the list.  Enter you Apple ID information and you're off to the races.
    If you intend to restore using an iTunes backup, select the third item on that same page.

  • Are macbook apps transferable from one system to another?

    If I install iworks in macbook pro now; and tommorow if i buy a new macbook pro, is it possible to transfer the i works app from the existing one to the new one?

    http://www.apple.com/support/appleid/
    https://discussions.apple.com/community/notebooks/macbook_pro
    To install OS X Lion or Mountain Lion on another Mac, open the Mac App Store, sign in to your account, and re-download the OS by selecting it in the Purchases list. Follow these steps:
    Download Lion or Mountain Lion from the Mac App Store on one of your personal authorized Macs. The download is approximately 4 GB in size.
    Install the OS.
    Log in to another computer that you wish to install it on.
    Open the Mac App Store. Enter your Apple ID and password that was used to download either Lion or Mountain Lion on the first computer.
    Click the Purchased icon, then click the download link for the appropriate OS.
    Run the Installer once it has finished downloading to the new Mac.
    http://support.apple.com/kb/HT4854 
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion?view=discussio ns
    I suggest you download it once, save the installer ESD package first before installing, and keep that to use again. You can copy it to flash drive and make an OS X installer too.
    Create a bootable install drive for OS X Mountain Lion, make one manually with a USB drive or use the LionDiskMaker tool to automate the process with a USB or DVD
    With the boot installer drive connected to the Mac, reboot and hold down the Option key
    Choose the “Mac OS X Installer” startup volume from the boot menu
    Select “Disk Utility” and choose the hard drive you wish to format, click the “Erase” tab, and then pull down the “Format” menu and select “Mac OS Extended (Journaled)” as the type, name the drive if you wish
    Click the “Erase” button and let the drive format – this is the point of no return
    When finished, quit out of Disk Utility and now select the “Install Mac OS X” option from the menu
    Choose your freshly formatted hard drive and install Mountain Lion
    When the Mac reboots you will have a clean installation of Mac OS X 10.8 to work with. 
    Another reliable method:
    After you’ve downloaded the OS X Mountain Lion installer from the Mac App Store, launch LionDiskMaker and it will locate the installer app, extract the disk image, and then make the boot disk. It’s about as simple as it gets.
    For USB install drives or SD cards the drive needs at least 8GB of space available. LionDiskMaker formats the drive you point it at, remember that when you are picking a disk to make bootable for the installer.
    Get the newest version of LinoDiskMaker free from the developer

Maybe you are looking for

  • Help needed in building a function

    Hello, I am using Oracle DB 11g. I am writing a function. create or replace function func(tab VARCHAR2) RETURN VARCHAR2 AS cursor c is SELECT column_name FROM all_tab_columns WHERE table_name =tab; begin //some statements for i in c loop flag=1; //so

  • Do I need to change the localhost test if on a network?

    I have a JSP program running on tomcat webserver at home. This program works. At home the computer accesses the internet via a dialup modem. I am trying to run this program at another location. I have taken my hard disk and installed the hard disk at

  • Full screen plugin or add-on code works for every page except the start page ?? special containers on the new start page ?

    Use Matt Brubecks Full screen plugin or just write a new Addon for Firefox for android (23.0) Load add-on. If you are on any tab other than the awesome screen.. it works and goes to full screen (although there are minor issues with container layout)

  • Can't install Mac OS X.4.5

    Hello everybody. I have a problem. i wanted to install Mac OS X on my hard drive again, because i wanted to install the newest firmware update, which isn't possible under linux. I have the following disk setup: Disk /dev/sda: 80,0GB Sector size (logi

  • Need Help Printing Text Messages From E71

    I need to print some saved text messages that are on my e71 but cannot ge **bleep** to hook up to my bluetooth printer it just never finds it. Is there another way to print these messages fromt he phone i really need them