Sales Order check not done in customer clearing (F-32)

Hi
I posted one customer advance against sales order 13342. I entered sales order in F-29 (i.e. in customer line items). Then i posted delivery and billing for sales order 13329.
In F-32, SAP allowed me to clear advance (with sales order 13342) and invoice (related to sales order 13329). Please let me know why SAP allowed to clear two line items related to different sales order.
Can we bring this restriction?. Please suggest.

Hi Deepak,
As per the standard design, system will allow to clear together.
Another alternative could be for your case is to restrict user to enter SPL GL indicators in the F-32 initial screen.
So only down payments, those were cleared against any INV documents (by F-39), can only be clearred in F-32.
Regards,
Srinu

Similar Messages

  • Sales order qty not confirmed when delivery done with partial qty

    Hi Guru's
    Need your help............
    We have issue in drop shipment scenario process. Sales order created with 10 line items from CRM and order released from CRM and replicated order to ECC and backend created PR also. After that user set reject status for all items so that PR line items also deleted, again user released rejection status for all items and line items updated in the same PR with different line item number for materials then PO & GR also done in ECC and stock also allocated for sales order line items but still sales order qty not confirmed in CRM sales order. 
    I checked all configurations regarding availability check but could not found.
    Example:
         Sales order line item qty: 4            -      2 qty confirmed (delivered).
         For remaining qty (2 items)I have done GR. After GR It is allocated to sales order but it is not confirming the order quantity.
    plz help me to fix this issue?
    regards
    sai

    Hi,
    Please check In ERP transaction OVZJ, for the sales org, distribution channel, and division that is being used in the affected sales orders, set the Avail. Check Rule to 'E'. Then retest the issue, as this might help.
    Regards
    Gavin

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • Changing sales order for a Credit blocked customer

    Hi Gurus
    One of the requirement of my client is that they create sales order for a customer and deliver the goods. During sales order creation billing block is automatically applied. This block is removed by a batch job after the goods are delivered. Sometime credit department block the customer using FD32 (KNKK-CRBLB). Now when the batch job is run to remove the billing block the system will not allow it for that order as the system calls VA02 during that batch job run. When you process a sales order using VA02 for a customer which is blocked (KNKK-CRBLB) then system will through error message V1 (154) i.e Order receipt/delivery not possible, credit customer blocked.
    So the batch job will not be able to remove the billing block from the order. NOw the requiremetn is that how can I achieve this so that the billing block are removed by that batch job as the customers has already been delivered the goods (Any user exit?).
    Thanks
    KTK

    Dear KTK,
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Reward points if this helpful.
    Regards,
    Naveen.

  • Open Sales Order values not getting updated after run RVKRED77 & RVKRED88

    Hiiii,
    In Production Server. We run the reports RVKRED77 & RVKRED88. Credit info structure and and Open Sales Order values not getting updated. In FD32, Status - Sales value it showing '0". At the time of creating Sales Order Dynamic Credit check not happening coz of Tables S066 not updating. Please provide me Solution.
    Best Regards,
    Sridhar . P

    Dear Heagal,
    I followed your suggestions and implemented in the Development and moved the changes in to Quality Server. I tested it thoroughly by creating New Customer and maintained Credit Limit. I come to know that Problem is in all Servers. I made 3 changes.
    1. In Pricing Procedure Sub Total A it was not maintained against Net value. I placed it.
    2. Removed Credit groups for Delivery Type.
    3. In OVA8 i maintained Max. Doc Value :99,999,999.00 before it was with 1.00
    I checked the OMO1 Settings it was Asynchronous. As SAP Notes Suggesting to use Synchronous but here it's a client setting. So, It's Can't possible to change. Changes will affect other Company Codes.
    Tested both in DVP and QTY Dynamic Credit Check is working Perfectly and Status in FD33 Sales Value field getting update.
    If i move these changes in to Production, Will i need to run the reports again or not? How it will affect on Old Cusomer Billing and  Credit Limit data. For few of the Customers the Credit Limit data it was exceeded. Please provide me advice. The issue need to be Solved immediately.
    Best Regards,
    Sridhar

  • Sales order does not allow make-to-order production

    Dear Friends,
    I am trying to do do planned order for sales order in MD50 it was showing the error message as
    "Sales order does not allow make-to-order production"
    Can any one solve this
    Shakthi

    Hi Shakthi,
    It is also possible to set the priority for Requirement Type determination like
    0 Material master strategy, then item category and MRP type
    1 Item Category and MRP Type
    2 as 1, with check for allowed requirement type.
    The transaction for this is same as "Requirement Type Determination :
    Sales and Distribution --> Basic Functions --> Availability Check and Transfer of Requirements --> Transfer of Requirements --> Determination Of Requirement Types Using Transaction
    Look for "Source".
    In this transaction, Please, check "Requirements".
    Please, make sure of the following 2 things :
    1. If you do not set an indicator for maintaining the requirements class: Transfer of requirements is not carried out, irrespective of the specification you make at schedule line level for the transaction.
    So it is necessary to mantain the setting first at the Requirements Class. As mentioned in my earlier posts, the requirement class for the material can be found out from Planning Strategy / MRP3 view --> Main strategy (defined in the strategy group) --> Requirement Class for Customer Requirements.
    The IMG path for "Define Strategy" is Production --> Production Planning --> Demand Management --> Planned Independent Requirements --> Planning Strategy --> Define Strategy.
    2. Once the "Requirements" indicator is set in Requirement Class, the requirements indicator at the Schedule Line decides whether or not you require transfer of requirments for the relevant transaction.
    I hope this should solve your problem.
    Regards,
    Sandeep

  • Sales Order does not show up at the resource level.

    Hi guys,
    I have a flour mill of having 4 processs (resources)
    1). Tempering (cleaning).
    2). Milling.
    3). Blending.
    4). Packing.
    I have two identical sales order. One has been through all the process (resources) and showed in the DS Planning board but, other one has not shown up there. It happens to me couple of times that such sales order do not show up at the resource level. Where should I check and correct? Aslo which way can I follow up these missing sales order? and What shoud I do if this situation happens?
    Thanks
    Shaan.
    Edited by: Shaan313 on Sep 27, 2011 8:22 PM

    313,
    https://service.sap.com/sap/support/notes/1406120
    Since you asked the question, I can assume that you don't have an "S" number.  speak to the person in your company who administers your SAP Service Marketplace account (this is usually someone on your Basis team), who can obtain one for you.
    Or, you can try on your own.  A few stars have to be in alignment for the second method to work.
    https://service.sap.com/request-user
    Best Regards,
    DB49

  • The pricing procedure in Sales order is not getting copied into invoice

    The pricing procedure in Sales order is not getting copied into invoice.
    I have created a document type (pricing procedure),based on the document type ,pricing procedure determination is done.
    So while creating sales order the pricing procedure is determined but when invoice is created the pricing doesnt refelect in the invoice.How to over come this problem

    Hi
    Please check the in OVKK, weather you have maintained correctly or not.Also check in the Billing document type details what is the Document pricing procedure that has been maintained.
    Regards
    Srinath

  • MTO Sales order is NOT a COST OBJECT

    Hi All,
    I'm working on MTO process and i have some question.i would like to clarify MTO process.
    If we are using Valuated MTO process and Sales order is NOT a COST OBJECT
    1.Are we going to run material cost estimate for MTO materials?
    2.How can i configure or make Sales order is NOT a Cost Object?
    3.If Saleso order is not a cost object,how production order process will work from controlling point of you?are we going calculate WIP on production order and WIP is settled to sales order or FI/PCA?
    4.Once production order is complete,Goods Receipt will post to Inventory or Sales order stock?
    5.Once production order is complete,we are going to calculate variance on production orders?
    Any help is appreciated...
    Thanks,
    Anusha

    Hi,
    When the MTO is created from sales end it will create the Planned order then it will convert to Production or Process order.
    Once the production do GR or confirm Produced QTY the stock will go to Sales stock not to inventory stock.From there the sales can do PGI to customer.once PGI has done the account entry for the customer account will take place automatically.
    Once the production completed the Production order need to calculate for the variance & the Settlement need to be done for the production order against the Material which you produced & sale to customer.The difference & variane amount will post to Price difference & moved to Product cost of the material automatically & COPA entry will be done automatically.
    The MTO Material need to run for the Cost estimate also.
    The WIP can be calculated & difference can be posted against the production order & the material which you produce.
    The Process is same as the Make TO Stock scenario.Only the difference is the Production will get generate automatically when the MTO order get created & the stock will post to sales stock automatically.Rest the CO part is same as MTS scenario.
    Regards,
    Raj

  • CRM sales order is not saved in CRM but in ECC

    Hi,
    I am new CRM area and will not some hints on where to check.
    When the the Sales orders are successfully created in CRM, they are replicated to R/3 but the sales orders are not saved in CRMD_ORDERADM_H table of the CRM system.
    Also, I dont know see any details of the sales order in the interaction record document flow.
    Can you please help me with any hints on where to check to fix this issue..

    Hi Sangameshwar,
    In CRM you can have two scenarios for ERP Sales Order.
    1. ERP Sales offer and Sales order, using the CRM User Interface to create directly the ERP Sales Documents with LORD interface. The document is only saved in ERP. I believe this the scenario you are using.
    2. CRM Sales offer and Sales order, the document is saved both CRM and ERP. The documents are replicated via Middleware.
    In both scenarios the interaction record should add the document in the doc. flow, it's probably a missing customizing in the interaction record.
    Hope this information help you.
    Regards,
    Jorge G.

  • Sales order does not extract plant information from material master data

    Hi experts,
    I have created a sales order. However, the plant in the shipping tab can only be manually entered.
    I have made the check:
    the customer material master data does not have the plant info.
    the customer master data does not have it either.
    It is defined in the material master data: sales:general/plant
    But the sales order did not extract this information. Why does this happen?
    Thank you in advance.
    Best regards,
    Fan

    Hello Friend,
    As right stated by you,
    The Plant will be copied from the master data to the sales order, if not it should be manually entered
    The Sequence System will search for the Plant is as follow..
    1. Customer material infor record, If it was not maintained then it will search in
    2. Customer master, if the entre was not maintained in the SHIPPING TAB
    3. Finally it will search in the Material master in the Sales organisation data 1 in the field DELVERING PLANT field.
    So please search whether the entry was maintained in that field at the sales:sales organisation data 1.
    This might be the issue.
    Please revert if you want further details
    regards,
    santosh

  • Sales order does not appear in MD04

    Hello,
    One of my sales order is not appearing in MD04. I found out that in the sales order, the requirment type is missing.Is this could be te resaon for sales order not to appear in MD04.
    2nd question) why requiremment type is not there in sales order. In my case, there is no entry in the item cat and mrp type table but in the strategy group in material master, the requirment type exists. so why the system is not showing requirment type in sales order by picking it up from the strategy group. in the item cat +mrp type table, the source is kept as "0", which means the system should pick the requirment type from strategy group . so why it is not picking if it is defined in straetegy group ?/
    Question 3) or is it that the sales orders appear in MD04 only after MRP run but then why other sales orders are apearing before MRP run.
    regards
    sachin

    Hi sachin,
    what planning strategy group is your are using.
    I assume plan stg grop is 20.
    Normal settings for 20 Paln stg grop in material master.
    1.Item category group (such as NORM) on the Sales Organization screen
    2. Set Plan stg = 20 at Mrp View.
    Requierment type fo customer requirement  = KE  assigned  for planning strategy 20 at customizing.
    For 20 plg stg  requiremnt type is   customer requirement type only.
    with above settingsif create sale order it will appear at Md04 before MRP run.
    u can see the customer requ type at "procurement tab "of sale order.
    For planning of material u have to maintain valid MRP type at Mrop view.
    i am not clear about ur second question.
    please comeback
    Regards
    Pradeep

  • Required delivery date in sales order shoud not be less than the inhouse pd

    Customer Requested Dates (CRD) entered in orders are often shorter than Product form wise lead time. 
    Logic to be configured in SAP : SAP should capture the CRD as per the lead time of Products or Date entered by sales persons (whichever is later).
    Required delivery date in sales order shoud not be less than the inhouse production lead time.
    Please help.
    Regards

    IMG - Sales and Distribution - Basic Functions - Availability Check and Transfer of Requirements - Availability Check - Availability Check with ATP Logic or Against Planning - Carry Out Control For Availability Check
    Here select the combination of your Availability Check & Checking Rule.
    Under Replenishment Lead TIme, you need to put a Tick Mark in the Check Box of "Check without RLT"
    This will make sure that system considers either the Requested Delivery Date or actual Material Availability Date, which ever is earlier.
    Hope this helps.
    Thanks,
    Jignesh Mehta
    Edited by: Jignesh Mehta on Nov 9, 2011 12:18 PM
    Edited by: Jignesh Mehta on Nov 9, 2011 12:23 PM

  • Sales order does not consumpt Independent requirement

    Hi Gurus,
    My material is as below:
    MRP Type: M0
    Stategy group:40      Planning with final assembly
    Consumption mode :2 Backward and forward consumption
    My independent Req is 'VSF  Planning with final assembly'
    My sales order item category is 'Zwac', rety is using ZWAC-M0-KSV 'Sales order with consumption'
    but before i create sales order:
    MRP element  Received/Requirement quantity   
    stock             
    IndReq              100-
    After that:
    MRP element  Received/Requirement quantity   
    stock             
    IndReq              100-
    Sales order        90-
    but i expected like this:
    MRP element  Received/Requirement quantity   
    stock             
    IndReq              10-
    Sales order        90-
    Do you know what i did wrong , thank you!
    Regards,
    dragsky

    Dear,
    If you have planning stategy 40 , then PIR qty will be consumed duirng MRP run if both PIR created with VSF and you have incomming Sales Order qty .Let say you have 100 pc PIR and also 150 pc of sales order , run MRP-MD03 ,  it will create 150 pc Planned order or PR .
    If your using and Sales Order is not getting consumed upon while running MRP , then couple of checks in this case :
    1.Is your PIR (created in MD61) "VSF"?
    The requirement type should be KSV to consume with VSF. Please check OVZI to check why your item category in Sales Order get the requirement type 041.
    Here you must have following set up :
    Requirement Class : 041 , Availablity , Requirement Check box Marked and Allocation Indicator-1 .This Alocation indicator basically Controls the consumption of customer requirements with planned independent requirements whereby the customer requirements type is only allocated one consumption strategy.If it blank that means no consumption with customer requirement .
    Please check If you want req. type 041 to consume with VSF, then you have the change the configuration of planning strategy. Use path Production -> Production Planning -> Demand Management -> Planned Independent Requirements -> Planning Strategy -> Define Strategy.
    2. What is the schedule line category in your SO ??  Is it "CP"? You are using customised item categoery zWAC which may be inharited from WAC-Order /Delivery Requirement (OVZI)
    Check and come back.Hope this will address the issue
    regards
    JH

  • Sales order should not be abled to be changed

    Sales order should not be abled to be changed after creating and confirming to the customer. What needs to be done?

    Hi kishore
    1) after creating the sales order   we are gong to send  confirmation through output determinatin output type (BA00) .
    2) once the customer confirms the  order based on thet we do the delivery. right----
    3) see exmple : a person who creates the order he does'nt have rights to change in big industry lot of departments (so many managers) has to see the order because  the order canbe  one item it can be 1000 items.
    4) every body will be having certain limitations like authorisations if you take my company i don't have authorisations to do FI settings or MM settings.
    5) what means to say is if  that order has to be changed ababrs might have written the code the moment the order confirms from the customers it's goes to respective department or managers through work flow if it goes any manager , a person who created the order he can't do any changes on that. that's why business works. that is  what SAP
    i hope you have under stood
    thanks
    surya

Maybe you are looking for

  • After upgrading to IOS 8 my iPhone 5 wifi is not working well at all .. and can't connect to any of apple services like apple store even can't upgrade my application

    After I upgraded to IOS 8 my iPhone is not working well at all .. the most serious issue is the wifi which is too slow and can't connect to apple store and can't update my application  .. also tried to search or update for ios 8 but also can't connec

  • Validation of SC/PO

    Hi all, I am doing FI validation in SRM 4.0.Actually i am getting error based on the GL account and company code at line item which are based on the costcenter or internal order or WBS using...for this i am using FM BAPI_ACC_GL_POSTING_CHECK(RFC enab

  • Pur value key & shipping instruction in material master.

    I have maintained shipping instructions in SPRO for a particular purchase value key. Now created material master with this purchase value key, shipping instruction is reflecting. But it is coming as display field. Some time this shipping instruction

  • Navigation and events ?

    This might not be a new topic (?) but I havn't found any answers. I have a system were you can navigate to and from a mainpage(navigator) I have a page with a combo-box (dropdownlist) ,a button and an edit with a change-event handler and the return l

  • Email goes offline and must be restarted

    I am using mail 1.3.11. The computer is always on and the mail application is always open and ready to receive mail. The preferences are set up to check the mail every five minutes. Just this last week, mail no longer checks mail every five minutes a