General ledger

how would i know the open period in oracle general ledger?
please provide the script..

Hi
You can see the open Period in GL as per the following Navigation
Responsibility : General Ledger
Navigation : Setup > Open/Close
Rgds
Sunil

Similar Messages

  • Business One C# DI API's for General Ledger Report?

    I am working on the General Ledger Report and unable to find the DI API's for C# for the following cases. If somebody can point me the API's, that would be really helpful. I have handle to the logged in company.
    Get all ChartOfAccounts
    Get AccountSegmentations
    Get BusinessPartners
    Get JournalEntries_lines
    I am new to SAP. The documentation is bit unclear. I am using the following code to load the objects. Now it is unclear how to loop through the journalvouchers to load all the lines one by one.
    SAPbobsCOM.AccountSegmentations segmentations =  oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentations);
                SAPbobsCOM.AccountSegmentationCategories categories = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentationCategories);
                SAPbobsCOM.BusinessPartners partners = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oBusinessPartners);
                SAPbobsCOM.JournalVouchers vouchers = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalVouchers);
                SAPbobsCOM.JournalEntries jEntries = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries);
                SAPbobsCOM.JournalEntries_Lines jLines;

    Hi,
    Are you trying to run the report via code?  If so, you can only do that using the UI objects as there is not DIAPI for reporting.
    You first need to activate the menu item for the report:
    connect.SboApp.ActivateMenuItem("13058");
    Once you've done that, you can get the active form which will be your criteria window, use the UIAPI to set your criteria and run the report by getting the OK button object and calling the Click method.
    David

  • General Ledger Accounting (New): Line Items of the Leading Ledger

    Hello Guys,
    We are planning to implement
    General Ledger Accounting (New): Line Items of the Leading Ledger
    0FI_GL_14
    We are in ECC6 sap_appl 6.00 and BI 7.0 SP 14, BI Content 7.3 level 4.0
    The new GL line item is available
    Financial Accounting: General Ledger Accounting (FI-GL)
    Available as of Release - SAP Enhancement Package 3 for SAP ERP 6.0
    Shipment - SAP NetWeaver 7.0 BI Content Add-On 3 Support Package 08
    Content Versions- 1.0; 703
    Just we have  to install SAP NetWeaver 7.0 BI Content Add-On 3 Support Package 08  and on ECC side SAP Enhancement package 3 for ERP 6.0 --. Financial accounting - SAP APPL 603.
    Is it correct. Can you please confirm.
    Thanks
    Senthil

    Hello Senthil,
    Yes, thats engough, since SAP is recommending the same for that datasource 0FI_GL_14. I think you are already in that version.
    See this SAP help document
    [DataSource Transactional Data: 0FI_GL_14|http://help.sap.com/saphelp_nw04s/helpdata/en/45/4f8e8bbf3f4f63a5dd197ef7d53fa2/content.htm]
    Thanks
    Chandran

  • General Ledger Accounting (New): Line Items 0FIGL_O14  Performace issue

    Dear Forum,
    We are facing a performance issue while loading the data to 0FIGL_O14 General Ledger Accounting (New): Line Items from  CUBE ZMMPRC01 -> ODSO 0FIGL_O14 DSO.
    Please see my requirement below for updating the data to 0FIGL_O14 DSO.
    This report is generated to display Dry Dock and Running Repair expenses for the particular Purchase orders with respective G/L's.
    1) The G/L DSO will provide us the 0DEBIT_LC and    0DEB_CRE_DC Foreign currency amount with signs (+/-) amounts and.
    2) ZMMPRC01 Cube   will provide us the 0ORDER_VALUE  (Purchse order value)and    0INVCD_AMNT Invoice  amount.
    While we are loading the data from  CUBE ZMMPRC01 -> ODSO 0FIGL_O14 DSO ,we have created nearly 19 InfoObject  level routine to derive the below mentioned fields data for MM Purchase Order related records.
    0CHRT_ACCTS    Chart of accounts
    0ITEM_NUM      Number of line item within accounting documen
    0AC_DOC_NO     Accounting document number
    0GL_ACCOUNT    G/L Account
    0COMP_CODE     Company code
    0COSTCENTER    Cost Center
    0CO_AREA       Controlling area
    0COSTELMNT     Cost Element
    0SEGMENT       Segment for Segmental Reporting
    0BUS_AREA      Business area
    0FUNC_AREA     Functional area
    0AC_DOC_NR     Document Number (General Ledger View)
    0AC_DOC_TYP    Document type
    0POST_KEY      Posting key
    0PSTNG_DATE    Posting date in the document
    0DOC_CURRCY    Document currency
    0LOC_CURTP2    Currency Type of Second Local Currency
    0CALQUART1     Quarter
    0CALYEAR       Calendar year
    For reference Please see the below logic to derive the data for PO related record.
    DATA:
          MONITOR_REC    TYPE rsmonitor.
    $$ begin of routine - insert your code only below this line        -
        ... "insert your code here
        types : begin of ty_FIGL,
                    CHRT_ACCTS type /BI0/OICHRT_ACCTS,
                    ITEM_NUM type /BI0/OIITEM_NUM,
                    AC_DOC_NO type /BI0/OIAC_DOC_NO,
                    GL_ACCOUNT type /BI0/OIGL_ACCOUNT,
                end of ty_FIGL.
        data :it_figl type STANDARD TABLE OF ty_figl,
              wa_figl type ty_figl.
        SELECT single CHRT_ACCTS
                        ITEM_NUM
                        AC_DOC_NO
                        GL_ACCOUNT from /BI0/AFIGL_O1400
                          into wa_figl
                          where DOC_NUM = SOURCE_FIELDS-DOC_NUM and
                                DOC_ITEM = SOURCE_FIELDS-DOC_ITEM and
                                /BIC/Z_PCODE = SOURCE_FIELDS-/BIC/Z_PCODE
                                and
                                /BIC/Z_VOY_NO = SOURCE_FIELDS-/BIC/Z_VOY_NO
                                and
                                FISCYEAR = SOURCE_FIELDS-FISCYEAR.
        if sy-subrc = 0.
          RESULT = wa_figl-AC_DOC_NO.
        ENDIF.
        clear wa_figl.
    Please note the same kind of logic is applied for all the above mentioned fields.
    Here is my concerns and issue.
    For the all above all routines i am referring BI0/AFIGL_O1400
    DSO and finally loading to the Same DSO(BI0/AFIGL_O1400
    The worried part is my DSO  0FIGL_O1400 is currecnly having nearly 60 Lacks records and MM cube is having nearly 55 requests which are required to update to the Above DSO for PO related PO value and Invoice amount.
    The big issue here is while uploading data from MM cube to DSO say for example if the request is having  25,000 records from this  nearly 500-600 records will be updated to DSO.
    But here it is taking huge time ( nearly 3 days for request ) for updating  these records , like this i have to pull 50 more requests from Cube to DSO as per the requirement.
    Please note as of now i haven't created any indexes on DSO to improve this loads.
    Please note am facing this issue in Production environment and need your help ASAP.
    Thanks & Regards,
    Srinivas Padugula

    Hi,
    If selecting data from 0FIGL_O14 is taking long time then you can create secondary indexes on DSO.
    0FIGL_O14 would be huge as data volume directly corresponds to data volume in BSEG.
    But for you requirement, I think what you can do is,
    1. create multiprovider on top of DSO and Cube and create Bex report to give you the fields requried from both the infoproviders, you can then use open hub or APD approach to keep the data in the staging table or direct update DSO and then load the data to the DSO
    2. Create secondary indexes on DSO so that fetching would be faster.
    3. Do the enhancment at R/3 level to fetch fields from MM during load of G/L
    Regards,
    Pravin Karkhanis.

  • New user just for entering JE and General Ledger

    hello experts,
    I created a user, just to enter few of the Journal Enteries and General Ledgers. I gave the rights for JE and also Financial reports but when I open the "G/L account and Business Partner" Report in Financial Report > Accounting, it open the initial parameter window but all Blank I mean no field in it but just OK and Cancel Button.
    Also when I open the next report "General Ledger" Report in the initial parameter window. It does not show the Business Partner or Account Selection field on the top of this said windows.....
    Is there any special Authorization required for this
    Help Required ....

    What is this user license type?  All financial transactions need professional license.
    Thanks,
    Gordon

  • FAGLGA35 - Actual Distribution in New General Ledger accounting

    Dears,
    In transaction FAGLGA35, system gives below mentioned messages :-
    i) No valid sender entries were found. Message no. GA710.
    Diagnosis
    The system did not find a valid sender for cycle 0LZAWL, segment AWL. The problem can be due to the following reasons:
    Master data checking for cycle 0LZAWL, segment AWL, found no valid senders for this segment.
    The senders are valid from a master data standpoint, but the system found no posted values or quantities in the database corresponding to your selection criteria. The sender and the segment will be processed only if the cycle works iteratively and at least one sender in another segment receives values which it can then allocate iteratively.
    In cycles for indirect activity allocation, this message appears if segment AWL is to allocate posted sender activity quantities but the sender has been completely scheduled. Complete scheduling of posted activity quantities occurs, for example, if you use cycle AWL in a test run but already used it in a current real processing run in the system.
    System Response
    The system cannot process the segment.
    Procedure
    Check the definition of segment AWL in cycle 0LZAWL. In particular, check the validity of the sender master data for the settlement period.
    To do so in cycle maintenance, choose "Formal check".
    If segment AWL allocates posted values or quantities, the senders in the segment are valid only if:
    The sender holds actually posted values/quantities not equal to 0
    The cycle is iterative, and the sender receives values in another segment which it can then allocate iteratively.
    If necessary, you must set the iteration indicator in cycle 0LZAWL.
    In a cycle for indirect activity allocation, check whether the cycle is currently in use for posting in the system sender in segment AWL and thus completely schedules the senders in segment AWL.
    If this is the case, cancel the cycle and repeat the cycle execution.
    As per message solution, i do all the things but the same message comes.
    ii) Cycle 0LZAWL, start date 20080401, does not include any senders.
    Message no. GA749
    Diagnosis
    No senders were found for cycle 0LZAWL, starting date 20080401.
    System Response
    It is no longer possible to create receivers and assign senders for the segment.
    Procedure
    Check the definition of the cycle in the maintenance transaction for Actual Distribution: General Ledger. No valid sender cost centers could be found to match your selection.
    If you use the sender rules "Posted amounts" or "Posted quantities", check whether records exist in the database for the criteria you entered (cost element, version...)
    During indirect activity allocation with the sender rule "posted quantities", you should also note that only the difference between the planned/posted activity allocation and the scheduled activity quantity is allocated. If you entered activity types as sender, you should at this point also check the activity type category. For those quantities posted with an activity type of category 1 (manual entry, manual allocation) no indirect activity allocation is possible.
    1. If this is an allocation in the FI/FI-SL area, the problem could also be due to the inheritance logic for FI-SL totals tables, whose "Inheritance of sender based on the receiver" indicator is activated in the "Partner object update" view (T811U-INHERSRC). These are tables that were installed before Release 4.6A.
    Use transaction GCA8 to check this, and see the section on:
    Inheritance Logic for Allocations
    then correct the affected cycle, if required.
    Is anybody have any solution. Please suggest it.
    Regards,
    Kalpik Shah

    s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items) this is a report generated.

  • Posting of CarryForward New general ledger

    Hi financial wizards,
    our client uses new general ledger. The accounting block has been extended with some ZZ user fields carrying results determined via substitution exits during posting.
    The additional customer fields are added to the accounting block and are stored on item level (BSEG) as on aggregate level (FAGLFLEXT).
    After the run of transaction FAGLGVTR - 'Balance Carryforward (New)' we have the correct values in the carryforward column of the target account, but values from customer fields are not transfered.
    SAP will not help us with a note at this time; the features may be integrated in a later release.
    Now my question: How to post the carryforward values manually or by program? I know the SAP Carryforward does not create any documents but after the run the Carryforward period (period 0 in former times) is filled with the sums of previous years P+L accounts. Carryforward works correct i.E. for profit center but not for the additional clients fields.
    We need some good ideas as how to overcome this      obstacle.
    Regards,
    Clemens

    Dear Peter,
    I am afraid that you are mistaken. There is lot of difference between the New GL Accounting and COPA. They are entirely different and its utility is also different.
    Here in New Gl, Characteristics means, segment characteristics, for example, business area, profit center, functional area, segment.
    Trust this answers your query!
    Cheers,
    Ashok SINGH

  • Reviewing General Ledger Accounts - No line item detail

    I have just started with a new company using SAP Business One for the first time. My frustration is when reviewing the general ledger line items that there is no detail coming through that lets me see what the amounts relate to.  No Description or Vendor  Name.  There is absolutely no way I can see if there are any posting errors to accounts unless I drill into each and every line item to see what it is.  I have been into Form Settings but the fields required are not available options to select.
    Every accounting system I have ever used has this standard feature - from off the shelf packages to customised SAP R/3. 
    I have spoken to the Implementation Company's Support Line and they have said that it would be a costly exercise to request a report that provides this information. 
    I can't accept that this is standard - why would anyone use the system????
    I guess I just want to hear that this is not the norm with SAP Business One
    Thanks

    Try the General Ledger Report, there is a little more detail there - the BP Name is, I'm sure, included in that and you still get the drill down.
    In the account balance screen, you can add the "Details" field which may give you more information as it usually contains the BP Code. It is not a difficult exercise for you support team to add a formatted search to populat that with the account name instead - it is a reasonably common customisation.

  • General Ledger report with Op Bal , Trans Line Items and Closing Balance

    Hi Experts,
    My clients needs a General Ledger report which should show Opening balance and all transactions line items with closing figure in a single report for a fiscal year in the given date range wise. Can I get a report in standard sap. Waiting for your reply.
    Thanks in Advance,
    Arabinda Parida

    Hi Parida,
    There is no such report in SAP. Basically all standard report gives line items not with opening and closing balances. Anyway check mentioned transaction which may help to you.
    S_ALR_87012309....It is cash journal report. Anyway you can enter GL account get opening and closing balances with all relavent transactions.
    Regards
    Suma

  • Difference in Open Balance As per Trial Balance and General Ledger in SAP

    Dear All,
    1 ) Whle generating trial balance in SAP B1 for one Business master there is a difference in Opening Balance as per Trial Balance and as per General Ledger how ever closing balance in matching.
    Difference As follows
    Report Name      ob cr     ob dr           dr                   cr                                  CL
    General Balance          614536     19237612.34            18650320.01     1201828.33
    Trial balanceB     4521743.19          19237612.34       13514040.82     1201828.33
    Is it possible  the open balnce should be same in both report. The opening balance as per GL report is correct.
    2)  I have run the period end closing for Apr- 2010 to Mar 2011 after that I generated the traial balance for Apr-1-2011 where the opening balances for expense account  and revenue account is showing technically after period end closing the balance become zero for all closing balance revenue and expenses accounts.
    Please note that there are some entries in revenue and expense account in on 1st apr. 2011.
    Please guide on this.
    Regards
    Aarati Kollur.
    <a href="http://www.youtubemp3.net/">youtube mp3</a>, <a href="http://www.limewire.name/">limewire</a>

    Hi,
    I think you should re-visit the selection creteria for the Trial balance.
    The Display Opening Balance has two options. If you select from 'Start of Company activity', then it will include every balance of previous year.
    Check for the Display Closing balance option as well. As you have performed the Period End closing, the checkbox options can have an impact on the outcome in the report.
    Check the selection again.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Changes from 11i to R12 for General Ledger Module

    Can anybody help me from where can i get the document for technical changes from 11i to R12 for General Ledger Module.

    check at:
    http://www.oracleappshub.com/general-ledger/r12-oracle-general-ledger-new-and-enhanced-features/

  • F-03 and General Ledger View in New GL

    Hi All,
    SAP Version :ECC 6.0
    FM activated
    I am able to view the Profit Center in the u2018General Ledgeru2019 view in the document. But when the same document is seen in F-03 Profit Center cannot be seen (I understand F-03 follows the Entry View).
    Is there any way
    that the u2018General Ledgeru2019 View can be used while selecting documents in F-03(Clear GL Ac) ?
    OR
    Profit Center (not available in Entry view) can be viewed in F-03 ?
    Regards,
    Dev

    Hi
    Thanks for reply!
    SDNFICO,
    that the u2018General Ledgeru2019 View can be used while selecting documents in F-03(Clear GL Ac) ?
    In FB00 > Document Display tab > Select check box "General Ledger View"
    This doesn't helps. It changes FB03 view and nothing in F-03.My query is related to F-03.
    Dawn,
    I have done the same and later on found that PC is not visible.
    Any more replies!
    Regards
    Dev

  • New General ledger accounting in ECC 6.0 : Profit centre not in BSID table

    hi,
    I already create new transaction code and report from standard transaction code
    *s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items)* and i
    also add Profit center fields into Dynamic selection.
    My problem is, if i run the report using customer account the output is displayed but
    if i run the report with customer & profit centre the output is not displayed. currently i'm using
    new General ledger accounting in ECC 6.0 and when i look into bsid table the value
    is empty for profit centre and the value for profit centre are stored in new table
    FAGLFLEXT.
    do i miss something?
    thanks.

    s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items) this is a report generated.

  • Running AP transfer to General Ledger: Complete with Error

    Below is the error I got while trying to run : AP transfer to General Ledger and I got Complete with Error:
    Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_selection_type='1'
    p_set_of_books_id='1'
    p_include_reporting_sob='N'
    p_batch_name='jginv'
    p_from_date='2007/01/01 00:00:00'
    p_to_date='2008/12/31 00:00:00'
    p_accounting_method='Accrual'
    p_journal_category='A'
    p_validate_account='Y'
    p_gl_transfer_mode='D'
    p_submit_journal_import='Y'
    p_summary_journal_entry='N'
    p_debug_flag='N'
    p_trace_flag='N'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    LOG :
    Report: c:\oracle11i\visappl\ap\11.5.0\reports\US\APXGLTRN.rdf
    Logged onto server:
    Username:
    LOG :
    Logged onto server:
    Username: APPS
    MSG MSG-00001: After SRWINIT
    MSG MSG-00002: After Get_Sob_Ids
    MSG MSG-00002: After Get_Company_Name
    MSG MSG-00003: After Get_NLS_Strings
    MSG MSG-00004: After Get_Base_Curr_Data
    MSG MSG-00005: Calling Transfer Request
    MSG MSG-00005: After calling Transfer Request
    MSG MSG-00100: Error occured in Insert_Liability_Balance
    MSG MSG-00101: Error Code :-20100
    MSG MSG-00102: Error Message :ORA-20100: File o0059033.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log.
    ORA-06512: at "APPS.FND_FILE", line 396
    ORA-06512: at "APPS.FND_FILE", line 499
    ORA-06512: at "APPS.AP_TRIAL_BALANCE_PKG", line 1252
    MSG MSG-00005: Insert_Liability_Balance Failed.
    MSG MSG-00000: User-Defined Exception
    ERR REP-1419: 'beforereport': PL/SQL program aborted.
    Program exited with status 3
    Cause: The program terminated, returning status code 3.
    Action: Check your installation manual for the meaning of this code on this operating system.
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 2748532.
    Review your concurrent request log and/or report output file for more detailed information.
    Jon

    Remember that this problem is from Vision training database and not real life productionIt does not matter whether you have a Vision demo database or fresh database installation.
    The APPLPTMP directory does not even exist- Open a new DOS session
    - cd c:\oracle11i\visappl
    - Run envshell.cmd
    - Type "echo %APPLPTMP%", does it return something?

  • Requirement of  General Ledger Trial Balance Detail Report Date wise

    Thanks for your reply
    We have to requirement of General Ledger Trial Balance Detail Report Date wise.
    Please help for that.
    Thanks.

    Take sum(Accounted_dr) - Sum(Accounted_Cr) till the Accounting Date..... from GL_BALANCES
    Edited by: 924750 on Sep 16, 2012 3:42 AM

  • How to implement a General Ledger in Dynpro

    Has anyone tried to implement a general ledger in Dynpro using a table?
    In a general ledger, you want the time dimension going across the top in separate columns, and tracked items going down the left hand side.
    The trouble is, the Dynpro table only binds context elements to a column rather than having the option of binding to a row. I can see why this is, but it is still makes life difficult for me.
    Like the table, my data is coming in on a column by column basis with the first column being the date, followed by all the stock ledger items pertaining to that date.
    I want to display a full fiscal year on one page so this means having twelve columns for each of the fiscal months, and one column for the line item names (units sold, inventory, value of sales ... etc)
    One idea for implementing this was to create a generic structure containing twelve attributes. Each attribute would contain the values associated with a particular fiscal month. I would then create a node in my view context based on this structure and bind each column in my table to the corresponding fiscal month attribute in this structure.
    Upon loading the stock ledger data, I would create a series of node instances for each one of my stock ledger items and copy the data into the appropriate attribute.
    This procedure seems REALLLY complex and I am hoping there is someone out there who may have a simpler solution.
    Any suggestions?

    Just an adendum to this thread.
    I have now got the display working correctly for this application ...ie. the fiscal periods are displayed in columns and the attributes for each fiscal period are displayed row by row.
    Now I am faced with the challenge of update the data on the database once it is edited by the users.
    I can check the .isChangedByClient flag to tell which rows were edited but I also need to know which column(s) were edited since they contain the data that needs to be passed to my update routine.
    So far the only way I can think of implementing this is to maintain a parallel copy of the ledger and do a comparison of the "before" and "after".  With this information I generate my own list of edited columns.  YUCK!
    Perhaps if there was a validation event that was fired whenever a cell was changed then I could hook into that and maintain my own "isChanged" list of columns but I don't see anything like that.
    Any suggestions?

Maybe you are looking for

  • After ios 6.1 update no service?

    After updating my software on my iphone 4s, I can no longer place or receive calls?

  • Get Logical system name from Message type

    Hi I need to call Transaction  BD93 for which I need Logical system. I have created a Custom basic type for CLFMAS02. Now I need to find out in thhe program which logical system is configured for the custoem basic type say 'ZCLFMAS02'. Is ther any Fu

  • Table data maintenace

    Hi, I have customized table for data maintenace and be accessed via SM30. Client's requirement is to have 2 steps similar to OX09, enter plant first then go in to storage location data maintenance for the selected plant. Is it dialog program? can we

  • Syncing a selection of contacts

    When I connect my iPhone to my iMac to sync, a window pops up informing me that it'll add 14 new contacts, modify 3 and delete 12 contacts in my Address Book on my computer. How do I sync the 14 new contacts and the 3 modified ones but NOT delete the

  • Why can't change default cipersuits of JSSE by java system property?

    I am using jdk1.5.0_17,Now I am trying to change default ciphersuits of JSSE by java system property,so all code can be kept unchanged.In JSSE Reference Guide I know default ciphersuits can be customized by https.cipherSuites system property.I run my