Restriction of posting parking vendors in tcode FV60

Hi Experts,
i am trying to restrict the posting of parking vendors for tcode FV60 by using  FIBF tcode to deactivate posting button as per the documentation mentioned there. but, the button is not deactivating.
Is there any other procedure to deactivate the posting button in tcode 'FV60'.
Thanks in advance.
by
shiva
Edited by: shiva pandu on May 6, 2008 7:45 AM

HI,
I got the solution. we can di it through the tcode FIBF
by
shiva
Edited by: shiva pandu on May 7, 2008 11:35 AM

Similar Messages

  • Restriction of posting of parking vendors in tcode fv60

    Hi Gurus,
               How can we restrict posting of parking vendors in transaction code FV60 by disbleing the menu item.
    Thanks in Advance.
    shiva.

    thanks for ur suggestion
    by
    shiva

  • System not allowing to post parked vendor invoice

    Hi gurus,
    Why system not allowing to post parked vendor invoice when workflow is used for gl document?????
    It is saying not released and no one is allowed to post???
    Thank you

    Hi Mohit,
    Post can be possible to next authorized level. Check settings or else go to FBV3 ,enter document number ,company code and year > Enter > where you can see the workflow tab > Click on that where you came to know how may release levels are assigned.
    In same view > Click on system in menu bar > services for object > Click on workflow icon > where you came to know who is the next approver.
    Regards
    Mani

  • Posting Parked vendor invoice document

    Hi Experts,
    I have company code (ausbk), document number (belnr), fiscal year (gjahr ), using these parameters I need to post the parked vendor invoice document.
    Please suggest how to write code or function module for posting parked vendor invoice document.
    Thanks & Regards,
    Sridhar

    Hi,
    You can post a parked document with T.code FBV0
    & MR44 can be used to post a parked document
    If useful, assign points.
    regardrs
    Sunil
    Edited by: Sunil Goyal on Jun 4, 2008 11:28 AM

  • How to post parked vendor credit memo after clearing that invoice

    Hai
    I had an issue where the user is trying to post the parked credit memo and he is getting the error. I had investigated that and found there for that vendor already Invoice amount already paid. After making the payment to vendor with respect to Invoice is it possible to post the parked credit memo for that vendor.In this case the vendor acount balance is zero. Kindly let me know how to post that parked credit memo to that vendor. Is it possible or not if its so how?
    I appreciate the early response.
    Akash Narayana

    Hai Ashok
    The vendor  parked credit memo has posted with referece to PO. And that invoice has been cleared. Currently the Vendor is sitting with the zero balance. Now when the user want to post the parked vedor credit memo it is not allowing.
    Kindly anyone can help. Its Urgent.
    Regards,
    Akash Narayana

  • BAPI for FV60 tcode parking (Vendor Invoic)

    Hi All,
    I want to park Vendor invoice through FV60 tcode using BAPI
    I got one BAPI (BAPI_INCOMINGINVOICE_PARK), which is doing for incoming invoice i.e. MIR7 only. but it is not suitable for FV60.
    Please help me in finding BAPI for Vendor Invoic (FV60) parking.
    Thanks,
    Ramanjaneyulu Reddy

    Hi. I know it is very late, but I was looking for an answer to this on SDN today and found your post amongst others, but could not find a solution so had to have a look through SAP in more detail.
    I have managed to get a finance invoice to park just like FV60 using function module PRELIMINARY_POSTING_FB01.
    To find the right data to pass the easiest way is to park an invoice manually in FV60, then call function PRELIMINARY_POSTING_DOC_READ and get the data for the parked invoice.
    Then just populate all the same fields in PRELIMINARY_POSTING_FB01 apart from the document number and it should work fine.
    I hope this was of some help.
    Regards,
    Dave.

  • How to release Parked vendor invoice to post

    Hi Gurus,
    We have checked posting release box in obwa so system trigger workflow. We want to use park and post for FV50 and FV60 both. But we dont want automated mails for FV60.
    Now whats happening is that system is working fine for FV50 and generating mails for posting of document. But System is not allowing to post parked vendor invoice and saying it is not released. Can you please tell me what settings reqiured to release parked vendor and how to post it????
    Thank You

    Hi Mohit
    Thanks for raising this query. It helped me to learn new things today. As far as your issue is concerned, I think it can be done by implementing BTE only and not through standard SAP configurations.
    Check the link below on the basis of which I drew my conclusions as above
    Probelm with configuration in OBWA/OBWJ | SCN
    Get help of ABAP or Workflow consultant to implement to meet your requirement too.
    Hope it helps
    Regards
    Mustafa

  • How to park a Asset & Vendor combination line items in tcode FV60

    Respected Members,
    I want to park a document which consists one line item to vendor and other line item to
    asset.
    We can use tcode F-63 but it wont give the withholding tax,so we have to use the tcode
    FV60 but we are not getting any field to put asset in FV60 or no provision of posting
    key so that if we put asset in g/l item field then it should automatically changes to gl
    account based on posting key (70).
    Kindly help me as soon as possible.
    Thanks a lot.
    Manish

    hi
    try with FB01

  • Tcode FV60, edit the park vendor invoice

    Hi,
    In the Tcode FV60, edit the park vendor invoice,
    when try to save the document giving the error " Enter tax base amount for the account ABC in the company code".
    the account ABC has been used in the line item.
    How to solve this ?
    Thanks ,
    Vidya

    Hi
    First of all go to t.code fs00 enter account which account u face a problam , then in control data tab see tax category, if selected ,
    then in transaction code FV60 enter tax code in tax code field
    then u save the docuemnt
    if any query feel free ask me
    Regards
    Roobal

  • How to restrict the posting document from the parked user

    Hi All,
    Please help me in the below requirement
    The requirement is, need to restrict the posting of document by the same user, who has parked the document.
    For this I did the code changes in BTE: 00001140 by copying the function module:
    u2018SAMPLE_INTERFACE_00001140u2019 into new function module asu2019 Y_IB_FI_PROCESS_00001140u2019
    In this I have restricted as
    IF ( sy-tcode = FV60 or
    sy-tcode = FV50 or
        sy-tcode = FBV0 ).
    IF i_parked = u2018xu2019. " document has already been parked
          READ TABLE t_bkpf INDEX 1.
          IF t_bkpf-usnam EQ sy-uname. " park user = current user ?
            t_exctab-okcod = 'BU'.    " do not allow to post
            APPEND t_exctab.
          ENDIF.
        ENDIF.
    This function module is getting trigger while parking and posting the documents
    While posting the document, the parameter i_parkedu2019 is not getting the values as u2018Xu2019,
    To get the values as u2018Xu2019 for the parameter: i_parked what can I do?
    Can you please help me, is there configuration side need check?
    Or do I need to write code some where else.
    Thanks in Advance
    Rambabu .A
    Cross-post

    Hi
    Well, in such a case, it might be justified... BUt again, I would ask how would you differentiate between What USER1 can park and what can he post?... Certainly, it would be by means of fields like Doc Type, etc...
    Else, if you leave it to the discretion of USER1 and give him both the authorizations, why would he like to park when he can post the doc? 
    Anyways, now coming to the BTE, each BTE uses a structure... For eg: BTE 1120 uses BSEG_SUBST... If the fields you desire are not available in the structure, then you can also enhance the structure... See if you can enhance the structures involved and achieve the result
    Regards
    Ajay M

  • Post Parked Doc

    There are two separate groups using the FBV0 post parked docs tcode. 
    One is GL the other AP.  What controls the posting - doc type?  If so what value?  I did think it was 10 for Post, but that doesn't come back on the trace.  Appreciate some advice.

    Hi James,
    There is no restriction on doc type in FV60 (FBV0 internally checks for FV60).  Actual postings (when it hits a GL account) are restricted  by
    F_FICA_FOG, F_FICA_FSG, F_FICB_FKR, and F_FMMD_MES authorization objects.
    F_BKPF_KOA is for account types, not doc types. 
    Let me know if this helps!
    -T
    Edited by: T on Mar 16, 2010 2:15 PM

  • Parked vendor invoice

    What is the use of Tcode FV60(i.e. parke invoice vendor)
    How to release the parked invoice vendor document creted in FV60>
    Thank you.
    Siva

    Hi,
    Please check work flow for parked invoice is implemented in your company.
    Because due to invoice work flow save as complete button display you.
    You have only authorization for save as complete.
    Check your documents with accounts person, If it is possible that they have authorization for post invoice.
    Regards,
    Mahesh Wagh

  • Parking Vendor payment / customer payment

    Hi Gurus,
    Is it possible to park vendor / customer payments ? As FV60 & FV70 are available for parking vendor and customer invoices is there a similar functionality available to park payments.
    We have already configured workflow. But the problem is, workflow is triggered only when the document is parked and as there is no parking facility available in payments the same cannot be done. So workflow is functional only in invoice parking and posting.
    Kindly let me know the solution.
    Rgds
    Nikit

    Hello Nikit,
    Due to the payment is only for a inovoice,unfortunately the functionality you required is not existed in the SAP standard.
    Alternatively you could post a credit memo dodument like below:
    revenue  1000 / customer 1000 or  vendor 1000/ expense 1000,
    by using FV75 or FV65, then clear them in clearing transaction code( FB1K, FB1D....).
    Best Regards,
    Gladys xing
    Edited by: Gladys Xing on Jul 12, 2009 10:26 AM

  • How to Post Parked Invoice Document

    Hi ,
       Some basic FI functional qry ... How to post the parked invoice document .If any one can give me the transaction code will be great .
    Thanks in advance.
    Bye
    Raj

    FBV0.
    Below given is the list of all transactions related to parked documents.
    [code]
    FBV0                 Post Parked Document                 
    FBV1                 Park Document                        
    FBV2                 Change Parked Document               
    FBV3                 Display Parked Document              
    FBV4                 Change Parked Document (Header)      
    FBV5                 Document Changes of Parked Documents 
    FBV6                 Parked Document $                    
    FBVB                 Post Parked Document                 
    FV50                 Park G/L Account Items              
    FV53                 Display Parked G/L Account Document 
    FV60                 Park Incoming Invoices              
    FV63                 Displayed Parked Vendor Document    
    FV65                 Park Incoming Invoices              
    FV73                 Display Parked Customer Document    
    FV75                 Park Outgoing Credit Notes          
    [/code]
    Regards
    Raja

  • Parked Vendor Invoices stored in which tables?

    Parked Vendor Invoices (not yet post) stored in which tables (both header and items)?

    Hi,
    Check out following tables
    VBSEGA - Document Segment for Document Parking - Asset
    VBSEGD - Document Segment for Customer Document Park
    VBSEGK - Document Segment for Vendor Document Parking
    VBSEGS - Document Segment for Document Parking - G/L A/c
    hope this helps

Maybe you are looking for

  • F.19 report showing wrong values (GR/IR)

    Hello, At my company, they run the MR11 to check for GR/IR variances and then clear these variances using the F.13 transaction. However, when the F.19 transaction is run to analyze the GR/IR clearing account, there are some old PO's belonging to year

  • Add a menu item in context menu at Sales Quotation

    How can I add a menu item in context menu at WH column in sales quotation screen? To access to the context menu, locate an active quotation and right click at an active WH column and a context menu will be shown.

  • PCW call custom task after approval process

    Hi comunity, I need to know how could call a custom task from PCW. Because I need to update a Z log table after the users approval SC just when the document is set to approved. I've checked the WS40000015, but seem to me that this is not possible. I

  • Error code 0x80070714

    Im imaging a laptop computer from my WDS server and received the following error message "Windows cannot install required files. Make sure all files required for installion are available, and restart the installation.  Error code: 0x80070714"   I hav

  • Internet cable connection on rear of imac  ... am I totally stupid

    Hi chaps - I have never tried to connect my iMac to my modem I've always run it wirelessly but whilst trying to upgrade the modem's firmware I was struggling a bit and thought I'd connect it with a cable, searched through a box of cables I had and fi