Receivables - Deferred Accounting Rule

I created an invoice with a deferred accounting rule attached and then ran revenue recognition. I have since determined that the accounting rule is incorrect but the system will not allow me to change the rule attached to the invoice. (The rule will spread the revenue over 12 months once I use Revenue accounting to schedule the revenue.) How can I fix this? Is there any way to adjust the monthly amounts that revenue accounting creates or change the rule that is attached to the invoice?
I am on 11.5.10.2.

Sorry for the late reply, but this solution worked great.
and OKS_K_HEADERS_B.ACCT_RULE_ID = RA_RULES.RULE_ID
and OKC_K_HEADERS_B.ID = OKS_K_HEADERS_B.CHR_ID

Similar Messages

  • Deferred Accounting Rule  and start date

    Hell Folks,
    I am facing some issues with deferred revenue and accounting rules.
    Here is the scenario
    1. We sell renewal maintenance to our customers in advance. So our sales team can sell renewal maintenances for duration 05/08 to 05/09.
    2. The payment terms are advance or net 30
    3. But we want to defer the revenue recognition for these till the start of the service. That is we should start recognizing the revenue starting 05/08.
    4. The accounting rule used for this purpose is 12 Fiscal Months.
    Now my problem is , the 12 Fiscal Months starts recognizing the revenue from the of receipt. But we want to defer this start recognizing from 05/08 as explained above.
    how can we achieve this ?
    ANy help will be very appreciated.
    Rgds,
    Venkatesh

    Hi Nagamohan,
    Credit Memo is applied to invoice line with deferred rule.
    If I issue credit memo on 18-JUN-08 with LIFO against a Invoice line which uses "Daily Revenue - All Periods" rule, the distributions show
    GL Date - Dr - Cr - Amount
    17-FEB-09 REV UNEARN 0.77
    17-MAR-09 REV UNEARN 39.07
    16-MAR-09 REV UNEARN 20.16
    The above amounts are exactly the reverse distributions as in Original Invoice line.
    I was expecting the same thing to happen in Deferred Fixed rule, but the only difference is for Fixed rule I cannot populate Rule_End_Date through Autoinvoice or manually.
    Kishore.
    Message was edited by:
    chakoo

  • Invoicing and Accounting Rules

    Hello everyone,
    Can anyone please explain me the functionality of 'INVOICING AND ACCOUNTING RULES' form in AR Module.
    I need this get understood before I can start working on this form.
    Any explanation will definetly help me.
    Thanks in Advance.

    Receivables and Revenue are two sides of the coin in an AR invoice.
    Invoicing rule is concerned with Receivables. It determines whether the receivables should be recognized In advance (beginning of the period) or In Arrears (at the end of period). If In Arrears is used, it involves Unbilled Receivables.
    Accounting Rule is concerned with Revenue. Depending on its definition, it determines the revenue recognition pattern in an invoice. Accounting Rule involves Unearned Revenue.
    I am sure there is a lot of material in Metalink that you use.
    Thanks
    Nagamohan

  • Accounting Rule query from the Pricing/Billing tab in Service Contracts

    Running Oracle Apps. 11.5.10.2. I have the query listed below which returns both header and live level data for service contracts. I am trying to add the Accounting Rule from the Pricing/Billing tab within service contracts, but I am not having luck finding a suitable join. I have tried joining ra_customer_trx_lines_all to okc_k_lines_b using the following join from etrm rctla.contract_line_id(+) = oklb.cle_id, but it does not return any records for accounting_rule_id. Once I can get records to return for accounting_rule_id, I can pull in the rule name from ra_rules.
    SELECT OKHB.CONTRACT_NUMBER                                         CONTRACT_NUMBER,
           NVL(OKHB.CONTRACT_NUMBER_MODIFIER, '-')                      CONTRACT_NUMBER_MODIFIER,
           OKHB.STS_CODE                                                STATUS,
           OKHB.START_DATE                                              START_DATE,
           OKHB.END_DATE                                                END_DATE,
           to_date(oklbs.attribute1, 'YYYY/MM/DD HH24:MI:SS')           WARRANTY_START_DATE,
           to_date(oklbs.attribute2, 'YYYY/MM/DD HH24:MI:SS')           WARRANTY_END_DATE,
           rctta.name                                                   PRODUCT_GROUP,
                           rctla.accounting_rule_id,
           P.PARTY_NUMBER                                               PARTY_NUMBER,
           P.PARTY_NAME                                                 PARTY_NAME,
           to_char(oklb.line_number)||'.'||to_char(oklbs.line_number)   SUBLINE_NUMBER,
           to_char(okcis.number_of_items, '9,999,999,999')              QTY,
           msib.segment1                                                ITEM_NUMBER,
           msib.description                                                      DESCRIPTION,
           to_char(oklbs.price_unit, '9,999,999,990.99')                UNIT_PRICE,
           to_char(oklbs.price_negotiated, '9,999,999,990.99')          EXTENDED_PRICE
      FROM OKC_K_HEADERS_B      OKHB,
           OKC_K_PARTY_ROLES_B  OKPRB,
           HZ_PARTIES           P,
           HZ_PARTIES           HP,
           OKX_CUST_SITE_USES_V C_BILL_TO,
           OKX_CUST_SITE_USES_V C_SHIP_TO,
           OKC_CONTACTS OC,
           OKC_CONTACTS OCS,
           OKX_RESOURCES_V ORV,
           OKC_K_LINES_B oklb,
           MTL_SYSTEM_ITEMS_B MSIB,
           OKC_K_ITEMS OKCI,
           OKC_K_ITEMS OKCIS,
           OKC_K_LINES_B OKLBS,
           OKX_SALESREPS_V OSV,
           RA_CUST_TRX_TYPES_ALL RCTTA,
                    ra_customer_trx_lines_all rctla
    WHERE OKHB.ID = OKPRB.CHR_ID
        AND OKPRB.JTOT_OBJECT1_CODE = 'OKX_PARTY'
        AND OKPRB.OBJECT1_ID1 = P.PARTY_ID
        AND C_SHIP_TO.PARTY_ID = HP.PARTY_ID
        AND OKHB.ID = OC.dnz_chr_id(+)
        AND okhb.id = ocs.dnz_chr_id(+)
        AND oc.jtot_object1_code (+) = 'OKX_RESOURCE'
        AND oc.OBJECT1_ID1 = orv.ID1(+)
        AND ocs.jtot_object1_code = 'OKX_SALEPERS'
        AND ocs.object1_id1 = osv.id1
        AND C_BILL_TO.SITE_USE_CODE(+) = 'BILL_TO'
        AND OKHB.SHIP_TO_SITE_USE_ID = C_SHIP_TO.ID1(+)
        AND OKHB.BILL_TO_SITE_USE_ID = C_BILL_TO.ID1(+)
        AND C_SHIP_TO.SITE_USE_CODE(+) = 'SHIP_TO'
        AND okhb.id = oklb.chr_id
        AND msib.inventory_item_id = okci.object1_id1
        AND msib.organization_id = 3
        AND okcis.cle_id           = oklbs.id
        AND okci.cle_id           = oklb.id
        AND oklbs.lse_id     <> '2'
        and oklbs.cle_id     = oklb.id
        AND rctta.cust_trx_type_id(+) = oklbs.attribute8
                 and rctla.contract_line_id(+) = oklb.cle_id

    Sorry for the late reply, but this solution worked great.
    and OKS_K_HEADERS_B.ACCT_RULE_ID = RA_RULES.RULE_ID
    and OKC_K_HEADERS_B.ID = OKS_K_HEADERS_B.CHR_ID

  • Using KFF to query accounting rules

    Hi gurus,
    We have a requirement to query some accounting rules based on code combination flex field values (which in turn should search by ccid).
    I have a standard page which has a VO and it shows some 500+ records and literally there is no search functionality. Client wants a new search region with the ability to search with Accounting flex field values.
    Users should be able to click on the flex field option and in the pop up window, they should be able to query a code combination and then that value should be used for query criteria when they click on a newly created 'Find' button. This submit action should append some query criteria to the existing standard VO and filter the records.
    Can you give me some pointers on how to achieve this.
    I am mainly looking for inputs on flex field.
    I can able to create a separate region in mds and have added that as a personalization to the standard page and I can see the custom search region. Need to add KFF which is where I am stuck :)
    Many Thanks
    Vinod

    Hi  Carol,
    According to your description, my understanding is that  you want to pass values to an InfoPath  data connection (your  Web Service) using XPathNavigator .
    For your issue, you need to get the innerxml of your data connection.Here is the code you can refer to:
    String oProjectName = xformNav.innerxml;
    wsNavigator.SelectSingleNode("/dfs:myFields/dfs:queryFields/ns7:Validate/ns7:projectName", NamespaceManager).SetTypedValue(oProjectName);
    Reference:
    http://msdn.microsoft.com/en-us/library/microsoft.office.infopath.dataconnection.execute(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/system.xml.xpath.xpathnavigator.innerxml(v=vs.110).aspx 
    http://www.infopathdev.com/forums/p/12539/44182.aspx
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Upload facility for smart forms and expense account rules in oracle iprocurement R12.1.3

    Hi All, 
    We are implementing iprocurement for new operating unit.
    We have many expense account rules and approximately 450 smart forms to be setup for new OU. But as part of R12, the setups are to be done through HTML pages.
    Currently I do not see any option to upload these 2 items, as doing them manually will take lot of manual effort.
    Are there any APIs available to load these 2 items? OR any workaround like using dataloader or isetup?
    I am sure many clients are using R12 for very long time and not sure if there are any issues raised on this?
    Could you please let us know if there are any options avialble to upload them?
    Thanks
    sreenivas

    How to Setup a Valid Vacation Rule for Purchasing Notifications (Doc ID 378023.1)
    Goal
    What steps are required for proper setup of a Vacation Rule for routing of Purchasing Notifications?
    Fix
    1.  Enter the Notification Summary or Worklist for a user
    2.  Select the "Vacation Rule" link
    3.  Select the "Create New Rule" link
    4.  For Item Type select "All" for all Notifications or select the desired Notification Type from List of Values
    5.  Select the "Next" link to proceed to the next setup page for the rule
    6.  Enter both a a valid Start and End Date for the new rule
    7.  Ensure the "Reassign" radio button is selected
    8.  Keep "All Employees and Users" in the menu box
    9.  Select the "Delegate" radio button - Assign/Reassign action is prohibited for Purchasing Notifications
    10.  Select the Flashlight icon next to the blank menu box for selecting a user
    11.  A new sub-screen should pop-up to perform the user search
    12.  For "Search By" select "Username" - (DO NOT search by Name)
    13.  Perform the needed wildcard (%) search at the top of the page to locate the desired username
    14.  Click the radio button next to the desired name of the user to have the notifications sent to
    15.  Press the "Select" button followed by the "Apply" button
    16.  Continue on with the saving of the Vacation Rule for latter use
    Note:
    The key to setting-up a valid Vacation Rule is to ensure the rule is tied to a Username rather then the Full Name of the desired user.  The reason for this is that the Worklist and Notification Summary for the user is linked to their username and not full name record.
    Reference:
    Oracle Workflow User's Guide - Release 2.6.3.5
    Part Number : B12162-02

  • Down Payment Receivable control account?

    Hi All,
    I was hoping someone could help clarify account determination for me.
    Currently I have assigned a 'Down payments received clearing account' as a liability account. Is this correct?
    Then If I click the accounts recevable "..." I am presented with the control account selection for "Open Debts" and "Down Payment receivables". I have selected this as "Trade Creditors Domestic".
    When taking DP invoice payments I can see that the DP payments received liability account is posted to correctly. When the DP Invoice payment gets applied to the AR invoice, the account is cleared as expected. I think this is correct.
    I am however confused as to the control account determination. I dont see any postings made during this process. What should I see?
    Many thanks.
    John
    Edited by: Jantzman on Jul 26, 2010 4:06 AM
    Sorry... I clicked post before I as ready .. oops.

    Hello John...
    I am not sure what the Accounting Standards are where you are located, but generally a payment is not defined in the Liability Drawer, but in the Asset Drawer (because you are bringing in an asset of Cash - the so-called above posting).  Of course, the company has to really define that...it is only a temporary holding account from "Down Payments Received" to permanent "Cash" account ...
    I would suggest that you speak directly with the Finance folks of the company you are working with.  Folks in the forum will give you the correct answer as they understand it, but in financial postings the "correct answer" can vary so widely.  The only people who know how their individual books and related transactions work are the accounting/financial folks.  And some times they even have some differing opinions.  During the Blue Print Phase of Implementation I always sit in on the discussions to explain how SAP B1 works and we use the old school T accounts to walk through each scenario.   But the accountants/financial personnel are the ones who have the final say, because they are the ones who will be living with it for years to come.
    Regards,
    Zal

  • Messaging Server 4.1: Received mail is not returned to the sender if the receiving local account does not exist.

    I have found that received mail is not returned to the sender if the receiving
    local account does not exist. This problem occurs even if I use Console to
    enable the Return message to sender option under the error handling methods.
    In addition, I have used the configutil
    to confirm that I have set the value
    for Unknown account action to "13," which corresponds to the settings "Return
    message to sender," "Notify the postmaster via email," and "Log the error in
    the log file." Yet, in this situation, an error message is being sent to
    postmaster, but not to the sender, and the error is not being recorded in the
    log file.
    <P>
    Do the following steps:<BR>
    <P>
    <OL>
    <LI>From Console, open the appropriate Messaging Server.
    <LI>Click the Configuration tab.
    <LI>Open the Services folder.
    <LI>Select SMTP.
    <LI>Click the System tab.
    </OL>
    <P>
    Check the "Domain handled by this server exclusively" field to make sure that
    your mail domain is listed. If your mail domain is not listed, then Messaging
    Server will assume that there is another mail server that is handling the
    domain listed and will forward requests to this server.
    <P>
    For more information, please see the document <I>Messaging Server
    Administrator's Guide</I>, Chapter 3, Configuring SMTP Services at <BR>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/smtp.htm#1010371

    On Thu, 12 Dec 2013 16:16:02 +0000, lpphiggp wrote:
    > I'm seeing this XTCOM error occur all over our /var/log/messages for one
    > server, running SLES11sp2 / OES11/sp1;
    >
    > I don't really know what this is even for. We don't use NetStorage or
    > iPrint even, this server only does basic NCP file serving, DHCP, and
    > hosts a GroupWise PO.
    > Is this anything to be concerned about?
    If this:
    http://www.linuxquestions.org/questi...entication-vs-
    edirectory-825043/
    is to be believed, it seems to indicate that your NAM configuration on
    this server is not valid. I'm not seeing this message here on the OES
    servers I looked at, and NAM is working correctly here.
    David Gersic dgersic_@_niu.edu
    Knowledge Partner http://forums.netiq.com
    Please post questions in the forums. No support provided via email.
    If you find this post helpful, please click on the star below.

  • No accounting rule despite posting to general ledger ERP

    Hi expert,
    I create a securities transaction and faced this message in TBB1.
    No accounting rule despite posting to general ledger ERP
    Message no. TPM_TRAC1509
    Am I miss somethings in configuration? Thanks for any support!

    Hi tap nguyen,
    You have to maintain accounting principle in SPRO - Corporate Finance Management - Transaction Manager - General Settings- Accounting - Organization - Assign Accounting Codes and Valuation Areas.
    Regards
    Gouse

  • Batch derivation with fields in receiver search strategy Rule.

    Dear All,
    In receiver search strategy rule i wanted to give a character, but when i do so i get the below error message.
    Instead of the characteristic , use the field
    Message no. VBDRV011
    Diagnosis
    The characteristic  you entered is assigned to an object characteristic and batch field .
    System Response
    Object characteristics cannot be changed.
    You must make changes to the corresponding batch field. These are then copied automatically to the classification.
    Procedure
    Instead of using the characteristic , use the field
    Now this because in the character additinal data (TCode CT04) Value is coming from Table Name: MCHA and Field Name: CHARG.
    Hence I decided to use the field CHARG in receiver search strategy rule. But when I did so i got the following error message
    This field does not exist or is not allowed for derivation
    Message no. VBDRV009
    Please suggest as to how do i bring the filed in?
    Regards
    Vinod

    Hi Vinod,
    Batch derivation is used to transport characteristic value from one batch (Sender batch)  to another Batch of Header material  (Receiving Batch) during Production / Process Order Execution.
    Now field which you have assign CHARG is non another but it is field of batch No.itself and it is not possible to change Batch No. of Receiving Batch because it is already assign and can not be change.
    You can use only those characteristic or fields which represent the characteristic of Batch for example Shelf life expiry, manufacturing Date etc.
    Regards,
    Dhaval

  • R12: Create on-account Credit Memo with invoicing and accounting rules

    In R12.1.2: when using the AR_INVOICE_API_PUB it seems to be impossible to create a on-account Credit Memo with invoicing and accounting rules. The next errors are returned by the API:
    - AR_INAPI_INV_RULE_NOT_REQUIRED
    Do not include an invoicing rule if the transaction type's class is Debit Memo or Credit Memo.
    - AR_INAPI_RULE_NOT_ALLOWED
    Do not enter an invoicing or accounting rule for on-account credit memos
    Please advice how to create on-account Credit Memo with invoicing and accounting rules using an API.
    Edited by: nl05517 on Jan 17, 2011 10:43 PM

    We will use the AR_CREDIT_MEMO_API_PUB api.

  • Project Supplier Invoice Account Generation from Sub Ledger Accounting rule

    Hi gurus,
    we are implementing project module with the financial.
    We need to customise the Project Supplier Invoice Account Generation.
    We are preferring the Sub Ledger Accounting generation rule in place of the workflow method(where we need to customize the default workflow for account generation from AP to PA).
    We have done the setup for the SLA to generate accounting (from AP invoices TO pa). But still we are getting the same error("the system cannot generate distributions for line 1 because payable account function Project supplier invoice charge account has not been customized. please replace the dummy function in default account generation process"
    Please help me.. to solve the problem..
    As Its a very urgent customization on the verge of going live..
    thnkz in advance
    Regards
    Vishal

    Hi
    Customizing the Payables and Purchasing Account Generator for project related documents is mandatory. The accounting rules in SLA is optional.
    Since you said you are pleased with the set up of the accounting rules by SLA, you might set up a very simplistic account generator rule, so it will generate a constant account. SLA will later on override the constant by the real rules.
    Dina

  • Receiving an account not verified message on ipad 2, iphone 4, and pc

    I am receiving an "account not verified" message when I go to icloud on my ipad 2, iphone 4, and pc (all have ios5).  It requests I check my email but I never receive one.  My Appleid and password are correct because I can go to my itunes account and buy apps, music, books, etc.  How do Iv verify my account?

    This same problem is happening to me. I bought the Lion update, updated IOS 5 etc and no verification email ever arrives. I changed my apple id password, which had to be done by sending a verification email and that email arrived immediately. Its starting to become really frustrating and really disappointing from mac
    The verification email for icloud never arrives???? Someone help?????

  • HT1918 Why haven't I received my account verification email yet?

    Why haven't I received my account verification email yet?

    We are fellow users, we won't know. You entered the correct email address on your iTunes account, and you've cehcked the spam folder on the account as well as the inbox ? Are you still on the screen where you can request that it be resent ?
    http://support.apple.com/kb/HT5622 :
    ... You can also verify by signing in at My Apple ID

  • HT4436 I cannot receive my account verification email...Ive checked email addresses etc numerous times

    I cannot receive my account verification email...Ive checked email addresses etc numerous times

    Welcome to the Apple community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account.

Maybe you are looking for