Serialized Material in Good Receipt

Dear all,
    I have some doubt here. Let say i have a serialized Material and i have already maintain the range of  serial numbers using IQ04. When i do a good receipt for this particular material, do i still have to key in the serial number one by one? Pleas advice. Thank you
Joan

Dear subhash,
   Can you kindly show me where is the field that i can key in the ranges for my GR? btw, i am using this FM BAPI_GOODSMVT_CREATE. thank you!
Joan

Similar Messages

  • Wrong Profit Center on Material document (Goods Receipt PO for Asset)

    Dear SAP Expert,
    When our company upgrade our SAP version from 4.6C to ECC6, all Profit Center on Material document (Goods Receipt on Purchase Order for Asset) is filled by profit center DUMMY.
    This condition not happend in our previous version (4.6C). Is there any new configuration on ECC6 for Asset Accounting?
    Many Thanks
    Maickel P

    Hi, Maickel:
    There is a setting for Dummy Profit Center, you can check in SPRO: Controlling->Profit Center Accounting->Master Data->Create Dummy Profit Center.
    And you can refer to the help of this IMG activity:
    Create Dummy Profit Center
    This function lets you create the dummy profit center for the current controlling area.
    The dummy profit center is updated in data transfers whenever the object to which the data was originally posted (cost center, order, and so on) is not assigned to a profit center. This ensures that the data in Profit Center Accounting is complete. You can later send the data on the dummy profit center to the other profit centers using assessment or distribution.
    You create the master record for the dummy profit center using this special transaction. To change or display it, use the normal profit center maintenance functions.
    The name of the dummy profit center is displayed in the controlling area settings for Profit Center Accounting.
    Prerequisites
    The standard hierarchy must exist for the current controlling area.
    Actions
    Enter the name of the dummy profit center. The rest of the steps are the same as when you create a normal profit center.
    Choose the function Extras -> Set controlling area first to make sure that the correct controlling area is set.
    Notes on transporting
    You can transport the Customizing settings for Profit Center Accounting under Transport Connection.

  • Wrong profit center on material doc (Goods Receipt against PO for Asset)

    Dear SAP Expert,
    When our company upgrade our SAP version from 4.6C to ECC6, all Profit Center on Material document (Goods Receipt on Purchase Order for Asset) is filled by profit center DUMMY.
    This condition not happend in our previous version (4.6C). Is there any new configuration on ECC6?
    Many Thanks
    Maickel P

    HI Werner,
    Based on Note 684659
    Question 10:
    "Why aren't the correct profit centers derived from the account assignment objects?"
    Response[1]:
    You first have to maintain the account assignment objects as described in the response for question.
    Action:
    I Already assign account assignment object PS_PSP_PNR "WBS Element of Investment Project", transaction type '*', account assignment type 'APC Values Posting' because our transaction is using WBS element as an account assignment on purchase order.
    (Before I assign this account assignment object on t-code ACSET all transaction for asset which account assignment using WBS element doesn't generate controlling document on GR process)
    Response[2]:
    You also have to make sure that the profit center is ready for input in the field status of the account and the posting key.
    Question:
    Where I have to check this condition?
    Please check the field status of the account FS00 if Profit Center and Cost Center maintained optional.
    Action:
    I Already check on "FS00 - Edit cost element" and found that "Default account assignment" is blank

  • Huge Serial number at goods receipt

    Hi
    I have required to maintained 10000 serial number at goods receipt against PO. I have did all customizing related to maintained serial number.But at goods receiving time ,we enter serial number one by one and it's huge task for 10000 serial number.We also not able to maintain serial number by before goods receiving.

    External number required

  • Price change for material with Goods Receipt with out Order reference?

    hi all,
    Our client company have some finished products produced from raw materials. But we are not using Production planning module. So in MM we are receiving these products with Goods receipt with out order reference(521).
    The issue is, the price for this product will change monthly. This new price will affect the existing stock as moving average price calculation.
    ex:
                                     Quantity             Price             Value
    Stock balanace        100To                 2.00/To         200 
    Newly produced      100To                 2.20/To         220   
    after the GRN for newly produced is done. The price also need to change as below.
    Total                         200To                 2.10/To         420
    This is easy if we receive goods with PO price, as moving average price will updae in the master record.
    But here no reference. So only quantity updated with existing price. 
    So how to achieve the change of price ? Please help.
    Thanks,
    Aravind

    Hi Bijay,
    Thanks for the reply. I will use the posting method suggested by you.
    but how you are arriving  newly produced material quantity & price!
    The reply for your comment is,
    Every month My client company revise the price of the produced material based on various factors including the
    raw material purchase cost.
    The price will be fixed for the whole month.
    While posting the GRN, the accounts updated are,
    Dr  Material account
    Cr Production Cost
    Please let me know what you have asked is answered or not.
    So that i can brief more. This is my initial project. So your feedback is very helpful to me.
    Thanks,
    Aravind

  • Problem when Add Serial Number for Goods Receipt PO Document

    Dear All,
    In my App I have function to Add goods receipt PO and Serial for these items of this document as code bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Code 1."
                oGrp.DocDate = now
                oGrp.DocDueDate = now
                oGrp.TaxDate = now
                Dim Qty As Int32 = 2
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = 1
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.Add()
                Next
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                  End If
    When Add this document I have Error : "You should use existing serial/batch numbers for this document type ". Please help me fix this problem. In my SAP doesn't have Serial for these item. Please let me know How to add serial master data?
    Thanks & Regards

    Dear,
    Thanks for your support but when I chaged code as bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Name."
                oGrp.DocDate = MyArrContainDocInfo(2)
                oGrp.DocDueDate = MyArrContainDocInfo(3)
                oGrp.TaxDate = MyArrContainDocInfo(4)
                Dim Qty As Int32 = 2
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = i
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.Add()
                Next
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                              End If
    I have the same Error: "You should use existing serial/batch numbers for this document type". I try config in Gerneral Setting Form as image bellow: [http://www.hoanghaicap.com/GS.png|http://www.hoanghaicap.com/GS.png]. Please help me fix this problem. I try Add Goods receipt PO with items manage by Serial it's OK but by SDK it's not OK.
    Thanks & Regards,
    Edited by: Tao lao on Mar 10, 2010 2:44 AM

  • Link Asset to Serial number during Goods Receipt

    Hi Experts,
    I need a help on the following
    We are buying for example 10 PC's. When the PC's arrive in the warehouse the Goods Receipt should create a unique serial number for every PC.
    The quantity is booked into the warehouse and the costs need to be booked at an asset that automatically needs to be linked to the Serial number that is justed created.
    I have created a PO and at PO creation I can create an asset in the account assignment for every PC in the PO.I did the goods receipt and I enter the Serial numbers
    What I need to know is at the time of goods receipt how are the unique Serial numbers are assigned to the assets.
    Thanks in advance.
    rgds
    Swamy

    Hi,
    No sir, Still I didn't get any solution for my thread. I don't know nobody is replying on this. Might be we don't have the option to link.
    Atleast I am requesting the experts to look into this thread now and give us the solution.
    rgds
    Swamy

  • Import of bulk serial numbers with Goods Receipt

    Hello
    I need to create an Add-On that automates the creation of Goods Receipt PO documents with linked serial numbers. Using the DI API I manage to create the Goods Receipt and link about 1000 serial numbers to one document without any problems. When the item qty (and linked serial number qty) goes beyond 10,000 it crashes (probably runs out of memory).
    I know an alternative would be possibly using the DI Server. Has anyone ever done this with such big volumes? Not sure if the DI Server would be able to handle say 100,000 serial numbers, at a time.
    Any advice is appreciated.
    Thanks,
    Jéan

    Thanks Gordon.
    This is not good news. I am just concerned as the SDK help on DI Server specifically states:
    "Business partners can use the DI Server for the following main scenarios:
    ==>> Heavy duty operations, such as batch"
    I assume this is the same type of "heavy duty operation" as a data take-on would be? Or does it mean that B1's serial number management is limited to small quantities at a time.
    Jéan

  • Link asset to equipment (serial number) during goods receipt

    Hi all,
    I want to achieve the following. We are buying for example 10 PC's. When the PC's arrive in the warehouse the Goods Receipt should create a unique serial number for every PC. The qauntity is booked into the warehouse and the costs nedd to be booked at an asset that automatically needs to be linked to the equipment that is justed created. That is the sneario.
    1. I know that I can create a PO and at PO creation I can create an asset in the account assignment for every PC in the PO.
    2. I know at goods receipt how create the serial numbers that create automatically equipments in Plant Maintenance
    3. I also know that in Asset customizing you can activate synchronization between Equipments and Assets in both ways.
    What I need to know is.
    1. At goods receipt how are the unique serial numbers (equipments) assigned to the assets that were created during PO creation?
    If any one can help me with this scenario or has implemented such a scenario then your help is very welcome.
    Thanks in advance.
    Regards,
    Roel van Loon

    Hi,
    No sir, Still I didn't get any solution for my thread. I don't know nobody is replying on this. Might be we don't have the option to link.
    Atleast I am requesting the experts to look into this thread now and give us the solution.
    rgds
    Swamy

  • Get Process Order Confirmation&Counter from material document/goods receipt

    Hi @ all,
    i´m looking for a way (the tables) to get the order confirmation and the counter from a goods receipt. I have the material document number und the position of the goods receipt.
    Kind regards,
    Axxter

    Hi,
    we don´t have the goods receipt material documents in AFRU. I don´t know the reason why.
    Message was edited by:
            Sebastian Becker

  • Requirement to maintain additional serial number during Goods Receipt

    We have a requirement to maintain an additional field external serial number while doing Goods Receipt for a PO using movement type 101. This requirement is in addition to the create serial number
    automatically. Which is enabled already.
    Can anybody please let me know how to take care of this requirement.
    Regards,
    Chandra Kumar

    BADI available MB_MIGO_BADI to take care of the requirement for additional custom field

  • Serialized Material in Good Issue

    Dear all,
         Let say i have a serialized Material in GI. Do i need to key in the serial number one by one or can i just key in the ranges and qty and it will auto populate all the serial numbers for me? Please advice, thank you

    Hello
    It depends on your settings in the serial profile T code OIS2. if you have it as manual , the you have to key in manually,
    if it is automatic, then you can key in the number .in the pop up for serial numbers you can click on the automatically populate it will do so for all the materials by the system
    Hope this helps
    Thanks
    akasha

  • Creating more than one serial number for a material upon Goods Receipt

    I am trying to configure the system to create more than one serial number automatically for a material and have the equipment record created at the same time with the same number as the serial number.  For example using MB1C, receiving a material for a quantity of 2, the Maintain Serial number pop up box appears, selecting the 'Create serial number automatically' , I receive an error message ' Number of numbers to be assigned must be 1   
        Message no. NR030        
    Can someone help me with this issue.

    I have tried MIGO and get the same error.  The  Plant data/stor 2. tab of the  material master for this particular material is set as follows
                                                                                    Serial no. profile   NS01 SerLevel   1  Keep equipment number and serial number synchronous.
    Would there be configuration missing?

  • Bill of material for goods receipt

    Hi
    we have created one BOM which contains some components. when we create  a po & as well as receive the material w.r.t P.o the system is only accepts the main (parent mat) material not its components. Is there any way to receive at a time for parent as well as compnents.

    Hi
    If you create a normal p.o you cannot explode BOM, only you can explode the BOM in the subcontracting process. if you enter the item category L and explode the BOM means you will get the components.
    But in normal p.o you wont getit.
    Thanks

  • Import Serial numbers in Goods Receipt

    Hi Experts,
    We are receiving 100's of serialized items per day that have serial numbers that are not sequential. It is not very efficient to type them in one by one.
    How do I import them using DTW? Or is there another more efficient way to do this?
    Thanks!
    Jane

    Hi,
    Please refer SAP note:
    841270
    - How to import serial numbers correctly via the DTW
    Thanks & Regards,
    Nagarajan

Maybe you are looking for

  • Possible solution: Time Machine can not mount disk

    Like many of you, my Time Machine started acting up after working fine for months. I have an external USB (Western Digital 500GB) drive connected to a Airport Extreme (N-speed) as an AirDisk. I have an iMac (iSight 160GB) connected via ethernet to th

  • Ichat theater - no audio ?

    today i watched a movie using ichat theater. it is .avi and works on my laptop and it worked on the app, too. but when it started, i unplugged my headphones, and the audio stopped. then i closed it, and shared the file again. this time, the audio did

  • Hauppauge HD PVR Rev F1 requires modified v4l-dvb?

    I have used a Hauppauge HD PVR (a USB video capture device) on Arch Linux in the past without problems. I just purchased a unit for myself, but I am unable to get the hdpvr module to load. Some research reveals that this newer model (revision F1) is

  • Ejb-ql in finder method

    Hi all, I have a table which has no primary key then I made the complex primary key by 2 fields which are foriegn keys(Primary key in other tables or entity beans) , the problem is that whenever I write a finder method ,I face with an error telling t

  • Sent cancel po

    Hi Guys, How to send the deleted/cancel purhcase order( they want to cancel the order) to vendor. Thanks Srinivas