Reg:How can we show non valuated stock in the system for the paid items?

Hi All,
Customer orders 100 boxes and pays to all material.But customers  are shipped the  required material as and when required.My client requirement is these 100 boxes should show as non valuated stock.
How can we show these paid 100 boxes of material as non valuated stock in the sap? Is this functionality available in sap or it comes under requirement?
Ex:Customer X ordered 100 boxes and he paid to all quantity.
     The customer X does not have space at his premises to keep the stock of 100 boxes.He just requests 20 boxes every monday or required quantity.Then company ships the required quantity to customer X.
Now the requirement is that these 100 boxes should be shown as non valuated stock in the system.This should not used for other customers, should not work ATP functionality for these material quantity.This should show as reserved to this customer X
could you share any ideas or solutions reg this..
Thanks in advance,
Regards....VM
Edited by: vm on Mar 9, 2009 3:46 PM

Hi Arnel,
Thank you for giving valuable points.
In consignment scenario,the stock is available at customer place not at company place.But ownership is company itself.
But in this scenario,Customer is not having space to keep the total ordered quianty.So cutomer stock should be kept at company itself,customer requests the required quantity(for which he  already paid  for the total ordered quantity) as and when required.How can it suits in this scenario?Could you plz calirfy the debit memo to realize sales ?How it will be help ful?
Thanks and regards...VM
Edited by: vm on Mar 10, 2009 9:19 AM

Similar Messages

  • When I copy/paste a paragraph from a PDF doc, it pastes with no spaces between words. How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue.

    When I copy/paste a paragraph from a PDF doc (onto Facebook status bar, for example) it pastes with no spaces between words.  I.e: "The manhadajugofcoolwaterand offeredmeadrink." How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue. I'm new to Apple so any help will be much appreciated. Thanks!

    I can't speak about this occurring with FaceBook since I don't use FaceBook, but I see the same type of thing when I copy and pasted from websites. It doesn't always happen and I cannot find any particular set of circumstances under which it occurs or does not occur.
    I am merely responding to let you know that it happens to me as well and I have seen no way to correct it. I'm not so sure that there is a way to correct in in that it may have something to do with how the original text is formatted in the PDF or on the website and how it eventually "fits" into the text field or the area in which it is pasted.

  • Premiere CS4 - How can you import QuickTime (.mov) videos and which settings for the sequence?

    Premiere CS4
    How can you import QuickTime (.mov) videos and which settings for the sequence?
    Please reply in plain English or if possible in German
    Greetings from Vienna, Peter

    I have not installed Quicktime.
    I got a few scenes (.mov) from a Canon Eos 70d.
    I want to create a short film (in Premiere CS4) with these scenes, mixed with photos and MP3 music.

  • HT5312 My email associated with my iCloud ID has been deleted and my birthday is wrong in the system for the security question. Therefore, I can't delete my old iCloud ID in order to have my new ID on my phone.

    My email associated with my iCloud ID has been deleted and my birthday is wrong in the system for the security question. Therefore, I can't delete my old iCloud ID in order to have my new ID on my phone. HELP!

    If the old ID is yours, and if your current ID was created by editing the details of this old ID (rather than being an entirely new ID), go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can I export speech analysis text with imbedded timecodes for the creation of subtitle files?

    I found a script that allows you to export all your text layers with time codes as a .srt subtitle file. However, instead of multiple text layers, I have only one: essentially the meta data from Premiere speech analysis that with the aid of a different script, is being used at a "subtitle layer". Essentially, I'm trying to use this data to create a .srt file so I can create actual subtitles, not this hybrid animation/text layer.
    Here is the script I used to export the text layer to .srt:
    Subtitle Exporter v01  
    Script by Philipp Grolle
    www.display-artists.de
    Instructions:
    Select all the Text Layers you want to export, run the script, and save the file as .srt
    Attention: The Script has not been debugged or testet. Try it on your own risk!
    // get all the selected Layers
    var theComp = app.project.activeItem;
    var alleLayer = theComp.selectedLayers;
    // count how many layers are selected
    var anzahlLayer = alleLayer.length;
    // Enable the line below if you want to change the order of your text (ascending / descending)
    /* alleLayer.reverse(); */
       // prompt to save file
       var theFile = File.saveDialog("Save the text file.", "untitled.txt", "TEXT txt");
       // if user didn't cancel...
       if (theFile != null) {
          // open file for "w"riting,
          theFile.open("w","TEXT","????");
             // Do it for all the selected Layers
             for (x = 0; x < anzahlLayer; x++)
                 // get In- and Outpoint of the current Layer and convert to timecode (00:00:00:00)
                var timecodeIn = timeToCurrentFormat(alleLayer[x].inPoint, 25);
                var timecodeOut = timeToCurrentFormat(alleLayer[x].outPoint, 25);
               // split the value of the inPoint; converting last 2 characters  (frames) to milliseconds, and finally join it again with comma instead of colon
                var str_in= timecodeIn;
                var timeCodeAnfang_in=str_in.slice(0,8);
                var timeCodeEnde_in=str_in.slice(9,11);
                var millisek_in = timeCodeEnde_in*40; // 1000 milliseconds divided by 25 fps = 40
                var zusammen_in = timeCodeAnfang_in +"," + millisek_in;
                //split the value of the outPoint; converting last 2 characters  (frames) to milliseconds, and finally join it again with comma instead of colon
                var str_out= timecodeOut;
                var timeCodeAnfang_out=str_out.slice(0,8);
                var timeCodeEnde_out=str_out.slice(9,11);
                var millisek_out = timeCodeEnde_out*40;
                var zusammen_out = timeCodeAnfang_out +"," + millisek_out;
                //counter for the number above the timecode (in the results)
                var zaehler = x+1;
                //writing the results to file
                theFile.write(zaehler);
                theFile.write("\r\n");
                theFile.write(zusammen_in);
                theFile.write(" --> ");
                theFile.write(zusammen_out);
                theFile.write("\r\n");
                theFile.write(alleLayer[x].property("Source Text").value);          
                theFile.write("\r\n\n");
          // close the text file
          theFile.close();
          // open text file in default app
          theFile.execute();
    As I am only using one text layer, it shows me only one continious subtitle in the .srt file. Does anyone have any suggestions?

    I should add that I myself am not particularly familiar with scripts or scripting, I'm merely trying all possible solutions to my problem and this seems to be a good approach. Any help would be much appreciated.

  • How can I correct my email address on my iphone for the app store

    How can I correct my email address on my iphone so I can access the app store and itunes via my phone. The address is correct on my laptop and ipad so have no idea what's going on. All I know is that I cannot get into the app store or itunes on my iphone. Does anyone have any ideas please

    Hi there gillian115,
    You may find the information in the article below helpful.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    -Griff W. 

  • Purchased Adobe Acrobat 9 Pro a few years back.  Disc is missing.  How can I purchase a new disc from your company for the same software.  I don't want to upgrade at this time.  Thanks

    I have lost the original disc of adobe acrobat 9 Pro.  Is there any way to purchase another disc so that I can download it on the computer I use.
    Thanks
    Lou

    You are not likely to find a disc available.  You can 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.
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • How can i show single photos,not diaporama on TV with the AV component cable (without Apple TV)

    Hi everyone    
    I've got an Ipad 2 and the Apple AV component cable.
    I would like to show on tv only the photo which is on my ipad, but the only way i have is to start a diaporama with all my photos
    How should i do to show only the one I am on the ipad
    Thanks all

    @Chris:
    I was just referring to the visual graphics (you know, the fireworks, stars and other stuff that reminds me of the 70's....) that you can play on the screen when iTunes is playing music?
    I noticed that these effects are not just randomly chosen, they are in fact synchronized to the beat and intensity
    of the music, and that struck me as rather cool......

  • Can DrillFilters() show "None" when no filters are applied to the report?

    Hi everyone,
    On top of my report I've got a pre-defined Drill Filter cell (in case the report is printed and the filter bar and the filters applied are not visible anymore). I modified the cell a bit and it looks liek this now: ="Applied filters: " + DrillFilters()
    Can I somehow make it show "Applied filters: None" if the report is now filtered?
    Using latest Webi with all patches.
    Thanks,
    Galin

    Perfect! Thank you very much, Thangaraj!
    I modified it a bit so I don't have to enter every single Drill Object (=Dimension)
    =If Length(DrillFilters())=0 Then "Applied Filters: None" Else "Applied Filters: " + DrillFilters()

  • How can we show a custom column to all libraries in the default view without creating that for all libraries everytime

    Hi,
    Any help?
    Thanks
    srabon

    You can use powershell script below which loops through each libraries and sets view.You can modify the script to user it for single library as well.
    Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
    $siteURL = "<YOURSITEURL>"
    $site = Get-SPSite($siteURL)
    foreach($web in $site.AllWebs) {
    foreach($list in $web.Lists) {
    if($list.BaseType -eq "DocumentLibrary") {
    // the variables `$web` and `$list` already reference the objects you need
    //$site = New-Object Microsoft.SharePoint.SPSite($SiteURL) ;
    //$web = $site.OpenWeb($SiteURL);
    // new instance of the list is necessary to avoid the error "Collection was modified"
    $newList = $web.Lists.item($list.ID);
    $viewfields = New-Object System.Collections.Specialized.StringCollection
    $viewfields.Add("DocIcon")
    $viewfields.Add("LinkFilename")
    $viewfields.Add("_UIVersionString")
    $viewfields.Add("FileSizeDisplay")
    $viewfields.Add("Created")
    $viewfields.Add("Modified")
    $viewfields.Add("Editor")
    [void]$newList.Views.Add(<VIEWNAME>, $viewfields, "", 100, $true, $true)
    $newList.Update();
    // setting the default view
    $view=$newList.Views["<VIEWNAME>"]
    $view.DefaultView = $true
    $view.Update()
    $web.Dispose();
    $site.Dispose();
    Ref: http://stackoverflow.com/questions/10015311/part2-sharepoint-2010-powershell-loop-through-all-document-libraries-creat
    Hope that helps!
    Avni Bhatt

  • How can I e to these new terms and conditions for the App store?  I can't find an "AGREE" or "ACCEPT" option anywhere

    I am prompted that I must agree with the new terms and conditions of Itunes before I can download an app but have no place to agree to it or accept it.  Any advise/

    Try firing up your computer and accessing iTunes that way and get it to trigger the agree page. Worst case scenario you may need to download a free app to trigger the agree popup.

  • How can i add a new event in my calendar for the new IOS 5?

    I cant seem to add a new event on my iPhone 4 with the new iOS 5. I read the you are suppose to tap and hold the day you want to add an event, but that doesnt seem to work for me.

    It works for me when I tap and hold my finger over the day seeing the month or week, when the phone is turned sideways. Maybe you should keep the finger a little longer on the screen to hold.

  • How can I set my filter to bring only zeros for the field?

    I have a field that has Number as data type in a table in Access. I only want to extract only zero values.
    Field1     Field2
    Orange    33
    Apple       0
    pumpkin  0
    Tangerine 12
    I appreciate your input.
    GGGGGNNNNNN
    GGGGGNNNNN

    Try a LEFT JOIN --
    SELECT [All Applications-Western].ApplicationNumber, [NN List - Western].approved
    FROM [All Applications-Western] LEFT JOIN [NN List - Western] ON [All Applications-Western].DealerNumber = [NN List - Western].DealerNumber
    WHERE ((([NN List - Western].approved)=0));
         OR a RIGHT JOIN --
    SELECT [All Applications-Western].ApplicationNumber, [NN List - Western].approved
    FROM [All Applications-Western] RIGHT JOIN [NN List - Western] ON [All Applications-Western].DealerNumber = [NN List - Western].DealerNumber
    WHERE ((([NN List - Western].approved)=0));
    Build a little, test a little

  • How can i make a suggestion on a good update for the iphone

    Hi I am Michael Hendrickson a third gen iphone holder.  I receintly thought of an idea regarding the "notes" app. Myself and everyone I know uses this app mainly for lists, I feel that it would be in our best intersts to be able to swipe with the finger and cross the item off (with a line) and/or completely erase the item from the list. I hope this helps future and current iphone users, please let me know if this helps.
    Thank you,
    Michale Jason Hendrickson
    iphone user

    http://www.apple.com/feedback/iphone.html

  • HT5182 How can I convert Raw images from iphoto to jpg for the web?

    I have some pictures in Raw mode stored in my Iphoto that I need to convert in JPG for the web and to print in business cards, I have been going around e-mailing the pictures to myself in large or medium size and then saving them again to my iphoto. Is there a way to do this from iphoto directly?

    iMac (24-inch Early 2009), iOS 6
    Are your pictures on your iMac or on an IOS device?
    On your iMac use "File > Export " set the jpeg quality and size you want:
    Regards
    Léonie
    Sorry, Ralph, I see, we have been cross posting

Maybe you are looking for