Determine Liquidity Item between GL Accounts

I have created an assignment report from FI:
IF (Document Type = ZP) AND (G/L Account = 2918073701)
THEN  Liquidity Item --> CONTRACT620
Document (Document Type: ZP)
Account Type     Posting Key     G/L Account               Amount
S          40          2918073701                           1100.00
S          50          1112040016 (Bank Account)                     1100.00
However, when I execute the LFQAC transaction (From FI Information), the program determines a TRANSFER ITEM that it was custumized in STORING GLOBAL DATA.
I think that this is because both accounts are G/L Accounts (Account Type: S). Is there some solution?
Thanks in advance for your cooperation,
Best regards.
Luis
Edited by: jose luis rodriguez on Dec 16, 2008 1:29 AM

I have created an assignment report from FI:
IF (Document Type = ZP) AND (G/L Account = 2918073701)
THEN  Liquidity Item --> CONTRACT620
Document (Document Type: ZP)
Account Type     Posting Key     G/L Account               Amount
S          40          2918073701                           1100.00
S          50          1112040016 (Bank Account)                     1100.00
However, when I execute the LFQAC transaction (From FI Information), the program determines a TRANSFER ITEM that it was custumized in STORING GLOBAL DATA.
I think that this is because both accounts are G/L Accounts (Account Type: S). Is there some solution?
Thanks in advance for your cooperation,
Best regards.
Luis
Edited by: jose luis rodriguez on Dec 16, 2008 1:29 AM

Similar Messages

  • Transfer Posting for Line Items between Reconciliation Account

    HI,
    My customer want to transfer costing the line items between a old Reconciliation Account and a New Reconciliaton Account.
    For example, i have a Account Group Vendor with a old Reconciliation Account " Vendor CEE".
    This reconciliation account has the line items concern differents Vendors.
    Edit a new Account Group calling ( CEE) to replace a Old Account Group.
    After changing in Vendor Master data the Reconciliation account, we need to transfer posting the line items in the new account reconciliation
    In Sap system is there a report can do it? Can you help me?
    Regards

    Hi,
    Thank you for the answer.
    I did that, and exactly:
    - In Trx Obbw insert the reconciliation account and Adjustement account.
    - and execute the trx FAGLF101 in test but the sap system give me the following error:
      " Account determination for transaction A00 is missing for account 0205016001 ZM P001 "
       Message no. FR005
    Can you help me?
    Regards
    Edited by: Marika De Cesare on Oct 18, 2011 1:06 PM

  • Determine Liquidity item for Taxes

    Hi Experts,
    I have reviewed documentation and sap notes about that Taxes are distributed on expense or revenues accounts.
    I want to avoid this, I need that Taxes have their own Liquidity Item.
    For example:
    Cash             1000  
    Revenue        800     --> LI_REVENUE_FOR_SALES = 800
    Taxes             200    -->  LI_TAXES                           = 200
    And not:
    Cash             1000  
    Revenue        1000     --> LI_REVENUE_FOR_SALES = 1000
    Thanks in advance for your help.
    Regards,
    José Luis

    Implement the exits from note 994316
    Step by Step explantion about Tax handling:
    There are two exits involved in this process.
      The first exit is for withholding tax.
      This is how the form should be called from
      a Function Module.
      PERFORM UNMARK_WIT_LINES  TABLES  T_BSEG
                                CHANGING P_SUBRC.
            Inside this form you have to place the coding for the withholding tax from the note 994316.
    The start of the coding in the note 994316 is
    FORM UNMARK_WIT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                           CHANGING P_SUBRC.
    The Function Module which is created for this Withholding tax should be placed in the Document-Red. Exit in the FLQC13 Screen.
    The second exit is for tax on sales and purchases.
    This is how the form should be called from
      a Function Module.
      PERFORM UNMARK_VAT_LINES  TABLES  C_T_BSEG_REST
                                CHANGING P_SUBRC.
            Inside this form the coding for VAT has to be placed from the note 994316.The start of the coding in the note is
    FORM UNMARK_VAT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                           CHANGING P_SUBRC.
    The Function Module which is created for this VAT should be placed in the Exit Invoice in the FLQC13 Screen.
    It is by design of the FLQAD that it doesnot show tax separately. If
    you want to display the tax separately then do the following steps:
    Create a function module z* with signature similar to function module
    FLQ_SAMPLE_REDUCE_DOC and call the subroutines given in the note 994316.
    Sample coding:
    FUNCTION Z*....
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(P_BKPF) LIKE  BKPF STRUCTURE  BKPF
    *"     VALUE(P_ORIG) LIKE  FLQITEM-LQORIG
    *"  EXPORTING
    *"     VALUE(E_TAKE_TABLE) TYPE  XFELD
    *"  TABLES
    *"      T_BSEG STRUCTURE  BSEG
    *"      U_T_KEEP_LINES
    *"      C_T_DEL STRUCTURE  BSEG_KEY
    *"  CHANGING
    *"     REFERENCE(P_SUBRC) LIKE  SY-SUBRC OPTIONAL
      PERFORM UNMARK_WIT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                               CHANGING P_SUBRC.
      PERFORM UNMARK_VAT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                                CHANGING P_SUBRC.
      E_TAKE_TABLE='X'
    ENDFUNCTION.
    FORM UNMARK_WIT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                           CHANGING P_SUBRC.
      CLEAR C_T_BSEG-KTOSL.
      MODIFY C_T_BSEG TRANSPORTING KTOSL
        WHERE  ( KTOSL = 'QST' OR KTOSL = 'WIT' ) AND QSSKZ <> SPACE.
      CHECK SY-SUBRC = 0.
      P_SUBRC = 0.
    ENDFORM.                    " UNMARK_WIT_LINES
    FORM UNMARK_VAT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                           CHANGING P_SUBRC.
      CLEAR C_T_BSEG-MWART.
      MODIFY C_T_BSEG TRANSPORTING MWART WHERE MWART <> SPACE.
    In case of sucess, set return code to zero, for calling program to
    recognize
      CHECK SY-SUBRC = 0.
      P_SUBRC = 0.
    ENDFORM.                    " UNMARK_VAT_LINES
    Create Function module Z* with signature similar to Function Module
    FLQ_SAMPLE_MODIFY_INV.
    Sample Coding:
    FUNCTION Z*......
    ""Lokale Schnittstelle:
    *"  TABLES
    *"      C_T_BKPF STRUCTURE  BKPF
    *"      C_T_BSEG_REST STRUCTURE  BSEG
    *"      U_T_BSEG_KEEP STRUCTURE  BSEG
    *"  CHANGING
    *"     REFERENCE(P_SUBRC) LIKE  SY-SUBRC
      PERFORM UNMARK_VAT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                                CHANGING P_SUBRC.
    ENDFUNCTION.
    FORM UNMARK_VAT_LINES  TABLES   C_T_BSEG STRUCTURE BSEG
                           CHANGING P_SUBRC.
      CLEAR C_T_BSEG-MWART.
      MODIFY C_T_BSEG TRANSPORTING MWART WHERE MWART <> SPACE.
    In case of sucess, set return code to zero, for calling program to
    recognize
      CHECK SY-SUBRC = 0.
      P_SUBRC = 0.
    ENDFORM.                    " UNMARK_VAT_LINES

  • PC WF - Agent Determination for Items with Multiple Account Assignment

    Hello Gurus!
    The quoted text below is from [SAP Help Documentation|http://help.sap.com/saphelp_srm70/helpdata/en/ad/d8fd25beb64bbe9d671f3199eb7edf/content.htm]. I haven't been able to find any further documentation on how to implement this feature. Is this something the system can do without any BAdI implementations? Has anybody implemented this? How can this be accomplished? We are on SRM 7.0.
    "You can distribute costs across accounts by percentage, by quantity, or by value. If the responsibility for approving items according to given accounting data is divided between several approvers, the system can create one work item for each approver. The item can only receive the status Approved after each approver has approved it. As soon as one approver rejects an item, the item receives the status Rejected."
    Regards,
    Ramki.

    Hi,
       SAP does not provide the standard Badi implementation to achieve your business requirement.. but you can refer enhancement implementation /SAPSRM/BD_WF_AGENTS_SC where you can find badi implementation /SAPSRM/BD_WF_SC_RR_PGRP is similar..
    Saravanan

  • (LIQUIDITY PLANNER) Liquidity item determination in FLQAD

    Hello, gurus,
    I have a question regarding determination of liquidity items in the second step of derivation with transaction FLQAD.
    I am setting up a query in the system, which should analyze the accounting document segment of the vendor line in the invoice. I have tried different set up options and used both exit _INV and _REX, but they both use expence account as information line in the second step.
    Is there any possibility I can make the vendor line from the second step as information line? Because this line is the most informative in my document chain, and I need to define fields from this line in the query.
    Thanks in advance!
    Joaniuka

    Hi,
    Yes, I have tried with C type query sequence, but it only examines the vendor document from the first step, that is in the vendor-bank clearing account clearing document. And it does not derive any information I need from that document, because the vendor line in invoice has the fields I need to put on a querry - and invoice is only reached in the second step.
    BR,
    joaniuka

  • Ho would i know that liquidity items were mapped with G/L accounts

    Hi Experts,
    I would like to know how the liquidity values are mapped to theG/L accounts.
    Ex :
    L 75 Investments is the value in LQPOS liquidity item and the correspond table is FLQLPOS.
    So i would like to know how the L75 investment is mapped to the G/L account?
    Regards.

    Hello,
    Make sure that you have done the settings in:
    IMG => Financial Supply Chain Management => Basic Settings: Liquidity Calculation.
    Edit Liquidity items
    Also,
    Make sure you have made the assignments in the next node.
    Regards,
    Ravi

  • SD document line items Vs FICA accounting document line items

    Hello All,
    What is the interface we use in SAP,  between the SD and FICA which will determine line items in FICA document with regard to SD line items.
    SD : How we do configuration or mapping between sd sales order and billing document to determine billing document line items  based on sales order line items ( for example : material group, profit center, cost center ?)
    FICA: what interface / Configuration we use to determine how many line items should appear in the FICA document based on billing document line items.
    Regards,
    John.

    Integeration of SD to FICA is based on the img settings done under the node - SPRO - Financial accounting ( new ) - Contract accounts receivable and payable - integration - Sales and distribution .
    Creation of FICA document based on SD is routed through the event 4000 and the details are detrived through event 4030 .
    Would suggest you to go through events 4000 and 4030 .
    Regards ,
    Dewang

  • How to copy Configurator keychain items to user accounts

    I'm managing a lab of iPads in an education environment.  And have set up a "base" image for the iPads under an administrative account with Configurator.  The Macbook is bound to the domain and I can authenticate with a number of users no problem, but if I go to try and manage the iPads, i get a "private/public key" error.
    I've determined that the issue is with the Key items found under the keychain.  If I copy the administrative keychain to the users profile and log in (forcing the login keychain update) it will work fine under the users account.  but this is not something I want to do as it requires me to give out an administrative password. And if I delete the login keychain from the user template, the user generates new keys causing the error above.
    So... does any one have any ideas how to copy keychain items from one user to the template user?

    Move your itunes to library to a centralized folder.  For instance directly on your hard drive.  Then set your itunes library to that folder where all itunes media is kept, or only the items you wish to "share" between user accounts.

  • How can I share my iTunes library between user accounts in iTunes 11

    Since upgrading my iTunes library to Version 11 I can no longer share the library between user accounts on the same Mac.
    The 2nd user is asked to create oir use an iTunes library, but when it is pointed to the Media folder it cannot share it.
    Previously in iTunes 10 it all worked fine.
    How can this be done please?
    The library is in a shared areas that we both have Read/Write permissions to.

    jc_hering wrote:
    that works for anything he purchases after he creates the new account.  What about his current music that currently resides in my itunes library?  How can I get his current music out of my library into his new account/library??  Thanks..
    Copy it to his computer into his iTunes library and authorize his computer with the iTunes account used to purchase them..
    You cannot tranfser items from one iTunes account to another. Purchased items remain part of the iTunes account is was purchased with.
    iTunes account - used to purchase items
    iTunes library - where purchases (and CD RIPs) go on the computer

  • Error message "No business area can be determined for item 000010"

    Hi all,
    I had maintained business area assignements.
    However, while creating a sales order, the following error message appears : "No business area can be determined for item 000010"
    What does it mean ? And how can I fix this problem ?
    Regards,
    Bahia.
    Edited by: Bahia M. on Nov 13, 2008 11:58 AM

    Dear Bahia,
    Please go to IMG path assign the business area
    IMG>Enterprise structure>Assignment>Sales and Distribution>Business Area Account Assignment-->Define Rules By Sales Area(Roule 1)
    -->Assign Business Area To Plant And Division
    I hope this will help you,
    Regards,
    Murali.

  • Sharing libraries between user accounts question

    After many years of having one user account on our iMac, I have decided to segregate user accounts for me and my wife. I'm doing this because I have an iPhone and she is going to get one soon. When we sync our respective iPhones, we want to keep iCal and and Address book information unique to each user account. What I'm trying to figure out is how to share iPhoto and iTunes content between user accounts. I know there is a share preference that will allow the master libraries in these applications to be shared, but the photo albums and playlists created on the original user account are not "shared". Would it be possible to have playlists from iTunes and albums/events from iPhoto to be shared between user accounts? This would enable my wife to sync all her iPhone data from her user account. Thanks in advance.

    I have an idea that uses a different approach. I haven't done this for this purpose, so if you decide to try, please do it one step at a time so you can undo it. I'll explain it for iTunes.
    Instead of using the Sharing preference in iTunes, put the iTunes Music folder in a location that can be accessed from both accounts. You might use an external drive, or the <hard drive>/Users/Shared folder.
    iTunes should NOT be running. Go to /Users/<username>/Music/iTunes folder. In that folder is the iTunes Music folder. Copy this folder to a location on the external drive or to the Shared user folder. Rename the original iTunes Music folder another name, such as iTunes Music Old. Make an alias of the new iTunes Music folder (in the shared location) and put it in the user's iTunes folder (where iTunes Music Old now resides). Rename it "iTunes Music" if necessary (you are making the alias take the place of the actual iTunes Music folder). * It is very important that the name be exact.
    Start iTunes. All of your music and other media should be accessible as if the iTunes Music folder is where it used to be. To prove to yourself that the files are being accessed from the new shared location, do a Get Info on a couple of songs in iTunes. "Where" should show the file to be in the new location. To prove to yourself that you can add new content to the new location, download a free song from the iTunes Store (or a Podcast) or rip a CD. Then do a Get Info on the new item.
    Up to here, I'm confident it will work, because I have done it. The rest is "theory"...
    Copy the old user's /Users/<username>/Music/iTunes folder (except the now duplicated iTunes Music Old folder) to the shared location. You are only doing this step so that it will be available when you log in as the new user (your wife's account), which is the next step.
    Log out and log in to the new account.
    Copy everything in the old user's iTunes folder (that you just put in the shared location) to the new user user's /Users/<username>/Music/iTunes folder. Replace any duplicated items. You want the new user's iTunes folder to look exactly like the old user's iTunes folder (except for iTunes Music Old). Hopefully, that iTunes Music alias will connect to the actual iTunes Music folder at the shared location. Try it. Run iTunes as the new user. Hopefully, everything looks like the old user's iTunes. Do the tests like before to prove it.
    At this point, the two iTunes "looks" will start to diverge. But at least the starting point will be the same.
    If something does not work as expected, log in to the old user's account. With iTunes NOT running, go to /Users/<username>/Music/iTunes folder. Delete the iTunes Music alias. Rename the iTunes Music Old folder back to iTunes Music. Everything should be back to the way it was.
    If it works to your satisfaction, you can eventually delete that iTunes Music Old folder.
    I don't use iPhoto, but if iTunes works, you can do the equivalent steps for iPhoto.

  • Account determined for entry (chart of accounts no) WRX 0003 not possible

    HI, I'm trying to GR a PO for a material using movement type 101 and am getting the following error
    "Account determined for entry (chart of accounts no) WRX 0003 not possible"
    I know that I need to go to OBYC to make an entry for transaction WRX for valuation group code 0003 and valuation class and then assign it to the relevant gl. 
    My problem is I don't know what the valuation class should be.  In the PO there is short text entered for the item rather than a material number so I cannot go to the material master to check what valuation class is assigned.  Is it linked anywhere to the material group?
    Thanks in advance for your help

    yes u can do
    fist
    u can make the entry and blank valuation class and give the gl account in wrx
    so that it will take this GL account for blank materia number
    or
    u cna give valuation class to material group
    MM  purchasing -- materal master -- Entry Aids for Items Without a Material Master
    hope this helps

  • Relation between GL Account and Invoice?

    Hi Experts,
    I am working with the FI reports for the first time and I do not have any idea on FI functional flow. I have some basic questions like
    What is the Relation between GL Account and Invoice?
    When will an Invoice be posted into BKPF, BSEG, BSAD, BSID, BSAK and BSIK? Is there any field in these tables which gives the Invoice number against which a GL Account is created?
    For example if I want to calculate " no of vendor invoices without PO how can I do that"? How can I know what are vendor invoices created against a PO or without PO?
    Thanks for any help in advance and I am bound to reward points.
    Sri

    <b>What is the Relation between GL Account and Invoice?</b>
    SAP's Glossary for GL Account is
    "A structure that records value movements in a company code and represents the G/L account items in a chart of accounts.
    A G/L account has transaction figures that record changes to the account during a posting period. These figures are totals that are used for G/L reporting."
    In accountancy, an account is a label used for recording and reporting a quantity of almost anything. For example when a company pays salary to its staff, They debit Salary account. This is to identify what is the nature of an expense.
    An invoice is a message to the buyer of goods or services that contains, among other things, Name of the goods or services, Quantity sent, & Remuneration due.
    Invoice is also a SD document used to charge a customer for a delivery of goods or for services rendered.
    <b>When will an Invoice be posted into BKPF, BSEG, BSAD, BSID, BSAK and BSIK? Is there any field in these tables which gives the Invoice number against which a GL Account is created?</b>
    If it were a vendor invoice. (i.e you purchase items or service and recieve invoice)
    Invoice get posted to the tables once someone makes a Logistics Invoice verification through t-code MIRO etc. The teble RBKP gets the first posting.
    If it were your own invoice to your customers, then VBAK and VBAP get the posting.  The connectivity of tables are available in http://www.erpgenie.com/abap/tables.htm As far as SAP is concerned an invoice is a document, so you can only trace invoice as a document number, field name is usually BELNR. Even if a vendor invoice arrive, an internal invoice number is generated where the vendor invoice is entered only as a reference field. This is because, each vendor can have inovices of different size and pattern.
    <b>How can I know what are vendor invoices created against a PO or without PO?</b>
    For a purchase order you can find in table EKBE for BEWTP = Q any invoice document.

  • No business area can be determined for item 000010

    Hi All
    I'm facing above error during sales contract (T code VA41) creation.The following are the scenario,
    we had two plants, one is manufacturing 'A' and another one is warehouse plant 'B'.Noramally we will do GR against production order in manufacturing plant 'A'and will make stock transfer to ware house plant 'B'.We made this transaction and material also transferred.
    But we are trying make sales from warehouse plant 'B' for that material.We are getting error message during sales contract creation 'No business area can be determined for item 000010'.This error comes for all materials extended to warehouse plant 'B'.This plant newly created,we checked all config every thing alright.
    Anybody can help me out of this issue.
    S S

    Hi Suresh,
    Go to TCode: SPRO -- Enterprise structure -- Assignment -- Sales and Distribution -- Business Area Account Assignment -- Assign Business Area To Plant And Division and check also --  Assign Business Area by Sales Area.
    Check whether you have maintained here the necessary settings for plant B.
    Hope this solves your problem.
    Thanks,
    Viswanath

  • Basic File Sharing question between user accounts on my iMac

    I don't understand how to be able to share and download to one common folder among User Accounts on my iMac. I am trying to use a Clean Account as a test, and wanted to copy a file I downloaded from the web in one account into this clean account folder, and install the file.
    I went to Sharing and thought I turn File Sharing on. Logged into the Clean account and Apple+I the folder, changing access priviledges to the folder. Then copy the file into the Clean User Account.
    But it doesn't work that way. Can anyone help me understand sharing between accounts?

    File Sharing is for sharing files between two different machines, not between different accounts on the same machine. If you want to share files on one machine, you just need to put them in a folder everyone has access to, like the /Users/shared folder. Also, don't go fooling around with folder permissions... that's a good way to mess things up. If I had a nickel for every time someone messed up their system using the "Apply to enclosed items" option when changing permissions, I'd be a rich man!

Maybe you are looking for

  • Can't find photos in a deep subdirectory

    I am unable to get Lightroom 5.3 to find photos for Importing that are in a subdirectory.  The subdirectory with the photos has five parental levels of subdirectories above it, that conatin no photos.  Lightroom won't see past the first two subdirect

  • How do I limit the number of emails displayed in iOS 7?

    I prefer to display only 100 emails from each of my mailboxes on my apple devices, but with iOS 7 it's showing all my emails, and there doesn't seem to be an option to limit this in settings as there was previously?

  • Not able to install photoshop 12 and elements 12 bought yesterday

    I can't install ohotoshop 12 and elements 12 purchased yesterday, won't accep my old serial number ?why

  • Flash not timed correctly

    Anyone had issues with their new iphone, my wifes flash is not working correctly.  It flashes the redeye, then flashes the normal flash, then takes a picture after the flash.  My new iphone 5 works fine.  Hers has also locked up.  I wonder if hers is

  • Software Update crashes after first update install after 35 pass Format.

    Ok so I have a powerbook G4 1.67 and a G5 1.5. Both have been acting weird so I reformatted and installed tiger on both. The powerbook has its own install disk and the Desktop I use the store bought version of Tiger. I did a zero all data on the Powe