Looking to repete serial numbers in batch automation

Hello,
I hope this is the correct forum to post my question to. Basically I'd like to have the save as serial numbers repete in my batch automation, so appending the files with 1-9 and then starting back at one. I thought I'd be able to accomplish this using a 1-digit serial, however if I batch process more than nine images it forces a second digit in the serial. I'm dealing with a large image bank that I need to sort, so this would be a huge time saver. Thanks!
JPG

You didn't get back about your contact sheet process… Anyhows I had a spare 15 mins this morning and heres how I would look at doing this… You may be able to do this too…? A script you can run in the ESTK as is or it could be added to a menu item if you wanted… With you images loaded in active bridge window… This should sort to Nth number of collections… These are just arrays of file aliases so nothing is actually moved yet… You can trash the collections too if you dont like them… If it does what you want you can select all the files of each collection and use the output panel to create contact sheets… or drag to move/copy the files on your system…
#target Bridge
collectionsNth();
function collectionsNth() {
    var i, j, doc, count, colls, files, num;
    doc = app.document;
    count = doc.visibleThumbnailsLength;
    files = doc.visibleThumbnails;
    num = prompt( 'Please enter a number to split' , '5' );
    colls = addCollections( num );
    j = 0;
    for ( i = 0; i < count; i++ ) {
        app.addCollectionMember( colls[j], files[i] );
        j++;
        if ( j == num ) { j = 0 }; // This looks rubbish Im sure theres a neater way to do this…
function addCollections( n ) {
    var i, colls;
    colls = Array();
    for ( i = 0; i < n; i++ ) {
        colls.push( app.createCollection( 'Sort Nth ' + ( i + 1 ) ) );
    return colls;

Similar Messages

  • What is the difference between Serial numbers and Batch management.

    Hi Gurus,
    Can anyone explain the difference between Serial Number and Batch Management in breif.
    Regards
    Ravi

    Hi,
    Serial number management and batch management are different functions that can be
    used in conjunction with each other.
    A batch represents a non-reproducible subset
    of the total quantity of a material held in stock, which is managed separately from
    other subsets of the same material.
    For Example  Different production lots
    (for example, paints, wallpapers, pharmaceutical products), delivery lots or quality
    grades of a material.
    whereas a serial number is a number that you give to an individual item of material in addition
    to the material number, in order to differentiate between this individual piece and all
    other items of the material. The combination of material number and serial number
    is unique. It is not necessary to use the batch management function to use serial
    number management.
    Regards
    VIjay.

  • Batch and serial numbers in Crystal Document Layouts

    I am attempting to write a set of document layouts using Crystal reports namely, Sales Order, AR Invoice (Items), Delivery Note. The stock items are either serial numbered items or batch numbered. I need to display the serial numbers or batch numbers on the Delivery Note, but cannot find a suitable link to the tables where the serial number/batch numbers are stored.
    I have identified the following tables as likely candidates for use in the document layout, but cannot see how I might join them to the ODLN or DLN1 tables:
    For the Batch Numbers OBTN; ITL1 and ILM1
    For the Serial Numbers OSRN and views OSRI; SRI1 and SRI1_LINK.
    Does anyone know or have suggestions on how to link these (or other?) tables to the DLN1? Thanks in advance
    David

    From memory, the link needs to be to SRI1 joined on Base Doc Type, Doc Entry / Base Doc entry, Item Code & row / line num (for serial numbers anyway...)

  • Difference between Batch and Serial Numbers

    Hi,
    Can anybody explain the difference between Serial numbers and Batches. Which business process use these and their advantages.
    Rewards for the right answers.
    Regards
    Goutham

    >
    goutham p wrote:
    > Hi,
    >
    > Can anybody explain the difference between Serial numbers and Batches. Which business process use these and their advantages.
    >
    > Rewards for the right answers.
    >
    > Regards
    > Goutham
    HI Goutham,
    Serial Number: is nothing but normal numbering to uniquely identify every single piece of product.
    Say in mobile industry every mobile has unique IMSI number that can be thought of as its serial number.
    Given a serial number you can pin point the particular piece of product.
    Batch Number:
    Is Nothing but combining the products produced under certain conditions in a batch.
    For Example in Oil industry if we talk about 2T oil etc the viscosity, Density etc are quite important.
    Now due to slight variations in production the Viscosity Density would not be exactly same for 2 different lots.
    So we maintain Batch where we put classification Criteria in Classification view in Material Master.
    If the criteria are for example Viscosity and density
    Batch1 could be Viscosity=100 density=10
    Batch2 Could be Viscosity=110.5 Density=9.71
    So while selling by knowing Batch number we can tell the customer about the properties.
    Also you would have heard about recall of all the vehicles of Batch so and so from toyota.
    Recently Nokia called off all the Batteries BL-5C batteries of a batch.
    The reason is they were all manufactured at one time and hence since one of them had that error all would have had the same. So the whole batch can be recalled.
    Reward if helpful
    -Abhishek

  • Generate Serial numbers based on criterias

    I have a data on which i need to set serial numbers based on two conditions , one is weight and the other is qty , its like cummulative total of weight and qty based on description of profile , if the description changes the accumulation starts again and continues till qty reaches 50 pcs or wieght reaches 50, please find below a test case.
    the following is the detail table
    create table ow_temp_data ( tmp_no varchar2(12),tmp_pm_code varchar2(12),tmp_ps_code varchar2(12),tmp_desc varchar2(30),tmp_wt number ,tmp_qty number,TMP_TYPE VARCHAR2(2) );
    insert into ow_temp_data (tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','A' , NULL,'H170',25  ,0,'W' );
    insert into ow_temp_data ( tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','A' ,'A01' ,'HEA100' ,0  ,10,'WI' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','B' , NULL,'H170',25  ,0,'W' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','B' ,'B01' ,'HEA100' ,0  ,10,'WI' );
    insert into ow_temp_data (tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','C' , NULL,'HB120',25  ,0,'W' );
    insert into ow_temp_data ( tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','C' ,'C01' ,'HB100' ,0  ,10,'WI' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','D' , NULL,'HB120',5  ,0,'W' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','D' ,'D01' ,'HB100' ,0  ,50,'WI' );
    insert into ow_temp_data (tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','E' , NULL,'PL120',30  ,0,'W' );
    insert into ow_temp_data ( tmp_no, tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','E' ,'E01' ,'P100' ,0  ,10,'WI' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','F' , NULL,'PL120',35  ,0,'W' );
    insert into ow_temp_data ( tmp_no,tmp_pm_code ,tmp_ps_code ,tmp_desc ,tmp_wt  ,tmp_qty ,tmp_type ) values ('0','F' ,'F01' ,'P100' ,0  ,30,'WI' );
    --now the query
        SELECT b.tmp_pm_code tmp_pm_code, b.tmp_desc tmp_desc, b.tmp_wt tmp_wt,
                 b.tmp_qty tmp_qty, b.tmp_type tmp_type,
                 (SELECT SUM (a.tmp_qty)
                    FROM ow_temp_data a
                   WHERE a.tmp_pm_code = b.tmp_pm_code
                     AND a.tmp_ps_code IS NOT NULL) att
            FROM ow_temp_data b
           WHERE b.tmp_ps_code IS NULL;
    TMP_PM_CODE     TMP_DESC     TMP_WT     TMP_QTY     TMP_TYPE     ATT
    A                      H170       25     0     W     10
    B                      H170       25     0     W     10
    C                    HB120       25     0     W     10
    D                    HB120         5     0     W     50
    E                    PL120       30     0     W     10
    F                    PL120       35     0     W     30
    --now what i want as output is to insert this data along with serial numbers or batch numbers into another table called os_batch
    CREATE TABLE OS_BATCH
    (  OB_BATCH    VARCHAR2(12 BYTE),
      OB_PM_CODE  VARCHAR2(12 BYTE),
      OB_DESC     VARCHAR2(30 BYTE),
      OB_WT       NUMBER,
      OB_QTY      NUMBER,
      OB_TYPE     VARCHAR2(2 BYTE)
    -- I want the final output as follows in the os_batch table.
    OB_BATCH     OB_PM_CODE     OB_DESC     OB_WT     OB_QTY     OB_TYPE
    0001           A                        H170       25     10     W
    0001           B                        H170       25     10     W
    0002           C                      HB120       25     10     W
    0003           D                      HB120       1     10     W
    0004           D                      HB120       1     10     W   --in this case qty was 50 since each batch must not exceed 10 it got splitted into 5 with appropriate wt
    0005           D                      HB120       1     10     W
    0006           D                      HB120       1     10     W
    0007           D                      HB120       1     10     W
    0008           E                      PL120       30     10     W
    0009           F                      PL120       8.75     10     W
    0010           F                      PL120       8.75     10     W    --in this  case qty was 50 and wt was more than 50 so qty took the priority and hence 5 rows
    0011           F                      PL120       8.75     10     W
    0012           F                      PL120       8.75     10     W
    [/CODE]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Welcome to the Oracle Forums. Please take a few minutes to review the following:
    <ul>
    <li>Oracle Forums FAQ
    <li>Before posting on this forum please read
    <li>10 Commandments for the OTN Forums Member
    <li>How to ask questions the smart way
    </ul>
    Following these simple guidelines will ensure you have a positive experience in any forum; not just this one!
    Ops!! Posted in wrong forum. Right one is {forum:id=75}
    Hope this helps

  • Difference between upper & header serial numbers.

    Hi Experts,
    Can any one please tell me the difference between upper serial number & header serial numbers of a material in SD?
    Regards,
    Brajesh
    Edited by: brajesh ojha on Feb 27, 2008 11:37 PM

    >
    goutham p wrote:
    > Hi,
    >
    > Can anybody explain the difference between Serial numbers and Batches. Which business process use these and their advantages.
    >
    > Rewards for the right answers.
    >
    > Regards
    > Goutham
    HI Goutham,
    Serial Number: is nothing but normal numbering to uniquely identify every single piece of product.
    Say in mobile industry every mobile has unique IMSI number that can be thought of as its serial number.
    Given a serial number you can pin point the particular piece of product.
    Batch Number:
    Is Nothing but combining the products produced under certain conditions in a batch.
    For Example in Oil industry if we talk about 2T oil etc the viscosity, Density etc are quite important.
    Now due to slight variations in production the Viscosity Density would not be exactly same for 2 different lots.
    So we maintain Batch where we put classification Criteria in Classification view in Material Master.
    If the criteria are for example Viscosity and density
    Batch1 could be Viscosity=100 density=10
    Batch2 Could be Viscosity=110.5 Density=9.71
    So while selling by knowing Batch number we can tell the customer about the properties.
    Also you would have heard about recall of all the vehicles of Batch so and so from toyota.
    Recently Nokia called off all the Batteries BL-5C batteries of a batch.
    The reason is they were all manufactured at one time and hence since one of them had that error all would have had the same. So the whole batch can be recalled.
    Reward if helpful
    -Abhishek

  • Cannot add row without complete selection of batch/serial numbers while creating Goods receipt purchase order

    Error:Cannot add row without complete selection of batch/serial numbers
           Dim oPDN As SAPbobsCOM.Documents
           oPDN = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                         Dim serno As String = "SH-A1,SH-A2"
                        Dim sernoval As String() = serno.Split(",")
                        Dim mnfser As String = "SH-B1,SH-B2"
                        Dim mnfserval As String() = mnfser.Split(",")
                        For k = 0 To sernoval.Length - 1
                            oPDN.Lines.SerialNumbers.InternalSerialNumber = sernoval(k).Trim
                            oPDN.Lines.SerialNumbers.ManufacturerSerialNumber = mnfserval(k).Trim
                            oPDN.Lines.SerialNumbers.Quantity = linedetails(iRowNo).Quantity
                            oPDN.Lines.SerialNumbers.SetCurrentLine(k)
                            oPDN.Lines.SerialNumbers.Add()
                        Next
                    oPDN.CardCode = "C232323"
                    oPDN.Lines.ItemCode = "A00004"
                    'oGR.Lines.LineNum = 0
                    oPDN.Lines.BaseLine = 1
                    oPDN.Lines.BaseEntry = 202
                    'oGR.Lines.BaseRef = 203
                    oPDN.Lines.BaseType = 20
                    oPDN.Lines.Quantity = 1
                    oPDN.Lines.UnitPrice = 2
                    oPDN.Lines.WarehouseCode = '01'
                 oPDN.Lines.Add()
                 lRetCode = oPDN.Add

    Hi Vasanth,
    Invert the SetCurrentLine () and Add() at the end of the SSSerialNUmbers loop.
    Regards,
    Eric

  • DI-Error: You cannot select batch or serial numbers for a closed row

    Hello Experts,
    I have several B1-Systems connected to R/3-Systems via B1iSN.
    In B1 for example I have 2 rows in Purchase Order. One row was closed by a goods receipt - 1 row is still open.
    From our R/3-System we send Order-Acknowledgements to B1. Because line 1 is already closed we want to ignore row 1 and update only information in row 2. By using KeyExpansion I could solve that requirement (check in B1-System if row is already closed -> insert row in IDoc only with LineNum). For example:
    <Document_Lines>
      *<row>* <!-- ignore -->
        *<LineNum>0</LineNum>*
      *</row>*
       <row> <!-- update -->
        <LineNum>1</LineNum>
        <ItemCode>ABCDEFGHIJK</ItemCode>
      </row>
    </Document_Lines>
    Unfortunately DI-API does not allow to update each row separated. I always have to send all rows in IDoc even if one row is closed.
    For one B1-Company batchnumbers on every transaction is required. When creating Goods Receipt we have to define a batchnumber for item. But now if I want to update a open row (as described above) I get an B1iSN-Error:
    DI Error: (-10) You cannot select batch or serial numbers for a closed row
    Any ideas to solve that Error? Thanks.
    Regards,
    GB

    Hi Bastian,
    I have still one open question. How to tread Document Lines Additional Expenses?
    If I use the logic of visual order I still get the error "You cannot select batch or serial numbers for a closed row".
    Example:
    <Document_LinesAdditionalExpenses> 
    -      <row>
               <LineNumber>4</LineNumber>*no expenses*
    </row>
    -      <row>
               <LineNumber>0</LineNumber>*no expenses*
    </row>
    -     <row>
               <LineNumber>1</LineNumber>*no expenses*
    </row>
    -     <row>
               <LineNumber>2</LineNumber>*no expenses*
    </row>
    -     <row>
               <LineNumber>3</LineNumber>*expenses correct*
               <ExpenseCode>3</ExpenseCode>
               <LineTotal>10.00</LineTotal>
    </row>
    </Document_LinesAdditionalExpenses> 
    How can I solve that?
    Thanks and regards,
    GB

  • Batches and Serial numbers

    Hi,
    How can i create Batches and Serial numbers for a item in inventory in SAP B1

    Hi Sudha,
    One of my ckient he purchases Raw Material and converts it into finished good and he want to know the cost which occurs in the process of production and where he can see that in SAP B1 and after it is converted into Finished Good it takes some time to be sold and at that time where can he chek his inventory level .
    I think in SAP B1 if we enter a item as a raw material it will be shown as raw material till the time it is sold .
    Can u plz help me out in this how should i map his process in SAP B1 is that possible or not.
    Regards
    Naveen.G

  • Cannot add row without complete selection of batch / serial numbers SBO 8.8

    Hi
    I have written some code to import a goods receipt po document in SAP 8.8
    When the item is a batch number I get the message 'Cannot add row without complete selection of batch / serial numbers'
    This is my code -
                        doc.Lines.SerialNumbers.SetCurrentLine(0)
                        doc.Lines.SerialNumbers.InternalSerialNumber = batchno
                        doc.Lines.SerialNumbers.ExpiryDate = CDate(bbdate2)
                        doc.Lines.SerialNumbers.ReceptionDate = CDate(Now.Date)
    Can anyone see what is wrong please ?
    Many thanks
    Regards Andy

    Hello
    You would like to import items with batches or items with serials?
    This code is importing items with serials.
    Hereby an expample for each cases
    'bacthes
            oDoc.Lines.BatchNumbers.SetCurrentLine(0)
            oDoc.Lines.BatchNumbers.BatchNumber = "1"
            oDoc.Lines.BatchNumbers.Quantity = 1
            oDoc.Lines.BatchNumbers.Add()
            oDoc.Lines.BatchNumbers.SetCurrentLine(1)
            oDoc.Lines.BatchNumbers.BatchNumber = "2"
            oDoc.Lines.BatchNumbers.Quantity = 1
            oDoc.Lines.BatchNumbers.Add()
            ' here you should apply condition: sum of batch qty = oDoc.Lines.Quantity -this completes the selection
            oDoc.Lines.Add()
    'serials
            oDoc.Lines.SerialNumbers.SetCurrentLine(0)
            ' Use the correct line for selection of serial numbers:
            ' I have the settings "None" -> Systemserialnumber will be used
            ' query: SELECT T0.[SriUniqFld] FROM OADM T0
            oDoc.Lines.SerialNumbers.SystemSerialNumber = "1"
            'oDoc.Lines.SerialNumbers.ManufacturerSerialNumber = "1"
            'oDoc.Lines.SerialNumbers.InternalSerialNumber = "1"
            oDoc.Lines.SerialNumbers.Add()
            oDoc.Lines.SerialNumbers.SetCurrentLine(0)
            oDoc.Lines.SerialNumbers.SystemSerialNumber = "2"
            'oDoc.Lines.SerialNumbers.ManufacturerSerialNumber = "2"
            'oDoc.Lines.SerialNumbers.InternalSerialNumber = "2"
            oDoc.Lines.SerialNumbers.Add()
            ' here you should apply condition: count of serialnumer lines = oDoc.Lines.Quantity
    Regards
    János

  • Batch Management V/s Serial numbers

    Hi ,
    Could anyone pls differentiate betn Batch and serials. I could understand from help ....
    Batch : If you want to assign batch number to received Material Lot. It's like a LOT number management where you can assign a unique number to each lot received.
    Later you can track the lot using this batch number
    Serial : Unique number to each unit which mean each unit of the received lot will have unique ID.Like If I receive 10 pcs of material then 10 serial numbers will get generated (if automatic assignment is configured) and assigned to each unit of the material.
    But I am getting confused when I am tyring to understand configuration of Serial numbers.Here are few queries i have 
    1) why serial number mangement available under "Plant Maintenance and CUSTOMER SERVICES" menu.
    2) Is it only related with Equipments , NOT applicable for RAW MATERIAL / Assembly/ FG Material.
    Thx for reply in advance.
    REGARDS
    SANDEEP

    Hi Sandeep,
    For the business scenario which you have quoted, let us assume two different cycles
    1. Vendor selling RM ( PT ) for the TV manufacturing Plant.
    In this case, We can define an equipment master provided your vendor needs the database for his tracking purpose. It means that whenever a new PT is manufactured in your vendor premises, immediately a equipment master  and a unique serial number will  be assigned to the product ( Note the RM material code will be different ) and equipement master and the serial number are material specific.
    When the Manufacturing plant puts a PO and tries to do the GR, before doing GR, the system will ask to create a equipment master ( a mirror image of what is avaible) in your vendor end.
    2. Dealer Purchasing TV and the Manufacturing plant.
    In the second case the equipment master and the serial number will be maintained for the entire TV ( Different Material Number )
    In both the cases, the equipment category should be marked as Customer and the equipment req should be checked.
    Regards,
    RitiG

  • Certificates using serial numbers with material without batch assigned

    Hi experts...how can i track serial numbers and inspection lots from roh material without batch assign but with serial numbers ? these roh materials were used in PO without batch assign to FERT material yet. Is possible use where-used list only to manage serial number or only using batch administration over the serial numbers ?
    i will apreciatte any answer!
    Regards
    Marco Antonio Trois Endres

    Hi ,
    This seems to be a Material Management configuration question, I dont know if this will answer it
    You will have to configure the Characteristics of your Material from a task list and transfer/Copy it to your Certificate profile,
    there has to be a feature to enter the desired selection Criteria based on your question
    Work with the security team if  your MM_G and MM_S class objects can help open or close certain authroization objects to achieve your goal.
    in one of the google search it states that
    "This can be done from  Extras Characteristics from  your task list.
    A dialog box appears for entering the selection criteria for the task list"
    Will Need more security related information to help you on this.

  • Include batch/serial numbers with Count Sheets

    When performing a cycle count for items that are managed by batch or serial numbers, it is necessary to record the count by batch or serial number, since discrepancies must be entered with this information.  There should be an option or alternative PLD layout that would include a list of batches or serial numbers with quantity > 0 in the warehouse.  Users could then enter the count for each batch, or check off the serial numbers that are counted.

    Hi Marcia,
    I just made a query to pull that data.  I had the item and item group table in there because we were filtering by item group.
    SELECT
      T0.[ItemCode]
      ,T0.[ItemName]
      ,T0.[BatchNum]
      ,T2.[ItmsGrpNam]
      ,T0.[Quantity]
      ,NULL as 'Counted'
    FROM
      OIBT T0 
      INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode
      INNER JOIN OITB T2 ON T1.ItmsGrpCod = T2.ItmsGrpCod
    WHERE
      T0.[Quantity] > '0'
    It will give you the list of all batches with quantities to count.  Then you can make a PLD query layout and print that.  Problem is you have to aggregate the items into a total by item code anyways for doing the counting, but then you need to have the batch data when posting.
    Hope that helps,
    Mike

  • No matching records found 'Batchs and Serial Numbers' (OSRD) (ODBC-1028)

    Hi experts,
    These days In our 2007 system, we had a serial number maintain problem on 'Recipt from Production' transaction.
    When we open 'Serial Number Management' form, we can not update S/N by 'Complete' operation mode for some items. but it works for 'Update' operation mode.
    The system show 'No matching records found 'Batchs and Serial Numbers' (OSRD) (ODBC-1028)' in the status bar.
    How could I fix it ?
    thanks for your help.

    Hi Wilson,
    Do you manage the serial number transaction for respective item with "On Every Transaction" or "On Release Only" (in Item master data)? Because, when you manage those item with "On Every Transaction", you should already filled the serial number when you tried to receive those item whether by Goods Receipt PO or Receive from Production transaction.
    "Complete" operation in Serial Numbers Management only works for item which you manage by "On Release Only", it doesn't work for item which managed using "On Every Transaction". Hope I don't misunderstood your question.
    Best Regards,
    Hendry Wijaya

  • Reg : Serial number with batch numbering

    Hi PP Guru's ,
    I have one scenario wherein i need to use batch numbering as well as serial number too is it possible to use both in process order.
    i am producing certain product in batch say 25 tons and the material is stored in 1 ton eack jumbo with numbering against batch like jumbo1.... 2...25 with batch1000000099
    please advice if it is which serial number profile should i use and serilising procedure
    marks will be awarded after testing only on the same day.
    regards,
    jaya

    Hi Jaya,
    To the best of my knowledge, this is not possible using standard serial no profile.
    However many places this is achieved by using user exit to manipulate the serial no as expected..
    with regards,
    Mangesh A. Kulkarni

Maybe you are looking for