Block posting for Obsolete Materials in COPA

Hey All
We ahve a ascenario in which we post some expenses to the materials via FI transactions FB50. Nothing hits the stock accounts in these transactions. Only thing is while posting we assign the Materials to the PA segment so that we can run reports in COPA for the materials
Now some materials have been discontinued and the material plant status have been set to NOT to perform any transaction related to supply chain. BUT when posting through above FB50 trasnaction the system does stop it from posting and derivation for the obsolete material. I have even tried setting the deletion flag in MM06 for the material. Is there any solution to this so that we can stop material from posting
Thanks
Ankur

Hi
In my opinion, you need to use exit COPA0002 and put a check.. I dont think its possible in standard system
Another way is to change the description of these materials and add Text " DO NOT USE" so that users are aware while using it
br, Ajay M

Similar Messages

  • Collective Invoice Posting for Direct Materials

    Hi ,
    We have extended classic scenario with R/3 backend and we are posting Collective Invoices for multiple POs for direct materials ( order type ECDP).Invoices fail to transfer to backend.BD87 /WE02 log in R/3 indicates the following error -->Acct assgt 01 for order item 2200000070 00001 does not exist
    Message no. M8140
    Also ,if I try posting the invoices in R/3 using MIRO, there are no errors.
    Thanks,
    Gourang

    Several notes show up for M8140.
    316657, 615114, 506930 in the SRM area.
    493604, 810917 for BAPIs may also be relevant.
    334765 recommends creating a support message for further analysis.
    Kind Regards, Suresh.

  • Block posting for restricted stock

    Dear all,
    Currently when perform migo for restricted stock,system only show warning message.
    How to block the system to perform any posting for restricted stock?
    Thank you

    check the message number and change the message category form warning to Error at SPRO: MM > Inventory management and physical inventory > define attributes to system messages.
    OR
    take ABAP help

  • Blocking Plant for Specific Materials

    HI,
    Consider i have 10 materials which are extended to Plant 1 and Plant 2 and Sales Org1 and Sales Org2.
    I want to restrict those materials for Plant1 i.e. when you try to create order in VA01 by that material and Plant1 it shall throw an error.
    The options i have searched:
    In MM06 we can mark the deletion indicator but that will throw only a warning and not an error
    in Sales/org1 view there is a field for Dis specific block but that will restirct at Sales Org level and not plant level.
    In MRP1 and Purchasing view we have plant specific indicator but that again will not throw error at time of order creation.
    I can delete the material master for those plants but that i dont want to do.
    So material master would be there for plant1 but still is there a way that while creating order it throws error for Plant1.
    Regards,
    Aayush Jain
    SAP SD Consultant

    Dear Aayush
    you want to block the material Plant wise right
    Material Blocking
    Please look into this
    In MM06 we can mark the deletion indicator but that will throw only a warning and not an error
    We can change From Worming to Error 
    In the link clearly mentioned

  • Blocking/Flagging for deletion Materials

    Hi
    Can anyone advise what is the best method to disallow users from using materials in all modules of SAP. eg PM, IM, SD
    1. flagging for deletion
    2. or chaning the X-plant matl stat on Basic Data 1 or changing Plant-sp.matl status on MRP 1
    thanks
    Vishnu

    Hi,
    I agree,
    The Xplant status is designed to do this and so it produces the correct blocks and the correct messages.
    Add to this the fact that by using the delete flags how can you determine which materials are genuinely flagged for deletion and which ones are simply flagged because you want to block the movements.
    The Xplant is to block all plants, the status on the purchasing and MRP views are Plant specific blocks only and can block the material at that plant and allow others to continue as normal.
    Steve B

  • MRP controllers for Obsolete materials

    We have a requirement to check MRP controller for certain values that will identify an obsolete material. 
    Has anyone done this?
    Is there an easy way to do this?  Custom?  Config?

    Hi,
      use the transaction MMD7 to display the materials for a particular MRP controller..
    Thanks,
    Naren

  • How to Block postings for WM managed storage location

    Hi Experts,
    The scenario is we want to block posting for all materials for a WM managed sloc. We cannot use Authorisation management due to some limitations. Please suggest any other way to do this.
    Thanks

    Thanks for your responses.
    We are looking for an option where we do not have to do any configuration changes and flag for deletion or archive is not an option for us because it is just a temporary requirement. Moreover there are some technical limitations due to complexities in ALE so we cannot use MM06. Any other ways that anybody can think of?
    Thanks

  • How to block invoice posting for quality reasons

    how to block invoice posting for quality reasons.For example while doing  Goods receipt  the material is  posted to quality inspection stock. Then the material is rejected for some reasons. Once the decision is made then the  standard system allows to post invoice. But I want to restrict invoice posting once the material is rejected for quality reasons.

    posting of invoice is always allowed, the only thing you can restrict with customizing of QM in Procurement is the payment.
    if you want to block invoice posting, then you have to control this in a user exit.

  • No Posting for some invoice neither in GL nor in COPA

    Hi,
    I would like to know if anyone here encountered this issue: No posting for some invoices neither in GL nor in COPA?
    What are the things that I have to do in this case?
    Thanks for your help.

    Hi, All.
    This is the exact error that I encounter:
    "No tax item exists for tax code 0X in a G/L account item.  A possible cause is an incorrect transfer of parameters by the application to the Accounting interface."
    Any thoughts on this?
    Thanks in advance.

  • Handling Obsolete Materials in a Retail Scenario

    Hi,
    We have in our Retail Scenario ECC 6 where some Trading Materials have become obsolete and our requirement is to block further procurement and at the same time materials need to be sold.
    a)     For material blocking we can use field X_Site status 01 in Basic View in Material master for this purpose. If we use this indicator it is not allowing      
    to sell the goods.
    b)     A report required to indicate availability of these obsolete materials in various  sites/plants 
    Require your valuable inputs.

    It sounds like you want something like
    SQL> create table test(
      2    value number,
      3    mod_user varchar2(100)
      4  );
    Table created.
    SQL> create or replace trigger t_mod_test
      2    before update on test
      3    for each row
      4  begin
      5    if( updating( 'MOD_USER' ) )
      6    then
      7      null;
      8    else
      9      :new.mod_user := NVL( sys_context('USERENV', 'OS_USER')
    10                           ,user );
    11    end if;
    12  end;
    13  /
    Trigger created.
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace trigger t_mod_test
      2    before update on test
      3    for each row
      4  begin
      5    if( not updating( 'MOD_USER' ) )
      6    then
      7      :new.mod_user := NVL( sys_context('USERENV', 'OS_USER')
      8                           ,user );
      9    end if;
    10* end;
    SQL> /
    Trigger created.
    SQL> insert into test values( 4, 'xyz' );
    1 row created.
    SQL> update test
      2     set value = 1
      3        ,mod_user = 'abc'
      4   where value = 4;
    1 row updated.
    SQL> select * from test;
         VALUE MOD_USER
             1 abc
    SQL> update test
      2     set value = 2
      3   where value = 1;
    1 row updated.
    SQL> select * from test;
         VALUE
    MOD_USER
             2
    JCAVEDDBC64\jcave
    SQL>Justin

  • Unable to capture Part 2 for exicse materials

    Hi
    In import Purchase order scenario I am unable to capture part 2 for excise materials
    First I have created import PO. Then I did miro where I posted BED,AED,ECS,SECss
    After that I did migo and captured part 1
    After that while I was capturing part 2 with ref to vendor invoice I m getting an error message as
    NO CENVAT AMOUNT TO BE POSTED
    NO CENVAT AMOUNT TO BE REVERSED
    We are using taxinj
    Can u please help me out in solving this issue?
    Rahul

    Hi,
    Once you have entered the needed information about the connection string and container, go to Object Tab and select the objects. then the Start button will enabled.
    Another way to reverse engineer is to use ERD component. Refre to the Note 299067.1 in Metalink.

  • Text Mandatory only for Certain Materials in Sales Order

    Is there anyway so that I can make certain item text mandatory only for certain materials?
    I tried creating new item category group and new item category. And then create new Text procedure making this text mandatory and assigning to this new item category.
    But there are lot of different types of item categories assigned. So it does not look good to create new item category for each and everyone for this new item category group and material.
    Please guide me how to make the document incomplete for certain materials only when one text is not filled at item level
    Thanks in advance

    Hi,
    what you tried is correct and that is been followed in most of my projects wherever I worked.  That is the best way recommended also.
    If you try with incompletion procedures for item category also, you will endup doing multiple item categories anyway....
    First when I looked at the subject line, even before I opened your POSTING, I got the same resolution as you did....May be the optimal one but, not sure, if something else is possible other than by doing user exit.
    Regards

  • How to block post price conditions in purchase order

    I need to block post price conditions in the purchase order, after doing MIGO.
    The problem is that somtimes buyers people go to the purachse order with ME22N, even if MIGO has already been made for this purachse order. They change The amount of certain price conditions in some or all the posts of the purchase. when people of accounting receive the invoice, there are problems of price differences.
    i need help to do it
    Thank you in advance for your help

    The system will not allow to change the price once goods receipt takes place on that particular order.  It happens only when we reverse the reciepts and make the po open.  In such case the persons can change with ME22N.  Its simple that only authorised user to have this transaction code and other users should not have this transaction code authorization.

  • BAPI_ACC_DOCUMENT_POST with TAX posting for FB60 t-code

    Hi Experts,
    I am trying upload the data using BAPI_ACC_DOCUMENT_POST with Tax(ACCOUNTTAX) for the FB60 t-code. But not getting right.
    Any help on this issue greatly appreciated.
    Thanks & Regards,
    Harish

    Hi,
    Check out this-
    FU BAPI_ACC_DOCUMENT_POST
    Short Text
    Accounting: Posting
    Functionality
    Using this method you can create a posing in accounting for certain business transactions.
    Possible ( Business Transactions):
    Postings that generally only affect the general ledger. (RFBU)
    Billing: For billing in Sales and Distribution, accounting is supplied with the relevant billing data. (SD00) Billing Document
    Accounting can use the data of a logistics system that result from an Invoice Receipt. (RMRP)
    Goods Movement are triggered by transactions in Sales and Distribution or by inventory postings. Within logistics, they lead to a change in the warehouse stocks of <DS:GLOS.Inventory Management>Inventory Management. This results in a posting in accounting. This is why accounting is supplied with the relevant data from logistics. (RMWA)
    Example
    Billing document:
    By selling goods in accordance with targets, revenue is generated. The revenue is posted in billing and forwarded to accounting.
    Invoice receipt:
    Raw materials are purchased in accordance with targets. The invoice receipt is posted in a logistics system. The data from the raw materials is forwarded to accounting.
    Goods Movment:
    The use of raw materials leads to a change in stock in inventory managment. The posting of raw material consumption is forwarded to accounting.
    G/L Account Posting:
    Provision posting for an expected warranty service. This can refer to acquisitions or retirements belonging to stocks that are not in subledger accounting relevant to inventory management. This is particularly the case if such materials are not displayed as vendor/customer, materials, loans etc. or cannot be displayed in this way. This can also refer to write-ups or depreciation that contain higher aggregations of values than are maintained in a corresponding subledger that is relevant to inventory management.
    The conversion of foreign currencies for receivables/payables due to large exchange rate changes that should not lead to an update of the accounts payable or accounts receivable accounting. A similar transaction can arise for the revaluation of raw materials if this revaluation takes place at a correspondingly aggreagated level.
    Reclassification of inventory of P&L statement accounts that are only used for reconcilliation purposes in the general ledger (this rearranges values for balance sheet items).
    Balance reclassifications of stocks to receivables with different return times.
    Notes
    If the parameter CurrencyAmount is filled with the currency fields, a complete document check including characteristics and value components of profitability analysis (CO-PA). Otherwise, the account assignment objects are checked.
    Messages are returned in the parameter Return. In the parameter documentation you can find the return values and their meaning.
    Further information
    You can find further information in the SAP Library under "Financials -> Accounting - General (AC) -> Interfaces to Accounting (AC)".
    Parameters
    DOCUMENTHEADER
    CUSTOMERCPD
    CONTRACTHEADER
    OBJ_TYPE
    OBJ_KEY
    OBJ_SYS
    ACCOUNTGL
    ACCOUNTRECEIVABLE
    ACCOUNTPAYABLE
    ACCOUNTTAX
    CURRENCYAMOUNT
    CRITERIA
    VALUEFIELD
    EXTENSION1
    RETURN
    PAYMENTCARD
    CONTRACTITEM
    EXTENSION2
    REALESTATE
    ACCOUNTWT
    Reward if useful!

  • Block Vendor for Goods Receipt without QM

    Dear Experts,
    We have a specific requirement to set a purchasing block in a vendor (XK05), which must necessarily include a block in goods receipt.
    As far as I know, and according to SAP Note 64440 - MMIM: Block vendor for goods receipt, this is only possible activating QM for the material.
    However, our client cannot do it for all the materials so we need to find out an alternative solution. Does anyone have any idea how can we do it?
    Thanks in advance.
    Best Regards,
    Andreia

    Hi guys,
    Thank you very much for your quick replies!
    Jürgen L, you are right. The requirement is not to block the GR forever, but just during a period of time, in specific situations.
    AKTP MM, we will check the BADI: MB_MIGO_BADI, as suggested. I will come back with feedback, as soon as possible.
    If you have more suggestions please feel free to share!
    Thank you.
    Best Regards,
    Andreia

Maybe you are looking for

  • XML Parsing error in PL/SQL

    Hello, I have some problem in parsing Mircrosoft OpenXML file using Oracle 10g Release2 XML Parser for PL/SQL. I use dbms_xmlparser, dbms_xmldom, dbms_xslprocessor packages OpenXML file use "w:" as namespace, so every element has prefix "w:" like <w:

  • TA20605 the system preferences folder is missing

    Until step 9 everything works ok but at step 10 after I shoose ''all applications''  and locate the application folder, I can 't find the system preferences folder anywhere. What should i do?

  • CC 3D

    We are attempting to simply create a timeline animation in Photoshop. We want the object to remain stationary and spin 360. However once we turn the stopwatch on, go to Y coordinate and change to 120. the object jumps to a new location? If timline is

  • Study of software update quality - your help is ne...

    Hi everyone, We're conducting a study related to our Symbian software updates and we would value your feedback. The scope of this study is to find out what you have noticed after you have update your phone with a new version of software. We hope to i

  • Magic Wand Selection in CS4

    I do illustrative site plans for an architecture firm. I frequently use the magic wand to create selections in pdf's created from a CAD system. I usually import them as a smart object so that they may be updated regularly as design changes are made.