FBCJ How to transfer available closing balance to main bank

Hi,
May I know how to transfer the available closing balance in the cash journal back to the main bank?
Thank you

Dear:
          Create a new Transaction type in FBCJC2 with type B and give in you main bank account number there. Save it. Now you can transfer the balance from your respective Cash journal to main bank account.
Regards

Similar Messages

  • How to transfer sundry creditor balance to another dummy sundry creditor ac

    Dear all
    How to transfer sundry creditor balance to another dummy sundry creditor account
    pls help me
    Ajeesh.s

    Hi:
       Do not create any additional GL for it. ...Go to F-30...Transfer posting with clearing..choose open items...select account type K and enter vendor whose open items are to be transferred ...process open items...select all open items and go to overview button..in posting key give appropriate posting key and vendor enter amount and simulate...If you want to post this to GL then use Clearing GL from which latter on you can re transfer the entries to this vendor..
    This will do the job for you..
    Regards

  • IN FF67 BRS how to edit the closing balance

    Hi Gurus,
    How to delete or edit the closing balance already entered in FF67 and also after savings but before posting....
    Also kindly tell me what to do with the line items already entered in the ff67 but for some reasons it has not got posted.... wht could be the possible reasons...
    thanks in adv
    Edited by: Vikas on Feb 12, 2009 7:52 AM

    The easy way to solve this issue (without having to delete the whole bank statement with special reports) is as follows:
    1) It is not possible to change the begin- or end-balance in the starting screen, even when the amounts seem to be editable.
    2) However there is an option if you proceed to the next screen, where you enter the individual bank statement lines. You proceed as by choosing menu path: Goto > Change Controls
    3) A pop-up screen will appear. In this screen you are allowed to change the begin or end balance
    That's the way to go. Good luck.

  • Opening vs closing balance of the bank does not match

    Hi expert,
    I have loaded 2 bank statements via transaction FF_5. (for Spain)
    When looking at transaction FEBA, I see that the opening balance of today is not the same as the closing balance of yesterday.
    What could be the problem?
    Thank you for providing your feedback.
    Kind regards,
    Linda

    Good morning,
    Thank you.
    It seems that both bank statements are the same, with the same value date
    How can it be that 2 statements which have the same values can be loaded?
    The ID in FEBA is different.
    Thank you.
    Kind regards,
    Linda

  • How to transfer one BP balance to another ?

    Hi All,
    I just  want to transfer balances of obe BP to another , howcan i do it ?
    Regards
    Ankur

    Hi Ankur, there are different ways to handle this depending upon your need. One way wud be to create a new BP and select the same in both the BP under payment consolidation , or what you can do is, first make payments for your old BP so that the open invoices are closed and then pass a JE.. Hope this helps.
    Regards,
    Joseph

  • How can I transfer my unused Apple ID Balance to a bank account?

    I do not own any more Apple products and I wish to transfer my Apple Balance to my bank account. How can I do this? Amazon's process is simple, and I cannot find any information on how to approach this issue with iTunes.
    Thank you.

    You cannot.
    Regards.

  • GL a/c opening and closing balances

    Hi All,
    Below is my selection screen:
    select-options : s_bukrs for bkpf-bukrs obligatory.
    parameter      :  p_gjahr like bkpf-gjahr obligatory.
    select-options : s_budat for bkpf-budat,
                           s_monat for bkpf-monat,
                           s_hkont for bseg-hkont.
    I am displaying the data from tables BKPF, BSEG, KNA1-NAME1, LFA1-NAME1, SKAT-TXT50. I have to fetch Opening and Closing balances for GL a/c's. I am fetching data from table GLT0-HSLVT(opening balance). But unable to get the data for closing balance based on the period given on the selection screen. In my report I am looping on table it_bseg to populate the final internal table. How to get the closing balances's total based on the input.
    Please help me.
    Thanks,
    Haritha

    Hello Haritha,
                        Try this code by building a function module. This would cover both opening and closing balance.
    FUNCTION ZGL_OPENING_CLOSING_BAL_KEYDAT.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(COMP) TYPE  BKPF-BUKRS
    *"     REFERENCE(DATE) TYPE  BKPF-BUDAT
    *"     REFERENCE(ACCT) TYPE  BSEG-HKONT
    *"  EXPORTING
    *"     REFERENCE(BALANCE) TYPE  BSEG-DMBTR
    DATA : COMPANYCODEID  LIKE  BAPI0002_2-COMP_CODE     ,
    POSTING_DATE   LIKE  BAPI0002_4-POSTING_DATE  ,
    FISCAL_YEAR    LIKE  BAPI0002_4-FISCAL_YEAR   ,
    FISCAL_PERIOD  LIKE  BAPI0002_4-FISCAL_PERIOD .
    DATA : ACCOUNT_BALANCES  TYPE TABLE OF BAPI3006_4 WITH HEADER LINE.
    DATA : BAL TYPE BSEG-DMBTR.
    DATA : IV_DATE  TYPE  D   ,
    EV_MONTH_BEGIN_DATE  TYPE  D,
    EV_MONTH_END_DATE  TYPE  D .
    DATA : COMPANYCODE  LIKE  BAPI3006_0-COMP_CODE,
    GLACCT  LIKE  BAPI3006_0-GL_ACCOUNT ,
    FISCALYEAR  LIKE  BAPI3006_4-FISC_YEAR,
    CURRENCYTYPE  LIKE  BAPI3006_5-CURR_TYPE VALUE 10.
    DATA : IT_BKPF TYPE TABLE OF BKPF WITH HEADER LINE.
    DATA : BEGIN OF IT_BSEG OCCURS 0,
    BELNR TYPE BSEG-BELNR,
    GJAHR TYPE BSEG-GJAHR,
    SHKZG TYPE BSEG-SHKZG  ,
    DMBTR TYPE BSEG-DMBTR,
    END OF IT_BSEG.
    COMPANYCODEID = COMP.
    POSTING_DATE = DATE.
    IV_DATE  = DATE.
    CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'
    EXPORTING
    IV_DATE             = IV_DATE
    IMPORTING
    EV_MONTH_BEGIN_DATE = EV_MONTH_BEGIN_DATE
    EV_MONTH_END_DATE   = EV_MONTH_END_DATE.
    CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD'
    EXPORTING
    COMPANYCODEID = COMPANYCODEID
    POSTING_DATE  = POSTING_DATE
    IMPORTING
    FISCAL_YEAR   = FISCAL_YEAR
    FISCAL_PERIOD = FISCAL_PERIOD.
    IF EV_MONTH_END_DATE NE DATE.
    IF FISCAL_PERIOD = 1.
    FISCAL_PERIOD = 12              .
    FISCAL_YEAR = FISCAL_YEAR - 1  .
    ELSE.
    FISCAL_PERIOD =  FISCAL_PERIOD - 1.
    ENDIF.
    ENDIF.
    COMPANYCODE  =  COMP.
    GLACCT  = ACCT.
    FISCALYEAR  = FISCAL_YEAR.
    CALL FUNCTION 'BAPI_GL_ACC_GETPERIODBALANCES'
    EXPORTING
    COMPANYCODE      = COMPANYCODE
    GLACCT           = GLACCT
    FISCALYEAR       = FISCALYEAR
    CURRENCYTYPE     = CURRENCYTYPE
    TABLES
    ACCOUNT_BALANCES = ACCOUNT_BALANCES.
    READ TABLE ACCOUNT_BALANCES  WITH KEY FISC_YEAR = FISCALYEAR FIS_PERIOD = FISCAL_PERIOD.
    IF SY-SUBRC = 0.
    BALANCE =  ACCOUNT_BALANCES-BALANCE.
    ENDIF.
    IF EV_MONTH_END_DATE NE DATE.
    SELECT * FROM BKPF INTO TABLE IT_BKPF WHERE BUKRS = COMP AND BUDAT >= EV_MONTH_BEGIN_DATE
    AND BUDAT <= DATE.
    IF IT_BKPF[] IS NOT INITIAL.
    SELECT BELNR GJAHR SHKZG DMBTR
    FROM BSEG INTO CORRESPONDING FIELDS OF TABLE IT_BSEG
    FOR ALL ENTRIES IN IT_BKPF
    WHERE BELNR = IT_BKPF-BELNR AND GJAHR = IT_BKPF-GJAHR AND HKONT = ACCT AND BUKRS = COMP.
    ENDIF.
    LOOP AT IT_BSEG.
    IF IT_BSEG-SHKZG = 'H'.
    BAL = BAL - IT_BSEG-DMBTR.
    ELSEIF IT_BSEG-SHKZG = 'S'.
    BAL = BAL + IT_BSEG-DMBTR.
    ENDIF.
    ENDLOOP.
    BALANCE = BALANCE + BAL.
    ENDIF.
    ENDFUNCTION.
    Raghav

  • Calculating Opening & Closing Balances

    Hi Experts.
    I want to know how to calculate Opening & closing Balances of stock Like MB5B transaction using reports.
    I am giving Material N0, Posting date,Plant as Input
    & want to extract Material Document Number, Quantity, Issues & receipts seperately, Opening & Closing Balance of Stock.Also it should be performed day wise.
    This report should be a normal report without using ALV's.
    Can Some Body Help me. Also let me know which tables & fields are being used.
    Thanks.
    Ravi S

    Hi,
    There are various t. code to check line items for vendor like: S_ALR_87012103 but Any table is not helping to check opening/closeing balance for vendor.
    Table BSIK and BSAK are having are records for open items and close items for vendor and system calculate the balance by using these tables.
    Regards,
    Vinod

  • Transfer Dep Fund balances to new Dep Fund GL

    Dear Experts
    We are working on ECC 6.0.
    For two of our Asset classes the Dep fund GL is same which we now plan to separate into two respective Dep Fund GLs.
    For the currect FY there is no problem as after assigning the new GL, the dep will be charged to respective fund GLs. But how to transfer the earlier balances from old fund GL to new fund GL for a particular asset class?
    I've thought of two processes -
    1st process -
    1. Performing Dep write off for the toltal dep charged so far.
    2. Now assign the new Dep fund GL.
    3. Post unplanned dep equalling dep written off which will go to new GL.
    2nd process -
    1. Assign the new Dep fund GL.
    2. Perform OASV debiting old dep fund GL and crediting new fund GL.
    Please suggest if the above processes are ok and which is better to perform or can there be any other better process.
    Regards
    Kapil

    Hi Srinu
    Yes, I meant Accumulated dep only.
    Thanks for your suggestion.
    So far i've seen using OASV for handling leagcy data, so was lilttle sceptical about it.
    I dont think using OASV in our situation would bring any inconsistency in our system. Right?
    But one demerit would be that it wont have any linkage with the assets in question unlike in 1st process.
    Please suggest.
    Regards
    Kapil

  • Closing Balance of GL is not match with opeaning Balance

    Hi Experts
    We are yet go for Closing activities, but i am seeing that some of the GL's are showing incorrect balances between opening and closing balances
    For Ex: Bank GL showing 563576 as closing balance in 2008 and the same GL is showing 459875 as opening balance in 2009
    I heard that, this is because of not executing Closing Activities, i would like to know why SAP system is showing such way
    Regards
    Sreenivasulu

    Hi,
    This is because you would have posted transactions in the previous fiscal year after carrying out the carry forward of balances in FAGLGVTR.
    You would need to execute FAGLGVTR again.
    Trust this helps.

  • Opening and closing balance diff.In T.code FBCJ

    Hi exports,
    While we r checking Fbcj T.code for a day, the the closing balance of the day is difference for the next day opening balance.What is the reason behind that.
    Eg. In FBCJ-
    30.3.2010       closing balance is      46,888.00/-
    31.3.2010       Opening balance is    46,874.00/-
    So how to solve.
    Thanks
    Rohit

    Hello Rohit!
    Run the report RFCJ1 to delete the balance table TCJ_BALANCE. This table
    exists for performance reasons only. The balance table is regenerated   
    when the cash journal is used.                                          
    Now check the balance in the cash journal - the balance displayed       
    corresponds to the actual total of the line items.                      
    The behaviour is explained in the SAP Note:  1309577 - FBCJ: Incorrect balance in cash journal .
    REgards,
    REnan

  • How to achive Opening Balance & Closing Balance on 0FIAR_O03 DSO

    Hi all,
    Can any body help me in getting the opening and closing balances from 0FIAR_O03 ODS.
    ragards,
    sekhar

    Hi,
    how are u calculating the opening and closing balances means based on  what basis. BY general it should be by the end of the monthe what is the amount of quantity.
    Is this ur requirement?
    Khaja

  • How to calculate opening and closing balance for period

    Hi all,
    i have to find out opening and closing balance.
    the table structure of temporary table is
    select * from hwcn_xn_fa_report_temp1 where asset_id=10029400
    PERIOD_COUNTER CST_OP_BAL CST_ADDITION CST_TRANSFER CST_DISPOSAL COST_CLOSING_BALANCE
    24108 0 0 0
    24109 12000
    24110 0 0 0
    24111 0 0 0
    in this table cst_op_balnce and cost_closing_balace is null
    i have display cost_op_bal and cost_closing_balnce
    cost_closing_balance=cst_op_bal+cst_addition+cst_transfer+cst_disposal
    for period 2408 op_balnce=0 closing_bal=0
    for period 2409 op_balnce=0 closing_balce=1200
    for period 2410 op_bal=1200 closing_bal=1200
    closing balance of dec will be opening bal of jan
    thanks and regards
    Edited by: user10664276 on Apr 19, 2009 11:08 PM
    Edited by: user10664276 on Apr 19, 2009 11:13 PM

    Hi,
    user11118871 wrote:
    Can you explain what that is? Thank you if you have one example.
    ROWS BETWEEN  UNBOUNDED PRECEDING AND 1 PRECEDING
    When you use the analytic SUM (c) function, then, on each row, it returns the values of column (or expression) c from several rows in the result set added together.
    Which rows? That depends.
    If the analytic clause (the part in parentheses after OVER) does not include ORDER BY, then it is all rows.
    If the analytic clause has an ORDER BY clause, but no windowing clause (that is, ROWS BETWEEN ... or RANGE BETWEEN ...), then the rows included in the sum are all rows up to and including the row where the function is being called (as sorted by the analytic ORDER BY).
    If the analytic cluase has both ORDER BY and a windowing clause "ROWS BETWEEN x PRECEDING AND y PRECEDING", then the rows included in the sum are the rows from x to y rows before the one where the function is called.
    Do some experiments with different values of x and y.
    First, create a table like the one in the problem above, but simplified a little.
    CREATE TABLE     test_sum
    (      period     NUMBER
    ,      new_amt     NUMBER
    INSERT INTO test_sum (period, new_amt) VALUES (24108,     1);
    INSERT INTO test_sum (period, new_amt) VALUES (24109,     4);
    INSERT INTO test_sum (period, new_amt) VALUES (24110,     2);
    INSERT INTO test_sum (period, new_amt) VALUES (24111,     8);
    INSERT INTO test_sum (period, new_amt) VALUES (25001,     32);
    INSERT INTO test_sum (period, new_amt) VALUES (25002,     16);
    COMMIT;The original problem above used names that were meaningful for its application, and columns that have nothing to do with the SUM function. Let's simplify the former and lose the latter.
    That problem involved the SUM of three columns added together. Since we just want to understand how the windowing clause works, let's simplify that to one column.
    With these simplifications, my original query is:
    SELECT       period
    ,       new_amt     
    ,       SUM (new_amt) OVER ( ORDER BY          period
                                         ROWS BETWEEN  UNBOUNDED PRECEDING
                                 AND          1            PRECEDING
                        ) AS opening_balance
    ,       SUM (new_amt) OVER ( ORDER BY          period
                        ) AS closing_balance
    FROM       test_sum
    ORDER BY  period;Given the data above, it produces these results:
    .   PERIOD    NEW_AMT OPENING_BALANCE CLOSING_BALANCE
         24108          1                               1
         24109          4               1               5
         24110          2               5               7
         24111          8               7              15
         25001         32              15              47
         25002         16              47              63So, for example, on the row where period=24110,
    opening_balance=5, which is the total of new_amt from all rows up to but not including that row: 5=1+4, and
    closing_balance=7, which is the total of new_amt from all rows up to and including that row: 7=1+4+2.
    To really understand how the windowing clause works, do some experiments. Change the definition of opening_balance to include " BETWEEN x PRECEDING AND y PRECEDING". You'll find that:
    (a) "UNBOUNDED PRECEDING" means the same as "n PRECEDING", where n is greater than the number of rows in your result set.
    (b) "CURRENT ROW" means the same as "0 PRECEDING"
    (c) x must be greater than or equal to y
    (d) neither x nor y can be negative (but you can use "FOLLOWING" instead of "PRECEDING" to get the same effect).
    For more, see the introduction to "Analytic Functions" in the [SQL Language manual|http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/functions001.htm#sthref972]
    When you're finished, don't forget to
    DROP TABLE     test_sum;

  • FBCJ-Opening and Closing balance do not appear in Language Hungary

    *Hello Friends*
    *I am getting a typical problem, as when I see the cash balance in FBCJ with language English, both opening and closing balance are proper, but when I login with Language Hungary(HU) both opening and closing balance disappears and is totally blank. Kindly facilitate me to get the solution*
    *Thanks you in advance*
    *Best Regards*
    *Prashant S*

    Dear
    Thanks for the reply
    The default log in language is DE (German). I agree with you if the problem is with description, but the problem is with amount in opening and closing balance and description is proper, so what is the relevance with support package to do with amount.
    Please facilitate and reply
    Best Regards
    Prashant S

  • How to check RG1 Opening and Closing balance

    Dear All,
    Kindly let me know how to check the opening balance and closing balance in RG1 register.
    Regards,
    Mullairaja

    Dear J Prakash,
    Do we need to check the balance based on Excise Transaction Type?
    I assumed that, we need to check as per the Registers.
    Similary, please clarify another doubt also.
    On what basis we need to check Excise balances?
    1. Based on Excise Registers
    2. Based on Excise Transaction Types
    3. Based on G/L accounts.
    Regards,
    Mullairaja

Maybe you are looking for

  • HT2534 How to set up Apple ID for kids' iPod touch w/out email or credit card

    The subject pretty much covers it - their mother has the iPods set up under her apple ID but we want to set them up for texting. I already found out how to set up iMessage (settings/Messages - on/may have to enter the Apple ID manually/use the green

  • How to restart imac 10.5.2 to previous days, because of accidental deletion

    Help! I deleted my things off my hd cause I am an idiot. I heard you can restart your mac to a previous days settings and have your pics and itunes back

  • How to reset Work Order System Status -NCMP Not completed

    Hi Friends, Please can anyone guide me how do I reset / revert the NCMP (Not completed) System Status of the Work Order. The System Status comes after I have done the Function of "Do Not Execute". Thanks in Advance. Anant

  • Displaying more metadata with Image?

    would anyone mind pointing me to the controls that set what i see under an image when i am not in list view? i would like to see items such as file size, pixel size and camera while looking at reasonably large image sizes (can't really do this in lis

  • Lost pictures

    after having imported pictures from My Pictores in Finder to iPhoto 11, I moved them from My Pictures to the paper basket. Later I identified in iPhoto, that most of the key pictures of the folders are black, inside most of the thumbnails are black.