Invoice posting possible for limit PO although final invoice is set

Hi,
I encountered a strange behavior, I think.
I created a limit PO and posted several invoices against it. So far, so good.
Then, I wanted to "close" the limit PO and set the "Final invoice" indicator in PO. Even though, I was able to post further invoices against this PO. Shouldn't this be prevented?
I used the workaround to modify the PO and change the expected value to the actual value of invoices posted against the PO... But why does final invoice flag have no effect at all? Any ideas?
Thanks in advance!

Hi,
The purpose of final invoice indicator is to reset the purchase order commitments. The final invoice indicator does not prevent further invoices from being posted.  Please see F1 help documentation on this field.
You can block the item if further processing is required.
Kind Regards,
Suneet

Similar Messages

  • HT1386 I am trying to restore the last configuration I saved for my iPhone but iTune is asking for a password although I did not set any. What shall I do?

    I am trying to restore the last configuration I saved for my iPhone but iTune is asking for a password although I did not set any. What shall I do?

    No there's not.  Otherwise that wouldn't be very secure, would it?

  • Error while posting confirmation for limit PO

    Hi Experts,
    we are having a standalone scenario(SRM 7) and the issue is as mentioned below
    The situation is that the PO is a limit order with 2 line items. The first line item is complete and has been closed off with the u201Cno further confirmation/invoiceu201D indicators selected. However the 2nd line still has some limit remaining but the when the central confirmations attempts to enter a good receipt against the line they get an error message which is "No Confirmation could be entered for purchase order"
    please guide me how to solve this.
    regards
    smita

    Hi,
    please find furhte information.
    a limit sc is created for a value of 37000 GBP and after approval it created a PO. but the user went and added a line item directly in PO for 40000 GBP. Now the total value of SC is 77000 GBP.
    user has created a confirmation for 36000GBP and selected no confirmation required further.there is no issues with this lin item
    but with the second line item he posted confimation for value 37000 gbp and invoiced for 30000 GBP.
    when i am trying to post confirmation for 3000 GBP system is throwing an error that "no confirmation could be entered for purchase order"
    could any one guide me how to solve this or any suggestions for solving this.
    regards
    smita

  • Is it possible for a mac to recognise a camcorder as a video input without using imovie/final cut?

    Is it possible for a mac to recognise a camcorder as a video input without using imovie/final cut, I use web based video capture software and need an HD input that the mac would recognise as if it were a webcam?
    Any help would be greatly appreciated!
    Thanks

    HI,
    I used to use an analogue Camcorder and a DV converter that had Firewire output at one stage when starting out in iChat.
    See the Item 3  in the "Before your Start" item on this page
    8:41 PM      Saturday; November 12, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)

  • How to open and close posting period for both material  , n invoicing

    HI
    how to open and close posting period for both material  , n invoicing , AM NEW TO SD , SO ALL DOUBTS I DO POST IN HERE PLEASE DONT MIND

    Hi Sunaina
    Period Open T.code: MMP1
    Period Close T-Code: MMPV
    Automate the opening of MM periods 
    How can you automate the monthly opening of MM periods (transaction MMPV - program RMMMPERI) with 
    SM36?
    RMMMPERI accepts a period/year or a date.
    If you enter a date the period is derived by it.
    1. create a variant and check the attribute 'selection variable' for the parameter date. Then click the button 'Selection variables' and set the current date. Every time this variant is used the parameter DATE is filled with the current date.
    2. create a job for RMMMPERI with the variant created in the preceding step. Set it as periodic.
    If you're not using a fiscal year variant simply schedule it as monthly (to be executed the first day of the month).
    If you are using a fiscal year variant you'd have to define a calendar with only the first day of each period defined as working 
    day and use it in the periodicity restrictions.
    Another possibility:
    Write a very simple ABAP which run daily to check if the period has changed and submit RMMMPERI.
    Reward if useful to u

  • Posting is not possible for the specified company code.

    Hi SRM Gurus,
      We have a four company codes in our org.structure and if we try to post manual invoice for a particular company code with its currency, we are getting this error :
    "Posting is not possible for the specified company code "
    We have all company codes defined and inherited for the particular user in BUK and we get all the company codes in the F4 help of this user in BBPIV02 -->Basic data.
    Any suggestions pl.
    I doubt this particular Cocode is deactivated for invoice posting in backend. Is it possible ?
    Kindly suggest.
    Reg.,
    Sridhar.

    Hi
    Which SRM version are you using ?
    Are you getting this error for a praticular company code only or for all the comapny codes ?
    <b>Please read this -></b>
    Since you are trying to create Invoice with PO did you check the Vendor Root there is a attribute for company code. Please maintain the same, if not maintained.
    Refer the link below for details.
    Re: Company code for system missing in user attributes
    <u>Other related links -></u>
    Try to change the chart of acct info in OBY6 for a company code that was copied from SAP template, there is no Financial posting or any other posting in this company code.
    Re: Posting Period Error in Confirmation
    Hope this will help.
    Regards
    - Atul

  • Possibility to register Pre-/Post-Procedures for an SQL Template Handler

    I would appreciate to see the possibility to register pre-/post-procedures for an SQL template handler in ORDS 3.0.
    Why:
    We use Oracle VPD/Row-Level-Security to secure data access. Hence a trigger sets a couple of attributes in the database session context at login time which are then used in static RLS predicates to limit which records the user can see/modify.
    With ORDS 3.0 all sessions are opened under the same technical user (e.g. APEX_REST_PUBLIC_USER), hence all users have the same/no attributes in the session context and could see/modify all data.
    To avoid this situation, I need to set the attributes (e.g. the authenticated user) in the database session context before the actual query/plsql handler is executed.
    Also, resetting the session context after the handler is executed would be good.
    This scenario is in line with scenarios 'One Big Application User' and 'Web-based applications' in http://docs.oracle.com/cd/B28359_01/network.111/b28531/vpd.htm#DBSEG98291.
    Different solution approach:
    Kris suggested to write a PL/SQL handler where the pre-procedure is called before the business logic procedure/query. This is ok for me as long as I modify data and only need to return no or little data.
    As soon as I need to return a lot of data (e.g. select c1, c19, c30 from t1), this approach will force me to write a lot of code in the PL/SQL handler in order to marshal the c1, c19 and c30 to JSON and put it in the HTTP response.
    But this is the beauty of ORDS - I can simply define a template, write a GET SQL Handler 'select c1, c19, c30 from t1'  and have the data available as REST service, without writing any code to write JSON marshaled data in the HTTP response.

    I tried to log the request at Oracle REST Data Services (ORDS) but I could only start a new discussion: Possibility to register Pre-/Post-Procedures for an SQL Template Handler
    As I mentioned there, the PL/SQL handler approach works for me as long as I have no or only little data to send back to the client (e.g. put/post/delete succeeded or an error message why the call failed).
    If I need to return a lot of data from the PL/SQL handler I would need to, as far as I understand, to marshal the data to JSON and write it to the response body in the PL/SQL handler.
    I don't want to do the marshaling, because ORDS does it better.
    However, this works for me:
    I write a pipelined stored procedure that takes as input the attributes I need to set in the session context. I then can reference it in the SQL handler:
    select * from table(my_pipelined_function(:USER, ....)
    Now the JSON/HTTP response is created by ORDS again.
    I still needed to code a couple of lines, but it is way better than duplicating the functionality already existing in ORDS.
    With the hooks it would be perfect because I would not have to write any code (apart from the procedure to set the session context attributes), just configure the REST services in ORDS.

  • Invoice value not updating for limit PO

    Hi Experts,
    SRM 5, SP 10 ECC 6.
    Limit PO is created, invoice posted in ECC, the invoice vaue is not updating in the Statistics tab at item level of PO,Calculated Value  is showing 0.00 only
    any idea.
    Thx

    Hi David,
    The problem is coming for limit order only, not for normal order and bbp_get_status is running fine for confirmation and normal po, so no need to run again

  • Accounting error : Posting not possible for profit center XYZ In company Z

    HI folks,
    Do any of you have come accross this error in passing of billing doc to accounting " Posting not possible for profit center 153 in company code Z134. Kindly let me know what could be the possiblity and the solutions
    Thanks,
    Kamal

    Hi,
    Might just be better off to take the guidance from your FI guys. Pl. check if all the assignments are made correctly, like the material is linked with a profit center and this profit center to a cost center and finally to the controlling area. Also check if the currency of the profit center is the same as the controlling area currency.
    Regards
    Sadhu Kishore

  • Not possible to determine posting period for date

    Hi SAP Guru
    While Creating the Shipment cost document in [VI01] transaction I am getting the error
    Not possible to determine posting period for date with error Message no. SE105. There is no long text available
    Please provide the solution for the same
    Regards
    Rahul

    Hi Friend,
    Check the posting periods for the company code in OB62 and OMSY.
    Check whether they are in currenct date or not.
    if not maintain them in MMPV for  Company code.and OB62 for the fiscal year variant.
    regards,
    santosh

  • "Posting with reference to pur. order only possible for integrated whse"

    When I try posting GR with mvmt type 101 wrt PO  I am receiving the error “Posting with reference to pur. order only possible for integrated whse”
    The scenario is  storage lcation is maintained  with the external warehouse management .
    Is there anything i need to maintain warehouse as decentralised one or should i need to maintain any moment types or is there anything else i should maintain in the customisation.
    Kindly guide me regarding this as I am new to WM ,Thanks in advance.

    Hi ,
    In my case i have not maintained as decentralised one.
    also the thing is  there is no warehouse house  data managed over here .the requirement is when connected to extended warehouse  the system has to create inspection lot after the GR has done ,
    whereas in normal scenario everything is normal,
    can you please suggest what should be done in this case.
    Also if possible can you please tell me what from the scratch so that it will be helpful to come through .

  • Direct Posting is not possible for G/L accounts

    Hi,
    Procurement of Consumables thru Maintenance Order(for Breakdown Maintenance):
    1. Generation of Purchase Requisition thru maintenance order .
    2. Purchase Order from purchase requisition
    3. MIGO
    4. MIRO
    The required consumables are assigned in maintenance order. when converting PR to PO this consumables will automatically flow. According to the valuation class and gl account in material master GL  account  will also flow automatically.
    When converting PR to PO the system throws an error saying that Direct posting is not possible for the G/L account.
    I made this GL account as post automatically to ensure that  there should be no manual postings for such  automatic account determinated GL accounts thru valuation class.
    This error can be resolved by removing the tick mark post automatically but is this correct. If it is so then what is the implication of automatic a/c assignment thru valuation class.
    <removed_by_moderator>
    Thanks in Advance
    Regards,
    Radhika
    When I am trying to use a G/L account for a Consumable (eg: diesel) (that is required for Maintenance) at PO level (through maintenance order) system throws an error sying that Direct posting is not possible for the G/L account.
    Also, teh Same G/L

    Hi,
    Your balance sheet accounts for stock should be defined as for direct postings only. But the P&L accounts should not be marked.
    Regards,
    Eli

  • Posting Program for Incoming Invoice

    Hello,
             I have a requirement to develop an Inbound Interface for Incoming Vendor Invoice which needs to be posted into SAP. Is IDOC_INPUT_INVOIC_MM the Posting Function Module which is used for this Purpose? Or do I need to develop a Custom Posting Program for Posting Invoices in MIRO? Please suggest the available BAPIs & FMs for MIRO Transaction if I need to go for a Custom Development.
    Thanks,
    Venkata Phani Prasad K.

    Hi,
    The posting program for Posting an Vendor Invoice is IDOC_INPUT_INVOIC_MRM which is associated with the process code INVL.
    I have used the above FM only to post the Vendor invoice idocs and it was successful.
    Thanks,
    Mahesh.

  • Posting Key for Sales Invoice

    Hi,
    I have a problm in creation of Sales Invoice
    While creating Sales Invoice instead of Customer A/c getting debit & Sales Revenue getting credit the Sales Revenue Account is getting Debited & also getting credited. In accounting document the posting key are 40 Sales Revenue & 50 Sales Revenue instead of 01 for Customer & 50 for Sales Revenue.
    Can I know where exactly I am wrong & where are the settingsd for posting key for Sales Invoice.
    Thanks in advance.
    Regards
    Bala

    look at  t code VKOA.
    This is where the account determination is calculated from, if you are creating the document from SD.
    Make sure there is only a single entry against the item you expect to see.
    Award points if useful.

  • Is it possible for the posting COGS another price then standard price

    < MODERATOR:  Message locked.  Please post this message in the [Controlling forum|SAP ERP Financials - Controlling;. >
    Is it possible for the posting of the goods sold (delivery sales order) to use another price then the standard price when the price control of the material is S.

    Yes. Is it a third-party scenario?
    In a typical Third-Party sale (where the vendor delivers the goods directly to the customer, with no/notional GR in our books), the system uses the PO price and not the Std Price from MM.
    Cheers.

Maybe you are looking for

  • Regarding entry of  Item master opening balance

    Suppose i have 20 number of 'X' items with price 100 and i have 30 number of  same 'X' items with price 300 in this case how to enter opening balance and price for this item from Inventory>inventory transactions>item opeing balances?? awaiting for yo

  • Is there a way to use an off camera flash or remote flashes on a Rebel T5? (This is not a T5I)

    I have a Rebel T5 I just bought a few months ago. I like it as it is a great entry into DSLR. I will be looking at upgrading in a few months. But in the meantime, I just bought a speedlight kit (not Canon) and it came with 2 speedlights and the remot

  • Need suggestion for designing a BEx report

    Hi, I need suggestions for designing a BEx report. Iu2019ve a DSO with below structure: 1. Functional Location u2013 Key 2. Maintenance Plan u2013 Key 3. Maintenance Item u2013 Key 4. Call # - Key 5. Cycle u2013 Data Field 6. Planned Date u2013 Data

  • Sleeping, whats really goin on?

    Hi All, I have a PDA which Syncs and charges via USB. Sleep-wise I dont have many problems (except one regarding external display but that is another post). My question in this case is this: When I shut the lid on my MBP the sleep indicator starts br

  • Lastest Adobe After Effects Trial Won't Install!

    Hi there, I have a Dell Inspiron 530S with 2gb ram and 140gb hard drive, and I downloaded the Adobe After Effects, the latest one, CS4, and then I ran the extractor. And then, when I run the setup, a pop up comes up and says like Windows is searching