Failed to update in the Item Master Form ATO field checked

Hi All ,
I am trying to implement B2B ( Back to Back Order ) and to implement the B2B the ATO should be checked irrespective of Manufacturing is installed or not.
Now the problem is I am able to update some of the item but failed to update some of the item and it gives error " the Sales Order Line is opened you can not
check the ATO".
Now I did to avoid this I updated the columns BUILD_IN_WIP_FLAG to 'Y' and REPLENISH_TO_ORDER_FLAG = 'Y' in the Item master table .
And I was successfully able made further transaction of the open sales order line.
I wanted to know to updating the field BUILD_IN_WIP_FLAG to 'Y' and REPLENISH_TO_ORDER_FLAG = 'Y' will impact our bussiness in Future.
Regards,
Sharad

Hello Sharad,
First thing, if you are implementing B2B in your system then your organization is a Manufacturing organization or distribution organization?
If this is not a Manufacturing organization, then the item should be a Buy Item along with ATO attribute enabled. So that the B2B requisition created & then PO.
If you are implementing Assemble to Order in Manufacturing organization, then your ordered item should be a make item not a buy item. For this sub assembly or finally assembly you need to define the bill, routing etc. After that once you book the ATO sales order, the work order will be created. & the process continues.
The error "the Sales Order Line is opened you cannot check the ATO", comes when you are having open sales order exists & you are trying to update item attributes. It is always advisable to close all the sales order lines in this case before changing the same.
Unless & until you are using BOM & WIP in your organization, change of BUILD_IN_WIP_FLAG will not affect. Please make sure not to update these attributes from backend using database update script.
Regards,
Jyoti Ranjan Mohanty

Similar Messages

  • R12.1.1 Item Master Organization  Calender field is disabled

    HI,
    While creating Item Master Organization in R12.1.1, calender field is disabled. I have defined & built workday calender but field is disabled while creating Inventory Org. I couldn't find any reason on metalink as well.
    Can any one guide me about the issue ?
    Regards,
    Fahd

    user12240205 wrote:
    Hi all,
    I am running R12.1.3 on RHEL 5.6 64 bit.
    Recently I took a performed a clone from the PROD instance. In the PROD instance the item master form does not have any issue, but in the clone instance only the item master form seems to have this problem. When I open the Item master form it just hangs and nothing happens.
    Assistance to resolve the issue is appreciated in advance.
    Thanks &
    Regards,
    Edited by: user12240205 on Feb 20, 2013 1:17 AMPlease generate the form manually or via adadmin and check then -- How to Generate Form, Library and Menu for Oracle Applications (11i and R12) [ID 130686.1]
    Also, please make sure you have no invalid objects in the database and no errors are reported in the database log file.
    Thanks,
    Hussein

  • Automatically Update a UDF in the Item Master

    Hi Experts,
    I am new to SAP Business One. I need to update automatically the value of a UDF. The value will be calculated using data from related tables. Calculation includes -summation, divide and minus etc. Could you provide guide.
    For example a new UDF should contain the suggested quantity to order in the Item Master Data. This is calculated considering the running average sales quantity as of current time for this month and deduct the available quantity on hand and also deduct the quantity already ordered (arriving soon to be delivered to warehouse).
    Formula:      =  ( S / N ) * D - ( OnHand ) - ( Ordered )
    where   S = Quantity sold so far within this month
                  N = days count ( if today is March 18, N = 18 )
                  D = number of  days for this month.  (can be 28, 30 or 31 days)
    This means that the data in the database must also be updated. I appreciate your input.
    If possible, the OITW, MinOrder will be updated instead of a UDF.

    Haven't tested it properly, but something like this....
    select
    (s0.qty / datepart(day,getdate())) * datepart(day,(DateAdd(day, -1, DateAdd(month, DateDiff(month, 0, getdate())+1, 0)))) - t0.onhand - t0.onorder
    from
    oitm t0
    left join
    (select     t0.itemcode,
              sum(t0.quantity) as qty
              from inv1 t0
              inner join
              oinv t1
              on t0.docentry = t1.docentry
              where datepart(month,t1.docdate) = datepart(month,getdate())
              and datepart(year,t1.docdate) = datepart(year,getdate())
              group by t0.itemcode) s0
    on t0.itemcode = s0.itemcode
    where t0.itemcode = $[OITM.ITEMCODE]
    Currently this adds up the qty from all invoices, if you want to subtract credit notes you just have to build in a second subselect from ORIN and RIN1 and subtract them off.
    Hope this helps.

  • Using DTW to update the Item Master Data attachment tab

    Hi Experts,
    Has anyone tried using DTW to update the Attachments Tab on the Item Master Data please?  I tried a few things (similar to importing an attachment to an activity) and couldn't get it to work.
    I couldn't see that anything to do with the Attachments Tab was exposed in DTW when looking at the mapping fields and also when looking through the options available in the Items Object under Customize Templates - but then I might not be seeing it correctly!
    Any ideas or solutions would be great.
    Many thanks,
    Caroline

    Hi Caroline,
    AtcEntry is correct for the document, this relates to the AbsEntry in OATC, which then in turn links to AbsEntry in ATC1.
    There are a few fields that need to be populated in ATC1:
    AbsEntry
    Line - To be used if more than 1 Attachment
    SrcPath - for the file path
    Filename - for the file name
    FileExt - for file type - i.e. .pdf
    You may be able to configure DTW to import these as a manually created DTW but I suspect that OATC and ATC1 are not open to the Di which will stop it. Coincidently I have been looking at Task Centre to update these but have encountered the same problem
    Regards
    Sean Martin

  • How to add a column in Item Master form with chooselist

    Hi Experts
    I add a column in Item Master Form in Stock Data Tab. In this column I want to add Choose list. For this I use AfterFormLoad event. It gives Error "Matrix Line Exist" . My code is given below
    If pVal.FormType = "150" Then
                    form = B1Connections.theAppl.Forms.GetForm(150, pVal.FormTypeCount)
                    form.PaneLevel = 3
                    oItem = form.Items.Item("28")
                    oMatrix = oItem.Specific
                    Dim chooseObj As ChooseListClass
                    chooseObj = New ChooseListClass
                    chooseObj.AddChooseFromListBinCode(form.UniqueID)
                    oColumns = oMatrix.Columns
                    oColumn = oColumns.Add("BINCODE", BoFormItemTypes.it_EDIT)
                    oColumn.Width = 100
                    oColumn.DataBind.SetBound(True, "OITW", "U_BINCODE")
                    oColumn.TitleObject.Caption = "Def BinCode"
                    oColumn.Editable = True
                    oColumn.ChooseFromListUID = "CFL5"
                    oColumn.ChooseFromListAlias = "U_BinCode"
                    oColumn = oColumns.Item("U_BINCODE")
                    oColumn.Visible = False
                End If
    please give your suggestion
    Regards
    Jitender

    Hi Noor
    Thanks for reply
    I tried your suggestion but problem still there. I am using after form load event. Here matrix has 9 lines (all warehouse). If remove the line then how can I reload warehouse data. Can you suggest in more detail.
    my code is given below
    form = B1Connections.theAppl.Forms.GetForm(150, pVal.FormTypeCount)
                    form.PaneLevel = 3
                    oItem = form.Items.Item("28")
                    oMatrix = oItem.Specific
                    MsgBox(oMatrix.RowCount)
                    oMatrix.DeleteRow(1)
                    Dim chooseObj As ChooseListClass
                    chooseObj = New ChooseListClass
                    chooseObj.AddChooseFromListBinCode(form.UniqueID)
                    oColumns = oMatrix.Columns
                    oColumn = oColumns.Add("BINCODE", BoFormItemTypes.it_EDIT)
                    oColumn.Width = 100
                    oColumn.DataBind.SetBound(True, "OITW", "U_BINCODE")
                    oColumn.TitleObject.Caption = "Def BinCode"
                    oColumn.Editable = True
                    oColumn.ChooseFromListUID = "CFL5"
                    oColumn.ChooseFromListAlias = "U_BinCode"
                    oColumn = oColumns.Item("U_BINCODE")
                    oColumn.Visible = False
                    oMatrix.AddRow(1)
    Thanks
    Waiting for reply
    Regards
    Jitender

  • How to hide a folder in item master form?

    Dear members,
    I have to hide a folder named properties and remarks in item master form?
    I have tried by setting the visible property as false through sdk coding.Its working fine but when i use navigation button these above mentioned tabs appear for a moment and then disappear.
    I want these to not to be visible in any of the events like navigation and find.
    please do help me in this regard.
    Regards,
    Venkatesh.R

    Hi,
    thats a pitty!
    i tried this many times with every item except Folders.
    looks like you can't move 1 Folder alone when they are grouped
    iam sorry - i don't see a other solution than Petr's way now - catch the click / itempressed event and
    set bubbleevent to false
    lg David

  • Failed to update a list item to external list

    I'm getting below error when I try to add my record to external list. This happen when spExternalItem.Update for 2nd time. I have value in my params
    "Failed to update a list item for this external list based on the Entity (External Content Type) 'SA' in EntityNamespace 'Triggers'. Details: Null was returned to FindSpecific (Read Item operation)."
    SPList spExternalList = contentDb.Sites[0].RootWeb.Lists["SA"];
    List<string>
    lstMachineNames = GetMachineNames(lstWarehouseTaskRecords);
    foreach(stringstrMachineName
    inlstMachineNames)
    SPListItemspExternalItem = spExternalList.Items.Add();
    spExternalItem["FormType1"]
    = "WH";
    spExternalItem["SerialNum1"]
    = strMachineName;
    spExternalItem.Update();
    Serial Number is "map to identifier" in External Content types. "Required" and "Read-only" check box is uncheck. Anyone has any idea? please help.
    [UPDATED 7 May 2014]
    I believe it is due to BDC problem. I created another column called ID so I can map this ID column as identifiers instead of using SerialNum1 and this error solved!

    Hi,
    As you said, the error thrown when executing the Update method for the second time.
    I suggest you debug your code in Visual Studio and keep watching the values of objects in use to get more details about the root cause of the error.
    What’s more, you can take a look at the posts from Dimitry and Scot in this thread with similar error message:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/29fb464f-3539-40c4-91c5-216b0363b8ef/null-was-returned-to-findspecific-read-item-operation?forum=sharepointdevelopmentprevious
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • How is the Consumption tab will update in the material master?

    Hi Friends,
    How is the Consumption tab will update in the material master?
    what are the customization required if consumption tab wants update with respective the qty?
    Regards,
    Hari Shankar

    Hi Friends ,
    I am very thankful to u all for your quick response,
    I have tested the two materials with two movement types of 601 and 954.
    when i did the 601 movement type the consumption tab in the material master has updated automatically even though  i haven't maintained forecasting tab, but where as for the movement type 954 the consumption tab is not updated even though i have maintained forecasting tab view in the material master.
    Is the consumption view will update based on the Material movement types?
    where is the control parameter for updating consumption tab?
    could you pls help me regarding this?
    Regards,
    Hari Shankar.

  • Add barcode in the item master data

    Hi All
    we have a field in the item master data called Bar Code.  if you have several hundred thousand items in the database how do you assign a barcode for each item?  do you enter the barcode manually for each item or is there any other way to enter this item's barcode automatically when the item is added into ware house?  if you have enter manually the barcode how we should follow with the number of characters in the field? is that should look like exactly on the barcode label when you print? or we need to follow our own naming convention in using the numbers?
    thanks
    Santhosh

    Check this Thread
    [Barcode scanner addon;

  • Valuation Update in the Item not present in FAGL_FC_VAL

    Hi All
    In F.05 you have a " Valuation Update in the Item" indicator. what is the importnace of that indicator. and Why is this indicator not present in FAGL_FC_VAL.
    Thanks

    Hi,
    When i check the screen i am not finding any indicator like you mentioned. could you please let me know in which screen it will appear,
    Like
    1.Posting
    2. Open Items
    3. GL Balances
    4.Other
    5. FASB 52
    In which screen valuation update line item is present in f.05
    regards
    N.Kumar

  • "Req. Inv. Level" in the Item Master Data - Inventory Data

    Dear All,
    Would like to ask what is the function of the "Req. Inv. Level" in the Item Master Data -> Inventory Data ??
    What is the different with Min. Inventory?
    And what is the different with Item Master Data -> Planning Data -> Minimum Order Qty ??
    Thank you very much!!!

    Dear All,
    Thank you for your reply.
    i found something strange for the MRP, it is as the following:
    at 06.11.2009, i have created 1 SO : SO123
    qty: 150
    due date: 10.11.2009
    for the Minimum Order Qty in Planning Data: 200
    Lead time: 2 days
    when i run MRP, it can show at 10.11.2009, qty 200 is needed to be purchase (it match the Minimum Order Qty in Planning Data:200)
    But when i set the lead time to be 10 days), it only show at 10.11.2009, qty 150 is needed (in red font).
    Question: seems if the date for the material to arrive (06.11.2009+10 days = 16.11.2009, which is excess the due date of the SO 10.11.2009) is over the due date (10.11.2009) then the MRP will just show qty150 instead of showing qty 200 (the Minimum Order Qty) ? so after that when create the PO by using Order Recommendation Report, it qty in the PO is 150 only, but not 200.
    is it how the MRP in B1 works?
    thank you very much!!

  • Incorrect "Ordered" quantity in the item master data

    Hello Experts,
    I have a situation where there are two items we have found that show the incorrect ordered quantity in the item master data. This is in fact the ordered column and the items are not production items. One of the items is showing a negative quantity and the other is showing 50,000 LBs less than it should given the one open production order with NO GRPO documents linked. Please advise ASAP..
    Thank you,
    Taylor

    Hi,
    You need to check the detect query and the scenarios in the Note No. : 999124.
    If the detect query of the Note returns result, you need to log a support ticket to get the database investigated.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • MISSING ACCOUNTING TABS IN THE ITEM MASTER

    I did an LSMW for new items for different plants that we have.  When I check the item in the item master I find the accounting tabs missing.  There are approximately 630 items that need to be fixed.  Does anyone know how to add the accounting tabs to a large group of items.  I tried MASS t-code and it didn't work.

    Hi,
    for the 630 items missing accounting compose an LSMW again with the required legacy file(data upload) information using MM01 transaction.
    This should add the accounting views for the required materials.
    regards
    sadhu kishore

  • Importing pictures into the item master data

    Hello, everyone,
    I want to import pictures into the items master data - does anyone know which size the picture should have?
    The problem is - i just tested it with some pics of 640x480, but the placeholder in the item data must be smaller, so the picture is scaled down and as result of that it doesn't look good (the colors are falsified and there are also some artifacts). If I double-click the picture and it's opened in an own window in its original resolution - everything is fine..but i want a good quality of the picture in the item data already.
    So my first idea was to make pictures of the resolution of that placeholder in SBO, but i don't know how to get this. Any ideas?
    Best Regards,
    Leon Detzel

    Hi Ulrich
    The picture size does not matter, but rather a setting in Administration > System Initialization > General settings > Display TAB. On this tab you will find a setting with a drop down called "Ext. Image Processing". Set this to full and the full quality of any pictures will be used, but of course resized to fit the field. Bear in mind that images are not embedded in the tables but only the file name of the image is stored in the table.
    Kind regards
    Peter Juby

  • Failed to export using the options you specified. Please check your options

    Hi..
    i was using crystal report10.5 with visual studio 2008(c#)..
    now im migrated to visual studio 2010....and i have installed these setups http://www.sdn.sap.com/irj/boc/crystalreports and http://www.sdn.sap.com/irj/sdn/crystalreports-dotnet ...
    when i open my project it will ask to convert crystal reports and i have converted ...reports are working fine but in tool bar if i click and select a pdf format to export it will display a error message Failed to export using the options you specified. Please check your options and try again. and if i click on print button it is not working(i have set printmode=pdf)...when i was working on vs2008 both were working fine but in vs2010 it is not working..

    Hello,
    What type of app you are using? A win app will not have this option. Also what FW are you using? Have you made changes to the viewer(after migrating) and ensure that you are using the 13.0.2000.0?
    Take a look at [this|Export and print problem; thread, also.
    Thanks.

Maybe you are looking for