Item Transfer

navuser1navuser1 Member Posts: 1,329
Hi ALL

I just want to know In which cases A item cann't be moved
from One location to other Location through Item Reclass. journal
or Transfer Order.

When Item has sufficient inventory in From location.
Now or Never

Comments

  • navuser1navuser1 Member Posts: 1,329
    navuser1 wrote:
    Hi ALL

    I just want to know In which cases A item cann't be moved
    from One location to other Location through Item Reclass. journal
    or Transfer Order.

    When Item has sufficient inventory in From location.
    Now or Never
  • AdamRoueAdamRoue Member Posts: 1,283
    With a transfer order it would be if the quantity did not exist, or the lot did not exist or the serial number did not exist. In the item reclassification journal it would depend upon what you are specifying but probably a similar criteria.
    The art of teaching is clarity and the art of learning is to listen
  • navuser1navuser1 Member Posts: 1,329
    When I post a Item Reclass. Journal a error msg is occured-
    Item XXX No in Inventory.Where the Item has sufficient inventory in the from Location. details given below.



    InsertItemLedgEntry() //Function

    WITH ItemJnlLine DO BEGIN
    IF ItemLedgEntry.Open THEN BEGIN
    IF (((ItemLedgEntry."Entry Type" IN
    [ItemLedgEntry."Entry Type"::"Negative Adjmt.",
    ItemLedgEntry."Entry Type"::Consumption]) AND
    ("Source Type" = "Source Type"::Item)) OR
    (ItemLedgEntry."Entry Type" = ItemLedgEntry."Entry Type"::Transfer)) AND
    (ItemLedgEntry.Quantity < 0)
    THEN
    ERROR(Text005,ItemLedgEntry."Item No.");
    Now or Never
  • AdamRoueAdamRoue Member Posts: 1,283
    Yep so you do not have the initial source product on inventory to reclassify it. You cannot set a "To" location if the product does not exist in the "From" location. Is it there? Is it available?
    The art of teaching is clarity and the art of learning is to listen
  • navuser1navuser1 Member Posts: 1,329
    AdamRoue wrote:
    Yep so you do not have the initial source product on inventory to reclassify it. You cannot set a "To" location if the product does not exist in the "From" location. Is it there? Is it available?



    Respected Sir,

    product(Item) is present in "From" Location.


    The Case is.....

    Suppose I have require some qty (100) Item(Item X) in Location A for Cosumption. I see that Item X is zero qty in Location A.But Item X is 1000 qty in Location B in present. Then I use Item Reclass To transfer Item X from Location B to Location A of 100 qty.

    This transaction is done fine.


    But when I am going to consume the 100 qty from Location A, I face a problem Item X is not in inventory.
    from the above code...


    Plz explain.....
    Now or Never
  • arindomarindom Member Posts: 52
    I have done same whatever u do . But I m not getting any error .
  • AdamRoueAdamRoue Member Posts: 1,283
    That is because there is other demand on the location. You had zero, needed 100 but I would guess other demand was on the location before your original need, so you transfer 100 in but 20 are already used.

    This really does work fine if you get your supply and demand balanced!
    The art of teaching is clarity and the art of learning is to listen
  • navuser1navuser1 Member Posts: 1,329
    AdamRoue wrote:
    That is because there is other demand on the location. You had zero, needed 100 but I would guess other demand was on the location before your original need, so you transfer 100 in but 20 are already used.

    This really does work fine if you get your supply and demand balanced!


    Thanks adam.
    Now or Never
Sign In or Register to comment.