Accounting doucment not get created for Credit Memo

Hi
    When creating a cancellation doucment(vf11) for credit memo accounting document not get created.While I go for analysis then it is determining the G/L account.But not getting created the accounting doucment.
When i select "Release to accounting" then it is giving a message like this:
"Automatic clearing of billing document 951
and canc. doc. 90000572 not poss."  as informatiion first
and then later it is throwing an error message that "maintain correct number range"
While for the same material or earlier cancellation happened and accounting doucment get created.
Please help me out;How would i get this solved?
Thanks in advance

Hi,
You may also check for Number Range - Maintainance & Assignment.
T. Code: SNRO
Table/ View: RV_BELEG
Here, Mantain Number Range.
To Assign,
T. Code: SM30
T.Code: Bill_Num (or select if different in your case)
Assign No. range to your combination of Sales OrgDist.ChannelBill Type i.e. for Cancelled Billing Doc. Type
To Maintain Number Range for Accounting Documents,
T. Code: FBN1
Best Regards,
Amit

Similar Messages

  • Extension folder is not getting created for firefox 4 in Mac OS

    in Mac OS 10.6, 10.5, extension folder is not getting created in the profile for the firefox 4.0. Where as in Firefox 3.6 when you launch the firefox first time, profile folder is created and extension folder is also part of that.

    That extensions folder will only be created if there are extensions found that need to be installed. If there are no extensions then Firefox doesn't create an empty extensions folder.<br />
    On Windows there is a lot of security software that installs extensions globally.
    * https://developer.mozilla.org/en/Installing_extensions
    * https://developer.mozilla.org/En/Developer_Guide/Customizing_Firefox
    * https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry

  • Inspection lot not getting create for 01 Insp type after Intransit

    Hi Qm Gurus,
    I have a Material 'A' which is producing in the plant IN05 and transferring to IN06 plant. We have Scheduling agreement PO for this. After Scheduling Agreement we are doing Transferring the Goods thro 351 GI Movement type. So now the parts will be there in transit.
    So now when I receive this goods in IN06 thro 101 MT, Insp lot is not getting create, it goes to Unrestricted. If I create a std PO for the same when I receive the goods thro 101, it is posting into Insp lot. But after 351 & if I do 101 material is not going into Inspection. Pls advise.
    I checked the Insp type 01 Active for IN06, Quality info record is fine, Quality plan also fine. Pls let me know whether i am missing something?

    Hi ,
    Please activate inspection type 08 stock transfer ..
    If this inspection type is active then during stock transfer lot gets generated.
    Also check QM active for this perticular movement in custamizing setting.
    Regards
    SANIL

  • AR Deposit Unpost Accounting entries not getting created.

    Hi,
    We are working on FSCM 8.4, PT 8.42. Due to some Issue in AR UPDATE , The InterUnit Accounting entries didn't got created for AR Payment. Hence we Unposted the Payment. The Payment got Unposted but there were no Accounting entries created for the Unpost.
    What can be the possible reason for this?
    Can anybody explain me how an accounting entries are created for payments, When we press the Create/Review Accounting Entry Button ?
    Regards,
    Satish
    8010019437

    Few more notes, the user created a CM today without issue and in reviewing the WF attributes have the same field:
    Invalid Rule Value:  "*** NOTE: THE RULE ENTERED IS NOT VALID, PLEASE ENTER IT AGAIN."
    But CM got created successfully.  Looks like code is doing a loop with the same generic message and main error log field is the "Credit Memo Creation Error:"

  • Accounting documents not getting generated for mvt. type 221 Q

    Hi friends,
    When goods are issued for consumption for project accounting documents are not getting generated.
    I have tried with mvt. type 412 Q, 211 Q,
    by mvt type 412 Q, the stock is transfered to project stock, it shows the stock of material in project stock, by movement type 211 Q the project stock gets consumed. So at the time of consumption of consumption account should hit and relevent accounting document should get generated. this is not happenning.
    When i check material document and check for accounting document, message flashses that movement is not rrelevent for accounting.
    Can any one throw more light on this?
    Thanks and regards
    SAP MM

    Hi,
    Please check in PO item details Delivery tab. In that GR Non-valuated checkbox might be checked.Generally for account assignment category asset it is ticked.
    If you tick GR non-valuated check box then at the time of GR accounting document will not be created.Accounting document will be created only at the time of IR.
    or
    Have you mantained Chart of accounts.
    have you mantained Valuation area settings
    Transaction event key
    Valuation class settings.
    Check your material master data in accounting view have mantained Valuation class.
    Check your back ground settings OMWN.

  • Freight should not get reversed during credit memo

    Hi Experts,
           I Have a purchase order with planned delivery costs for e.g. say freight of some value and Goods receipt is posted and invoice is posted with freight. But our customer needs that when they perform the credit memo freight should not be reversed. How to perform this
    Regards
    Badri

    HI Badri
    can create credit memo without freight cost
    1) in MIRO choose Cedit memo
    2) in indicator choose only  goods/service items
    (if want to rasise credit memo for both material cost and freight need to choose goods/service items + planned delivery cost)
    3) then both material cost and freight cost will display, here need to deselect freight cost.
    4) now post. credit memo would have posted for only material cost.
    Regards
    karan

  • Spool list is not getting created for background job

    I am creating background job using JOB_OPEN and then submitting my z-report using submit statement and then closing job using JOB_CLOSE. for this job is getting creating in sm37 and also gets finished but it does not create spool list showing output.
    Any idea how to do this?
    Thanks in advance.

    DATA: lv_jobname TYPE tbtcjob-jobname,
            lv_jobcount TYPE tbtcjob-jobcount,
            lv_variant TYPE variant,
            wa_var_desc TYPE varid,
            wa_var_text TYPE varit,
            it_var_text TYPE TABLE OF varit,
            it_var_contents TYPE TABLE OF rsparams.
      REFRESH: it_var_contents, it_var_text.
      CLEAR: wa_var_desc, wa_var_text.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-cprog
        TABLES
          selection_table = it_var_contents
        EXCEPTIONS
          not_found       = 1
          no_report       = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CONCATENATE sy-datum sy-timlo INTO lv_variant.
      wa_var_desc-mandt       = sy-mandt.
      wa_var_desc-report      = sy-cprog.
      wa_var_desc-variant     = lv_variant.
      wa_var_desc-transport   = 'F'.
      wa_var_desc-environmnt  = 'B'.
      wa_var_desc-version     = '1'.
      wa_var_desc-protected   = 'X'.
      wa_var_text-mandt = sy-mandt.
      wa_var_text-langu = sy-langu.
      wa_var_text-report = sy-cprog.
      wa_var_text-variant = lv_variant.
      lv_jobname = lv_variant.
      CONCATENATE 'Batch Job Variant -'(006)
                  sy-uname INTO wa_var_text-vtext.
      APPEND wa_var_text TO it_var_text.
    Create the varaint for the back ground job.
      CALL FUNCTION 'RS_CREATE_VARIANT'
        EXPORTING
          curr_report               = sy-cprog
          curr_variant              = lv_variant
          vari_desc                 = wa_var_desc
        TABLES
          vari_contents             = it_var_contents
          vari_text                 = it_var_text
        EXCEPTIONS
          illegal_report_or_variant = 1
          illegal_variantname       = 2
          not_authorized            = 3
          not_executed              = 4
          report_not_existent       = 5
          report_not_supplied       = 6
          variant_exists            = 7
          variant_locked            = 8
          OTHERS                    = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Open the job.
      CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    submitt the job in background mode.
      CALL FUNCTION 'JOB_SUBMIT'
        EXPORTING
          authcknam               = sy-uname
          jobcount                = lv_jobcount
          jobname                 = lv_jobname
          report                  = sy-repid
          variant                 = lv_variant
        EXCEPTIONS
          bad_priparams           = 1
          bad_xpgflags            = 2
          invalid_jobdata         = 3
          jobname_missing         = 4
          job_notex               = 5
          job_submit_failed       = 6
          lock_failed             = 7
          program_missing         = 8
          prog_abap_and_extpg_set = 9
          OTHERS                  = 10.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    close the job.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = lv_jobcount
          jobname              = lv_jobname
          strtimmed            = 'X'
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          invalid_target       = 8
          OTHERS               = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Hope this will be helpful..

  • Item Cost Not Getting During AR Credit Memo......

    Hello Experts..............
              How can I get the Item Cost during after Ar Credit Memo. i'm unable to get it. Pleasev help me. I'm in urgency......
    Thanks & Regards,

    Dear Sir.......
                Sorry Thanga Raj Sir its not like that.
                              My Situation is something different. My scenario is as under:-
    1) I am purchasing old gold(Item Old gold) of 100 gms from A(My customer) @ 1450/-.
    We want the purchase a/c debited with 145000 and credited to customer with 145000/-
    At the same time quantity of OLD Gold item to be increated with 100 gms quantity and value 145000 with cost of 1450/-
    2) But we found that the journal entry of debiting purchase and credititng party come ok, but the item quantity  increased with out updating the item cost
    3) Once i get the item cost update, then i need to process the old gold and make refined gold as special production.
    Hope now the concept is more clear & Request to help.
    Thanks in advance.
    Rahul

  • Profile class not getting created for new site for existing customer.

    Hi,
    I am creating a new site address for an existing customer using Customer Interface in oracle apps 11.5.10.2. The issue is the profile class is not getting assigned correctly at site level. It is getting defaulted with the profile class of the customer. Below is the data that I am inserting in RA_CUSTOMER_PROFILES_INT_ALL
    INSERT INTO ra_customer_profiles_int_all
    (orig_system_customer_ref
    ,orig_system_address_ref
    ,insert_update_flag
    ,customer_profile_class_name
    ,credit_hold
    ,org_id
    ,last_updated_by
    ,last_update_date
    ,created_by
    ,creation_date
    ,last_update_login
    )VALUES
    (x_orig_system_reference -- This is old customer reference as he already exists in the system
    ,x_address_ref -- This is a new address reference
    ,'I'
    ,rec_cust_det.customer_profile_class_name -- In the file I am giving it as 'ABC1' but it is getting defaulted with 'DEFAULT' which belongs to customer profile class at the header level
    ,'N'
    ,fnd_profile.value('org_id')
    ,fnd_global.user_id
    ,SYSDATE
    ,fnd_global.user_id
    ,SYSDATE
    ,fnd_global.login_id
    Can anyone please help me how to resolve this issue. Hope you understood. Otherwise please let me know.
    Regards
    Dev

    Please apply patch 4649221 to get this work.
    Regards
    Dev

  • Accounting doc not getting created

    Dear All,
    While releasing the billing doc to accounting i am getting the following message- 'Field text is a required field for g/l account xxx 89000'. xxx is the company code.
    Also when i go for the explanation of this it says-
    'The value for field "Text" in the interface to Financial Accounting is an initial value but you are required to make an entry in the field selection for G/L account "89000" in company code "701" linked to the field selection for posting key "50"'.
    Thanx in advance.
    Regards,
    Pankaj

    Hi Pankaj,
    First u can check the G/L a/c Field status group in FS00 then go to OBC4 in that based on ur g/l a/c field status group u will put it optional  particular fields whtever u want
    OB41 in posting keys Fields status grp maintain optionals
    Regards
    Madhu I

  • Accounting document not getting created

    Hi..
    I am trying to post transaction in SAP R3 in inventroy management but system is unable to generate any accounting documents. is there any way out..where i have to activating any settings,
    Suggestions will be worth rewarding.

    Dear Baig,
    Please check following settings.
    1) Accounting View created in Material Master
    2) For thsi material type whether Quantity & Value updation is dine in Basic setting for Material Type in SPRO
    You have to do setting in two places in SPRO  under material Master - Basic setting -Define attributes for material type
    1) When you select material type detail screen  click  radio button under value updating .
    2) Then go to subfolder -Qty & value updating & choose your valuation area ( plant or company code) & ensure that value update radio button is  clicked.
    This will solve your problem,
    Reward suitably,
    Vivek Maitra

  • One Step GI - GR is not getting created for an STO

    Good Morning All,
    Actually we have made a setup that whenever we create a Goods Issue for STO type (UB - PO ) in the supplying plant we are creating the GR in the background . WE have made the configuration in SAP R/3 version 4.6c with One STEP Movment, that is when we create the GI (351 ) movment then GR (101) should be created automatically. Actually its not working properly. And sometimes it creates the GR with the USer as WF-BATCH.
    Let me know where exactly I need to check for the failure.
    In such cases if there is error in the background process, means, is there any transaction where it shwos the authorization or other failures happened to the system.
    Advance thanks....
    regards,
    Sabari Prabhu.

    Dear Venkadesh,
       Which Batch job should i need to check for this.Because I am not seeing any batch job relatred to that.
    Regards,
    Sabari Prabhu.

  • Transport not getting created for certain SPRO settings in Golden client

    Hi,
    Currently we are in the realization phase of the project ,we are in the process of configuring system in golden client.
    For some SPRO configurations ,the system is not prompting for the Transport request.
    Kindly let me know if anybody had gone through similar kind of issue.
    Regards,
    mmuser
    Edited by: mm Keyuser on Dec 30, 2009 5:34 AM

    Hi,
    Please check for the configurational table for which you are facing problem, its delivery class should be "C" under delivery & maintenance.
    You can get it checked by your ABAP team.
    hope this will help.
    Regards,
    AK

  • Delivery not getting created for Stock Transfer Purchase order

    Hi,
    My user having one issue with stock transfer order. User is not able to generate the delivery for the particular material against stock transfer PO. Here checking rule is not maintained.Kindly advice.

    Hi
    Please, see SAP Note 498143 - FAQ: Stock transfer with delivery in purchasing.
    I hope this helps you
    Regards
    Eduardo

  • Required attribute not getting created

    Ok, here is a wierd one.
    I have some custom ID management code (an SSO plug-in cert mapper and a WAR file I deploy to OC4J_SECURITY). The application provides a registration process that creates user entries and RADs for Oracle Forms app users. Everything works fine, except that I have found that my RAD creation does not get the orclresourceviewers attribute created automatically.
    This has worked in my IM development farm. The attribute would be created automatically. It was difficult to figure out this was the reason my Forms App Server would fail with the following exception.
    oracle.ldap.util.AccessDeniedException: General Error when performing search: getExtendedProperties [LDAP: error code 50 - Insufficient Access Rights]
    I have gone through the motions of now preparing to query the OID Forms ID so that I can fill in this attribute in my RAD creation class. I still would like to know why this attribute is not getting created for me anymore.
    Any ideas?
    Oh and BTW, it did not help that orclresourceviewers is not documented anywhere I could find (not OID Admin and not Forms Deployment Guide)
    regards,
    tt

    Hi Sandeep.
    Yes, my application entities that I set up to manage a specific realm are used to create all RADs in a particular realm. As part of the setup for this I add these application entitites to the following three realms:
    cn=OracleDASAdminGroup,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    cn=RealmAdministrators,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    cn=UserProxyPrivilege,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    I add to these so that the app entity could create, modify, delete and proxy to any realm user. I had to create an ACI to allow my entities to search and see the Forms Server application entity entry in order to populate orclresourceviewers.
    I just wish I new why orclresourceviewers does not get created automatically. Of course, if I create the RAD in DAS or using the Oracle DynamicResourceCreate option, it is added. It has added it in my own RAD creation code at one point and it stopped for some reason.
    I had to add an LDAP search to my RAD creation code with the possibility of multiple Forms Server entries (Logical Application Group) just in case. Much ado for something that maybe should not have been necessary.
    regards,
    tt

Maybe you are looking for

  • How do I save iCal to a flashdrive?

    I used iCal for the first time on my Mac this week. I made a calendar of my schedule for the next 4 months to give to my boss. I have no printer, so I saved the iCal file to my 1GB USB flashdrive. When i went to the library and got on a G5 and pulled

  • Working Around the Mentioned Limitation

    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1574568 This note states the following u2026.. And this is what we have to do in the upcoming requests..... We have to change the BAPI's related to Purchase order c

  • ID, IR error when try to login (JNDI error) during SSL configuration

    I'm in the process to configure SSL on SAP J2EE Engine. I'm following the document of SAP library and "Enabling SSL and client certificates on SAP J2EE Engine" by Angel Dichev of RIG, SAP Labs. I deployed the SAP Java Cryptographic Toolkit and update

  • Resizing issues with widget in iWeb

    hi there, i'm creating a web page in iWeb...and would like to use the mobileme gallery widget to place some pics. I placed the widget on the page and choose my gallery and everything's fine, but I can only scale the box up to 320x260pixels and then i

  • How to change in English?

    好哦