Schedule Line Category F1 Item Category TAN Movement type 632 Customer Pick

Hello SAP guru's !
I have a question regarding MM/SD/QM integration. We are running SAP ECC6 latest support pack level.
Scenario:
We process Consignment Fill Up and C. Issue (631/633) movement type respectively on a regular basis.
Our Customer has found stock that we have provided to them as Un-usable. We would like to Process Consignment Pick Up to return the materials to our our stock via Delivery with Schedule line category F1 and item category TAN using movement type 632.
Current process works well, but we would like to have the 632 movement type post stock into "Quality inspection" via inspection lot type 05 for example.
We cannot find where in SD/MM/ or QM to make the settings to link such a process.
All help is greatly appretiated !
Thank you, Dave

Dear Dave
Go to material master, select Quality Management view and click on Insp.setup.  You will see a screen with various selection options.  Press F5 and maintain 06 on top under the tab [InspType]  and save.
Now try to do PGR so that the stock would be blocked for quality clearance.
Alternatively, you can also maintain the movement type 655 to your schedule line category F1 in VOV6.
thanks
G. Lakshmipathi

Similar Messages

  • Schedule line category and item category

    Hi all,
    Can some body explain what is the use and differences between Schedule line category and item category?
    Where exactly they come into picture when a sales cycle is done? it would be very helpful.
    Thanks in advance.
    Manu

    Hi,
    SCHEDULE LINE CATEGORY:-
    Schedule line Category determines the Schedule lines for the Line item, it will determine whether the Item is relevant for  Delivery or not
    Transfer of Requirements are also controlled
    Availability check at the Sales order is controlled with the Indicator set at SCHEDULE LINES
    For Third Party processing, the Purchase requisition is created based on the Setting at schedule lines
    Together with the ITEM CATEGORY , the schedule lines determine whether the Transaction is Relevant for MRP or not In the Transaction code VOV5
    ITEM CATEGORY:-
    Item category is a significant part in processing the sales document
    Item category determines whether particular item is relevant for Delivery ot not,
    Whether item is relevant for the  Billing
    In Determine the Availability and TOR Item category plays an important role, for example the Availability check at DELIVERY will be taken place based on  the DELIVERY ITEM CATEGORY
    Some Fnctionalities like OUTPUT, TEXT, PARTNER, INCOMPLETION are controlled
    DIP which in the ITEM CATEGORIES is the Main Integration Between SD and PS
    Thanks,
    santosh

  • Schedule Lines for TATX items

    I know that by default, schedule lines are not active for TATX (text) items in sales documents.
    I'm also pretty sure that this option is not valid even if you activate it in the IMG.
    Can anybody tell me:
    1) Is my statement above correct ?
    2) If so, why are schedule lines not allowed for TATX items.
    3) Is there any way around this limitation ?

    Thanks for your input so far.  Perhaps you'll be kind enouth to stick with me a little more.
    Let me expalin what my user is doing:
    In the IMG configuration of our system, schedule lines were activated for TATX item category, however it still does not work as expected.
    User enters a quantity of deliverable product on line item 1 with item category of TAN.
    User creates a delivery schedule for line item 1 using schedule lines (category CP).
    For line item 2, user wants to send "DOCUMENTATION" for each schedule line.
    "DOCUMENTATION" exists in our SAP system as a material master, but no stock exists.
    User enters a quantity of DOCUMENTATION on line item 2 with item category TATX.
    User creates delivery schedule for line item 2.  (auto populates sched category CT).
    When delivery is created, the first schedule line for both items works fine.
    For subsequent deliveries, line item 1 continues to work, but the line item 2, DOCUMENTATION material does not show up.
    I suspect that we are trying to use the TATX item category differently than it was intended, and that some other method would be a better fit for making deliveries of non-stocked material.

  • How to pass Schedule lines of an item Line to 'BAPI_QUOTATION_CREATEFROMDAT

    Hi Friends,
    I am trying to create Sales Quotation using the  'BAPI_QUOTATION_CREATEFROMDATA2'  from Webdynpro Application.
    I am able to create the quotation with Line items, but I am not able to pass the multiple schedul line for an Item line.
    it takes,but it checks the item availabilty and propses the delivery propsal dates.
    but my requirement is It should take only the schedule line items which I am passing to BAPI,because I do the availability check in my application and pass those schdule line items to BAPI.
    If I pass only one schedule line item then should create only with one schdule line item,If I pass Muliple then it should create schedul lines for item line.
    Please help me in solving the issue.
    Regards,
    Xavier.P

    Hi max,
    loop at lt_nd_quote_items into ls_nd_quote_items.
        lv_item = lv_item + 10.
    *Check weather Availablity check is done or not.
        read table lt_nd_schedule_lines into ls_nd_schedule_lines
                           with key matnr = ls_nd_quote_items-matnr.
        if sy-subrc = 0.
          loop at lt_nd_schedule_lines into ls_nd_schedule_lines
                            where matnr = ls_nd_quote_items-matnr
                            and   kwmeng = ls_nd_quote_items-kwmeng.
            lv_sch_line = lv_sch_line + '0001'.
            wa_order_schedule-itm_number         = lv_item.
            wa_order_schedule_inx-itm_number     = lv_item.
            wa_order_schedule-sched_line         = lv_sch_line.
            wa_order_schedule_inx-sched_line     = lv_sch_line.
            wa_order_schedule-req_date           = ls_nd_schedule_lines-delv_date.
            wa_order_schedule_inx-req_date       = c_abap_true.
            wa_order_schedule-req_qty            = ls_nd_schedule_lines-kwmeng.
            wa_order_schedule_inx-req_qty        = c_abap_true.
            wa_order_schedule-SCHED_TYPE         = 'BP'.
            wa_order_schedule_inx-SCHED_TYPE     = 'X'.
            wa_order_schedule-MS_DATE = ls_nd_schedule_lines-delv_date.
            wa_order_schedule_inx-MS_DATE = 'X'.
            wa_order_schedule_inx-updateflag     = 'I'.
            append:wa_order_schedule to  it_order_schedule,
                   wa_order_schedule_inx to it_order_schedule_inx.
            clear:ls_nd_schedule_lines.
          endloop.
        else.
    *If no Availablity check is done,pass the item details to schedule lines.
          lv_sch_line = lv_sch_line + sy-tabix.
          wa_order_schedule-itm_number         = lv_item.
          wa_order_schedule_inx-itm_number     = lv_item.
          wa_order_schedule-sched_line         = lv_sch_line.
          wa_order_schedule_inx-sched_line     = lv_sch_line.
          wa_order_schedule-req_date           = ls_nd_quote_items-delivery_on.
          wa_order_schedule_inx-req_date       = c_abap_true.
          wa_order_schedule-req_qty            = ls_nd_quote_items-kwmeng.
          wa_order_schedule_inx-req_qty        = c_abap_true.
          wa_order_schedule_inx-updateflag     = 'I'.
          append:wa_order_schedule to  it_order_schedule,
                 wa_order_schedule_inx to it_order_schedule_inx.
        endif.
        clear:ls_nd_quote_items,lv_sch_line.
      endloop.
    Max,  the internal table lt_nd_schedule_lines  is containg my schedule lines,if there are no lines in that table i am just passing the default line item details so that the BAPI take care of schdule line for that Line item.
    Could you please help me in figuring the issue?
    Regards,
    Xavier.P

  • Mapping between Sales Order-Schedule-Line and Delivery-item

    Hi together,
    I want to extend the Datasource 2LIS_12_VCITM (Delivery-number, -item, Order-number,-item is available) by Sales Order Schedule Line.
    Could not find any ERP table (VBEP and LIPS allow a mapping only on item level) for the mapping between Sales Order Schedule Line and Delivery item yet. The use of the extractor 2LIS_12_VCSCL for the extention (e.g. infoset) afterwards is no option.
    Thanks for your help in advance!!
    Assign full points!!
    Sven

    Hi Reddy,
    thanks for your answer.
    I know that I have to add this field.. but the problem is, how to fill this field. I don't know how to map the delivery-item with the schedule line-item.

  • A/c assignment category and item category fields purpose

    what is the importance of account assignment category and item category fields in po(me21n).what is the impact of that fields.

    Hi,
    Account Assignment category is a vital field in purchasing document &  has many control functions and helps in determining the object that will be charged in case of an ordered material which is procured for direct usage or consumption. By using the
    account assignment category in the purchasing documents the cost of the material can be apportioned to a single Controlling object or it can be apportioned among various Controlling objects.
    The account assignment category determines:
    a.The nature of the account assignment
    b.Which accounts are to be charged when goods receipt is posted
    c.Which accounts are to be charged when the incoming invoice are posted
    d.Which account assignment data you must provide
    Item category is vital field in the purchasing documents & has many control functions and helps in determining whether an ordered material:
    a.Requires a material number
    b.Requires an account assignment
    c.is to be placed in stock
    d.Requires a goods receipt (GR) and/or an invoice receipt (IR)
    In addition to the above it is also used for differentiating the different types of procurement processes and the types of stocks including special stocks available.
    Regards,
    Biju K

  • Put mov.type 632 relevant to QM when goods is returning to the plant.

    Dear friends ,
    We made a process to send goods to the vendor fix this good via SD with an sales order with movement type 631 (customer consignment) because the clerk want to see this specific goods in special stock.
    Now the clerk want to put this good in Quality when goods movement 632 put the quantity back.
    Is it possible to do this for the movement type 632 when the goods is returning ? We don't have QM active here in the company.
    If is not possible any other possibility via other movement considering the process above ?
    Thanks in advance for all suggestions.
    Alessandro

    Hi Alessandro ,
    Can you tell me the Item Category and the Schedule Line Category used in the Sales Order.
    Also state the Item Category group maintained in the material master.
    Regards
    Ramesh Ch

  • Post to Returns stock with movement type 632

    Hi all,
    I have configured SD Customer Consignment for my client. When consignment goods come back from the customer Movement Type 632 is used en the goods are posted in unrestricted use. My client want these goods to be posted in the Returns stock. Does anyone know if this is possible?
    Movement type 651 posts to the Returns stock. Where is teh actual setting made that this movement type posts to Return stock. Can anyone explain to me how this works.
    Thanks in advance.
    regards,
    Roel

    Have tested your scenario- Just now.
    Though you can change the mov type in sch.line cat, but it acts like as normal return scenario, so you will be loosing the track of Inventory available @ Customer as part of Consignment.
    Still, if you change the mov type, you will not be able to perform PGR for Consignment Returns in VL01N,its becasue that, special stock indicator-W in item cat:VOV7.
    FYI,
                         Sales doc type - Item cat -- SCh.line Cat- Mov type
    Consig Fillup - KB -
    KBN -
    E1/E0 - 631
    Consig.Issue -KE--KEN--
    C1/C0- 633
    Consig.Ret.-KRKRND0----634
    Consig.Pickup-KA--KAN--
    F1/F0- 632

  • New Movement type for Customer consignment Pick Up

    Hi Friends,
    I am an SD consultant and working on consignment sales scenario.
    In consignment pick up I do PGR (POst goods receipt). The standard movement type used is 632. It reduces customer consignment stock and increases Unrestricted stock.
    I need a new movement type which will reduces customer consignment stock and increase Quality Inspection stock.
    Please advise.
    Regards,
    Rajesh S.

    Hi Rajesh,
    Use tcode OMJJ and in the change screen select ur mov type 632 and presss F6 (copy as) and give ur new mov type it will copy all the properties of 632 mov type
    And changing unrest to qly, check in Update control / WM movement types column whihch is ava on the left and also Deactivate QM inspection / delivery category..  here check ur req..
    Edited by: Raju on Nov 20, 2008 5:44 AM

  • Movement type for Customer  Consignment Pickup : matl returned to QI stock

    Hello guys,
    Our client wants their customer consignment materials are returned back into our QI stock. Currently the standard SAP only provide movement type 632 (Trans.pstng fm customer consgmt to unrestr. stck) to return from Customer consignment stock into Unrest stock.
    Could you please let me know how can we fullfill our client schema with standard SAP mov.type?
    Or should I create new movement type which is reduce cust.consgn.stock and increase our QI stock ? If yes, how do the configuration will be?
    Please help me guys,
    Many thanks in advance

    Hi guys,
    Priyanka, thanks for the answer
    mmm.. ya I have proposed that too, I meant it should be 2 steps process
    but they rejected it because if material to be returned into unrest, it will be Physical Pickup consignment schema (material returned physically to us). So they need another schema that will be used for logical consignment pickup which is the material doesnt returned into stock phisically.
    Ya, that's a questionably schema, but I really need to know if there is another way to fullfill this schema, e.g. by creating new movement type ?
    Many thanks ya..
    Dian P

  • No vendor defined in Table T321 for ref. movement type 632

    Hello Friends,
    We are facing strage issue during trasfer movement from SAP ECC to SAP WM, the scenario is as follows -
    For the Consignment returns (from Consignment stock to warehouse), we are using 632 movement type of transfer movement transaciton MB11.  When executing the document, system showing the following error message -
    No vendor defined in Table T321 for ref. movement type 632  
    We checked the entries, I am not able find the problem...Please suggest
    Apreciate your feedback.  Thanks
    Best Regards,
    Goutham

    looks like your WM is defined as decentralized system.
    The message number is L9 524
    And system expects vendor number for the inbound deliveries.
    I wonder anyhow why you are using MB11 transaction for 632 movement (which is an automatic movement triggered from a SD document)

  • Use Movement Type 632 to post to returns

    Hi all,
    I have configured SD Customer Consignment for my client. When consignment goods come back from the customer Movement Type 632 is used en the goods are posted in unrestricted use. My client want these goods to be posted in the Returns stock. Does anyone know if this is possible?
    Movement type 651 posts to the Returns stock. Where is teh actual setting made that this movement type posts to Return stock. Can anyone explain to me how this works.
    Thanks in advance.
    regards,
    Roel

    Hi
    It is not possible to see where those are configured for movement type 651 As some control indicators do not only depend on the movoment type, but also on other parameters (for example, debit/credit indicator, special stock indicator, indicator for updating quantities and values), you may find several entries for a movement type for certain views. These entries are necessary to cover all possible data constellations in the system.
    Why don't you use 651 for your requirement?. You can receive it in your own stock then later also you can put it in customer returns. Check 451 and 452.
    Regards
    Antony

  • Item Category and item category determination

    Dear Guru's,
    I have BOM for one material. I have done the full cycle from sales order to billing, everything is fine. I have mainatined combination for item catergory determination as OR+ Norm =Taq and ORNormTaq=TAE. and also maintained copy controls.
    The same i have maintained for Consignment porocess.
    Now i am having problem in the cases return delivery,consignment pickup and consignment returns..
    What are the combinations to be maintained.. What are the standard item categories and assignments to be maintained..
    Regards,
    CS

    hello,
    these are very basic question and can solved if you search over the net or ask your instructor to recommend any book.
    coming to your question
    item category determination  in sales document is done via following rule
    sales document typeitem categorygroupusage+higher level item cat=item cat det in sales doc
    OR                              +       NORM                                                              =TAN
    SCHEDULE LINE CAT determination  in ITEM OF A sales document is done via following rule
    item category+mrp type=schedule line category
    TAN               +PD          =CP
    revert if helpful
    Mohit Singh

  • Combining AFS schedule lines into one Item

    HI,
    Due to certain reasons the item in an order splits into two schedule lines. When the order is delivered, each schedule line gets copied as separate batch item though they are of the same grid value. Is there a way where we can make the order schedule lines get copied into delivery as a single batch item if they are of the same Grid Value.
    Any help would be appreciated.
    Thanks & Regards,
    Vidya Sagar

    Dear VidyaSagar,
    In sale order - at the item overview screen - you ll be having an indicator named 'No duplicate'.
    If you check this indicator - it won't allow the system to enter double line for a same grid..
    Ex:
    Material:  Qty:   Date:
    XX-38       10      2/2/2009
    XX-38       10      3/2/2009
    If you check that indicator, system will throw a warning message - so that you can change the item to have only one line entry in the sale order which may prevent dual schedule line for same material..
    Another one option is to make use of the order scheduling in sale order..
    If you use the order scheduling S04 - it will change the delivery date of the material according to the division of the products..
    Ex:
    Material:  Division:  Qty:  Req.Dlv Date:
    XX-38       Apparel    10    2-2-2009
    XX-39       Apparel    10    3-2-2009
    If you run the order scheduling(Strategy S04) - it will change the delivery date of both items to 3-3-2009.
    (I assume in your case, you are having more than one schedule lines for a particular item..)
    And one more thing to consider:
    An item in sale order can have more than one schedule line.
    This can happen - if the customer allows partial delivery and on the requested delivery we don't have enough stock to deliver to the customer..
    At the time of ATP run, as per the option you have chosen(one time delivery, Full Qty, System proposal),
    the system will determine the delivery date..
    I am updating the things which I aware about AFS.. Make use of this - if it helps you..
    Thanks,
    Venkatesh.S.P
    Edited by: venkatesh paulraj on Mar 16, 2009 3:51 AM

  • Accounting entry line item after 561 movement type

    Hi,
         I have create initial stock uplaod with MB1C with movement type 561, for 4 materials after post of document it is posted properly with proper amount but when I check the accounting entry  it shows me in the amount in two diffrent  debit and credits even the valuation class of all the 4 material is same.
    Debit material account, addition of amount of three materials
    credit initial stock account, addition of amount of three materials
    debit material account of 4th item
    credit initial stock uplaod as per amount of 4th item,
    I want to know why in first entry systen added 3 material amount in one and in second entry amount of only 4th item, when I check the entry in table  BSEG ,the second entry is posted along with business area 0001 where as for the first entry the business are field in the table is blank  even the business area is set the company code and plant level, and only single business area we are using in the system.
    regards,
    zafar

    As you mentioned you have a separate business area this is the reason for posting the entries separately. This is the same case with profit center also (if different PC's are maintained for different material). Also system will proportionately calculate the other expenses (if any) and post in a separate line items in accounting document.
    Regards
    Ayyallas

Maybe you are looking for