Customer running ledger balance

i book invoices for customers in the table;
create table tinv
(ccode varchar(3),
ctxnno number,
cdate date,
cei varchar2(1),
camt number,
cmemo varchar2(200));
insert into tinv values ('101',1,to_date('15/01/2009','dd/mm/yyyy'),'E',150,null);
insert into tinv values ('101',2,to_date('25/01/2009','dd/mm/yyyy'),'E',50,null);
insert into tinv values ('101',3,to_date('02/02/2009','dd/mm/yyyy'),'E',100,null);
insert into tinv values ('101',4,to_date('10/02/2009','dd/mm/yyyy'),'E',250,null);
insert into tinv values ('101',5,to_date('18/03/2009','dd/mm/yyyy'),'E',150,null);
insert into tinv values ('101',6,to_date('05/04/2009','dd/mm/yyyy'),'E',200,null);
insert into tinv values ('101',7,to_date('25/04/2009','dd/mm/yyyy'),'E',300,null);
insert into tinv values ('101',8,to_date('15/05/2009','dd/mm/yyyy'),'E',100,null);
i receive payment from customers in the table;
create table tpay
(pccode varchar(3),
ptxnno number,
pdate date,
pei varchar2(1),
pamt number,
pmemo varchar2(200));
insert into tpay values ('101',1,to_date('01/01/2009','dd/mm/yyyy'),'I',200,null);
insert into tpay values ('101',2,to_date('30/01/2009','dd/mm/yyyy'),'I',100,null);
insert into tpay values ('101',3,to_date('05/02/2009','dd/mm/yyyy'),'E',50,null);
insert into tpay values ('101',4,to_date('25/02/2009','dd/mm/yyyy'),'I',150,null);
insert into tpay values ('101',5,to_date('15/04/2009','dd/mm/yyyy'),'I',150,null);
ccode = pccode, is the common field that links both the tables.
i want the output result to come as like this;
Date                  Tno     Memo         Debit     Credit     Balance Amount
30/01/2009                Opening Balance 200     200          0
30/01/2009           2                      100          -100
2/2/2009            3                  100               0
5/2/2009             3                  50                  50for the in-between report period
var M_FRM_DATE varchar2(10);
var M_UPTO_DATE varchar2(10);
exec :M_FRM_DATE :=TO_DATE ('30/01/2009','dd/mm/yyyy');
exec :M_UPTO_DATE:= TO_DATE ('05/02/2009','dd/mm/yyyy');
the query should go back records prior to 'm_frm_date' in both the tables by
summing up the total "Debits and Credits" for customer '101' and displays the result on
the first row of the report as;
30/01/2009          Opening Balance     200     200     0
and then, the actual records falling between 'm_frm_date' & 'm_upto_date'
should be shown with a running cumulative balance as the last "Balance Amount" column
any help is greatly appreciated.
TY.
Edited by: user649208 on Jan 24, 2010 12:20 AM

Ledger are best handled at report level.
Else it can get difficult in the format it is expected at front end.
There might be a better way of doing this.But on a week end this is what i came up with.
thanks for posting create and insert
WITH DATA AS (
SELECT ccode,cdate,cei,camt,ctxnno FROM tinv
UNION
SELECT pccode,pdate,pei,pamt,ptxnno FROM tpay
SELECT cdate,txno,SUM(op_cre) credit,SUM(op_deb) debit
FROM (
SELECT CASE WHEN cdate < to_date('30 jan 2009','dd mon yyyy') THEN
to_date('30 jan 2009','dd mon yyyy')
ELSE cdate
END cdate,
CASE WHEN cdate < to_date('30 jan 2009','dd mon yyyy') THEN
NULL
ELSE ctxnno
END txno,
CASE WHEN cdate  < to_date('30 jan 2009','dd mon yyyy') AND cei='I' THEN
camt
WHEN cdate  >= to_date('30 jan 2009','dd mon yyyy') AND cei='I' THEN
camt
END op_cre,
CASE WHEN cdate  < to_date('30 jan 2009','dd mon yyyy') AND cei='E' THEN
camt
WHEN cdate >= to_date('30 jan 2009','dd mon yyyy') AND cei='E' THEN
camt
END op_deb,
decode(cei,'I',camt,-camt) bal
FROM DATA)
GROUP BY cdate,txno
ORDER BY cdate,txno NULLS FIRSTCheers!!!
Bhushan

Similar Messages

  • Vendor + Customer Ledger Balance

    Hello Experts,
    I am end user in Fico
    We are created some Vendor as a Customer through customer master because we are creating some scrap sales billing to the same vendor means customer.
    We have seen thier ledger balance as Vendor Bal. in Vendor Ledger and Customer Bal.in Customer Ledger.
    But need that the ledger will displayed in only Vendor Ledger alongwith customer line items and balance.
    Please give the guideline to solve this problem
    Thanks
    Prashant

    Thanks Smruti,
    For your reply
    But i need that the ledger will displayed in only Vendor Ledger alongwith customer line items and balance and not in customer ledger i.e. tran.code
    S_ALR_87012172 - Customer Balances -> Customer Balances in Local Currency
    Please give the guideline to solve this problem
    Thanks
    Prashant

  • FD10N  Customer ledger balance use which FI tables

    Dear All
    I want to make a query for  Customer Ledger Balance. For the same I just want to  know what tables
    they use for the same with information about Cheque no for the receipt of cheque from the customer.
    THNX
    VG

    Hi,
    PAYR is the Table for Cheque Details

  • 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...

  • Profit Center : Reflect - Vendor, Customer, Bank/Cash Balance

    Dear Experts,
    Ref. : Reflect - Vendor, Customer, Bank/Cash Balance, Balance Sheet GL Accounts - Profit Center wise.
    When we do postings to P&L Items, we assign a CO / Cost Object. Such Cost objects may be Orders, Cost Centers, etc., which has a Profit Center assigned to it.
    Now, we wish to view Balance Profit Center wise.
    My Concerns :
    1.  Can Vendor, Customer, Bank/Cash Balance, Balance Sheet GL Accounts - Profit Center wise. Since we do not assign CO objects to such line items, but the correspondense line items (P&L GL) has a CO object.
    2.  If yes, how do we move balance of such items, to Profit Center / profit Center wise.
    Experts, please help me to understand the concept.
    Regards,
    Hussein.

    Hi,
    Are you in ECC activated new G/L? If yes, then you can define Profit Center as Document Splitting Characteristic for General Ledger and profit center will be in the AR/AP line item as well in ledger view (though you don't enter profit center during document entry).
    You cannot give the Profit center in line item level to the Subledger accounts like vendor and customers.Vendor and customer accounts take the profit center from the offsetting entry.If want to see the profit center to the particular document, open the document go to Environment field and select Balance Sheet Adjustment option.
    If you want to see the Profit center wise payables and receivables, use T.code GR55 and take report group 8A90 for Periodic Receivables and 8A91 for Payable.
    If you want to see the all payables with Profit center use Table BFOK_A for vendors BFOD_A for customers.
    Regards,
    Viswa

  • How can i import Customer/Vendor  Opening Balances - Invoice wise

    I am going on a parallel run from next week onwards and the Client want to import all Customer/Vendor Opening Balances invoice wise , so that they can get the Aging Analysis report the no of days Outstanding as well as they can enter payment invoice wise.

    Sanjay,
    To import BP Opening Invoices or Credit Memo's,
    Use the template inside DTW folder
    \Templates\oInvoices for AR Invoices
    \Templates\oPurchaseInvoices for AP Invoices
    and so on
    I presume you would want to import them as Service Invoice so
    In the Document template
    Set
    DocNum....................................DocType......................HandWritten
    original Invoice number...............dDocument_Service..............tYes
    Document_lines
    AccountCode
    Opening Balance Account Code (Opening Balance Account is generally created in the Equity drawer and is used purely for all Opening trasactions and will balance out to zero (0) once all opening data from legacy system has been brought over)
    Let me know if you need further direction
    Suda

  • Base Ledger balance empty in KE5T

    Hi gurus
    I was trying to compare the FI and PCA postings using ke5t and what i found out was that the base ledger balance was empty,
    where the compledger had balances in it. can somebody tell me why could this be happening thought i have maintained the 3KEH table and assigned the pca in the financial documents ? secondly i am not able find the navigation path for KE5T in ECC6.
    regards
    sayeed

    Hello Sayeed,
    Let me tell you the steps which performing in our premises.
    Four steps are there right from T code: 1KEK, F.5D, KE5T and GR55
    1KEK: This application used to perform transfer PCA balances upto the period you enter
    For eg If I enter Period "3", Fiscal Year "2013" and Execute then System will calculate right from     Period "1" to "3" for that fiscal year
    F.5D: It simply calculate balance sheet adjustment
    KE5T: This application used to monitor/ compare PCA Balances and G/L Transaction figures are match or not If not match found, please re-run this right from 1st step because Entries may be posting.
    GR55: This is a final report. It is used to extract data from PCA as well as G/L accounts as Trial balances.

  • How do I print General Ledger Balances for a particular day

    HI Sap Gurus,
    I want to print general ledger balances as of a particular day/date.  I did use FBL3n, but it gives me with line items,
    I want just the totals.  Do you know of any other report I can use.
    Would really appreciate the help
    Thanks so much will surely avoid points
    Pearina

    Hi Ms. Pearina
    The only way you can get the totals for one date is using FBL3n or the S_ALR reports & the only way you can print only the total instead of every line item is by running FBL3n & clicking on the ' * * ' at the bottom line that shows the total of the GL account.  Then you will be able to eliminate all the line items from your print out.  You can save this as a layout & call that layout everytime you only want to see the totals.  You can also default the layout if you want.
    Any further questions, please post your follow up...
    If useful, award points please...
    Thanks
    Morgan

  • HT1632 I can view a workout on my ipod touch history, but not in itunes or on nike+ website.  I can't seem to upload this run and it's really annoying as I'm loosing about 12k of runs.  It seems to happen when I program in a custom run.  Can you help?

    Hi there,
    I have just done a custom run on my Ipod touch 2nd Gen of 12k.  When I finished the run is appearing in my run history on my iPod touch, however it is not appearing in my itunes 'Nike+' tab, or on the Nike + website.  I can't seem to get this run to sync and it is really annoying because I'll be loosing 12k.  Can anyone help or has experienced this before?  I know there are solutions to add runs to iPod nano's and older iPods using the 'Enable disk' and iPod_control function however from what I'm aware you cannot do this on an iPod touch.  Can anyone please help?
    Many thanks
    Phil

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • GR/IR clearing account ledger balance discrepancy

    Hello All,
    When we are checking GR/IR (SR/IR) account ledger balance in FS10N, open items balance and some cleared item balance also coming in the FS10N. but it should only display open item balance and not cleared item balance, cleared item balance should became zero.
    Ex:- MIGO Rs 5000 was done on 01.04.2010 and the MIRO was done Rs 5000 on 01.07.2011 in the FS10N for the period 01.04.2010 u2013 30.04.2010 balance is showing 5000- credit amount but corresponding clearing entry (MIRO) is not appearing. So Rs 5000 credit appearing. Actually balance should be Zero here.
    Can any one let us know what the cause was?
    Thanks,
    Ratnam

    FS10N is showing partial balances
    debit of the month & credit of the month & balance of the month & cumulated balances.
    Choose the last one to see all.
    if you don't want to see cleared items, use FBL3N.

  • Fund center reports Assigned values are not matching with ledger balances.

    Thanks for your Support. We have activated funds management in May-2009. And deactivated one or two times. Now the status is active.
    Now we are taking reports the assigned values are not matching with gl ledger balances.
    1. We need to update records for April- May.
    2. Records in between deactivated and activate time.
    Please suggest updating fund centers and commitments.
    Regards

    hi ELI
    i have checked the follwoing secnarios
    1. funds management deactivated.
    2. one document posted  with amount10000
    3. funds management activated.
    4. we have executed FMN0
    here no document is selected after execution.
    Please suggest what are the activities we need to do if i am wrong...
    Regards

  • View Bank Ledger Balances

    Hi All,
    I have the following requirement from the Client. The requirement is the bank ledger balances are required to be known. But the cash account selected is a common account for all the bank accounts.
    My question is, is there any way out to know the bank ledger balances when the bank cash account is common for mulitple bank accounts
    Thanks and Regards
    Prasad

    Hi Sharma,
    I am not getting your qn properly. But will try to explain you.
    Do you need vendor paid line items with check numbers? If this is your question, it is possible from SQ01.(Query). Use tables BSAK, PAYR by joining the payment document number.
    Hope this will work for you.
    Please assign points if useful. Please mail me if you need further information.
    Thanks.

  • Ledger Balance

    Dear all,
    How to block other plants or other depots people from seeing the ledger balances of each other?
    Please suggest.
    Thanks & Regards,
    A.Anandarajan.

    Hi Anandarajan,
    To block other plants or other depots people from seeing the ledger balances of each other, you will have to create an authorization matrix (Can be in Excel/Word) as to which peson is authorized to view which plants & which depots. After setting up the matrix for all individuals with the help of the Basis person you can give authorizations as per the matrix.
    Hope this helps.
    Thank You.
    Regards,
    AVD

  • Custom Run-Time Menu error when named "FileMenu.​rtm"

    Discovered an interesting "feature" (error?) in LabVIEW 2009 when using custom run-time file menus.
    If you create a custom run-time menu (.rtm) and name it "FileMenu.rtm" the menu will not function correctly in executable format.
    In my LabVIEW Project, any VIs which called this custom file menu worked correctly in the project, but when I built an executable, the VIs defaulted to the default file menu.  This was not due to a corrupted .rtm file or the file not being included in the executable.  Instead after extensive debugging I determined that the name "FileMenu.rtm" is somehow reserved in LabVIEW and any executables that are built have the custom run-time menu overwritten by the default.  The tricky part of this error is that it goes unnoticed while the code is still in development and only presents itself after being built into an executable.
    Simply changing the name of the file fixed the executable run-time menu.

    Chris,
    Thanks for trying it out.  It seems that my forum post may have been a bit rushed.  
    I tried to duplicate the problem in a new project from scratch and similarly was unable to reproduce it.  I will try more soon, and in doing so perhaps reveal the true underlying problem.  I would post the original code but it is proprietary.
    I was running LabVIEW 2009 and Windows XP when the problem first presented itself.  I updated to LabVIEW 2009 SP1 as part of my debugging and the problem still presented itself.
    V/R,
    ~David

  • Check marks on custom run-time menus

    Is there a simple way to add a check mark for currently selected item on custom run-time menus?  
    The only method I have found is to fire off of the "Shortcut Menu Activation?" event, grab the menu reference, and basically recreate the shortcut menu with the proper check marks based on boolean values.  This method just seems ... cumbersome for something that should (in theory) be fairly common. I can't help but think there is a better solution.
    Thanks!
    Solved!
    Go to Solution.

    Hi Bown,
    you can assign custom menus with the menu editor to your controls/VIs. They will be saved as rtm file.
    Using the known tag names of such custom menus you can set the checkmark for your tags without rebuilding the menu on activation each time…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for

  • How to import a Webi report from XI 3.0 to XI 2.0

    Hi All I have a requirement to open a webi report (*.wid) from XI 3.0 in XI 2.0, any ideas how i get this file in the XI2.0 CMS? thanks

  • Compilation failed while generating stub classes using wscompile

    I am new to Web Services. I am trying to generate client stub classes from WSDL (provided by Seapine's with TestTarckPro Software), using wscompile. I am using JWSDP 1.6 ================================================================================

  • IPad 2 lost cellular service after upgrade to iOS 8.1

    Device: iPad 2 Model A1397 16GB My cellular service worked fine prior to the upgrade to iOS 8.1. After completing the upgrade, my cellular connection always says "Searching..." and never finds service. I have tried restoring iOS 8.1 through iTunes, b

  • Error in Installation Of EP

    Hi While i am trying to install EP the Error occurs as MOS-01017  Processing of adapt operation   Content of table: t_InQMy_ADAPTIONS_CHECK   Row[0]    OpMode="CHECKIFNOTSTRINGS" PatternDefinitions="%BOL%:Line:%EOL%" PatternDefinitionsSeparator="_AND

  • Locking text frames to a layout (for threaded text)

    I am currently working on a long document and am using threaded text throughout.  There are few parts in the book where I am using 2 column text frames and other irregular text frames.  Is there a way to lock that style of text (2-column..etc) with t