WM Putaway scanario with tracking of Empty Pallets(SU)

Hello Gurus
Hoping you are doing well! I need your expert advise on following business requirement.
"WM Putaway scanario with tracking of Empty Pallets(SU)"
GR-101 is posted for Empty Pallets (packaging material - stock able item), Putaway into SU Managed storage type call (Pallets). System issues SU # for each pallet (Receiving of empty pallet is one time activity). When Raw materials are received from the external supplier, GR 101 is posted, For WM putaway for raw material into SU Managed storage type (Raw12) following is business requirement.
Step 1) Transfer of Empty pallet for palletizing. Via RF Scanner\Mobile , Transfer of empty pallet(SU) from SU managed type(Pallets)  to >  non-SU managed type (filling) . Result: (A) SU # is free from pallet packaging material. (B) In system pallet packaging material is transferred into non-SU managed type called (filling)
Step 2) Load incoming Raw material in above free SU\Pallet # , And putaway in type Raw12(Su managed).  Via RF Scanner, Create putaway TO (902 to Raw12) for raw material with reference to WM-TR, (A) Scan above empty pallet\SU # in destination storage unit. ( SU barcode already pasted on pallet) (B) destination bin determined by the WM putaway strategy , (C)  as UOM is KG, entering weight after weighting. Result: raw material putaway in type Raw12, in above empty pallet.
Question 1,  for step 2, Can we develop a custom RF scanner transaction?
Step 3) same raw material is issued to the production (PSA 100) Result: Same pallet\SU is empty completely. SU # is free from raw material
Step 4) Transfer back Empty Pallet to> type Pallets (SU Managed) from type filling (Non-SU managed)
Via RF scanner, create & confirm new TO for transfer same Pallet packaging material on same pallet \ SU #. to empty pallet type (pallets-SU managed) , just free from raw material after issuing to production. Result: Same pallet \ SU # is kept from step 1 to Step 4 
Question 2,  for step 4, can we develop a custom RF scanner transaction?
Question 3 = Big Question Is this a efficient mapping of this requirement ?   OR   Do you have some other suggestion \solution for mapping such scenario?  Business wants to keep the track of Empty pallets (SU) in WM system.  & Business wants to use the same pallet\SU # in its lifecycle.  Is this a good Business requirement?
Thanks in advance for your advise.
Thanks
Semab

Hello Semab,
I read through the query a couple times and I still have difficulty understanding. I will do my best :-)
You want to maintain your physical pallets as stock on hand in SAP inventory.
Based on my understanding Pallet = Packaging material and SU = Storage unit, so in your process you will have both the packaging material and the RAW inside a single SU.
In step one you mention transferring the pallet/SU into non SU managed storage location and expect the result to be SU without packaging material but I would expect the opposite result, you will have packaging material without a SU # - regardless you will still have physical bar code number so not an issue, so if I understand so far: for both question one and two I would say yes, through customization it is possible. We actually have done some customization to keep same source SU as destination SU during storage location to storage location transfer so I know your requirement can be done through customization. I believe through standard your SU # would normally be dissolved at a couple points in the process you laid out.
For question # 3...
Is this a efficient mapping of this requirement ? It seems to be fairly efficient based on the requirement as I understand it but I would also research HU management as a possible solution.
Is this a good Business requirement? Absolutely not (in my humble opinion), what benefit could this bring to a business? In other words how will this save them time/money or build efficiency? They will be spending a lot of time and money to implement and to follow this process day to day when SAP already has great tracking capability through standard look up transactions and the standard process flow. This sounds like a case of trying to recreate a legacy systems functionality with SAP. Moving around and tracking a physical pallet in SAP just for the sake of using the same SU# in an end to end for process is adding steps that are not required and don't bring value. Its key to limit the number of steps in SAP to build operational efficiency that's the way to bring the full value in any SAP implementation (logistically speaking)...
Kind regards

Similar Messages

  • Create a Playlist from external folder with tracks already existing in iTunes

    I was just wondering if its possible to create a playlist from an external folder (on my desktop) with tracks that already exist in iTunes.
    I basically have a folder on my desktop that i use with Serato, i was wondering if it'd be possible to sort a playlist in iTunes with the tracklist from the folder? I already have all the tracks on iTunes so i don't want to add them onto iTunes again just to put them into a playlist as i'd have to sort through all the duplicates to delete the non playlisted tracks (theres around 1500 so it wouldn't be a quick task).
    Would be much appreciated if anybody can help!

    Hi,
    I have an AppleScript that does this.
    This script need Spotlight metadata, all files in the folder that you use with Serato should be indexed.
    Works well if the tags (name and artist) are defined
    In this script :
    it will display a dialog to select your folder
    iTunes search track from the library playlist according to (artist, album and title in the Spotlight metadata of each file).
    If iTunes found a track, iTunes will add this track to the new playlist.
    The script takes 35 seconds for 1000 files on an old machine (PowerMac G5 2 X 1.8 GHz) .
    This should take less than 100 seconds for 3500 files on the new machine
    Here is the script :
    -- this script need Spotlight metadata, files in the folder should be indexed
    set folderPath to (choose folder with prompt "Select the  folder that you use with Serato")
    set f to quoted form of POSIX path of folderPath
    my makePlaylist(do shell script "/usr/bin/find " & f & " -type f \\! -name '.*' -print0 | /usr/bin/xargs -0 /usr/bin/mdls -name kMDItemTitle -name kMDItemAlbum -name kMDItemAuthors | /usr/bin/sed 'H;$!d;x;s/\\n[^k]//g'")
    on makePlaylist(t)
          script o
                property L : paragraphs of t
          end script
          set tc to (count o's L)
          tell application "iTunes"
                set newPlaylist to make new playlist with properties {name:"Serato"}
                set masterLibr to (get first playlist whose special kind is Music)
          end tell
          repeat with i from 2 to tc by 3
                set {tAlbum, tArtist, tTitle} to my getvalue(items i thru (i + 2) of o's L)
                tell application "iTunes" to try
                      set t to (get first track of masterLibr whose name is tTitle and artist is tArtist and album is tAlbum)
                      duplicate t to newPlaylist -- add founded track from the library playlist to the  new playlist
                end try
          end repeat
    end makePlaylist
    on getvalue(tList)
          set oTID to text item delimiters
          set text item delimiters to "\""
          set {alb, aut, title} to {"", "", ""}
          try
                repeat with i in tList -- if line does not contains a double quote then the tag is  empty -->  = (null)
                      if i starts with "kMDItemAlbum" then
                            tell i to if it contains "\"" then set alb to text item 2
                      else if i starts with "kMDItemAuthors" then
                            set text item delimiters to "(   "
                            -- if artist contains one word, it doesn't contains double quote
                            tell i to if it does not contain "(null)" then
                                  if last text item starts with "\"" then
                                        set aut to text 2 thru -2 of (last text item)
                                  else
                                        set aut to (last text item)
                                  end if
                            end if
                            set text item delimiters to "\""
                      else --kMDItemTitle
                            tell i to if it contains "\"" then set title to text item 2
                      end if
                end repeat
          end try
          set text item delimiters to oTID
          return {alb, aut, title}
    end getvalue

  • Importing CD to Artist folder\Album folder\file with track number and name:

    I have a problem then importing my cd’s to my harddisk using iTunes.
    On my previous pc I got what I want, Artist folder, Album folder and file with track number and name:
    e.g.
    D:\My Music\B.B. King\Blues On The Bayou\01 Blues Boys Tune.mp3
    D:\My Music\B.B. King\Blues On The Bayou\02 Bad Case Of Love.mp3
    D:\My Music\B.B. King\Blues On The Bayou\03 I'll Survive.mp3
    But now I get:
    D:\My Music\Compilations\Blues On The Bayou\01 Blues Boys Tune.mp3
    D:\My Music\ Compilations \02 Bad Case Of Love.mp3
    D:\My Music\ Compilations \03 I'll Survive.mp3
    In iTunes my settings are Edit -> Preferences -> Advanced: iTunes Music folder: D:\My Music and checkmark in both: “Keep iTunes Music folder organized” and “Copy files to iTunes Music folder when adding to library”.
    My version of iTunes is 8.0.1.11
    Thanks in advance
    Peter

    It will depend on the album. Gracenote considers anthologies, a collection of tracks by the same artist taken from different albums, as a compilation. In iTunes the compliation setting should really only be applied to a collection of tracks by different artists.
    tt2

  • Two phones ordered, only one shipped. The iPhone 6 has shipped with tracking number and charge to my card. iPhone 6 Plus has no information available, no one at CS can tell me if this is normal, if it is delayed, any info appreciated.

    I placed an upgrade order for two phones, an iPhone 6 and 6plus.
    I was in the Verizon shopping cart at 11:55 and checked out by 12:01 AM pacific time.
    I do have my email confirmation for both phones with ship date 9/19
    The iPhone 6 has shipped with tracking number and the charge to my card came through for the price of this phone.
    There is no other information available - nothing on the status of the 6 Plus. Customer service doesn't know if this is normal or if my order went through, its really bad.
    Any further information would be much appreciated.

    I was just told by a Verizon sales rep that, when her team got in, when she checked the system at 3:03 (midnight+ 3 minutes)  all 6Plus had a back order date of October, and now its going into November even though the pre-order system was showing 9/19 - that all verizon iphone 6 plus had an instant sell out.
    She had no additional information on my iPhone 6 plus, not even if there was a chance for it to ship out, when the back order date would be - no further information.
    (A different rep I talked to said all iphone 6 plus pre orders had a ship date of October, all of them - I asked what Verizon is going to do when they advertised iphone 6 plus for 9/19 delivery and your telling me they never had any available - at this point he transferred me... *****)

  • Error in the iphone music app iOS7 with dozens of empty genius playlists

    Im getting an error in the iphone music app in iOS7 with dozens of empty genius playlists even tho genius is OFF in my account settings and genius playlists are not selected for syncing with my iphone 5.  All apps, iTunes and iOS 7 are updated.
    The option to turn off genius under STORE menu is no longer available in the latest version of iTunes 11.1.
    Thanks.

    Love your comment:
    "Oddly the option to Delete is, get this, under Save:"
    LOL!!!!!!!!!
    This is just nuts!
    Whoever heard of hitting SAVE to DELETE something....Ha Ha Ha!!!
    The lunitics are officially running the asylum.....who knows whet they will do next.
    Design cars where you need to engage reverse to access drive.
    Many thanks this worked for me and I would NEVER have found it without you.
    I would NEVER have hit Save to Delete something...And I mean NEVER!
    Maybe if I hit Cancel button below this text box, it will save the contents for me..... Unbelievable!!!

  • Unable to email Pages 5.0 doc with track changes

    In Safari, when trying to attach a Pages doc (Pages 5.0 in Mavericks) with track changes in gmail I get an "Attachment failed" error. In Chrome, I'm able to attach and send the file, but the person I've sent it to is unable to open it. Is anyone experiencing anything similar and/or has discovered a fix?
    Thanks!

    No, they get an error when they try to open it, and they do have the same version of Pages. Yes, I did end up having to export it as a temporary solution, and I don't think the track changes stayed. I was wondering if not being able to send Pages files with track changes is a common issue with Pages 5.0. If you try emailing a Pages 5.0 file with track changes, are the recipients able to open it with track changes in Pages?

  • Hyperlink with tracking applied does not work in PDF

    We use lots of web addresses in our advertising and generally the web addresses automatically convert to hyperlinks when we distill the files and make PDFs. Recently we've had two instances where someone applied tracking or justification to the line of text containing the url to make it spread across the page. When we make our PDF the url is not clickable. Is there anyway around this? We tried actually creating a hyperlink manually in InDesign by using the Hyperlinks panel and entering the address, but that didn't work either.

    Peter,
    We'll look into that. We already do two separate PDFs for print and web, but
    we are distilling both right now. Wouldn't be too much of a problem to
    change to exporting the web version I don't think.
    I did a test, just curious, is there a way to keep it from putting a black
    box around the link on the PDF?
    Thanks for your help! We appreciate it!
    Beth
    From: Peter Spier <[email protected]>
    Reply-To: <[email protected]>
    Date: Fri, 14 May 2010 13:24:04 -0600
    To: Beth Phillips <[email protected]>
    Subject: Hyperlink with tracking applied does not work in PDF
    Distilled PDF uses Postscript which does not support hyperlinks and
    interactivity. To make your hyperlinks in ID you'll need to export and check
    the Include Hyperlinks and Include Interactiviity boxes.
    Your printer doesn't need hyperlinks because they don't work on a printed
    page. The requirements for print and interactive PDF are quite different, and
    you may find you need to make two versions.
    >

  • A gap between letters started to show in my indesgn files. tried to undo with tracking, the paragraph settings. nothing helped. it ruins the fluent view of the document. how can i restore the program so that doesn't happen?

    a gap between letters started to show in my indesign files. tried to undo with tracking, then with the paragraph settings. nothing helped. it ruins the fluent view of the document. how can i restore the program so that doesn't happen?
    for example: say i write a paragraph. then, in a weird some sort of way an involuntary gap suddenly appears between different letters of random words(i did not recognize any pattern to the gap appearing) throughout the entire paragraph. once i've double clicked on that paragraph, and made a minor change, lets say tapped a 'space' key, and then clicked ctrl+z to undo, it has aligned(or fixed) the entire paragraph and made it look ok again. i've tried numerous ways to undo the entire thing, but cannot find the reason. i've been working for a few years and there's no reason why this thing all of a sudden should happen right now.
    if anyone has stumbled on something like that and can advise, i would welcome it.
    MNS-KG
    Vadim

    yep...i'm typing with hebrew. i'll make a printscreen with the settings you've asked for@:
    if you look closely you'll see that almost every line has a single letter apart. in hebrew there is no usually a singe letter structured words.

  • Comparing documents with Track Changes on

    We're currently using Acrobat Pro 8.1.6 with Word 2003 (11.8307.8221) SP3.
    We create PDFs with Track Changes on (showing).
    We're testing and will soon be implementing Acrobat 9.1.3
    Here's the issue:
    We have a large number (10,000+ documents) created in Word, with Track Changes showing.
    We create a PDF using Acrobat 8.1.6.
    As long as we continue using Acrobat 8.1.6 we can compare documents with Track Changes on.
    However, now we're moving to Acrobat 9.1.3.
    We can open these existing documents, and edit them (delete pages, add comments, etc.) but when we try to compare an 8.1.6 file that has Track Changes on, we're getting an error message:
    "These dots conform to PDF/A standards and do not allow editing. Please modify PDF/A secumenttings to allow editing and try again."
    In Word, our Adobe PDF settings DO NOT HAVE "Create PDF/A-1a:2005 compliant file" checked (for kicks we tried it with this option on and off...same results). We have also DISABLED "Enable Accessibility and Reflow with tagged Adobe PDF."
    This is only an issue taking 8.1.6 files into 9.1.3. If we create a PDF in 9.1.3 with Track Changes on, we have no problems. It appears to be a disconnect with 8.1.6 and 9.1.3.
    I've gone through the forums and the web, and cannot find this issue anywhere else.
    I can also recreate the issue at will.
    Anyone out there have any ideas? We can't recreate the old 8.1.6 PDFs in 9.1.3...too many files, too little time, too much trouble.
    Thank you!

    Open the old pdf in Pro 3.? using file open.  Under "Advanced" select "Preflight", under "PDF/A compliance" select "Remove PDF/A information" and save the pdf.  We had to do this to both old and new pdf's before we could compare without the mentioned error.  It sucks though, having to convert the documents and save them before compare.  Hope this helps!

  • Merging pages in C# with Hyperlinks (destinations empty)

    Hi all,
    I tried to merge PDF documents with CAcroPDDoc InsertPages. It works well. Now I have hyperlinks in my documents. After merging the documents the list of destinations is empty and the links are dead.
    Does anyone know a solution to this problem?
    With four your help
    ctNoSpec

    It's a bug/limitation of the COM APIs for page insertion.
    Use the JSObject bridge to get to the JavaScript version and be sure to pass the right values for the insertFlags.
    From: ctNoSpec <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 27 Feb 2012 06:05:55 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Merging pages in C# with Hyperlinks (destinations empty)
    Re: Merging pages in C# with Hyperlinks (destinations empty)
    created by ctNoSpec<http://forums.adobe.com/people/ctNoSpec> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4231932#4231932

  • Problem with a thousend empty playlist in iTunes Match.

    I need a help to reset my itunes match because have a problem with a thousend empty playlist.

    Funny thing: I just reset the iPad 2 again and was careful to shut off iTunes Match. Almost immediately my iPhone 4s updated and showed no more duplicate "recent" playlists. A check of my Laptop also shows none. So now it's isolated to the iPad. Guess I'll leave Match shut off for a day or two.

  • An Idea: How to make the Magic Timeline work with Tracks

    i have thought about this for a title and i think i have found a solution. the magic timeline is pretty cool but with it we lost tracks. for broadcast (not only for that but mostly for it) you need tracks that are assignt in a special way and there is no way around it. so i came up with the following idea…
    to make the magic timeline work with tracks it will be a like an audio compound clip, that will give you full access to the magic time. but it can be outputted to proper tracks assignment.
    current audio compound clips don't show you the video if there is one. this one will. also audio can be tagged to a track so it will automatically drop into the right track. you can of course move the audio from one track to another. moving the clip to another track will auto change the tag to new track. if you copy an audio clip from one track to another, the original clip will keep its tag but the copied one gets the new tag.
    example…
    you do a voice over with all your edits and stuff. then you collapse it to a track (new name to get rid of any sort of confusion). you can tag/name the track to "voice over" or whatever you want and color label it.
    you need to edit, adjust it? no problem! double click it and it will open up and you'll see the magic timeline. edit till you done and click on arrow to return to track view.
    export your movie with proper tracks for broadcast right out of final cut pro x
    in the end your output timeline looks like a timeline from fcp7 before you output it on tape.
    could this work? i believe it could and it would help to make fcpx ready for broadcast.
    i hope this makes some sort of sense to you
    anyway, i hope apple will include this or something like this in an update for fcpx.

    You may be able to get by with just running MDT 2010 for now. *However* you *must* ensure that you are running WinPE 3.1 or greater, If you are unsure, open up a command prompt in WinPE (PRess F8), and run "ver" it should say build 7601 or greater, 7600
    and less is not compatible.
    When done, Run the Dell Advanced Format tool in the Full OS on a deployed machine to verify:  http://del.ly/afhdd  Although it is possible to install an OS on an Advanced Format Drive
    with WInPE 3.0 or earlier, and it may *appear* to work, performance may suffer. The Dell AF tool should tell you if the sectors are aligned properly.
    Additionally, it is also possible that the storage driver you have installed in your image is incompatible with AF drives. Check the Make/Model and check with the Hardware Mfg to see if they have driver that supports AF drives.
    Keith Garner - keithga.wordpress.com

  • Problem with track listings

    I have purchased and downloaded a compilation album. This nowProblem with track listrings appears in the album listing of my iTunes but the individual tracks do not appear if I look under the individual artists' names. Does anyone have any ideas why not?

    For more details see Grouping tracks into albums, in particular the end of the section Missing Artist or Album not with others by same artist.
    tt2

  • Add usage depency to a SC already associated with track

    Hi All,
    I am trying to add a usage dependency for a SC to another SC that is already associated with track.
    When I add the dependency in the SLD, it doesn't show up in the CMS Landscape Configurator (XML content), even if I do "Update CMS". The only way to get it to work is to delete the SC from the CMS (Delete Table Entry) and add it back in.
    Is the a way to update the dependencies in the CMS without deleting / re-adding to SC ?

    The Synchronize SC Dependencies button should do the same trick (after an Update CMS).

  • How to select textFrames with tracking different to 0 (zero)?

    How to select textFrames with tracking different to zero (greater or smaller than zero)?
    Thanks.

    Hi All,
    Thanks for your help. The orignal clips are from Sony PMW F3 camera and I have got Dimensions: 1920 × 1080, Codecs: MPEG-2 Video, Linear PCM, Timecode, Color profile: HD (1-1-1), Total bit rate: 36,623.
    The other camera has given me .MTS files which I have converted in MPEG-2 also. I used Wondershare Video Converter to convert second cameras clip.
    I don't think the clips are matching with first camera's clips because still that is saying the same thing.
    Regards,
    Jai

Maybe you are looking for

  • Export in Query Ready mode not working in 11.1.2.1

    Hi, I have created a report with 3 grids; Grid 1 - populates employee information, Grid 2 - populates employee salary Grid 3 - calculation of Grid 1 and Grid 2. In Report I am able to see the data, but when I am using the "Export in Query Mode" optio

  • Can i use 32Gb RAM on my macbook pro 2012

    Can i use 32Gb (2 x 16Gb) RAM on my 2012 Macbook Pro????

  • Error in DP90

    Hi! I've been doing DP90 for a sales order but I am encountering this error message: "Resource-related billing/quotation not possible for sales document 40000106/000010". Please help. Thank you.

  • Customer service issues-UNRESOLVED

    Please have a member of your management team call me.  I have spoken to several members of your team to no avail. Can you have someone at a regional representative level reach out to me please? Thank you, Lisa {removed per forum guidelines}

  • How to setup SNMP and start run it in Xserve

    hello, any one who can tell me how to configure the SNMP in Mac Xserve and how to start up it? Thanks in advance!