Max order quantity to preserve service levels

Dear Sales Gurus,
Here is an interesting challenge. I have seen a lot of topics around this issue, but no clear explanation on the background and probably for that reason no clear solution.
==============
Heading 1:The business case
Products that are sold can be characterized by being high or low volume, and frequently or not frequently ordered. This particular scenario is in the context of low-volume and not frequently ordered products. To assure service levels and working capital optimization you have defined a safety stock that corresponds to the frequence of the orders, average quantity ordered and standard deviation of ordered quantity. As practical example: Product AAA is sold every 2 months by 3 orders with average quantity of 15 and standard deviation of 5. The safey stock has been set to 60 units.
One of your sales offices/persons spots a one off-opportunity to sell 60 units of that product AAA and places a sales order for it. Consuming the inventory completely would result in most of the other regular customers being unsatisfied and service levels being broken.
==============
Objective
Assume partial deliveries are not accepted. The system should not propose a date, which is based on the available inventory. It should take into account the assumption that the quantity should be produced in order not to completely exhaust the safety stock and damage the service level for other regular customers.
One way to achieve that is to introduce a maximum order quantity, which can be statistically estimated to fit in certain constrains and factors.
==============
System Behaviour
Lets say a max quantity can be defined somehow and used in SO processing. When the ATP is run, it should check the max quantity and if the order exceeds that quantity, it should be satisfied by planning a new production. For example if the max quantity is set to 30 (mean + 3st.deviations), any order for up to 30 would be sourced from inventory, provided there is stock available, any order above this limit will immediately be planned for production even if stock is available to cover the individual order.
==============
Alternative Solutions
Any solution which allows that the above issue is avoided can be considered. The Max Quantity is probably only one of the possible alternatives.
Looking forward for your solution ideas.
==============
P.S. Custom development and User exits are always an option, but in this request we need to answer with standard functionality as much as possible.
P.S.S. I have been looking at the Quantity Optimization functionality for PO's and SO's, but I am not sure if it is really a solution as I do not have experience with it and did not understand how exactly it works.
P.S.S.S. I had problems formating this to come as structured text with some line breaks. Sorry for the output.
Thanks,
Valentin
Edited by: Valentin Yonchev on May 10, 2010 4:38 PM
Edited by: Valentin Yonchev on May 10, 2010 4:40 PM

Hi Kaan,
Here are the answers to your questions:
1) Is there a Max.Order Quantity field in the material master record like Min.Order Quantity field in the
Sales: Sales org.1 screen?
Answer: Unfortunately there is no such field.
2) How can we define a limit for the total amount of the order quantity per a sales order?
Answer: You could consider using USEREXIT_SAVE_DOCUMENT_PREPARE in MV45AFZZ.
This userexit will be called during the save process of sales document.
You could add additional check in it.
3) How can we control that one material no. could be written just one item line in the sales order?
Answer: You could consider using USEREXIT_CHECK_VBAP in MV45AFZB.
This userexit will be called after item creation. You could add check for material number.
Thanks and best regards,
Smile

Similar Messages

  • Question - Max orderable quantity in iStore

    All,
    I have a req where istore users should not be able to order more than a quantity of 5 for certain items.
    How do I do this?
    I looked in inventory attributes but could not find anything related.
    Any help is appreciated.
    Thanks
    Pilla

    Pilla
    We use processing constraints framework that comes in OM.
    1. Created a custom profile to capture the quantity as value (can change if we have to).
    2. Created a database package using the processing constraint framework logic. You will find examples.
    3. Created a validation template (API based)
    4. Create a processing contraint for the order header entity so that the order cannot be created if the line has more quantity than desired.
    In production and works great.
    Thanks
    Nagamohan

  • Passing 'Service Level' from Forwarding order to Freight order

    Hi All,
    If I create a Forwarding order with Service Level "XYZ" and create a freight order from it,
    the service level 'XYZ' is not passed on to the Freight order Service Level field.
    Instead of 'XYZ' it is empty.
    When investigated found out that, freight order will take Service Level defined in the corresponding Freight order type.
    In my case, the Service level in Freight order type is left Empty.
    Is there any workaround to bring the Service level from FWO to FO?
    Thanks & Regards,
    Michael.

    Hi Michael,
    It depends how you are creating a FO from forwarding order. Do you have FUs as linkage or you are creating FO directly by using FUBR?
    Thanks & Regards,
    Tarun Kumar

  • Order quantity is always showing zero in ECC  --- Urgent

    Hi Team,
    Service order created in CRM Web UI and with service material (Servicing charges) order quantity as u201C1 " at the SM item level defined.
    Order is getting saved without any errors and replicated well with the amount to the ECC ,  but the Issue is order quantity is always showing as " 0 " in ECC , instead of  u201C 1 u201C
    SAP Tem had proposed to change the SD Document category type From u201CCu201D ( Order ) to "L" (Debit memo req ) . We had changed the same and tested, but no use, still we see no change in the order quantity of the service material in the ECC.
    If any one knows, how to address this, pls respond at the earliest.
    Regards
    VCS

    Dear Brhmakumar,
    There is no option to enter Operation qty. in routing.
    And for the converstion factor from header qty to operation qty. is 1:1 is in routing.
    Thanks & Regards,
    Mihir mehta

  • How to disable field Order quantity

    Hi everyone
    I want to disable field item order quantity at line item level on the transaction VA02, can anybody help me on this?
    im using the user exit MV45AFZZ to make other modifications in the program, can i use the same user exit or any other alternative?

    The logic that you need to place should be something similar to below:
    IF SY-TCODE = 'VA02' AND SCREEN-NAME = 'RV45A-KWMENG'.
       SCREEN-INPUT = 0.
    ENIF.
    Hope this helps.
    Kind Regards
    Eswar

  • How to change Service order quantity using BAPI/FM

    Hi All,
    Can any body tell me how to change the Service Order quantity (in IW32) using a FM or a BAPI.
    I tried using the BAPI: BAPI_ALM_ORDER_MAINTAIN but I am unable to change the quantity. May be I might be missing some parameter. If anybody has done this please let me know the parameters that needs to be passed or if there is any other way out.
    Points will be rewarded to useful answers!!
    Thanks,
    Susanth.

    Hi!
    I have used this BAPI.read the documentation properly and after calling this bapi call BAPI_TRANSACTION_COMMIT then only expected results com n get saved.
    for ex:
    call function 'BAPI_ALM_ORDER_MAINTAIN'
        tables
          it_methods              = itab_methods
          it_header               = itab_header
      IT_HEADER_UP            =
          it_header_srv           = itab_header_srv
      IT_HEADER_SRV_UP        =
          it_userstatus           = itab_userstatus
          it_partner              = itab_partner
      IT_PARTNER_UP           =
          it_operation            = itab_operation
      IT_OPERATION_UP         =
          it_relation             = itab_relation
      IT_RELATION_UP          =
          it_component            = itab_component
      IT_COMPONENT_UP         =
          it_objectlist           = itab_objectlist
      IT_OBJECTLIST_UP        =
          it_olist_relation       = itab_olist_relation
          it_text                 = itab_text
          it_text_lines           = it_text_lines
          it_srule                = itab_srule
      IT_SRULE_UP             =
          it_tasklists            = itab_tasklists
          extension_in            = itab_extension_in
          return                  = itab_return
          et_numbers              = itab_et_numbers
      call function 'BAPI_TRANSACTION_COMMIT'
       exporting
         wait          = 'X'
    IMPORTING
      RETURN        =
    reward points if helpful.

  • Open quantity on a service order

    Hi
    I need to know how to check (and which tables to go to) the open quantity on a service purchase order. I need to see this for both the planned services as well as the limits that have been maintained.
    Thanks
    Vinesh

    You can check this by in the PO at the service tab at item details there is one column for Quantity and another for Actual quantity.The difference between them will let you know the open quantity i.e. if quantity is 30 and actual quantity is 14 then the open quantity is 16.
    or
    ML84,ME2S
    regards,
    indranil

  • Prevent Component Issue More than Service Order Quantity

    Dear Experts,
    We are able to Issue Materials to Service Order(CS) more than the Material Quantity in the Service Order.
    Our Requirement is to prevent this . Please help.
    Regards,
    Shareeq

    Dear Tejasg,
    Your post was an Useful information.
    The required configuration can be done at.
    ECC 5.0
    SPRO-> Plant Maintenance and Custmer Service ->Maintenance and Service Processing->Maintenance and Service Orders->Funtions and settings of Order Types->Goods Movement for Order ->Define Documentation of Order.
    Regards,
    Shareeqq
    Edited by: K M AHAMED SHAREEQ HUSSAIN on Mar 13, 2010 11:22 AM

  • Work Order Smartforms.. How to get the Service level Items...

    Hi Experts,
    I am working on Work Order Smartform... I got everything but i am stucking at Service level Items... There is one Table called ESLL.. I am trying to fetch the data from that table but its not printing.. So, please help me regarding this issue.. any logic to implement it..
    Thanks in Advance
    Regards,
    Murlaikrishna

    Hi Karthik,
    For every PO we have item level data... in that we have Service level data tab. But there is no link between PO and Service level items to fetch, I have used the tables EKPO and ESLL for fetching the data from service level by usin PACKNO field.
    When I am writing the select statement for ESLL, service Item level data is not printing from ME23N...
    Thanks in Advance,
    Regards,
    Muralikrishna

  • Help required in BAPI_ALM_ORDER_MAINFm to change the service order quantity

    Hi,
    Can any one tell me Fm To change the srvice order quantity??
    I am using fm

    Hi,
    Can any one tell me Fm To change the srvice order quantity??
    I am using fm

  • VL04 Issue -Open order Quantity Display

    This issue is come in VL04 area.
    At first - user had changed customer master data in to - shipping partial delivery per item: B (Create only one delivery (Also with qty = 0) )  and Max partial deliveries : 1 settings are maintained, which are the standard SAP functionalities. Above changes are made on 02 Oct u201911.
    however our client user has already created standard sales order on 31 Aug 2011 with Material qty = 4 Tones but delivery (01 Sept 2011) has been created for 3990 Kgs, delivery related invoice also has been created 03.09.2011 u2013 Expecting payment from customers.
    But know remaining open order quantity list is displaying in VL04, at this time our client user is challenge us, He donu2019t want see the remaining open item quantity sales orders list in VL04.
    An import thing is u2013Availability Check is not configured for Sales order level.
    Experts, I need your valuable help in this, Please help me from this.
    Regards,
    Pa1_Jackon Robert

    Dear Jackson Robert,
    however our client user has already created standard sales order on 31 Aug 2011 with Material qty = 4 Tones but delivery (01 Sept 2011) has been created for 3990 Kgs, delivery related invoice also has been created 03.09.2011 u2013 Expecting payment from customers.
    System is behaving as expected to behave.
    Since there is pending qty to be delivered in the sales order, system will always show it as open qty .
    One suggestion is to go to the VA02 of the order , and make the qty to 3990 Kgs and SAVE.
    Then Re-check whether the order is again getting listed in VL04.
    Check and revert back.
    Thanks & Regards,
    Hegal K Charles

  • Cost on the basis of order quantity

    Can the cost be decided on the basis of order quantity ? For example when 100 pieces are taken the cost is 10 each but when 1 peice is purchased the cost is 50 each,
    Similarly this should reflect when we sell the item in customer service.

    hi,
    the scales would do that job for you. You do not need to explicitly mention a formulae at VK11 when maintaining condition records. And remember cost at sales order level has a different meaning. We use the term Cost to talk about VPRS condition. Normally the costs and prices at sales order level can be transferred to COPA for profitability analysis. We map these pricing conditions to COPA value fields for management reporting purpose.
    regards
    sadhu kishore

  • How to determine the real (effective) Service Level ov a material?

    Hello Experts,
    I have Service Levels of for example 92% or 98% for a material set up in the material master data ( MARC-LGRAD ). This shall mean in reality, that I can deliver in 92% or 98% of the cases the needed goods in the right quantity. Only in 8% or 2% of the cases I can not do that. Maybe I have nothing of that material in stock to deliver or I only have not enough of it.
    The Service Level is one of the aspects affecting the reorder point and safety stock.
    No I want determine for my materials what the "real" Service Level is based on maybe the deliveries?
    Is there a standard report of SAP to check this? If not: does anyone has some hints for me how to code it myself?
    Best Regards
    Manfred

    Hi Manfred,
    This information is a bit tricky, becuase you don't always have it in the business process.
    One of easy sources, is if you plan for sales, then you can see both what was ordered versus what was actually delivered.
    But if you plan for internal consumption, lets say somebody goes to the store, and if the material is not there nothing is recorded in the system to testify for that.
    Regards,
    Mario

  • Fixed Order Quantity

    Hi,
    we are using ASCP together with SFM. We do descrete manufacturing for our products. The products flows look like this:
    - asssembly item A (finished good item)
    => is make item (has routing), uses component3
    - component3 is make item, uses component2
    - component2 is make item, uses component1
    - component 1 is buy item
    So the flow of material looks like this:
    component1 -> component2 -> component3 -> assembly4
    (buy) (make) (make) (make)
    In production we typically process only full Lots/Batches with a certain quantity depending on the component1.
    We want that ASCP plans always full Lots, because the leadtime of the full Lot is always needed in reality. If ASCP plans with partial quantities, then the estimated/calculated leadtime for the planned orders will not be realistic.
    To achieve this we want to use the Fixed Order Quantities, however it turned out that we run into several other problems if we use this parameter. For example it happens that system recommends to buy material (component1) just for the sake of the fixed order quantities.
    We are running into issues if we enter the Fixed Order quantities, and we get other issues if we leave this empty.
    I am looking for someone who has experience with this parameter and can give some recommendations. Maybe we use the wrong approach and there are other paramters that we should use to achieve what we want.
    Big Thanks in advance,
    David.

    Sub: "We want that ASCP plans always full Lots, because the leadtime of the full Lot is always needed in reality. If ASCP plans with partial quantities, then the estimated/calculated leadtime for the planned orders will not be realistic."
    Oracle ASPC has some more meaningfull logic in Lead time calcualtion. It is not that Lead time will be wrong when you Process the low batch. On the other hand lead time goes up when you use Fixed order Quantity , irrespective of Demand. It also files up your inventory.
    See for example, If you have fixed order quanitity for an item say 1000 numbers;assume that you have on hand for 500. and need to refill balance 500.
    What will ASCP recommend you ?..1000 numbers.It files your invenotry...Does this mean that lead time for producing 1000 is less as compared to 500!!! also is it acceptable to produce extra 500..
    .It also make you to plan low levels adversly with case cade effect...
    You issue is not lead time...You are talking about setup time. If you produce more batches, you are occuring the more setups for same items. it makes lead time more lengthy considering the setup time. This is your problem and wanted to limit this or wanted to make it optimization. (Is it right my observation of your problem??)
    How to control...?. Rather than speaking about lead time , let us talk in other way ...what is the Planning perid do you want want to conisder while planning a batch or lot size?. In other words let us take an example,,,
    Component2 has a lead time of say 30 days for 1000 numbers. At the same time, I am able to accamadate only max 1000 numbers. If the demand goes up ,say for example, 2000, then I need to have two batches. If the goes less than 1000 and demand split in time gap ...for exmaple, 500 in first of week of may and 200 in last of week of may, still I want to consolidate 500+200 into one batch and want to Plan 700 as it is less that 1000.
    If the above condition matches..you need to use Min Order/Max orde qunatity and Fixed days supply together. This is the wonderful way it controls the objective as stated above.In this example you will set min 1 , max 1000 and fixed days supply to 20 days.
    How ever in some cases if the demand comes likes this, say for exmaple 2000 and 2000, then there is a recommendation to produce 1000,1000,1000,1000 with due date as equal to first lot. However, if you use constranied based planning, APS will reshdule and give you best possible time slot. Other wise, if there is enoguh capacity you are still able to produce 4 batches in first due date. The result of this behaviour depends on EDD and ECC and will vary.Make it understand this and do test case..go ahead..
    Thanking you,
    dr

  • Any questions on Order Management Header and Item level?

    Hi,
    If you are interviewing somebody...And the position he wants is SD consultant.
    What kind of questions will you raise on OM header level and item level??
    Order management--Questions on Header level
                                  Questions on item level
    Thanks, would be better if you could also attach the answer.
    Thanks!!

    Dear Hoo,
    ORDER MANAGEMENT & SALES
    1.Briefly describe the types and structure of the sales document and give examples of data
    that you find on the different levels.
    Sales*related business transactions are recorded in the system as sales documents. There are, broadly
    speaking, four different groupings of sales documents:
    Sales queries, such as inquiries and quotations
    Sales orders
    Outline agreements, such as contracts and scheduling agreements
    Customer problems and complaints, such as free of charge deliveries and credit memo requests.
    Header Data
    The general data that is valid for the entire document is recorded in the document header. This data
    includes the:
    number of the sold*to party
    number of the ship*to party and the payer
    document currency and exchange rate
    pricing elements for the entire document
    delivery date and shipping point
    Item Data
    Whereas data in the document header applies to all items in the document, some data applies only to
    specific items. This data is stored at item level and includes the:
    material number
    target quantity for outline agreements
    number of the shipto party and the payer (an alternative shipto party or payer can be defined for a
    particular item)
    plant and storage location specifications
    pricing elements for the individual items
    Schedule Line Data
    An item consists of one or more schedule lines. The schedule line contains all the data that is needed
    for a delivery. For example, a customer orders 20 pieces of a material and you enter this as an item in
    the sales order. However, you can only deliver 10 pieces now and the remaining 10 pieces next month.
    In other words, you need to schedule two deliveries. The data for these deliveries (dates, confirmed
    quantities) are stored in two separate schedule lines. In sales documents where delivery data is not
    relevant *for example: contracts, credit and debit memo requests * the system does not create any
    schedule lines.
    Data recorded in the schedule lines includes the:
    schedule line quantity
    delivery date
    confirmed quantity
    2.What is the difference between an inquiry and quotation ?
    . Inquiry: Request made to a vendor for a quotation for required materials or services.
    No availability check is done for inquiry.
    . Quotation: Offer from a vendor to a purchasing organization regarding the supply of materials
    or performance of services subject to predefined terms and conditions.
    A quotation consists of a number of items, in which the total quantity and delivery date of an
    offered material or service are specified.
    The total quantity can be subdivided into several partial quantities with different delivery dates in the
    lines of a delivery schedule.
    3.Do you always have to have a material master record number when you enter an item on a
    sales document (inquiry and quote)? If not what would you have to use to be able to enter
    information at item level?
    No. Customer Material Information or Material Description.
    4.If a customer doesn't place an order with you after you have sent him a quotation, what happens to
    the quotation document?
    Remains active till the end of validity period.
    5.Can you have alternative items in a sales order?
    Yes.
    6.If you reference an inquiry when creating a quotation ,would the inquiry be updated?
    Yes.
    7.Can you copy one inquiry to many quotations ?
    No.
    8.Can you copy several previous documents into one sales order?
    Yes.
    9.Do you always have to copy the entire quantities at item level when you reference a
    previous document?
    No.
    10.Can you make sure that business data in a sales order is only possible to maintain at header
    level?
    Yes.
    11.From where is the delivering plant transferred into the sales order?
    Customer Master, Material Master.
    12.Which partner function is relevant for the delivering plant? The soldtoparty ,
    billtoparty, payer, carrier or the ship* to* party?
    Ship*to party.
    13.Can you manually change the delivering plant in the sales order once it was defaulted from
    the master data?
    Yes.
    14.For what or why do you use the incompletion log?
    To have a complete document so that it doesnu2019t affect subsequent processes.
    15.Can you have different incompletion logs for different item categories? Schedule line
    categories?
    Yes.
    16.If a document is incomplete can you still save the document?
    Yes.
    17.Which reference status can a document have at item level? Which statuses at header level?
    Item level: Partial, Full.
    Header level: Full.
    18.What's the advantage of using text as a reference instead of duplicating it?
    Can be modified if needed.
    19.What three sources provide data for the creation of a sales document?
    Material Master, Customer Master, Previous referenced documents.
    20.Can you change addresses of partners manually in the sales document?
    Yes.
    21.Name several input tools that make order entry faster and give a definition of them?
    Customer Material Information, Product Proposal , Referencing Documents.
    22.In which business environment would you use only the single*line entry screen to create
    and save the order?
    Telephone Sales, Simple Business.
    23.If you do not specify the delivering plant in the sales order, what could the system then not
    do?
    Delivery Scheduling.
    24.For what would you use the fast change function in sales entry?
    Alternate Plants, Delivery or Billing Blocks
    25.Name two ways to control that customers can receive only certain materials?
    Material Listing, Exclusion.
    26.What does the item category control?
    General Data
    . Should pricing be carried out for the item?
    . When should an item be regarded as completed? A quotation item, for example, can only be
    regarded as completed if the entire quantity has been copied into a sales order.
    . Is it an item that refers to a material or is it a text item?
    . Are schedule lines allowed for the item?
    . May general business data, for example, the terms of payment at the item level, deviate from
    those at the header level?
    . Should a system message appear if the item cannot be fully delivered?
    . Which fields are relevant for the incompletion log?
    . Which partner functions are allowed at the item level and which are mandatory?
    . Which output (for example, an order confirmation) is allowed for the business transaction and
    which output determination procedure is used?
    Shipping Data
    . Is an item relevant for delivery?
    . Should the weight and the volume of an item be determined?
    Billing Data
    . Is an item relevant for billing?
    . Should the cost of the item be determined?
    . Is it a statistical item? Pricing is carried out for statistical items. However, they are not added
    to the value of the order, that is, the customer is not charged for them.
    . Should a billing block be set automatically for an item? For example, this may be important for
    items whose prices have to be clarified before billing
    . Is it a returns item?
    . Name the influencing factors for determining the item category in the sales document?
    . Sales Document type, Item Category Group, Higher Level Item, Item Usage.
    . Name the influencing factors for determining the scehdule line category in the sales document?
    . Item Category, MRP Type.
    . What does the sales document type control?
    General Data
    . Can the document be entered only with reference to a preceding document?
    . Should the existing customer
    . material info record be taken into consideration?
    . Should the delivery date be proposed?
    . Must a customer number be entered when creating a document? For example, product
    proposals can be entered without reference to a particular customer.
    . Which order probability is defined?
    . Should the division be taken from the material master record for every item or should an
    alternative division specified in the header take precedence over the item specifications?
    . How should the system respond if the division entered in the header deviates from the division
    in the items?
    . Should a credit limit check be made?
    . From which number range should the document number for internal or external number
    assignment come?
    . Which fields are relevant for the incompletion log? The validity period, for example, is
    important for contracts and must therefore be specified in the document.
    . Can an incomplete document be saved or must all data be complete?
    . Which partner functions are allowed and which ones are mandatory?
    Shipping Data
    . Which delivery type should the delivery resulting from the order have?
    . Should delivery scheduling be carried out?
    . Should transportation scheduling be carried out?
    . Should a delivery block be set automatically for a specific reason? For example, a delivery
    block may be appropriate for a freeofcharge delivery.
    . You can define shipping conditions for a sales document type. These are copied into the
    document regardless of what is defined in the customer master record.
    Billing Data
    -->Which billing type should the invoice resulting from the order or the delivery have?
    Should a billing block be set automatically for a specific reason? For example, a billing block may be
    appropriate if a credit memo request should first be checked before it is used as the basis for a credit
    memo.
    -->Can the sales document type be determined by the system?
    No.
    -->In R/3, can you automatically substitute one product for another? How? What would you
    have to create?
    Yes. Product Selection / Material Determination.
    -->Give a definition of replenishment lead time?
    Total time for the inhouse production or for the external procurement of a product. In inhouse
    production the replenishment lead time is determined to cover all BOM levels.
    What's the difference between checking availability with or without replenishment lead time (RLT)?
    With RLT : Availability check is done only upto end of RLT. If material is not available the date on
    which RLT ends is displayed as Material Availability Date.
    Without RLT : Availability check is unrestricted. Displays Delivery Dates as on which partial deliveries
    can be made with available stock.
    -->Name at least three item categories?
    Standard Items : AFN, AGN, TAN.
    Free of charge Items: AFNN, AGNN, TANN.
    Non*stock Items : AFX, AGX, TAX.
    Text Items : AFTX, AGTX, TATX.
    -->Why would you use different item and schedule line categories?
    Item categories are defined to provide additional control functions for the sales documents and thus
    meet the demands resulting from the different business transactions.
    The items in a sales document are divided into one or more schedule lines. These schedule lines differ
    from each other with respect to date and quantity. For some schedule lines, material requirements
    planning is not carried out; for other schedule lines, it is carried out. Also goods receipt, not goods
    issue, is posted for a schedule line defined in a returns document.
    -->Can you change existing standard item categories?
    Yes.
    -->Can you create new sales order types?
    Yes.
    -->Different dates will be calculated in order entry scheduling . Can you name the lead time
    variables that will be taken into account?
    Transportation lead time, Pick/pack time, Loading time, Transit time .
    If you run out of stock in a specific plant can you check if there are quantities available in other plants?
    Yes.
    -->When you carry out availability check, which quantities or movements can the system take
    into consideration?
    The following elements can be included in the availability check:
    Stocks : safety stock, stock in transfer, stock in quality inspection, blocked stock.
    Inward and outward movements : purchase orders, purchase requisitions, planned orders, production
    orders, reservations, dependent reservations, dependent requirements, sales requirements, delivery
    requirements.
    -->Give some examples of sales document types (description, not necessary the short code)
    that already set up in the standard system?
    Indicator used to control the processing of the various sales documents which are defined in the
    system. E.g., OR, SO, BV, KR. Document types allow the system to process different kinds of business
    transactions, such as standard orders and credit memo requests, in different ways.
    -->Can you maintain texts for a specific customer and store them in the system? If yes, where?
    Yes. Customer Material Information.
    -->When the system checks availability which scheduling would it use first?
    Backward Scheduling.
    -->Name the influencing factors for the determination of the availability date?
    The following data is required for determining this date:
    Route from the shipping point to the ship*to party location
    Shipping point from which the goods are issued
    Loading group from the material master record
    Weight group determined from the order using the order quantity.
    -->Name the three delivery possibilities when there is not enough stock available?
    One Time Delivery, Complete Delivery, Partial Deliveries.
    -->Can you think of an example why you would have to create a text for a customer and copy it
    to the sales order?
    Customer specific instructions.
    -->What is the function of item category group?
    The item category group determines how a material is processed in the sales order. It defines, for
    example, that pricing does not take place for a free of charge item, such as a business gift; or that
    inventory management is not carried out for a service. When processing sales and distribution
    documents, the system uses the item category group to determine the item category. The system
    determines the item category based on the item category group of the material and the current
    business transaction, and proposes it in the respective document.
    When creating the material types non*stock material and services, DIEN is proposed in both cases for
    the item category group, because the order processing for both material types is identical: for
    example, pricing is carried out for both, but no availability check.
    -->On sales order, when the system confirms 20 pieces to be available at a certain date, would
    these 20 pieces still be available for other new sales order coming in later?
    No.
    -->What is a delivery group and why would you use it?
    The complete delivery and delivery group functions enable you to combine some or all of the items in a
    sales order so that they are delivered to the customer together. The system determines automatically
    the latest delivery date possible for the delivery group and adjusts the schedule lines accordingly.
    Corresponding requirements for material requirements planning (MRP) are changed or re*determined.
    -->What is backorder processing?
    The backorder processing functions enable you to list relevant sales documents for specific materials
    and process them from the point of view of availability. You can assign available to promise (ATP)
    stock to outstanding order quantities. In addition, you can withdraw already confirmed quantities and
    reassign them to different items.
    Backorder processing is only available for materials with individual requirements.
    -->Can you link items in a sales order? If yes, when would you do that?
    Yes. Promotional Items.
    -->For what would you use BOMu2019S in sales? What two methods of BOM processing do you have
    in sales order entry? How can you control if the system should/should not explode a BOM in
    the sales order.
    A bill of material (BOM) describes the different components that together create a product. A BOM for
    a bicycle, for example, consists of all the parts that make up the bicycle: the frame, the saddle,
    wheels, and so on. When you enter the material number of a bill of materials that is relevant for sales
    order processing, the system displays the material that describes the whole bill of materials as a main
    item. The components are displayed as sub*items.
    Processing by Main Item : ERLA & Processing by Sub*Item : LUMF
    BOM explosion can be prevented by specifying Item Category Group as NORM.
    Credit limit checks is an example of a very close link between which two SAP modules?
    SD & FI.
    -->What are the two techniques in delivery scheduling?
    Backward Scheduling & Forward Scheduling.
    -->How does a third party deal work? Do you use a special sales order type for that? How could
    the system know that you want to process a third party deal?
    By specifying item category as TAS using double*line entry in the sales order.
    No special order type is available.
    By the item category group and/or material type in Material Master .
    Name the several steps in consignment processing.
    Consignment fillup, Consignment issue, Consignment pickup, Consignment return.
    Whatu2019s the difference between consignment pick*up and consignment return?
    In consignment pick*up, customer returns consignment stock. When goods issue is posted, the
    relevant quantity is deducted from the customer's special stock and is added back to regular stock at
    the plant where the goods are returned. Total valuated stock remains the same since the returned
    stock was regarded as part of inventory even while it was at the customer's premises.This transaction
    is not relevant for billing.
    In consignment return, customer wishes to claim on consignment goods which have already been
    issued. When goods issue is posted, the relevant quantity is added to the customer's special stock at
    the plant where the goods are returned. Since the ownership of the goods is passed from the customer
    back to the company, the transaction is relevant for billing. In this case, the customer receives a credit
    memo for the returned goods.
    -->Can you control that an end user cannot copy a quote of customer A to a sales order for
    customer B? If yes, where?
    Yes. By customizing Copying Control for header data.
    Give some example for data that is copied from the customer (soldto, payer, shipto) to the sales
    order as well as for data that is copied from the material?
    General data, payment terms, shipping details, delivery agreements, delivering plant.
    -->What is returnable packaging processing?
    Returnable packaging consists of materials that are stored at the customer location but which remain
    the property of the company. The customer is only required to pay for the returnable packaging if he
    does not return it by a specified time.
    Name the two outline agreements in R/3 standard and explain the difference between them.
    Agreements are arrangements between business partners regarding the granting of conditions over a
    specified time period. The agreement contains conditions which apply over a particular time period and
    which are settled together at the same points in time. An agreement can be settled once or
    periodically. The two outline agreements include Contracts and Scheduling Agreements.
    Unlike a contract * which only contains an overall target quantity or value * a scheduling agreement
    also contains specific order quantities and delivery dates.
    -->How many documents do you create when you release, deliver and invoice the first order
    from a contract?
    Three : Sales order, Delivery note, Invoice.
    -->What types of output can you have in sales?
    Printer, Telex, Fax, Mail, EDI.
    -->Can you automate output processing ? Do you always have to specify it manually?
    yes. No.
    -->Where would you specify which data should be copied (at header, item and schedule line
    level)when you copy from one document to another one?
    Customizing Copy Control.
    I hope it will help you,
    Regards,
    Murali.

Maybe you are looking for

  • Material cost estimate with quantity structure (tcode: CK11N)

    Hey dear friends. I donu2019t know in which forum I should put my question above. In fact, Iu2019m new to SAP PM module. Iu2019m trying to create material cost estimate with quantity structure (tcode: CK11N) for a material u201CXu201D. This material

  • SQL Loader and foreign characters in the data file problem

    Hello, I have run into an issue which I can't find an answer for. When I run SQL Loader, one of my control files is used to get file content (LOBFILE) and one of the fields in the data file has a path to that file. The control file looks like: LOAD D

  • Prime 2.0 patch or 2.1 beta to support WLC 7.6??

    Will there be a beta run of 2.1 PI like there was for the latest 7.4 MR for WLC or even a patch to go on 2.0 that will allow us to finally manage WLC code above 7.4?  These seperate PI software trains have been killing us trying to get to a more stab

  • Change name of the plant

    Hi all, I want to change the name of the existing plant. I donu2019t want to change any other configuration or setting, just want to change the name-description. Where / how to go about it? Please advice. Regards Hrishi

  • Invalid Staging area

    When i try to install Oracle 8i on windows 2000 which compatible to windows 98 it is giving me "invalid staging area" can anybody help me please Regards Pavan