How to check for Auto Allocated Serial Numbers

Hi
I have chosen ALLOCATE SERIAL NUMBERS = YES in Organization Parameters Form.
I have set the Item SERIAL GENERATION = AT SALES ORDER ISSUE at Item Level.
Done with the creation of Sales Orders
Done with Releasing a SO(Auto Allocate = NO and Auto PICK CONFIRM = NO)
Done with Transacting a Move Order.
Now moved to SHIPPING > TRANSACTIONS Form
In Lines/LPNs Tab, Entered Shipped Qty and then I forgot to allocate/assign Serial numbers from TOOLS --> Serial Numbers and created Deliveries and Trip Stops.
Now the Delivery status is CLOSED and Line status is SO Form in SHIPPED.
As I forgot to allocate sno's,system would have allocated serial numbers because ALLOCATE SERIAL NUMBERS = YES in Organization Parameters Form.
Now my Question is,
How to find the serial Numbers that were allocated by the system?
Thanks
Veda

Hello,
What is the question?
Now you have line closed but delivery is still open?
Run this request OM > Shipping > Interfaces > Inventory Interface–SRS set debug to 1.
In requests you have Inventory Interface–SRS, Shipping.... SRS and another with SRS. I do not remember correct name now but you have to pick last one:) and set debug to 1. I will give proper name tomorrow.
Look into results and look for errors.
Regards,
Luko
Edited by: Luko on 2010-04-29 20:48

Similar Messages

  • How do i check ensure that SAP checks for duplicate vendor invoice numbers?

    Hi Experts -
    How do I verify that SAP checks for duplicate vendor invoice numbers and blocks duplicate invoices from being paid?
    Thanks!

    Hi
    Pls chek the settigs by following the path
    IMG>Materials Management>Logistics Invoice Verification>Incoming Invoice>Set Check for Duplicate Invoice.
    Here you make the settings for creating a duplicate invoice check.
    Moreever, in the vendor master, you need to tick the check box for duplicate invoice check.
    I suggest you search the Forums before posting a query. There are lots of postings on this issue.
    Thanks & regards
    Sanil K Bhandari

  • How to check the InDesign cs6 serial number on my office iMac? I am no the one who download it.

    Hi,
    How to check the InDesign cs6 serial number on my office iMac? I am no the one who download it.
    My InDesign cs6 keeps crashing, so my boss ask me to reinstall back. But the problem is, how do I check the serial number? Someone else has already installed it, and we cant track who.
    Please help.
    Regards,
    Cita

    >Someone else has already installed it, and we cant track who
    Not very good office/employee management... but if you DID know who, and you had his/her Adobe ID, you could go to https://www.adobe.com/account.html for a list of activated programs

  • How to check for a function module with its description and functionality

    Hi all,
    How to check for a function module,with its description and its functionality,in detail how can I know the purpose of a particular function module,how to search for a function module which suits my requirement .

    Hi,
    You can search a FM of your requirement by putting in the Key words and searching for a FM. Like * KEYWORD * and then pressing F4.
    Say for example you need to search something regarding converstion.
    Search for * CONVERT * and press F4.
    If there is something specfic like converting date to something you can give
    DATE * CONVERT *
    OR
    CONVERT * DATE *  and press F4.
    Once you narrow down your search you will have a Function module documentation inside the Function module. Please note that all the FMs willl not have documentation.
    Regards,
    Pramod

  • Want to know how to check for new line character in text file

    Hi All,
    I`m trying to read data from text file. However I`m not sure whether the data is in 1st line or nth line. Now I`m trying to read the text from the readline. But if text is "" and not NULL then my code fails. So I want to know how to check for new line character and go to next line to find the data. Please help.
    Thanks
    static int readandwriteFile(Logger logger,String filepath){
              BufferedWriter out = null;
              BufferedReader in = null;
              File fr = null;
              int get_count = 0;
              try     {
              if(new File(filepath).exists())
              fr= new File(filepath);
                        System.out.println("FileName: "+fr);
                   if(fr != null){
    in = new BufferedReader(new FileReader(fr));
                             String text = in.readLine();
                             if(text != null){
                             get_count = Integer.parseInt(text);
                             in.close();
                             else{
                                  get_count = 0;
         else{                    
    out = new BufferedWriter(new FileWriter(filepath));
         out.write("0");
                out.close();
                   }          //Reading of the row count file ended.
              catch(Exception e) {
                   e.printStackTrace();
              finally {
                   try{               if (in != null) {
                             in.close();
              if (out != null) {
                             out.close();
              catch(Exception e) {
                        e.printStackTrace();
              return get_count;
         }

    You are calling the readline() only once which means you are reading only the first line from the file...
    Use a loop (Do-While preferably)
    do{
    //your code
    }while(text == "")

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to check for locks on a table inside a program?

    Hi Gurus,
    Kindly let me know how to check for a lock on a particular table inside a program.I know that we can see locks on table held by a user from transaction SM12 but my requirement is to check for lock on MARA/MARC/MARV if lock exist then bypass my code else do the code.
    Kindly suggest or give code to check for a lock on a particular table.
    Thanks in advance
    Sudipto

    FAQ.  Locked.

  • How to check for updates on SCM packages?

    Hey guys,
    I wondered for some time now how to check for updates on SCM packages, i.e. -git
    or -svn ones. Updates for binary packages are automatically updated by pacman,
    no problem there. Checking for updates on non-SCM packages from the AUR is
    easily done with one of the various helper tools available (personally, I use
    slurpy).
    However, SCM packages can change without their PKGBUILD changing, so I'm not
    notified that I should recompile and update them.
    Is there a "proper" way of doing this? Am I missing something?
    Thanks in advance!

    If your system is booting then u can say that your bootblks are installed.Usually BootBlks are present in 0 & 1 slice of UFS Filesystem
    /usr/platform/platform-name/lib/fs/ufs
    directory where ufs boot objects reside.
    An x86 FDISK partition for the Solaris software begins with a one-cylinder boot slice, which contains the partition boot program (pboot) in the first sector, the standard Solaris disk label and volume table of contents (VTOC) in the second and third sectors, and the bootblk program in the fourth and subsequent sectors. When the FDISK partition for the Solaris software is the active partition, the master boot program (mboot) reads the partition boot program in the first sector into memory and jumps to it. It in turn reads the bootblk program into memory and jumps to it. Regardless of the type of the active partition, if the drive contains multiple FDISK partitions, the user is given the opportunity to reboot another partition.

  • How to check for impacts due to upgrade

    We are plannining to upgrade from 4.7 to ECC6..How to check for impacts on FTP'S,shell scripts and RFC's etc due to the assesment..Please suggest

    Hi,
    FTP's and Shell scripts are OS dependant not SAP or Database dependant so there will be no change at all unless you upgrade OS too. RFC's are not afected as per guides, notes and my experience.
    I´m doing an upgrade from 4.6C to 6.0 with connections with at least 10 systems and none of them had an issue during tests
    Good luck

  • How to check for bootblk on Disk

    Does someone know how to check for bootblk on solaris disk.

    If your system is booting then u can say that your bootblks are installed.Usually BootBlks are present in 0 & 1 slice of UFS Filesystem
    /usr/platform/platform-name/lib/fs/ufs
    directory where ufs boot objects reside.
    An x86 FDISK partition for the Solaris software begins with a one-cylinder boot slice, which contains the partition boot program (pboot) in the first sector, the standard Solaris disk label and volume table of contents (VTOC) in the second and third sectors, and the bootblk program in the fourth and subsequent sectors. When the FDISK partition for the Solaris software is the active partition, the master boot program (mboot) reads the partition boot program in the first sector into memory and jumps to it. It in turn reads the bootblk program into memory and jumps to it. Regardless of the type of the active partition, if the drive contains multiple FDISK partitions, the user is given the opportunity to reboot another partition.

  • Could someone please explain how to check for flashback, to a beginner?

    Could someone please explain how to check for flashback, to a beginner?  Thanks.

    Install all of the available software updates.  If you have flashback it will be automatically removed.

  • How to check for cell made country by Serial numbe...

    Hi there...
    Anyone can explain me how to check a E71 made by which country looking at serial number ?   
    this mobile i purchased with Finland made stickers
    Regards,
    Personal detail removed by a moderator. We kindly ask you not to your phone's IMEI number publicly on this forum.

    Hello,
    What is the question?
    Now you have line closed but delivery is still open?
    Run this request OM > Shipping > Interfaces > Inventory Interface–SRS set debug to 1.
    In requests you have Inventory Interface–SRS, Shipping.... SRS and another with SRS. I do not remember correct name now but you have to pick last one:) and set debug to 1. I will give proper name tomorrow.
    Look into results and look for errors.
    Regards,
    Luko
    Edited by: Luko on 2010-04-29 20:48

  • I do not have cs3, cs2, or cs1 illustrator. But i just purchased a new cs4 for my ibook g4, how can i install without previous serial numbers?

    Hello...I'm still kind of fresh to the Apple world.  I did not know that you needed previous apps to add an old one.  In my pc days, you just cleared your drive.  Help!  I hope I didn't blow my money on an old laptop and new program!!!!

    Mattie,
    When you buy an Adobe application second hand, you need a licence transfer through Adobe. The (final) application cannot have been used for any kind of upgrade, but it may be an upgrade itself and require serial numbers from the one(s) that went before it.
    http://helpx.adobe.com/x-productkb/policy-pricing/transfer-product-license.html
    Here is the Adobe page for downloading CS4:
    http://helpx.adobe.com/creative-suite/kb/cs4-product-downloads.html

  • Check number of enteered serial numbers in sd order

    Hallo,
    i need to check wether a user how many serial number were entered into a SD order by the user. this should be checked before the sales order was saved.
    to do so I tried to implement the logic into User exit USEREXIT_CHECK_VBAP in include MV45AFZB. The problem is: All function modules I found to determine the entered serial numbers need a document number for the selection. Due to the fact, that the sales order is not saved, yet, a document number does not exist at this time.
    Does anyone know a way to get access of the serial number data of a not saved sales order?
    Thanks a lot,
    Axel

    >
    SVP4SD wrote:
    > Hi
    >
    > If your concern is just to check if a serial number is already used in an existing Sales Order, you can dump VBAP .Fill in the serial number that you want to recheck in the field ANZSN, you should get the Order numbers in VBAP-VBELN that uses the given serial number.
    >
    > You can also check other Serial Number Tables like SER00, SER01 to SER07.
    >
    > Best Regards
    Hi,
    thanks for the answe but I think that I am missing something here..
    In field ANZSN has how many serial numbers have been entered from Extras-Technical objects. And I want to check the numbers that have been entered if they allready exist in another sales order. And for those numbers I cannot find the internal tables that they are keeping them..
    But thanks anyway..

  • Stock check error message in serial numbers problem

    Dear Experts,
    In serial number profiles i did the stock check indicator to give an error message if there were incosistinces in stock data,
    now this is the scenario:
    after doing an external maintenance order and creating a PO with reference to the maintenance order PR, and also entering the specified serial number in the PO:
    1) Goods Issuing: i used MB1B with movement type 541 and as the serial number already exist and not wrong so it didnt show any error messages and by checking the stock data in MMBE the material was in stock provided to vendor.
    2) Goods Receipt: when using MB01 with movement type 101 and when entering the serial number of the material it gives an error message ALTHOUGH it is the same serial number issued and the same serial number in the PO
    This is the error message :
    Stock data of serial number G081 not suitable for movement
    Message no. IO231
    Diagnosis
    The current stock information for the serial number G081 contradicts the stock information of the movement to be posted. The following stock information is valid for the document and the serial number:               Batch Number Stock data Serial data   C2
    Only the first different field for the stock data/serial data is assigned. However, further data may also be inconsistent. To determine whether this is the case, you can start an analysis.
    System Response
    Two system responses are possible (set using Customizing): If the case of an error occurring, the assignment of the serial number to this posting procedure is not possible. In the case of a warning, you can, if necessary, transfer the notification.
    Procedure
    Assign a serial number which corresponds in your stock information to the stock data of the posting. You can display the serial numbers which can be used using Select serial numbers.
    Any help is appreciated
    Thanks in advance

    Try with MB04 t-code.
    And External Operation scenario is as follows:
    External Operations will be defined in Maintenance Order with control key PM02. There price will be maintained. So based on that, PR will be created for the External operations. Convert to PO & do GR for operations. I guess, here we can't do any goods issue of material to sub-contractor.
    The reason is that in Sub-contracting, issue item & receiving item should be different. It can't be same. But here in our case, material code & serial number are same.
    So try this process.
    Check the below link for External Processing.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/5b/ae48624b8611d182ba0000e829fbfe/frameset.htm

Maybe you are looking for

  • Data Not coming From DSO to Cube

    Hi All, I have data in DSO. When i run the DTP , request status is green. Now when i go to cube and see the data the request has came but data has not transferred ..... The Request Status is green in cube but data is not cuming.... No transferred dat

  • Error while working with OracleApps Adapter please help mee

    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>1086</code> </part><part name="summary"><summary>file:/F:/product/10.1.3.1/OracleAS_2/bpel/domains/test/tmp/.bpel_RepairOrder_1.0_4bac0e828ef344d37656722b167615db.

  • 1 hd with 2 file formats for use between mac and windows?

    Think this is the right forum... I want to instal a program onto an external hard drive for use on both mac and windows. The program supports both mac and windows. My plan is to get an external hd and partition it in half. One half i will format mac

  • Connecting to Wireless AP with non-english SSID name

    Hi everyone I have a wireless AP with a non-english name ( The name is "IsolÈ coffee"), when I do scan for wireless network in Mac OS X it will not show this network and even if I use iStumbler it will show it but it will not able to connect to it if

  • Question about java virtual machine

    Hi, Recently I met a strange conflict. I used Netbean to build a project and execute this project very well. However, when I opened a command window promt and tried to use the default command 'java' to execute my main class, the virtual machine repor