Item selection for account maintenance - Final Bill

Hello,
In the yearly consumption incoice, items opened on customer account are automatically cleared with the invoice at the moment of invoice generation.
Customizing to fix what main transaction must be cleared and included in the invoice is under SAP Utilities>Invoicing>Invoicing processing>Item selection in invoicing> Item selection in account maintenance/Define Sub-items.
This is working quite well for normal consumption invoice but account maintenance is not working at all when i try to make a final bill with R43 clearing type.
Could you please indicate me if an special type of customizing is necessary to clear open items with final bill?
Thanks in advance

hello,
main transaction:0200
sub transaction:0020
Open item selection: "all open items for contract account relating to                        
contract.
"Check out if u have any open items for   invoicing unit"
for sub items,
check out  at Bill Total "Items always included at final amount"
Regards,
Narendar Konaknchi

Similar Messages

  • FICA: Clearing rules for account maintenance & auto clearing to apply credits against unpaid security deposits regardless of due date

    Hi Folks,
    We have a requirement in FICA clearing rules to apply the payment against unpaid security deposit irrespective of the due date. I have the below rule configured as the first step in my clearing variant.
    Grouping String: 019 (statistical indicator); Grp Rule: 3; Char Value: H (security deposits); AIRI: 4;  Group: 019
    Sort characteristic: 010 (Due date); Rank: 3; Char value: H; Rank: 1
    I have maintained the corresponding clearing variant in all the clearing types (account maintenance, automatic clearing, and incoming payments); Clearing rule is working perfectly during payments, however for account maintenance and automatic clearing it's not applying the credits against security deposits first. I still see that the items are cleared only based on due date;
    Am I missing something here? Please share your suggestions.
    Thanks,
    Santosh

    Santosh:
    This rule will not work in account maintenance.  You would need to include the data about the credits into your grouping criteria in order for that to work.  Most clearing rules do not work for account maintenance as they do for payments.  You probably need to have a separate variant with a rule not based on statistical indicator, but rather based on transaction value or maybe create your own custom grouping via TFK116.
    regards,
    bill.

  • Blocking line items while open item selection for clearing

    We would like to block open items with one particular special GL indicator during open item selection for clearing.  The SAP transaction code is F-32
    Regards
    Ramesh Nalamada

    Hi Ramesh,
    Basically, what Meenakshi is saying is that you would have to build a Validation for this using transction code <b>GGB0</b> and stipulate in your condition that whenever any of your intended special G/L indicator is chosen during processing, the system should return an error message saying, for instance "<b>You cannot carry out Manual Clearing for this type of account</b>".
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Activate "Open Item Management" for account, line items posted previously

    Hi SAP Gurus,
    I am having a problem when do a clearing for GL account due to "open item management" check box in Txn FS00 is not activated and only "Line Item Display" is activated. For your info,  there are line items already posted and now we want this GL as an "Open Item Management". We are using ECC 6.0.
    I did referred to a previous posting in this Forums Activate "Open Item Management" for an Asset, line items posted previously but i received these errors when following the solution. The errors are like below:
    *Account 0039091200 is a reconciliation account in company code 5000
    *Company code 5000 is not considered for the activation
    What does it means by these errors? How do i rectify this error?
    Thanking you in advance.
    Regards,
    Nazrul

    Hi,
    1. Executing report RFSEPA02 has a risk and also doubtful since it is not applicable in ECC 6.0 (New GL).
    2. Create a New G/L with Open item management and transfer the balance to the newly created G/L.
    Refer the earlier threads / replies else last option contact SAP (OSS).
    Regards,
    Shridhar

  • Web Item Selection for Characteristic Structures

    Hello experts,
    I have created a web template with a query that has some characteristic structures. When planning functions are executed, I want to restrict the affect against the structures using web item selection (data binding). Is it possible to set data binding for strucures?
    Thank you.

    Hello Gernot!
    Did you find a solution for using row selection in combination with a structure in the query?
    I face a similar situation and one solution I found so far is to use an dropdown-box to make the selection although I would prefer using the row selection-feature as it is more convenient and obvious to the user.
    manuel

  • How to make a rotating Item Select for a GUI design

    Hello, I am working on this non profit GUI project and need to make a high-fidelity prototype with the graphics I created. Most of my experience was in web design and i usually used Axure RP pro for making prototypes which works great for web but this GUI is clearly for a video game and thus some of the way menus work are a bit more sophisticated and "flashy" so I decided to use well, flash. Thing is I have very little experience with the action script side of flash and i just need to get a working prototype out asap, I don't have to make anything work perfectly, just enough to get the point across
    My question is on this rotating item select panel. How would i go about using those glowing orange arrows to rotate the whole set of items around the "equip" button when pressed? and how would I program each item to scale up when it snaps as the selected item? And of course the stats change when the item snaps as well.
    I greatly appreciate any help that can be provided on this.

    kglad wrote:
    buttons have a number of limitations that movieclips do not have.  the only benefit of buttons is that they require no coding for up,over,down states while movieclips do.
    anyway, if your up arrow is up_arrow, down arrow is down_arrow and your guns are gun_0,gun_1 etc:
    // assign x0,y0 etc to match the 5 positions of your weapons.
    var index:int = 0;
    var positionA:Array = [ [x0,y0],[x1,y1],...,[x4,y4] ];
    // click listeners that call rotateF
    up_arrow.addEventListener(MouseEvent.CLICK,rotateF);
    down_arrow.addEventListener(MouseEvent.CLICK,rotateF);
    // function called when arrows clicked
    function rotateF(e:MouseEvent):void{
    // loop through each gun
    for(var i:int=0;i<positionA.length;i++){
    // loop through the gun positions
    for(var j:int=0;j<positionA.length;j++){
    // find the position of each gun
    if(this["gun_"+i].y==positionA[j][1];){
    // once the position of each gun is found, determine whether the up or down arrow was clicked
    if(e.currentTarget.name=="up_arrow"){
    // up arrow clicked, so advance to the next gun position
    var nextJ:int=(j+1)%positionA.length;
    } else {
    // down arrow clicked so go back one gun position
    nextJ = (j+positionA.length-1)%positionA.length;
    // assign the ith gun the next or previous position
    this["gun_"+i].x=positionA[nextJ][0];
    this["gun_"+i].y=positionA[nextJ][1];
    // reset the scale on the enlarged gun by resetting all.
    this["gun_"i].scaleX=this["gun_"+i].scaleY=1;
    if(j==2){
    // enlarge the 'selected' (ie, middle position) gun
    this["gun_"i].scaleX=this["gun_"+i].scaleY=2;
    // stop looping through positions.  the ith gun position has already been found.
    break;

  • Since the recent Firefox update, our customers can no longer place items selected for purchase into the shopping cart; what is the cause and the fix?

    Since Firefox was recently updated, customers who use Firefox as their browser can no longer place items selected at our e-commerce site into their shopping cart. We are not experiencing this problem with customers who use IE as their browser.

    I created a brand new blank Captivate 6 file, applied a theme, inserted a few new slides and tried Preview.  It worked!  All four of the Captivate files I used in my previous testing were based on one file which hadn't been touched for two weeks.  Somehow while working in the lastest file, either removing unused items from the Library or killing errors while Publishing, something somewhere got corrupted or removed.  Something that all four files must have pointed to, since as soon as the latest file broke, all of the other files stopped working as well.  Since the original file was inherited, I'm not even sure how to  go about finding the problem.  In my case, it won't be too big of a deal.  I will create a clean template file and rebuild.
    Thanks for your help!

  • Customer line item missing in accounting doc after billing

    Hi experts...
    We are facing an issue after generating  billing document, accounting document is created automatically but in that accounting document the customer itself is missing in the entry where as other line items like revenues, taxes are visible. where could have been the mistake. Kindly help with the possibilities of missing configuration.
    Ideal entry should have been like
    Customer dr
    Revenue   cr
    Output tax cr.
    Cheers,
    Sravanthi

    Hi:
             Check for missing authorization in SU53 immediately after you face this issue..I think you are missing an authorization object F_BKPF_BED activity 03 or F_BKPF_BES Activity 03/.. Please ask BASIS guy he will resolve your issue.
    Regards

  • Vendor's same open item selected for payment twice through APP run F110

    Hi,
    In F110 run, specified vendor  number and payment method(Bank Transfer), executed payment run.
    After, say 5 minutes interval again executed F110 for all vendors and except for the above mentioned payment method.
    In the first case, payment document generated, posted and cleared the Vendor open items. Here, the Payment method is B.
    In the second time also, the same open items are selected in the payment run and the payment method D(Cheque payment).
    Payment document generated and is not posted but cheque is generated for the same amount.
    How could it happened?

    Hi,
    In F110 run, specified vendor  number and payment method(Bank Transfer), executed payment run.
    After, say 5 minutes interval again executed F110 for all vendors and except for the above mentioned payment method.
    In the first case, payment document generated, posted and cleared the Vendor open items. Here, the Payment method is B.
    In the second time also, the same open items are selected in the payment run and the payment method D(Cheque payment).
    Payment document generated and is not posted but cheque is generated for the same amount.
    How could it happened?

  • Restrict Number of Open line items selected for vendor payment in F-58

    Dear Experts,
    simply in F-58 i want the system to issue an error message if the user select more than 10 or maybe 15 open line items for payment, the reason is to make sure that the number of line items selcted will fitt in the From specified for printing.
    is there a way to do so ?
    i already got on but not sure how to use it.
    please advice
    Thanks and regards
    Mohamed Talaat

    hi,
    my restricition is regarding the form that the key user want only one cheque paper to be prininted and the space for that can hold only like 10 or 15 line items so he just want to define this number and cant exceed it in one paymnet.
    payment advice control i think can do this but am not sure its under t.code FBZP payment method in company code, haveyou try this before ?
    and how come we design the form for multiplie pages andthen accomidate in one page ?
    as they insert in the oprinter a seralized prinitng cheques paper sequincely.
    please clarify
    Regards
    M.Talaat

  • Field selection for Account Assignment Tab in PR

    I set up my own field selection key where only storage location can be changed after release.
    But when I do the test, I found that not only the storage location field but also all the fields in Account Assignment Tab can be changed!!!  (Like cost center, profit center and GL account etc)
    So, please help me to control the fields in Account Assignment Tab. I can't find related setting.
    Thanks a lot.

    You guys misunderstood.
    Here's my business flow:
    I enter PR with account assignment K, input cost center and then save.
    After PR is released, there's only storage location can be changed.
    So I set up my own field seletion key in which I set storage location as optional, and other fields as display.
    But when I use ME52N to check my released PR, not only storage location but also all the fields in Account Assignment Tab can be changed!
    I can't find the corresbonding setting for cost center or GL account in "Define Screen Layout at Document Level".
    I can't use OME9 either, because once I set cost center as display, I have no change to enter even if I use ME51N.
    Sorry I didn't make myself clear enough. Hope you understand now and please help me to solve it. Thanks a lot.

  • ICR Process 003 - Running Data Selection for Accounts without a Group CoA

    Hi Everyone,
    I am getting an error "Account 'CoCode'/xxxxxxxxxxx: Group Account Number could not be determined" on the reconciliation of some accounts when I run FBICS3.
    Currently, the operating chart of accounts is not assigned to a Group Chart of Accounts.  This may change after Go Live u2013 for instance due to consolidation requirements. But for now we are without group CoA.
    I am wondering if this is a requirement for the ICR program to have this field active on the GL master data and populated?
    If not, is it possible then to  switch off the error message or change the settings somewhere so that the error is not generated?
    How will this effect accounts without a group account number?
    I've included a link a screenshot below
    Link:[http://i42.tinypic.com/rh3gp0.jpg]
    Thanks in advance!
    Best,
    John Scime

    Hi John Scime,
    I suggest you to review SAP Note 1164893. Check if this note is applied in your system, otherwise, apply it and pay special attention to the manual steps(solution part of the note).
    Message FB_ICRC10 can be customized according to your requirements as warning, error message and so on.
    These are the manual steps of the note 1164893:
        o  Start transaction SM31.
        o  Specify view T100S.
        o  Choose function Maintain.
        o  Choose function New Entries.
        o  Add the following entry:
           Application Area  Msg                  Allowed StandardSwitch Off
           FB_ICRC           102                  AESIW E X
        o  Save the changes.
        o  Start transaction SM31.
        o  Specify view V_T100C.
        o  Choose function Maintain.
        o  Specify Application Area FB_ICRC.
        o  Choose function Continue.
        o  Choose function New Entries.
        o  Add an entry for message 102 and specify the attributes which best meet your requirements(WARNING MESSAGE, Error Message, etc). Use value help if needed.
        o  Save the changes.
    I hope this help you solve this issue!
    Regards,
    Mateus

  • Restrict security deposit release during final bill

    Hello,
    As per our business requirement security deposit need not to be adjusted
    with final bill. We have done the configuration as per following
    screen shot.But security deposit still get adjusted during final bill
    generation , please specify this configuration is correct or any
    other configuration is required to achieve this requirement.
    Configuration path:
    SPRO->SAP utilities->Invoicing->Invoice Processing->Item selection in account maintenance/Define sub-item
    And done the changes in both clearing type R42 & R43 as per below image

    Hi,
    You should check the configuration in Open Item Management for "Specifications for Invoicing".
    Make sure the Clearing Variant that is used doesn't have any explicit Clearing sequence for Main/Sub 0020/0010.
    If theres no such explicit configuration, make an ABAP change in the FI-CA Event ISU_EVENT_R401 to explicitly exclude the held Security Deposit . Heres the documentation for this event:
    ISU_EVENT_R401 
    Short Text
    Event R401:Select CA Items for Account Maintenance/Credit Transfer Posting
    Functionality
    Event R401 in IS-U invoicing selects the open items for account maintenance and transfer posting of credit. It is started in invoicing before the account maintenance modules are called.
    Tasks
    1. Selection (or preselection) of open items for account maintenance.
    The open items made available in this function module are already made available in field XAKTP_401 (table TY_R401_FKKCL) with a propsal in accordance with the entries in table TE514 table TY_R401_FKKCL. You can overwrite this proposal.
    2. Activation of open items for transfer posting in credit/receivable consumption billing.
    This enables, for example, items with a clearing restriction in invoicing to be repaid. The items made available in this function module already have a proposal in field XGUMB_401. This proposal is based on the specifications in table TE529 and can be overwritten.
    3. Deactivation of a statistical receivable without subsequent posting.
    If you set the indicator XCLON_401, a statistical receivable can be cleared without subsequent posting, so that it is not longer requested. The items made available in this function module already have a proposal in the field XCLON_401 based on the specifications in table TE529. You can overwrite this proposal.
    Example
    1. In periodic invoicing the cash security deposit payments are to be released for settlement after a given period. If this period has not expired, you must set the indicator XAKTP_401 = ' ' in the relevant item.
    2. In periodic invoicing the cash security deposit payments are to be repaid after a given period (if applicable, the credit remaining after settlement). In this case you must set the indicator XGUMB_401 = 'X' in the relevant item. If the credit is not to be reposted, you leave this indicator blank.
    3. In final invoicing the open request for a cash security deposit is to be deactivated (cleared without subsequent posting). In this case you must set the indicator XCLON_401 = 'X' in the relevant item.
    Further information
    Programming Restrictions
    To avoid jeopardizing the consistency of the system, note that you may not use the following language elements in events:
    COMMIT WORK
    ROLLBACK WORK
    CALL FUNCTION 'DEQUEUE ALL'
    Delete all locks that you have not set yourself.
    Parameters
    X_VERART
    X_BLDAT
    X_BUDAT
    X_BUPA
    X_FKKVKP
    X_SIMU
    X_INVOICE_UNIT
    YWA_CHG_SERVICE_OBJ
    TY_R401_FKKCL
    T_CONTRCL

  • Down Payment Item Selection in Invoicing

    Dear Experts,
    My client requirement is, down payment request needs to be displayed in the IS-U bill print out. I have maintained the main and sub transactions in the
    SAP Utilities->Invoicing->Invoice Processing->Item Selection in Invoicing->Item Selection in Account Maintenance/ Define Sub-Items.
    After that, I have created the down payment request. When i do the invoice, only consumption amount is displayed in the bill print out. down payment request amount is not coming.
    I belive some settings I must be missing. Can any one please help me to solve this issue.
    Regards,
    Aswin

    Hi Dewang,
    I have a different situation, I posted SD request at contract account level posted using FPSEC1.
    Since the contract account is for purpose of Aggregation, I did a aggregated posting then when I prepare a print doc for the same using EA10_AGGRBILL it is not picking up the security deposit request.
    I have maintained the necessary entry in Item Selection in Account Maintenance/ Define Sub-Items for RF clearing type.
    Please advice.
    Thanks
    Satyajeet

  • Origin Object Type for Plant Maintenance Orders in Profit Center Accounting

    Hi,
    I want to make a selection for plant maintenance orders in transaction KE5Z, report for line items in Profit Center Accounting. When checking possible input options for the selection field <b></b>Origing Object Type<b></b> the system shows value 15 for Maintenance Orders. However I discovered in our system the maintenance orders are reported as Origing Object Type 03, which is Overhead Orders according to the selection list. So I cannot distinguish between overhead orders and maintenance orders in this report.
    What is the cause our maintenance orders are assigned to Origin Object Type 03 in stead of 15 and what is the customizing transaction to correct this ?

    Looks like, this is no longer supported. Refer to note 168004 and  102434.
    Cause and prerequisites
    These functions were not programmed to meet the above requirements.
    As of Release 4.0, the object type is transferred directly.
    Solution
    Once you have implemented the advance correction. the origin object type 'Overhead cost order' (03) is assigned irrespective of what is the SCOPE for orders.
    As a result of implementing this note or as of Release 4.6B, the order category distinguishes between overhead cost orders and production orders in the origin object type. In this case, the following origin object types result (as described above in 1.):
    Order category 04 to 10, 40 => 04 (production order)
    All other order categories => 03 (overhead cost order)
    The logic that the origin object type was set depending on the object class (as described above in 2.) is no longer supported. The object class can be evaluated separately in Reporting. -
    The corrections of this note refer in Release 4.0B to the corrections from Note 102434.

Maybe you are looking for