Best way to post a Return Item and Enter a Different Replacement Item

Hi MM Gurus,
During data migration, I uploaded an item (let's call it Material A) in inventory. The old purchase order for this item was not included in the migration. After the go-live phase, purchasing discovers that they have to RETURN Material A to the original vendor. As additional info, Material A will be replaced and is fully invoiced and fully paid.
As mentioned, the vendor now will send a DIFFERENT replacement item (Material B) instead of the old material (Material A) which is acceptable to the client.  
For the solution, I'm thinking to just reverse the initial upload of Material A (do a 562) and when Material B arrives, I'll do a 561. Would this be ok?
Do you have any other ideas/best practices? Can you share a better way on how to process this in the system? Any help is greatly appreciated. Thanks in advance!
Regards,
Marvin

Hi Marvin,
I would think that whether it is OK or not will depend upon the view of the accounting department as using 561 and 562 will post to specific stock accounts which they will need to approve.
Also, you would need to make sure that the valuation of the materials is the same to avoid getting differences posting during the process.
You could try doing a return delivery (122) to remove the stock and then a 501 receipt into stock of the new material.
This will all be about the accounts to be posted to and also the document trail that you want to leave.
Another method would be to do a physical inventory against the material A and Material B, reducing the quantity of A to Zero and increasing Material B by the amount of A written off. So long as valuation is the same, then the differences, once posted, will net off. This will not however produce any paperwork or register that the goods have been returned to the vendor.
Rob

Similar Messages

  • Best Way to Aggregate Multiple Announcement Apps and Possibly External RSS Feed

    Hello,
    I have two separate announcement apps (one in sub-site A, and one is sub-site B). I am trying to create a webpart that will display content from both apps together.
    I have tried to setup a CSWP and have been able to set the query to pull in the data (Although it shows expired announcements, which I would need to eliminate). Now, I am trying to customize the display of the CSWP, including the property mapping values
    to display the announcement title (currently working with the URL as a link) and body (truncated like the announcement summary view if possible).
    How can I get the body from the announcement to display? The 'body' field isn't listed as an option in the drop down list of mapping values. Do I need to toggle an option on the separate announcement apps, create a column, map a field, or some combination?
    Also, I'd like to know if it is possible to add in an external RSS feed. Or, if there is a completely different way to approach and accomplish this, please let me know.
    Thank you

    Hi,
    To display the “Body” field of Announcements list properly in Content Search Web Part, you can take a look at this blog about how to customize the display template for a good
    start:
    http://social.technet.microsoft.com/Forums/en-US/bf0eb4de-445f-435a-8c88-1826bfb3aae5/best-way-to-aggregate-multiple-announcement-apps-and-possibly-external-rss-feed?forum=sharepointdevelopment
    If there are more complex needs in customization, the two links below would be helpful:
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/09/03/3588171.aspx
    http://blogs.technet.com/b/tothesharepoint/archive/2013/05/28/stage-11-upload-and-apply-display-templates-to-the-content-search-web-part.aspx
    Also, if you have several questions, it is recommended to post them in each single thread to make others in this forum easier to focus on one issue in one thread.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Best way to transfer video between iphone and mac wirelessly?

    Please suggest me the best way to transfer files between mac and iphone wirelessly.Mainly for videos.

    If you want to transfer photos and videos from the Mac to the iPhone (but not in the other direction) you can use iTunes and sync via wi-fi: http://support.apple.com/kb/HT1386
    If you want to wirelessly tranfer videos in the other direction you may want to look into a 3rd party app such as http://www.photosync-app.com Note that I have not used that app so be sure to investigate others as well.

  • What is the best way to have access to OSX and OS9 from the same machine?

    What is the best way to have access to OSX and OS9 from the same machine?
    Do I need to partition the hard drive? Installed both Tiger and OS 9 on the G5 and it is having problems starting up properly.
    G5   Mac OS X (10.4)  

    And here is the prove for Edwin's message: Macintosh: Some Computers Only Start Up in Mac OS X

  • Whats the best way to transfer all my music and i tunes library from an old xp pc to new one when the old one wont take the latest version of itunes

    whats the best way to transfer all my music and i tunes library from an old xp pc to a new one when the old one wont take the latest version of iTunes.

    iTunes- How to move the library to an EHD

  • Best way to keep files on iMac and Powerbook in Sync

    Best way to keep files on IMac and Macbook Pro in Sync

    Hi ...
    Using the Migration Assistant would be tedious and time consuming.
    You can setup an iCloud account and sync your Macs since you have Lion installed on both. If you have iCloud enabled, if for example you add a bookmark in Safari, that bookmark will sync via your Wi-Fi network to the other Mac automatically.
    Read here > Apple - iCloud - Learn how to set up iCloud on all your devices

  • Whats the best way to transfer all my pic and vid files from Mac Air to back up drive to free up space on hard disk?

    whats the best way to transfer all my pic and vid files from Mac Air to back up drive to free up space on hard disk?

    Get a third drive if needed, open the Time Machine pane of System Preferences, set it not to exclude that drive, and drag the files to it. If you're moving an iTunes or iPhoto library, launch the application with the Option key held down and choose the moved library.
    (118789)

  • Best way to clean screens on MacBookPro and iPhone.  Safe products to use.

    Best way to clean screens on MacBookPro and iPhone.  Safe products to use.

    A microfiber cloth damped with water.
    Turn off first.

  • What is the best way for sharing an iPad with 2 iPhones using different Apple acount ?

    What is the best way for sharing an iPad with 2 iPhones using different Apple acount ?

    You can't share with other devices if you are using different Apple ID's and iTunes account on them. You can only share if you use the same ID.

  • Best way for: OutlineView + icon (for items)

    Hi,
    I have extensively searched, in the cocoa documentation a way to create a display a hierarchical collection of items, each having a corresponding icon.
    Bottom line, the best way of representing it is what mail does with your mailboxes and folders, or what the finder does with the folder tree of the drives.
    One "reasonable solution" I have tried is, through the delegate, returning always the same instance of NSBrowserCell.
    // In my outlineViewDelegate
    - (NSCell *)outlineView:(NSOutlineView *)outlineView dataCellForTableColumn:(NSTableColumn *)tableColumn item:(id)item
    if (tableColumn == nil)
    return thecell; // Assume it is an instance of NSBrowserCell initialized in the init methode of my NSOutlineViewDelegate
    else
    // there is no else. It won't be called. It never has been since I began experementing with it.
    [throw exception]; // assume this works
    Then, I change the icon of the cell as required
    // In my outlineViewDelegate
    - (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(id)cell
    forTableColumn:(NSTableColumn *)tableColumn item:(id)item
    NSImage* icon = [find appropriateIconForItem:item]; // assume it works
    [(NSBrowserCell*)cell setImage:icon];
    Everything works, but I am not satisfied with the display.
    1. When a row is selected, the color effect of the selection breaks at the cell boundaries. NSBrowserCell does not show represent the selection the same way that the outline view does.
    2. Spacing between items (vertically) is not good.
    3. If I change it, (by means of the delegate) I loose the settings NSSmallControlSize that I did define at the beginning.
    I have been messing around with the settings without managing to have something as nice as mail.app or the finder.
    I am also willing to try other approach, but I ma not fond of subclassing madly everything, especially if it results in a loss of functionalities (e.g. loosing the editability of the text, or having it edit with a shift in position)
    I post this message because I imagine there is an elegant way of doing it. It is a common functionality after all, used in many native MACOS app (finder, mail, itunes, ...) So it should come for free, right ?
    Anyway, any working fast solution, (my app may have to display very heavy collections, is more than welcome.
    Thanks for reading me.

    Any idea anyone ?

  • What is the best way to remove these unwanted items in PS CS5

    I have used the lasso tool.  I want to remove the power pole and the street sign.  If I use the lasso tool the letters behind the items are removed also.  What is the best way to do this.
    I know that I was sent a link to a video to show how to take two pictures from two angels  and merge them.  At this time I only have the one picture.
    thank you
    Mike

    function(){return A.apply(null,[this].concat($A(arguments)))}
    JJMack wrote:
    Adding empty Layers
    Cloning into the empty layers with ptotective selections
    Slections copy paste transform
    Bluing smudging paint
    You may come up with someting
    First thing you should do is to discard your phone an get a real camera
    Cover up
    JJ,
    I'm in the learning process and want to learn how you removed those items.  The steps in your post are they the ones I should follow and learn or are there additional steps that you took.  What information will be helpful and I will go from there to find the info.
    thanks
    Mike
    Also it would be nice to know how you did your animation.

  • What is the best way of reading a browser cookie and writing to sessionbean

    Hi,
    So far I have happily written a cookie in the visting browser and happily can display with a browser using a servlet println etc
    But what is the best way to take that value and put it into say getSessionBean1().setCookieValue("Cookievalue");
    I was thinking on the lines of calling a forward from the servlet "nexpage?cookievalue=stringetc".... or is there some nicer way?
    Thanks
    James

    In the page I simply referenced the facescontext directly... no need for a custom servlet.
    public void createcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse resp = (HttpServletResponse)fc.getExternalContext().getResponse();
    Cookie userCookie = new Cookie("cookiename", "cookievalue");
    userCookie.setMaxAge(-1);
    userCookie.setMaxAge(3600);
    resp.addCookie(userCookie);
    return null;
    public String readcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    Map cookiemap = ec.getRequestCookieMap();
    if (cookiemap != null) {
    Cookie cookie = (Cookie) cookiemap.get("cookievalue");
    return cookievalue;
    For reference I could not get getCookies() method of HttpServletRequest to work.. it would only return JSESSIONID.

  • Best way to completely share iPhoto, iMovie and iTunes between 2 users?

    Hello everyone
    I want to set up my new brandnew iMac (2.66 Intel Core 2) running Leopard the following way: Two accounts (for me and my wife) on the same iMac, no external drive. We want to completely share iPhoto, iMovie and iTunes libraries in a shared folder on the hard disk. That means we need full read, write and edit access to all files and subfolders in this shared folder. We will not use these libraries at the same time.
    *What's the best way to do this?*
    Thanks in advance for help or for pointing me to where I can find it!
    Morgy
    (On our old/current system (Panter), achieving this was quite tricky thing! A posting by Scott Radloff explained step by step how to use Netinfo, then Terminal and finally TinkerTool. I hope it's easier now!)

    Sharing the iPhoto library via the Shared Folder cannot be done in 10.5.
    There are two ways to share, depending on what you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. then:
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a dmg.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Regards
    TD

  • Best Way To Set values In Items

    Hello,
    I have a two database items and dynamically I would like to assign values to those items.
    What is the best way of accomplishing this task?
    Is there any SET property available or I need to like
    block_name.item_name :='Value'
    Regards

    You can use COPY built-in to perform dynamically assign values to different items.

  • Best way to delete a .plist item?

    Hi everyone!
    I have found similar topics on this...but maybe someone can clear it up for me?
    I want to delete an item within a .plist, specifically to remove an item from the Dock by scripting. (See com.apple.dock.plist) If I use System Events I can take one of the "Dictionary" types with a number under persistent-apps and delete the value so basically it works...it's just I leave the empty line with the number there. Using "defaults delete" I can't seem to access this item...maybe it's too deeply nested or I just don't have the syntax right? And I'm not sure about Cocoa? I'm using Applescript Studio...
    I can search using System Events and find all the needed info I'm looking for...I just can't find a simple way to say delete the entry!
    Thanks in advance,
    Reg

    Hi guys!
    Thanks for the reply!
    I have read that post that you suggested and it actually does a good job. I'm just trying to avoid using plist buddy as I don't know for sure if a computer will have it for sure to be able to use its functions...
    I have read the "man defaults" page and I can't seem to get the syntax right! Either that or it's not possible? For example:
    delete domain key
    Removes the default named key from domain.
    But I can't seem to delete anything that's nested beyond that first key? I've read that defaults can't handle deeply nested items well, and in this case I just need to go one more step. (In com.apple.dock.plist "persistent-apps" is the key which contains dictionary entries 0 through however many apps are in your dock. I need to be able to delete one of those entries by scripting somehow.)
    Thanks for the help! Any more ideas?
    Reg

Maybe you are looking for

  • Problem with this query

    Hi We are using this query SELECT ........... FROM TRIP JOIN TRIPEXTENSION ON TRIPEXTENSION.TRIPID = TRIP.TRIPID JOIN FOREIGNRECLOC ON FOREIGNRECLOC.TRIPID = TRIP.TRIPID JOIN CUSTSEGCONTROL ON CUSTSEGCONTROL.TRIPID = TRIP.TRIPID JOIN CUSTOMERCONTROL

  • How renumber footnotes at the beginning of each chapter?

    Hi! I work in Indesign 6 with very large books in which the author continually add text and pages make me travel pages, each chapter should begin with footnote number 1. If I do with these sections do not move when I add pages and I have to update a

  • Can I create a dynamic report in the server without using a report template

    Hi, My company just bought a Crystal Report Server XI and it didn't have a report designer. I can't start creating report without the designer. The question is can  I generate a dynamic report at runtime (on the crystal report server ) without using

  • Catch a JBO-26041 error on insert, but continue processing

    re-post: Does anyone know if this is possible? I'm creating new rows in a ViewObject within a loop. It's possible that the record that I'm trying to create already exists, so I want to catch a JBO-26041 error and basically ignore it (don't insert/cre

  • Another powerpoint/DVDSP question

    I've seen a lot of questions around here related to this when I searched, but none exactly about this, so here goes... Is it possible to have a DVD menu open a powerpoint presentation (in powerpoint, of course)? The DVD in question will only be shown