Error mesage for EA21, EA00, EA13 transactions

Hi,
We have a critical issue regarding transactions EA21, EA00, EA13 etc.
This issue is related to SAP IS-U functional configuration.
Issue details:
when using the transaction ES21 to change contract, we cannot move from the first page to the next one,
the error message EDER 052 ("Payment class X from Z is not allocated to service provider A or B") appears.
However, the payment class is defined for one of the service providers mentioned in the message;
In SAP version 4.7, it's working good but in ECC6 this message is being displayed.
Our technical analysis:
include: LES20I01
Function module: ISU_O_CONTRACT_PAI_AFTER is returning SY-SUBRC as 1 in ECC: Hence throwing the message.
But, where as in SAP 4.7 system, sy-subrc is 0 and hence message is not displayed.
This is related to functional configuration in SPRO.
We have raised request in SAP service market place. We have got the following response from SAP.
There is a missing customizing for grouping characteristics for aggregated contract account.
Intercompany Data Exchange
Bill Issue (Aggregated)
Outgoing Bills
Define Grouping Characteristic for Aggregated Contract Account
Please take the necessary customizing for grouping characteristics and test again transaction ES21.
Could any body can help us to follow the necessary steps for the customization.
Edited by: KPREDDY4 on Oct 17, 2011 3:34 PM

Hi,
Could not find much about this new customization as this is newly added in ECC 6.0 and was not a part of SAP 4.7.
Define Grouping Characteristic for Aggregated Contract Accou
Use
In this activity you define the grouping characteristics for aggregated contract accounts. You can define multiple grouping characteristics.
This allows you to define several aggregated contract accounts for one service provider pair within the service provider agreement for the INV_OUT deregulation process.
At least one of the grouping characteristics within a service provider agreement must be indicated as Default. The aggregated contract account allocated to this grouping characteristic is then always used, provided the customer does not override it.
Event R207 is used to determine the aggregated contract account.
Requirements
Existing service provider agreements may have to be converted, in order to be able to use several aggregated contract accounts. You can use the REDEREGPARA_001 report for this purpose.
Thanks.
Ravi

Similar Messages

  • Got error - You must supply payment terms for your non -credit transaction

    Hi Experts,
    Recently we upgraded the 11.5.8 Instance to 11.5.10.2.
    we have one customized application which is related to recievables.
    If we submit Surcharge demand generation request it has completed with error.
    but in ra_interface_errors_all table i'm seeing the error like You must supply payment terms for your non -credit transaction in message_text column.
    we ran the profile option migration report concurrent request for product specific task after upgradation.
    due to this issue we cant able to run the demand generation request.
    Please help me to solve this issue.
    Thanks
    R.Sundaravel

    have a look at Note 178298.1 & 331099.1!!!
    HTH
    Prashant Pathak

  • Hide the selection criteria for EA21 transaction

    hi,
    Good day guys
    Hope every one is doing well. I need to hide the selction criteria for EA21 Transaction code. Plz let me know how to do it with out disturbing the standard code?
    Regards
    KK

    Hello,
    If they are not mandatory for the selection you can just hide them using Transaction Variant (SHD0). See Online sap help for transaction variant.
    Regards,
    Karthik D

  • When I try to launch itunes I get an error mesage saying that Apple application support was not found and suggests that I uninstall and re-install it, but that doesn't work

    When I try to launch itunes I get an error mesage saying that Apple application support was not found and suggests that I uninstall and re-install it, but that doesn't work

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    Start with the section Install missing components which should address your particular error. Otherwise the steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT) as you start iTunes, then going to Edit > Preferences > Store and turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    tt2

  • Error FI/CO interface: Balance in transaction currency from BAPI BAPI_ACC_DOCUMENT_POST

    Hi All,
    We are facing error FI/CO interface: Balance in transaction currency from BAPI BAPI_ACC_DOCUMENT_POST.
    This error we are getting only in case of passing tax data.
    Can anyone help me on this.
    Below is the code :
       *fill header
    gd_documentheader-username   =  sy-uname.
    gd_documentheader-header_txt = 'Test'.
    gd_documentheader-comp_code  = p_ccode.   "SQ
    gd_documentheader-doc_date   =  sy-datum.
    gd_documentheader-pstng_date =  sy-datum.
    gd_documentheader-doc_type   = 'KR'.
    gd_documentheader-ref_doc_no = p_xblnr. "SQ
    *gd_documentheader-bus_act = 'RMWE'.
    city = p_city.
    state = p_state.
    zipcode = p_zip.
    *get tax juridisction code
    IF NOT ( city     IS INITIAL ) AND
       NOT ( state    IS INITIAL ) AND
       NOT ( zipcode IS INITIAL ).
      SELECT SINGLE rfcdest INTO ttxd-rfcdest FROM ttxd
       WHERE kalsm = 'TAXUSX'.
      CLEAR x_com_jur.
      REFRESH t_com_jur.
      x_com_jur-city     =  city.
      x_com_jur-state    =  state.
      IF zipcode+5(4) EQ space.
        zipcode+5(4) = '0000'.
      ENDIF.
      CONCATENATE zipcode+0(5) '-' zipcode+5(4)
             INTO x_com_jur-zipcode.
      x_com_jur-country  = 'US'.
      CALL FUNCTION 'RFC_DETERMINE_JURISDICTION'
        DESTINATION ttxd-rfcdest
        EXPORTING
          location_data    = x_com_jur
        IMPORTING
          location_err     = x_com_err
        TABLES
          location_results = t_com_jur.
      IF sy-subrc = 0.
        READ TABLE t_com_jur INTO x_com_jur INDEX 1.
        it_accountgl-taxjurcode =  x_com_jur-txjcd.
      ENDIF.
    ENDIF.
    *fill AP (line 1) - vendor related data
    SELECT SINGLE zterm FROM lfb1 INTO p_zterm WHERE lifnr = p_lifnr.
    it_accountpayable-itemno_acc = 1.
    it_accountpayable-tax_code = p_txcd.
    it_accountpayable-pmnttrms   = p_zterm. "SQ
    it_accountpayable-vendor_no  = p_lifnr. "SQ
    *it_accountpayable-item_text = 'S2P Testing in UDR1'. - SQ
    it_accountpayable-pymt_meth = p_pmet. "- SQ
    APPEND it_accountpayable.
    *fill GL (line 2)
    it_accountgl-itemno_acc      =  2.
    *item_text - sq
    IF p_asset IS NOT INITIAL.
      TABLES : anlz,
               anla.
      SELECT SINGLE * FROM anlz  WHERE anln1 = p_asset.
      SELECT SINGLE * FROM anla WHERE anln1 = p_asset.
    *concatenate '00' anla-KTOGR into it_accountgl-gl_account .
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = anla-ktogr
        IMPORTING
          output = it_accountgl-gl_account.
      it_accountgl-asset_no = p_asset.
      it_accountgl-sub_number = '0000'.
      it_accountgl-cs_trans_t = '105'.
      it_accountgl-acct_type = 'A'.
    ELSE.
      it_accountgl-gl_account      = p_gl.
      it_accountgl-costcenter      = p_cc.
      it_accountgl-wbs_element     = p_posid.
    ENDIF.
    it_accountgl-comp_code       = p_ccode.
    it_accountgl-tax_code = p_txcd.  "SQ
    it_accountgl-pstng_date      =  sy-datum.
    it_accountgl-fisc_year       =  sy-datum(4).
    APPEND it_accountgl.
    CLEAR it_currencyamount.
    *fill currency ammounts for lines 1 & 2
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-itemno_acc  = 1.
    *it_currencyamount-amt_base =  -1.
    it_currencyamount-amt_doccur  = - 116. "p_totamt.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    it_currencyamount-tax_amt  = - 16.
    APPEND it_currencyamount.
    CLEAR it_currencyamount.
    it_currencyamount-itemno_acc  = 2.
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-amt_doccur  = 100.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    *it_currencyamount-amt_base =  100.
    *it_currencyamount-TAX_AMT =  -10.
    APPEND it_currencyamount.
    *tax data
    it_accounttax-itemno_acc = 3.
    it_accounttax-tax_code = p_txcd.
    it_accounttax-gl_account = '0023110000'.
    *it_accounttax-gl_account = p_gl.
    it_accounttax-TAXJURCODE = x_com_jur-txjcd.
    it_accounttax-acct_key = 'NVV'.
    it_accounttax-cond_key = 'XP2I'.
    **it_accounttax-direct_tax = 'X'.
    APPEND it_accounttax.
    CLEAR it_currencyamount.
    it_currencyamount-itemno_acc  = 3.
    it_currencyamount-currency    = p_waers.  "SQ
    it_currencyamount-amt_doccur  = 16.
    it_currencyamount-CURRENCY_ISO = 'USD'.
    it_currencyamount-amt_base =  100.
    it_currencyamount-TAX_AMT =  - 16  .
    APPEND it_currencyamount.
       CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = gd_documentheader
    IMPORTING
       obj_key                 = wa_obj_key
      TABLES
       accountgl               = it_accountgl
    *   ACCOUNTRECEIVABLE       =
       accountpayable          = it_accountpayable
       accounttax              = it_accounttax
        currencyamount          = it_currencyamount
    *   CRITERIA                =
    *   VALUEFIELD              =
    *   EXTENSION1              =
        return                  =  it_return
    COMMIT WORK.
    Regards,
    Priyaranjan

    Hi,
    Reason 1:
    An revenue-recognition-relevant item has several active conditions whose values cancel themselves so that a net item value of 0 results. The conditions have both the same revenue account (SAKN1) and the same clearing account (SAKN2).
    For these conditions, the system writes a line with value 0 into the temporary FI/CO interface (internal tables: CACCIT, CACCCR). If table VBREVK does not contain control lines for this line, no further processing occurs and the line remains in the temporary FI/CO interface. Then the system reads this line for the creation of the next billing item which conatins a net value and generates a posting line with value 0. As a result, there is a balance in the FI/CO interface, and the billing document cannot be transferred.
    Reason 2:
    The billing document contains at least one item with an item category for which there is a setting stipulating that the values of this item should not be transferred to the header total of the document.
    That is, in the maintenance of the item categories, this item category has the characteristic 'X' or 'Y' in 'Statistical value' field.
    Reason 3:
    Case: Billing document contains items without pricing conditions.
    Then, on release to accounting, error RW022 occurs.
    regards,
    Saju.S

  • Document parking is not defined for special G/L transactions

    Dear All,
    I want to post a document with a special G/L indicator in F-65 . But I got an error message  FP030 - Document parking can not be carried out . 
    Is anyone to got this message ?
    Thanks
    Dash

    Dear Erdif,
    this is right, you can not make document parking for  down  payments and bills of exchange.
    But It is possible for Sp.GL indicators with Sp.GL transaction type "OTHERS"  (look in FBKP  select SPGL indicators and select button  Proporties)
    Best Regards
    Your error message should be same like this below one:
    Special G/L transactions not defined for bills/exch.and down pmnts
    Message no. FP030
    Diagnosis
    You have selected a posting key with a special G/L indicator of type 'Bill of exchange', or 'Down payment'. Document parking is not defined for special G/L transactions of the type 'Bill of exchange' or 'Down payment'.
    System response
    Document parking cannot be carried out.
    Procedure
    Select a different posting key or special G/L indicator. If the posting is a 'One-time posting' to a rent contract, select a different transaction type or post the document directly.

  • Initial Load Error - No generation performed. Call transaction GN_START

    Hi Folks,
    We are doing middleware configuration for data migration between R3->CRM.Have followed "Best Practies" configuration Guide.
    System Using; CRM 2007 and ECC6.0
    Issue
    While performing initial load, system is throwing the error as
    001- No generation performed. Call transaction GN_START
    002-Due to system errors the Load is prohibited (check transaction MW_CHECK)!
    After calling the transaction GN_START system asks for job scheduling,whereas I have already scheduled it.
    A job is already scheduled periodically.
    Clicking on 'Continue' will create another job
    that starts immediately.
    After checking(MW_CHECK),message is displayed as
    No generation performed. Call transaction GN_START.
    If anybody has encountered the similar issue and has resolved it,their guidence will be greatly appriciated.
    Thanks in Advance
    VEERA B

    Veera,
    We also faced the same problem when we have done the upgrade from CRM 4.0 to CRM 2007.
    For that you go to SMWP where you can see all the errors related to Middleware with the error message so try to remove the error,
    Also pls check in RZ20 and activate the middleware trace tree.
    Regards
    Vinod

  • How to Config Special Error Page for TIME OUT ONLY

    We can config our own error page for webdynpro applications by using
    transaction code SICF. thus the customizing error page will show when
    program meet some errors. these errors type include ABAP runtime
    dump/page time out etc.
    Here is my question, is there any configuration or enhancement can
    effect on ONLY ONE error type.which means the customizing error page
    shows only time out error occurred.for other errors show the standard
    error page.
    Thanks a lot for your help.

    I need to setup a situation, that is display a custom error page which say "under maintenance" if no back-end WebLogic Server instance reached.In the Apache HTTP Server v2.2 you can use the ErrorDocument directive: http://httpd.apache.org/docs/2.0/mod/core.html#errordocument
    For example in httpd.conf,
    ErrorDocument 503 /Test.html
    Test.html is placed in the DocumentRoot (http://httpd.apache.org/docs/2.0/mod/core.html#documentroot)
    Regards
    Fabian

  • Create RFx Response: An error occurred in the PD Layer transaction terminated

    Hello Experts,
    Currently we are in SRM 7.02 implemenation: we are facing below problem while creating RFx response with popup screen.
                             "An error occurred in the PD Layer transaction terminated"
    For this we have checked below
    1. http://scn.sap.com/thread/1912966    ----> it didn't help
    2. We have assigned SAP_ALL role to bidder also ----> Facing same issue
    3. Check Number ranges ---> everything is fine.
    there is no clue from above points.
    Thanks & Regards
    Sandeep.

    Hello Sandeep,
    I am facing the same problem while creating the RFx response in SUS side. Same error occurred while i am creating the Rfx response with bidder.
    error: An error occurred in the PD Layer transaction terminated
    Could you please let me know, did you find any solution for this issue?
    Thanks in advance!!
    Thanks,
    Anil

  • An error occurred in the PD layer; transaction terminated in SC

    Hi experts,
    I have an issue like this "An error occurred in the PD layer; transaction terminated". This error came when i save Shopping Cart.
    Just for the information, I have maintained number range assignment for BUS2121 - Shopping Carts also.
    And I am working on SRM 7.0
    Do you have any idea to solve this issue?
    Thanks,
    Rhesa Syahrial

    Hi Sam,
    Thanks for your fast reply.
    Below is the error analysis from st22.
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_BBP_PD_ABORT', was not caught and
    therefore caused a runtime error.
    The reason for the exception is:
    Buffer table not up-to-date
    I have checked in sapnote also about this issue. but still not resolved.
    Regards,
    Rhesa Syahrial

  • Document Parking for Spl. GL Transactions

    Hi!!!
    I am trying to Park Document where in one line item Spl. GL Indicator is used.
    System is giving Error Message where it says -
    You have selected a posting key with a special G/L indicator of type 'Bill of exchange', or 'Down payment'. Document parking is not defined for special G/L transactions of the type 'Bill of exchange' or 'Down payment'.
    Is there specific setting where we have to define Document Parking for Spl. GL Transactions?
    Thanks & Regards..
    Ameya...

    Hi Anitha,
    SAP does not plan to develop document parking with special G/L indicator for down payments.
    It is not possible to park any FI documents that contain a line item for down payments as it is not developed.
    As in standard R/3, the standard function is as follows:
    You can park data relating to customer, vendor, G/L and asset accounts There is an additional fast entry function for G/L accounts. Both tax information and special sales can be parked. However, no special sales resulting from bills of exchange or down payments can be parked.
    The above documentation can be found via R/3 Library > AC - Financials > Accounts > FI - Financial Accounting > Accounts Receivables > FI Accounts Receivable and Accounts Payable > Document Parking > Parking documents : Overview > What data can you park ?
    Regards
    Ravinagh Boni

  • Exception message 26, (only warnning not an error mesage).

    Dear Experts
    my environment is MTO, which generates a huge number of production orders daily with a big number of exception messages which some times are not enough to adopt the PP activities on the system,
    in the case of  (Procurement type:X) which the planned order for a HALB or FERT, material can be produced internally or procured externally, i can partially convert a part of the total quantity into a production order or a purchase requisition  and so the remaining qty,  into any of the both procurement proposals.
    now if the total quantities of the partially converted production orders and purchase requisition, is exceeding than the planned order qty, i am getting the exception message 26, (only warnning not an error mesage).
    my requirement: i want the system to restrict users to covert the planned order into a production order or a purchase requisition if the total quantities of all the partially converted production orders and purchase requisitions are exceeding more than the original planned order quantity.
    Example:
    planned order qty, is 10 EA, if i convert a qty, of 3 EA into a partial production order and another qty, with 4 EA into a purchase requisition,
    system must restrict me to convert the remaining qty, into a production order or a purchase requisition  if i changed the qty, to a qty, exceeds more than 3 EA.
    Thanks in advance.

    Ahmed,
    Exception message 26 is neither a warning nor an error.  It is an alert that a certain business condition exists (excess stock in a segment).  The general rule for exceptions is that it is up to the planner to determine the significance, and to use your company's business rules to react accordingly.
    The solution to your stated requirement does not exist in standard SAP.  To me, it makes no sense to lock the system down in this way.  Message 26 can come from overconversion, but it can also come if the requirements are reduced.
    If you still feel that this functionality must be implemented, I would suggest this partial solution, that uses standard functionality.  Have your planners perform only the conversions of the plndords to firmed purchase reqs, for a given time frame, all at one time, and decline to convert the remaining balances to production orders. Then, re-run MRP with delete/recreate.  This will create planned orders for exactly the balance(s) required.  Then, you could immediately use the standard mass program to convert the 'balance' Planned orders to Production orders.  The mass conversion could be the second step of an auxiliary MRP job.
    If you insist that the requirements must be met using the method you indicated above, then it implies that every program that could be used to convert a PlndOrd to something else must be modified.  I don't think I would attempt this unless there were no other possibilities.
    Best Regards,
    DB49

  • REGARDING ERROR MESAGE TRIGGER WHILE MAKING P.R AGAINST WBS ELEMENT.

    Dear FI/CO & PS Consultants,
                                                    in which node shell i have to configure  for getting the error message while creating the PURCHASE REQUISITION when  my budget is excedding.
    Actually i  craeted WBS ELEMENTS and budgeted. I created a PURCHASE REQUISITION and assigned the components , where the cost of all the components is higher than the budget assigned to WBS ELEMENT. But i am not getting the error message.
    Kindly do need full.
    Kindly send me the details to pardha at raincii.com
    Regards,
    Pardhu

    Hi,
    Please refer to the following informational notes that will explain the functionality:                                                                               
    Note: 178837 - Explains why BP604 appears/does not appear.                       
    Note: 783161 - Logic Explanation when AVC is appears not working                 
    Note: 873977 - Controlling elements in availability control                      
    Note: 166394 - Tolerance Limits information                                      
    Note: 1160675  Availability check, commitment carr. fwd. and budget           
    152571 -missing or wrong commitments
    459509 - commitments in purchasing
    634298  - commitment update in services
    772206
    See also note 47992  for checking the commitment activation for projects. 
    In transaction CUNI, the unit of measurements used at item level         
    must be set to value based commitment.                                   
    Regards,
    Edit

  • Error:Set by Host Name:CRMDEV;Transaction:R3AS:SMOF_DOWNLOAD

    Hi Folks,
    I am trying to replicate BP  from CRM to R/3.All the Mappings from CRM to R/3 are already maintained.Also I have created the subscriptions and publications for R/3 in Admin Console.All the RFC Connections are working correctly. When I checked the SMQ1 in CRM I got the following error:
    Set by Host Name: CRMDEV;Transaction R3AS:Report:SMOF_DOWNLOAD.
    Can anyone guide me how to solve this issue?
    Thanks.
    Sudhan

    Hi All,
    Solved this issue myself.
    Basically no need to worry about this queue message.
    1) I done set the filter for EQUIPMENT in t-code R3AC1
    2) Customer Relationship Management --> Master Data --> Installed Base --> Replication of technical objects from SAP ERP --> define default setting for Replication or equipment.
    Site name - ERP logical system name
    IBase Category - EQ
    Obj.Family - 0401
    Category ID - MAT_Z401 (Important note is this category is created under R3PRODSTYP hierarchy, under MAT_ category). Equipments in ERP also should create using this Category, then only the equipments will be downloaded)
    Delta down load checked
    3) Go to R3AS and select load object as EQUIPMENT and start
    4) you can see the IBASE in CRM using IB53 or using the webUI search.
    Thank you and Regards,
    Niranjan

  • Error Handling for Outbound IDOC - COSMAS (Cost Center Master)

    Hi,
    I need to trigger a mail to SAP inbox whenever a outbound idoc fails for any reason.
    I know how to do it for inbound or outbound transaction data, but not sure how to do error handling for outbound master data.
    Could one of you help me understand the same.
    Thanks in Advance,
    Vinoth

    Hey Vinoth,
    Do you want decide the recipient of the mail dynamically? am asking because if you give the USER NAME in the partner profile and when ever a IDOC fails a mail will automatically reach the user inbox automatically
    let me know if i answered ur question.
    Thanks,
    Santhosh

Maybe you are looking for