Customer Statement in Balance Forward Format

Have Oracle introduced a customer statement in a Balance Brought Forward format as yet? We need the ability to print customer statements comprising:
(a) An opening balance (being the previous period's closing balance)
(b) Details of all credit memos, debit memos, invoices, adjustments, etc for the current period
(c) Receipts (as opposed to individual applications) i.e. if a customer pays $1000 in respect of 2 invoices of $500 each, a single entry displaying a credit of $1000 should appear on the statement
(d) A closing balance for the period
Additionally, it would be ideal if a payment schedule (indicating what potion of the balance is due when) could also be displayed on the statement (e.g. if the customer's balance is $1500; $700 may be due on 31-AUG, $500 may be due on 30-SEP and the balance may be due on 31-OCT.
We are still on 10.7NCA and I was wondering whether anyone knows whether this has since been implemented and, if not, whether there are plans to implement this. We have become so frustrated with not been able to do this that we are considering re-implementing a system that will provide this functionality.
null

Just to add to my question and be more specific -
On the customer recieveable ageing - I would like to add the rest of the address field as it only pull out the first line. Is there any way I can refresh the tables with the addtional field?
I found the PLD convertor is useful as I was able to add the field in for the address and then convert into the converted PLD2CR However the SAP format in crystal looks much neater and visually better looking than the PLD version.
I would like to add the address fields into the Crystal Report Version so It shows the complete address.
I have checked all the versions from SAP 8.8 PL 13 up to 8.81 PL09 and all only show the first line of the address for the customer.
Any suggestions would be greatly appreciate as to how I could get them in.
thanks
Paul

Similar Messages

  • Balance Brought Forward Customer Statement

    Hi there, everyone
    Our company would like to print customer statements in a balance brought forward format. By "Balance Brought Forward" I mean that the statement starts with an Opening Balance (being the previous month's closing balance), then reflects all receipts (not applications), invoices, credit memos, debit memos, adjustments and discounts and then totals to a closing balance. It would also be ideal if a payment schedule could be printed detailing what portion of the final balance is due on what dates.
    We are still on 10.7NCA, so if this functionality is available in 11 or 11i, please will someone let me know. Otherwise, if there is anyone out there who has done this, please can you send me some pointers.
    Regards
    Mark

    Hello,
    This issue should be solved in 2007 A / 2007 B version. Please clarify to which version you are referring.
    Thanks for the input.

  • Customer Statement with opening and closing balances

    Dear Forum,
    The users want to generate the Customer Statement with opening and closing balances like the traditional one. The statement now generated gives the list of all open items as on date, but the users want the statement with opening balances as on the date of the begining of the range specified and the closing balance at the end of the period for which the statement is generated. Is there a way to generate the same from the system.
    Thanks for the help.
    Regards,

    Hi,
    SPRO> Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Line Items > Correspondence > Make and Check Settings for Correspondence
    You can use the program RFKORD10 with correspondance type SAP06 for your company code
    This program prints account statements and open items lists for customers and vendors in letter form. For account statements, all postings between two key dates, as well as the opening and closing balance, are listed.
    Regards,
    Gaurav

  • Opening balance and closing balance on Receivables Customer Statement repor

    I need an opening balance and closing balance of the customer statement in one report. Currently I developed a custom Customer statement report in report builder 6i. I developed a custom procedure to retrieve the previous statement balance. I’m able to successfully retrieve ending balance statement with sysdate but if I go back to previous date or previous statement date then I’m not getting the right ending balance of the report.
    Even the seeded api arp_customer_aging provides the ending balance for sysdate but not for previous dates because this api always looks back to amount due remaining column(ar_payment_schedules_all).
    Did any one ever develop a custom logic to get previous balance and ending balance on one single customer statement?

    Hi,
    I am working on the same logic. My program loads opening and closing balance and a list of items everyday. The GL_balances table gives you current balance but if you want the previous balance, you have to use : "gl_daily_balances" table and provide accounting_date for which you want the balance.
    Hope this Helps!
    Yogini

  • Customer Statement - PLD - Prior Period Balance

    When one uses the standard Customer Statement, the prior period balance shows up. It is a field defined as TEXT field, Free Text and the text value is 9999999999.
    When I copied (save as) this standard customer statement, the prior period balance no longer shows up. Further more, if I copy this field from the customer statement (F_033) to my new copy it doesn't work and if I manually create a new field it doesn't work either on the new statement.
    How does one get a prior period balance to show when the field is a text field and not a formula field.
    Any help would be greatly appreciated.

    Hi Marli,
    This is the norm of B1. Your client should be able to get used to it soon.
    Thanks,
    Gordon

  • "Balance forward" SQL statement

    Has anyone developed a SQL statement that allows balances to be carried forward? Would a UNION query possibly work?
    Here's my example where I need to join 3 tables and show results. Based on the example data below, I am looking for a query that allows me to illustrate that the Acrobat 9 Installed Software instances are consuming a license capacity of 6, leaving a balance of 4 that can be applied to the Acrobat 8 Installed Software Instances.
    Table: LICENSE
    LICENSENUM     SWLICENSE          LICENSECAPACITY
    '1001'          'Adobe Acrobat 9'     '10'
    Table: LICENSESW
    LICENSENUM     SWPRODUCT     PRECEDENCE
    '1001'     'Acrobat 9'     '1'
    '1001'     'Acrobat 8'     '2'
    Table: INSTALLEDSW
    INSTALLEDSW
    'Acrobat 9'
    'Acrobat 9'
    'Acrobat 9'
    'Acrobat 9'
    'Acrobat 9'
    'Acrobat 9'
    'Acrobat 8'
    'Acrobat 8'
    'Acrobat 8'
    'Acrobat 8'
    'Acrobat 8'
    I can write a select to do total counts, but this does not allow me to carry a balance forward to be applied to Acrobat 8 (precedence 2).
    select LICENSE.SWLICENSE, LICENSE.LICENSECAPACITY, count(INSTALLEDSW.INSTALLEDSW) as INSTALLED_COUNT
    from LICENSE, LICENSESW, INSTALLEDSW
    where LICENSE.LICENSENUM = LICENSESW.LICENSENUM
    AND LICENSESW.SWPRODUCT = INSTALLEDSW.INSTALLEDSW
    group by LICENSE.SWLICENSE, LICENSE.LICENSECAPACITY;
    Results:
    SWLICENSE          LICENSECAPACITY          INSTALLED_COUNT
    'Adobe Acrobat 9'     '10'               '11'
    I need results that look like this, where the balance of 4 is carried forward after the first row:
    SWLICENSE          LICENSECAPACITY          INSTALLED_PRODUCT     INSTALLED_COUNT
    'Adobe Acrobat 9'     '6'               'Acrobat 9'          '6'
    'Adobe Acrobat 9'     '4'               'Acrobat 8'          '5'

    Not easy to follow your example data, but if I demonstrate what I think you are trying to achieve using the emp table, you may be able to see if it helps...
    SQL> select deptno, empno, ename
      2        ,count(*) over (partition by deptno) as dept_count
      3        ,count(*) over (partition by deptno) - row_number() over (partition by deptno order by empno) as remaining
      4  from   emp
      5  order by deptno, empno;
        DEPTNO      EMPNO ENAME      DEPT_COUNT  REMAINING
            10       7782 CLARK               3          2
            10       7839 KING                3          1
            10       7934 MILLER              3          0
            20       7369 SMITH               5          4
            20       7566 JONES               5          3
            20       7788 SCOTT               5          2
            20       7876 ADAMS               5          1
            20       7902 FORD                5          0
            30       7499 ALLEN               6          5
            30       7521 WARD                6          4
            30       7654 MARTIN              6          3
            30       7698 BLAKE               6          2
            30       7844 TURNER              6          1
            30       7900 JAMES               6          0
    14 rows selected.using the analytical functions count() and row_number() (you can use others such as sum(), avg(), lag(), lead() etc. as required) you can do processing that carries forward, backwards or across "groups" (aka partitions) of data.

  • Zero Balance Customer Statements

    Hello,
    How can I exclude customer/vendors with a zero balance from receiving a customer statement? A link to help will not be helpful as I have read through that documentation already. Any help would be really appreciated.
    Thanks,
    Justin

    Hello Justin,
    see the settings "assign program to correspondence type". Here you have a program and a variant. The standard program is RFKORD10. Use SA38 to create a variant that has the setting: balance in local currency not equal to zero.
    Hope this helps.
    BR
    Gabor

  • Customer statement date formate

    Hi SAP guru
    When i executed customer statement in f.27 print has dd/mm/year formate some times mm/dd/year formate but it is coming only in Production server itself. I tested in quality and testing servers in which not a problem.
    I checked in SU3 also. Need i do any thing configuration and is it functional related or technical related Please give suggetion
    Thanks in advance

    Hi,
    we have check in  our system but what ever changes we are making in SU3 it only shows the different format in selection screen but it will not effect your output
    hope this is helpful
    Best Regards,
    Ravi Reddy

  • Customer statements for credit balances (F.27)

    We need to be able to run "Periodic Account Statements in SAP, transaction F.27, for customers that have a credit balance.
    For clarity, this is a balance that is less than ZERO, for example if a customer has an outstanding credit item on their account that exceeds any debit amount, eg: invoice for $100, payment for $150, net CREDIT balance of ($50)
    In accordance with direction from our auditors, we need to be able to print and send these statements, as we do with the present process of sending monthly statements to customers that have a debit balance, and send them to customers. I'd be really surprised if this functionality is not built into SAP.
    My Question is: Can this change be made using a built-in functionality in SAP like make config changes in SAP IMG or would this need to be programmed? If it can be done in SAP by making config changes please post the steps. Thanks.

    SOLUTION:
    When you run the transaction F.27 you specify a Company code and a Correspondence type. The correspondence type has a print program and a variant associated to it through SAP IMG (config). During its run F.27 calls the program + variant dynamically. The variant controls the selection screen of that print program. One of the fields on that selection screens is "Balance in local currency". The value for that field was set to greater than zero (Balance in local currency > 0). This is why F.27 was skipping any Customer Statements which had a balance less than zero (i.e. credit balance).
    You can check the program name and variant associated with a correspondence type by following this path in SAP IMG:
    SPRO > SAP Reference IMG > SAP Customizing Implementation Guide > Financial Accounting > Financial Accounting Global Settings > Correspondence > Assign programs for Correspondence Types
    and you can modify the variant by using transaction SE38.

  • F.27--customer statements lists even customer  that have zero balance

    F.27--customer statements lists even customer  that have zero balance. How can this be changed to list only customer with balance higher than zero?
    Edited by: MN on Feb 9, 2010 10:24 PM

    Hi,
    Can you please advice how did you solve this problem as I also need to work on the same.
    Thanks

  • Customer statement per date

    Hi Gurus,
    Client required customer statement on particular date not period wise. i have got customer period wise balances in table KNC1 & KNC3. but i required the date wise opening & closing balance?
    In SAP i have got the table carry forward balance as period wise.
    I have to carry forward the particular date closing balance to the next date as opening balance. please suggest me the table & field  which help me to work out this issue?
    Warm regards,
    Dhananjay Rahane.

    Hi
    You can get this in standard report, through the report for customer line items in Local Currency. The same is available under Information System in AR under Line item Reports. If that does not suffice your reporting requirements, you can pick the data from FAGLFLEXA (Only if you are on New GL) and BSEG combination. Take help of you ABAPER for the same.
    Regards
    Sanil Bhandari

  • Customer & vendoar Trial balance under Business Area Wise

    Dear Experts,
                          Pls tell me the T.code for Customer & vendor Trial balance under Business Area wise.
    I am ready to assign full points.
    Thanks & Regards
    avudaiappan

    Once again test u r patiency.. ur self...
    SAP FI Transaction Code List 2
    FG99    Flexible G/L: Report Selection
    FGI0    Execute Report
    FGI1    Create Report
    FGI2    Change Report
    FGI3    Display Report
    FGI4    Create Form
    FGI5    Change Form
    FGI6    Display Form
    FGIB    Background Processing
    FGIC    Maintain Currency Translation Type
    FGIK    Maintain Key Figures
    FGIM    Report Monitor
    FGIO    Transport Reports
    FGIP    Transport Forms
    FGIQ    Import Reports from Client 000
    FGIR    Import Forms from Client 000
    FGIT    Translation Tool - Drilldown Report.
    FGIV    Maintain Global Variable
    FGIX    Reorganize Drilldown Reports
    FGIY    Reorganize Report Data
    FGIZ    Reorganize Forms
    FGM0    Special Purpose Ledger Menu
    FGRP    Report Painter
    FGRW    Report Writer Menu
    FI01    Create Bank
    FI02    Change Bank
    FI03    Display Bank
    FI04    Display Bank Changes
    FI06    Mark Bank for Deletion
    FI07    Change Current Number Range Number
    FI12    Change House Banks/Bank Accounts
    FI12CORE   Change House Banks/Bank Accounts
    FI13    Display House Banks/Bank Accounts
    FIBB    Bank chain determination
    FIBC    Scenarios for Bank Chain Determin.
    FIBD    Allocation client
    FIBF    Maintenance transaction BTE
    FIBHS   Display bank chains for house banks
    FIBHU   Maintain bank chains for house banks
    FIBL1   Control Origin Indicator
    FIBL2   Assign Origin
    FIBL3   Group of House Bank Accounts
    FIBPS   Display bank chians for partners
    FIBPU   Maintain bank chains for partner
    FIBTS   Dis. bank chains for acct carry over
    FIBTU   Main. bank chains for acctCarry over
    FIHC    Create Inhouse Cash Center
    FILAUF_WF_CUST  Store Order: Workflow Customizing
    FILE    Cross-Client File Names/Paths
    FILINV_WF_CUST  Store Inventory:Workflow Customizing
    FINA    Branch to Financial Accounting
    FINF    Info System Events
    FINP    Info System Processes
    FITP_RESPO      Contact Partner Responsibilities
    FITP_SETTINGS   Settings for Travel Planning
    FITP_SETTINGS_TREE      Tree Maintenance Current Settings
    FITVFELD        Tree
    FJA1    Inflation Adjustment of G/L Accounts
    FJA2    Reset Transaction Data G/L Acc.Infl.
    FJA3    Balance Sheet/P&L with Inflation
    FJA4    Infl. Adjustment of Open Items (FC)
    FJA5    Infl. Adj. of Open Receivables (LC)
    FJA6    Infl. Adj. of Open Payables (LC)
    FJEE    Exercise Subscription Right
    FK01    Create Vendor (Accounting)
    FK02    Change Vendor (Accounting)
    FK02CORE   Maintain vendor
    FK03    Display Vendor (Accounting)
    FK04    Vendor Changes (Accounting)
    FK05    Block Vendor (Accounting)
    FK06    Mark Vendor for Deletion (Acctng)
    FK08    Confirm Vendor Individually (Acctng)
    FK09    Confirm Vendor List (Accounting)
    FK10    Vendor Account Balance
    FK10N   Vendor Balance Display
    FK10NA  Vendor Balance Display
    FK15    Transfer vendor changes: receive
    FK16    Transfer vendor changes: receive
    FKI0    Execute Report
    FKI1    Create Report
    FKI2    Change Report
    FKI3    Display Report
    FKI4    Create Form
    FKI5    Change Form
    FKI6    Display Form
    FKIB    Background Processing
    FKIC    Maintain Currency Translation Type
    FKIK    Maintain Key Figures
    FKIM    Report Monitor
    FKIO    Transport Reports
    FKIP    Transport Forms
    FKIQ    Import Reports from Client 000
    FKIR    Import Forms from Client 000
    FKIT    Translation Tool - Drilldown Report.
    FKIV    Maintain Global Variable
    FKIX    Reorganize Drilldown Reports
    FKIY    Reorganize Report Data
    FKIZ    Reorganize Forms
    FKMN   
    FKMT    FI Acct Assignment Model Management
    FLB1    Postprocessing Lockbox Data
    FLB2    Import Lockbox File
    FLBP    Post Lockbox Data
    FLCV    Create/Edit Document Template WF
    FM+0    Display FM Main Role Definition
    FM+1    Maintain FM Main Role Definition
    FM+2    Display FM Amount Groups
    FM+3    Maintain FM Amount Groups
    FM+4    Display FM Budget Line Groups
    FM+5    Maintain FM Budget Line Groups
    FM+6    Display FM Document Classes
    FM+7    Maintain FM Document Classes
    FM+8    Display FM Activity Categories
    FM+9    Maintain FM Activity Categories
    FM+A    Display Doc.Class->Doc.Cat. Assgmt
    FM+B    Maintain Doc.Clase->Doc.Cat.Assgmt
    FM03    Display FM Document
    FM21    Change Original Budget
    FM22    Display Original Budget
    FM25    Change Supplement
    FM26    Display Supplement
    FM27    Change Return
    FM28    Transfer Budget
    FM29    Display Return
    FM2D    Display Funds Center Hierarchy
    FM2E    Change Budget Document
    FM2F    Display Budget Document
    FM2G    Funds Center Hierarchy
    FM2H    Maintain Funds Center Hierarchy
    FM2I    Create Funds Center
    FM2S    Display Funds Center
    FM2T    Change Releases
    FM2U    Change Funds Center
    FM2V    Display Releases
    FM3D    Display Commitment Item Hierarchy
    FM3G    Commitment Item Hierarchy
    FM3H    Maintain Commitment Item Hierarchy
    FM3I    Create Commitment Item
    FM3N    Commitment Items for G/L Accounts
    FM3S    Display Commitment Item
    FM3U    Change Commitment Item
    FM48    Change Financial Budget: Initial Scn
    FM48_1  PS-CM: Create Planning Layout
    FM48_2  PS-CM: Change Planning Layout
    FM48_3  PS-CM: Display Planning Layout
    FM49    Display Financial Budget: Init.Scrn
    FM4G    Budget Structure Element Hierarchy
    FM5I    Create Fund
    FM5S    Display Fund
    FM5U    Change Fund
    FM5_DEL    Delete fund preselection
    FM5_DISP   Display fund preselection
    FM5_SEL    Preselection Fund
    FM6I    Create Application of Funds
    FM6S    Display Application of Funds
    FM6U    Change Application of Funds
    FM71    Maintain Cover Pools
    FM72    Assign FM Acct Asst to Cover Pool
    FM78    Charact.Groups for Cover Pools
    FM79    Grouping Chars for Cover Pool
    FM7A    Display Cover Eligibility Rules
    FM7I    Create Attributes for FM Acct Asst
    FM7P    Maintain Cover Eligibility Rules
    FM7S    Display Cover Eligibility Rules
    FM7U    Maintain Cover Eligibility Rules
    FM9B    Copy Budget Version
    FM9C    Plan Data Transfer from CO
    FM9D    Lock Budget Version
    FM9E    Unlock Budget Version
    FM9F    Delete Budget Version
    FM9G    Roll Up Supplement
    FM9H    Roll up Original Budget
    FM9I    Roll Up Return
    FM9J    Roll Up Releases
    FM9K    Change Budget Structure
    FM9L    Display Budget Structure
    FM9M    Delete Budget Structure
    FM9N    Generate Budget Object
    FM9P    Reconstruct Budget Distrbtd Values
    FM9Q    Total Up Budget
    FM9W    Adjust Funds Management Budget
    FMA1    Matching: Totals and Balances (CBM)
    FMA2    Matching: CBM Line Items and Totals
    FMA3    Matching: FI Line Items (CBM)
    FMA4    Matching: FI Bank Line Items (CBM)
    FMAA    Matching: Line Items and Totals (FM)
    FMAB    Matching: FI FM Line Items
    FMAC    Leveling: FM Commitment Line Items
    FMAD    Leveling: FI-FM Totals Records
    FMAE    Display Change Documents
    FMAF    Level Line Items and Totals Items
    FMB0    CO Document Transfer
    FMB1    Display Security Prices-Collect.
    FMBI    Use Revenues to Increase Expend.Bdgt
    FMBUD005   FIFM Budget Data Export
    FMBUD006   FIFM Budget Data Import
    FMBV    Activate Availability Control
    FMC2    Customizing in Day-to-Day Business
    FMCB    Reassignment: Document Selection
    FMCC    Reassignment: FM-CO Assignment
    FMCD    Reassignment: Delete Work List
    FMCG    Reassignment: Overall Assignment
    FMCN    Reassignment: Supplement.Acct Assgt
    FMCR    Reassignment: Display Work List
    FMCT    Reassignment: Transfer
    FMD1    Change Carryforward Rules
    FMD2    Display Carryforward Rules
    FMDM    Monitor Closing Operations
    FMDS    Copy Carryforward Rules
    FMDT    Display Carryforward Rules
    FME1    Import Forms from Client 000
    FME2    Import Reports from Client 000
    FME3    Transport Forms
    FME4    Transport Reports
    FME5    Reorganize Forms
    FME6    Reorganize Drilldown Reports
    FME7    Reorganize Report Data
    FME8    Maintain Batch Variants
    FME9    Translation Tool - Drilldown
    FMEB    Structure Report Backgrnd Processing
    FMEH    SAP-EIS: Hierarchy Maintenance
    FMEK    FMCA: Create Drilldown Report
    FMEL    FMCA: Change Drilldown Report
    FMEM    FMCA: Display Drilldown Report
    FMEN    FMCA: Create Form
    FMEO    FMCA: Change Form
    FMEP    FMCA: Display Form
    FMEQ    FMCA: Run Drilldown Report
    FMER    FMCA: Drilldown Tool Test Monitor
    FMEURO1 Create Euro FM Area
    FMEURO2 Refresh Euro Master Data
    FMEURO3 Display Euro FM Areas
    FMEURO4 Deactivate Euro FM Areas
    FMEV    Maintain Global Variable
    FMF0    Payment Selection
    FMF1    Revenue Transfer
    FMG1    FM: Create Commitment Item Group
    FMG2    FM: Change Commitment Item Group
    FMG3    FM: Display Commitment Item Group
    FMG4    FM: Delete Commitment Item Group
    FMG5    Generate BS Objects fr.Cmmt Item Grp
    FMHC    Check Bdgt Structure Elements in HR
    FMHG    Generate Bdgt Struc Elements in HR
    FMHGG   Generate BS Elements f. Several Fnds
    FMHH    Master Data Check
    FMHIST  Apportion Document in FM
    FMHV    Budget Memo Texts
    FMIA    Display Rules for Revs.Incr.Budget
    FMIB    Increase Budget by Revenues
    FMIC    Generate Additional Budget Incr.Data
    FMIL    Delete Rules for Revs Incr. Budget
    FMIP    Maintain Rules for Revs.Incr.Budget
    FMIS    Display Rules for Revs.Incr.Budget
    FMIU    Maintain Rules for Revs.Incr.Budget
    FMJ1    Fiscal Year Close: Select Commitment
    FMJ1_TR Settlement: Select Commitment
    FMJ2    Fiscal Year Close: Carr.Fwd Commts
    FMJ2_TR Settlement: Transfer Commitment
    FMJ3    Reverse Commitments Carryforward
    FMJA    Budget Fiscal Year Close: Prepare
    FMJA_TR Budget Settlement: Prepare
    FMJB    Determine Budget Year-End Closing
    FMJB_TR Budget Settlement: Determine
    FMJC    Budget Fiscal-Year Close: Carry Fwd
    FMJC_TR Budget Settlement: Transfer
    FMJD    Reverse Fiscal Year Close: Budget
    FMLD    Ledger Deletion
    FMLF    Classify Movement Types
    FMN0    Subsequent Posting of FI Documents
    FMN1    Subsequent Posting of MM Documents
    FMN2    Subsequent Posting of Billing Docs
    FMN3    Transfer Purchase Req. Documents
    FMN4    Transfer Purchase Order Documents
    FMN5    Transfer Funds Reservation Documents
    FMN8    Simulation Lists Debit Position
    FMN8_OLD   Simulation Lists Debit Position
    FMN9    Posted Debit Position List
    FMN9_OLD   Posted Debit Position List
    FMNA    Display CBA Rules
    FMNP    Maintain CBA Rules
    FMNR    Assign SN-BUSTL to CBA
    FMNS    Display CBA Rules
    FMNU    Maintain CBA Rules
    FMP0    Maintain Financial Budget
    FMP1    Display Financial Budget
    FMP2    Delete Financial Budget Version
    FMR0    Reconstruct Parked Documents
    FMR1    Actual/Commitment Report
    FMR2    Actual/Commitment per Company Code
    FMR3    Plan/Actual/Commitment Report
    FMR4    Plan/Commitment Report w.Hierarchy
    FMR5A   12 Period Forecast: Actual and Plan
    FMR6A   Three Period Display: Plan/Actual
    FMRA    Access Report Tree
    FMRB    Access Report Tree
    FMRE_ARCH    Archive Earmarked Funds
    FMRE_EWU01   Earmarked Funds: Euro Preprocessing
    FMRE_EWU02   Earmarked Funds: Euro Postprocessing
    FMRE_SERLK   Close Earmarked Funds
    FMRP18  Clear Subsequent Postings
    FMSS    Display Status Assignment
    FMSU    Change Assigned Status
    FMU0    Display Funds Reservation Doc.Types
    FMU1    Maintain Funds Reservation Doc.Types
    FMU2    Display Funds Reservtn Fld Variants
    FMU3    Maintain Funds Resvtn Field Variants
    FMU4    Display Funds Reservation Fld Groups
    FMU5    Maintain Funds Reservatn Fld Groups
    FMU6    Display Funds Reservtn Field Selctn
    FMU7    Maintain Funds Resvtn Field Selctn
    FMU8    Display Template Type for Fds Resvtn
    FMU9    Maintain Template Type for Fds Resvn
    FMUA    Dispay Fds Res.Template Type Fields
    FMUB    Maintain Fds Res.Template Type Flds
    FMUC    Display Funds Res. Reference Type
    FMUD    Maintain Funds Res.Reference Type
    FMUE    Display Funds Res.Ref.Type Fields
    FMUF    Maintaine Fds Rsvtn Ref.Type Fields
    FMUG    Display Reasons for Decision
    FMUH    Maintain Reasons for Decisions
    FMUI    Display Groups for Workflow Fields
    FMUJ    Maintain Groups for Workflow Fields
    FMUK    Display Fields in Groups for WF
    FMUL    Maintain Fields in Groups for WF
    FMUM    Display Field Selctn ->Variant/Group
    FMUN    Display Field Seln->Variant/Group
    FMUV    Funds Resvtn Field Status Var.Asst
    FMV1    Create Forecast of Revenue
    FMV2    Change Forecast of Revenue
    FMV3    Display Forecast of Revenue
    FMV4    Approve Forecast of Revenue
    FMV5    Change FM Acct Asst in Fcst of Rev.
    FMV6    Reduce Forecast of Revenue Manually
    FMVI    Create Summarization Item
    FMVO    Fund Balance Carryforward
    FMVS    Display Summarization Item
    FMVT    Carry Forward Fund Balance
    FMVU    Change Summarization Item
    FMW1    Create Funds Blocking
    FMW2    Change Funds Blocking
    FMW3    Display Funds Blocking
    FMW4    Approve Funds Blocking
    FMW5    Change FM Acct Asst in Funds Blkg
    FMWA    Create Funds Transfer
    FMWAZ   Payment Transfer
    FMWB    Change Funds Transfer
    FMWC    Display Funds Transfer
    FMWD    Approve Funds Transfer
    FMWE    Change FM Acct Asst in Funds Trsfr
    FMX1    Create Funds Reservation
    FMX2    Change Funds Reservation
    FMX3    Display Funds Reservation
    FMX4    Approve Funds Reservation
    FMX5    Change FM Acct Asst in Funds Resvn
    FMX6    Funds Reservation: Manual Reduction
    FMY1    Create Funds Commitment
    FMY2    Change Funds Commitment
    FMY3    Display Funds Precommitment
    FMY4    Approve Funds Precommitment
    FMY5    Change FM Acct Asst in Funds Prcmmt
    FMY6    Reduce Funds Precommitment Manually
    FMZ1    Create Funds Commitment
    FMZ2    Change Funds Commitment
    FMZ3    Display Funds Commitment
    FMZ4    Approve Funds Commitment
    FMZ5    Change FM Acct Asst in Funds Commt
    FMZ6    Reduce Funds Commitment Manually
    FMZBVT  Carry Forward Balance
    FMZZ    Revalue Funds Commitments
    FM_DL07    Delete Worklist
    FM_DLFI    Deletes FI Documnts Transferred from
    FM_DLFM    Deletes all FM Data (fast)
    FM_DLOI    Deletes Cmmts Transferred from FM
    FM_EURO_M  Parameter maintenance for euro conv.
    FM_RC06    Reconcile FI Paymts-> FM Totals Itms
    FM_RC07    Reconcile FI Paymts-> FM Line Items
    FM_RC08    Reconcile FM Paymts -> FM Line Items
    FM_RC11    Select Old Payments
    FM_S123    GR/IR: Post OIs to FM Again
    FM_S201    Post Payments on Account to FIFM
    FM_SD07    Display Worklist
    FN-1    No.range: FVVD_RANL (Loan number)
    FN-4    Number range maintenance: FVVD_PNNR
    FN-5    Number range maintenance: FVVD_SNBNR
    FN-6    Number range maintenance: FVVD_RPNR
    FN09    Create Borrower's Note Order
    FN11    Change borrower's note order
    FN12    Display borrower's note order
    FN13    Delete borrower's note order
    FN15    Create borrower's note contract
    FN16    Change borrower's note contract
    FN17    Display borrower's note contract
    FN18    Payoff borrower's note contract
    FN19    Reverse borrower's note contract
    FN1A    Create other loan contract
    FN1V    Create other loan contract
    FN20    Create borrower's note offer
    FN21    Change borrower's note offer
    FN22    Display borrower's note offer
    FN23    Delete borrower's note offer
    FN24    Activate borrower's note offer
    FN2A    Change other loan application
    FN2V    Change other loan contract
    FN30    Create policy interested party
    FN31    Change policy interested party
    FN32    Display policy interested party
    FN33    Delete policy interested party
    FN34    Policy interested party in applic.
    FN35    Policy interested party in contract
    FN37    Loan Reversal Chain
    FN3A    Display other loan application
    FN3V    Display other loan contract
    FN40    Create other loan interested party
    FN41    Change other loan interested party
    FN42    Display other loan interested party
    FN43    Delete other loan interested party
    FN44    Other loan interest.party in applic.
    FN45    Other loan interested prty in cntrct
    FN4A    Delete other loan application
    FN4V    Delete other loan contract
    FN5A    Other loan application in contract
    FN5V    Payoff other loan contract
    FN61    Create collateral value
    FN62    Change collateral value
    FN63    Display collateral value
    FN70    List 25
    FN72    List 54
    FN80    Enter manual debit position
    FN81    Change manual debit position
    FN82    Display manual debit position
    FN83    Create waiver
    FN84    Change waiver
    FN85    Display waiver
    FN86    Enter debit position depreciation
    FN87    Change debit position depreciation
    FN88    Display debit position depreciation
    FN8A    Manual Entry: Unsched. Repayment
    FN8B    Manual Entry: Other Bus. Operations
    FN8C    Manual Entry: Charges
    FN8D    Post Planned Records
    FNA0    Policy application in contract
    FNA1    Create mortgage application
    FNA2    Change mortgage application
    FNA3    Display mortgage application
    FNA4    Complete mortgage application
    FNA5    Mortgage application in contract
    FNA6    Create policy application
    FNA7    Change policy application
    FNA8    Display policy application
    FNA9    Delete policy application
    FNAA    Reactivate deleted mortgage applic.
    FNAB    Reactivate deleted mortg. int.party
    FNAC    Reactivate deleted mortgage contract
    FNAD    Reactivate deleted policy applicat.
    FNAE    Reactivate deleted policy contract
    FNAG    Reactivate deleted other loan applic
    FNAH    Reactivate del. other loan int.party
    FNAI    Reactivate deleted other loan cntrct
    FNAK    Select file character
    FNAL    Reactivate deleted BNL contract
    FNAM    Reactivate deleted policy contract
    FNASL   Loans: Account Analysis
    FNB1    Transfer to a Loan
    FNB2    Transfer from a Loan
    FNB3    Document Reversal - Loans
    FNB8    BAV Information
    FNB9    BAV transfer
    FNBD    Loans-Automatic bal.sheet transfer
    FNBG    Guarantee charges list
    FNBU    DARWIN- Loans accounting menu
    FNCD    Transfer Customizing for Dunning
    FNCW1   Maintain Standard Role
    FNCW2   Transaction Release: Adjust Workflow
    FNDD    Convert Dunning Data in Dunn.History
    FNEN    Create Loan
    FNENALG   Create General Loan
    FNENHYP   Create Mortgage Loan
    FNENPOL   Create Policy Loan
    FNENSSD   Create Borrower's Note Loan
    FNF1    Rollover: Create file
    FNF2    Rollover: Change file
    FNF3    Rollover: Display file
    FNF4    Rollover: Fill file
    FNF9    Rollover: Evaluations
    FNFO    ISIS: Create file
    FNFP    ISIS: Change file
    FNFQ    ISIS: Display file
    FNFR    ISIS: Fill file
    FNFT    Rollover: File evaluation
    FNFU    Rollover: Update file
    FNG2    Total Loan Commitment
    FNG3    Total Commitment
    FNI0   
    FNI1    Create mortgage application
    FNI2    Change mortgage application
    FNI3    Display mortgage application
    FNI4    Delete mortgage application
    FNI5    Mortgage application to offer
    FNI6    Mortgage application in contract
    FNIA    Create interested party
    FNIB    Change interested party
    FNIC    Display interested party
    FNID    Delete interested party
    FNIE    Reactivate interested party
    FNIH    Decision-making
    FNIJ    Create credit standing
    FNIK    Change credit standing
    FNIL    Display credit standing
    FNIN    Create collateral value
    FNIO    Change collateral value
    FNIP    Display collateral value
    FNK0    Multimillion Loan Display (GBA14)
    FNK1    Loans to Managers (GBA15)
    FNKO    Cond.types - Cond.groups allocation
    FNL1    Rollover: Create Main File
    FNL2    Rollover: Change Main File
    FNL3    Rollover: Displ. Main File Structure
    FNL4    New business
    FNL5    New business
    FNL6    New business
    FNM1    Automatic Posting
    FNM1S   Automatic Posting - Single
    FNM2    Balance sheet transfer
    FNM3    Loans reversal module
    FNM4    Undisclosed assignment
    FNM5    Automatic debit position simulation
    FNM6    Post dunning charges/int.on arrears
    FNM7    Loan reversal chain
    FNMA    Partner data: Settings menu
    FNMD    Submenu General Loans
    FNME    Loans management menu
    FNMEC   Loans Management Menu
    FNMH    Loans management menu
    FNMI    Loans information system
    FNMO    Loans Menu Policy Loans
    FNMP    Rollover
    FNMS    Loans Menu Borrower's Notes
    FNN4    Display general file
    FNN5    Edit general file
    FNN6    Display general main file
    FNN7    Edit general main file
    FNN8    Display general main file
    FNN9    Edit general overall file
    FNO1    Create Object
    FNO2    Change Object
    FNO3    Display Object
    FNO5    Create collateral
    FNO6    Change collateral
    FNO7    Display collateral
    FNO8    Create Objects from File
    FNO9    Create Collateral from File
    FNP0    Edit rollover manually
    FNP4    Rollover: Display file
    FNP5    Rollover: Edit File
    FNP6    Rollover: Display main file
    FNP7    Rollover: Edit main file
    FNP8    Rollover: Display overall file
    FNP9    Rollover: Edit overall file
    FNQ2    New Business Statistics
    FNQ3    Postprocessing IP rejection
    FNQ4    Customer Inc. Payment Postprocessing
    FNQ5    Transact.type - Acct determinat.adj.
    FNQ6    Compare Flow Type/Account Determin.
    FNQ7    Generate flow type
    FNQ8    Automatic Clearing for Overpayments
    FNQ9    Int. adjustment run
    FNQF    Swiss interest adjustment run
    FNQG    Swiss special interest run
    FNR0    Loans: Posting Journal
    FNR6    Insur.prtfolio trends - NEW
    FNR7    Totals and Balance List
    FNR8    Account statement
    FNR9    Planning list
    FNRA    Other accruals/deferrals
    FNRB    Memo record update
    FNRC    Accruals/deferrals reset
    FNRD    Display incoming payments
    FNRE    Reverse incoming payments
    FNRI    Portfolio Analysis Discount/Premium
    FNRS    Reversal Accrual/Deferral
    FNS1    Collateral number range
    FNS4    Cust. list parameters for loan order
    FNS6    Installation parameter lists
    FNS7    Loan Portfolio Trend Customizing
    FNSA    Foreign currency valuation
    FNSB    Master data summary
    FNSL    Balance reconciliation list
    FNT0    Loan correspondence (Switzerland)
    FNT1    Autom. deadline monitoring
    FNT2    Copy text modules to client
    FNUB    Treasury transfer
    FNV0    Payoff policy contract
    FNV1    Create mortgage contract
    FNV2    Change mortgage contract
    FNV3    Display mortgage contract
    FNV4    Delete mortgage contract
    FNV5    Payoff mortgage contract
    FNV6    Create policy contract
    FNV7    Change policy contract
    FNV8    Display policy contract
    FNV9    Delete policy contract
    FNVA    Create paid off contracts
    FNVCOMPRESSION  Loans: Document Data Summarization
    FNVD    Disburse Contract
    FNVI    Loans: General Overview
    FNVM    Change Contract
    FNVR    Reactivate Contract
    FNVS    Display Contract
    FNVW    Waive Contract
    FNWF    WF Loans Release: List of Work Items
    FNWF_REP   Release Workflow: Synchronization
    FNWO    Loans: Fast Processing
    FNWS    Housing statistics
    FNX1    Rollover: Create Table
    FNX2    Rollover: Change Table
    FNX3    Rollover: Display Table
    FNX6    Rollover: Delete Table
    FNX7    Rollover: Deactivate Table
    FNX8    Rollover: Print Table
    FNXD    TR-EDT: Documentation
    FNXG    List of Bus. Partners Transferred
    FNXU    List of Imported Loans
    FNY1    New Business: Create Table
    FNY2    New Business: Change Table
    FNY3    New Business: Display Table
    FNY6    New Business: Delete Table
    FNY7    New Business: Deactivate Table
    FNY8    New Business: Print Table
    FNZ0    Rejections report
    FNZ1    Postprocessing payment transactions
    FNZA    Account Determination Customizing
    FN_1    Table maint. transferred loans
    FN_2    Table maintenance transf. partner
    FN_UPD_FELDAUSW   Update Program for Field Selection
    Dasharathi...

  • Aging in Customer Statement

    When running the customer statement report and choosing a date range of transactions to show, the system displays an opening balance and a closing balance which are correctly calculated. It does not, however, include the aging of the opening balance in the aging section of the satatement.
    While it is correct to show just those transactions in the date range
    chosen, in the statement of account to your customer, you want to show
    the aging of the entire balance, not just the transactions shown on the
    statement.
    There are two main methods of producing statements for customers, one
    is called "open items"; which shows all open invoices, credits and
    payments for a customer. In SAP B1 this method can be produced
    effectively.
    The other is "Balance Forward"; which shows an opening balance and the
    movement for the current period only. This method cannot be produced
    from SAP B1 and requires an additional, Crystal report to be added in for
    the users.
    For our customers using the SAP Business One system, the split for
    customers using each type would be around half using each method.
    This is missing functionality, which, if available, would make
    implementations smoother and have customers less reliant on add ons to
    do normal functions, and would have partners less reliant on additional
    skills required to write the Crystal reports required.

    Closed so I can open a new one

  • Customised Customer Statement

    Hi,
    We would like to get hold of a copy of customised Customer Statement urgently.
    These are the criteria:
    1. It has to work with SAP 8.8
    2. It needs to show applied details.
    Example:
    Invoice #111 is paid with Receipt #112
    We need to show original invoice number, amount applied, receipt/credit note #, balance of the invoice.
    3. It can be backdated.
    Example: today is 15 Feb 2010.  I need to be able to run statement for 31 Dec 2009.  Between these 2 dates, there could be receipt/credit applied against the invoice.
    Appreciate any help / advice.

    Marcella,
    That is the report you print from Financial Reports> Accounting> Aging--> Customer Receivable Aging.
    After the data displayed on the screen, you select the print, there are 3 reports availalbe. 
    There is a report name Customer Statement report (one page per customer).
    I am looking at AU/NZ localization.  Unless it is named differently in other localization, you should see the same.
    As the current statement is limited in its format and also the fields avaialble, many many customers has requested customisation of them and we are pretty limited with what exactly is available.
    I do hope SAP will spend more time in looking at some standard reports like Customer Statement, Stock Aging, Bank Reconcialition and make it available.

  • F.27 Periodic Customer Statement

    Hi SAP expert,
    Could you shed some light on this for me?
    F.27 seems to produce customer statements setting out ALL the postings in customer subleger account before date(s) entered in Key date for account statement.
    Is there any SAP (standard) customer statement that enable the business to
    - to select a range of days or periods only
    - then produce customer statements listing  - Opening balance, only all the posting during the period and Closing balance
    Any help would be very much appreciated
    Regards
    taro

    Hello,
    Using F.27, SAP will print only activities within a date range if you choose Correspondence SAP13 in Output Control, and enter a range in Key Dates for Account Statement, e.g. 1/1/2008 to 12/31/2008.
    It will print the balance carried forward on 1/1/2008, all the activities between above dates and also final balance on 1/31/2008.

Maybe you are looking for