How to post in March 2008 ?

Hi,
Fiscal yr var is V3 - Apr - Mar.
Special period 13-16.
Now the period is 3 -June 2009 .So i have open the period.
But i have closed period 12 2009. -March 2009.
But  now i want to post some pending entries in Mar 2009.
Then how to post the entry in Mar 2008 ?
What will be the status in OB52 to post in Mar 2008 ?

Hi,,
U can post for March-2009 which u have pending entries for the fiscal year
in OB52 u have to mentain like this 12  2008 to  3 2009 and 12 2008 to 3 2009
after that u have to do carry farward balancess again
Regards,
R.N.Reddy

Similar Messages

  • I bought a Power Mac in March, 2008.  Does this machine have WiFi capability?  If it does how can I initiate WiFi?

    I bought a Power Mac (Mac Pro?) in March, 2008.  Does this machine have Wi Fi capability?  If it does how can I initiate Wi Fi?

    Look on the MenuBar. A Mac with no Wi-FI will shows a distinctive completely grayed-out Wi-Fi Icon (not just a black outline.)
    Or look in About this Mac > ( More Info ) > Report >  system report > Network > Wi-Fi
    Installed Hardware always shows the many channels available. If none are listed, you likely do not have the correct adapter installed.
    These adapters are available on the Used market and Amazon. Installation is fussy because everything is so small, and there are several antenna wires to attach correctly.
    There are two models, and most sellers know which Macs they apply to. Installing the wrong one sometimes means you cannot do a software Upgrade.

  • Closing stock as on 31st march 2008

    Hi,
    I need to take a closing stock report as on 31st march 2008 with quantity and value.
    Please do the needful
    Regards,
    narasiman

    Hai,
    Use Tcode MB5B - Stock on posting date to get the report. Enter the following in the selection parameters,
    1.Material number
    2.Company code or plant, storage location
    3. selection date 31.3.2008
    4. Select the radio button - valuated stock this will give both qty & values.
    5. If batch managed material, select the check boxes in the Totals only - non hierarchial representation, only matls handled in batches & also batches w/o stk segment.

  • FEBA - How to post two or more transactions at the same time?

    Hi,
        one of our banks sends the statemets with many lines that belongs to the same transaction. We have to post partially one line, and afterwards the other line. Any of you know how to post two lines at the same time from the bank statement?
    Thank you in advance,
    Miguel

    Hi,
    I'm sorry for replying so late.
    The solution I reached was to change the a few things in the standard.
    Now I have a new "context menu item". I select two or more transactions and I right-click the mouse. I select that "context menu item" and the next part of the code adds the total amount of the transactions to look for the correct post for the first transaction. Once posted automatically, the next transaction is posted automatically by the system.
    I hope you understand my English. I've problem with technical FI terms.
    Here you are the code:
    First I added a new contextual menu item:
    CL_FEBAN_ALV_GRID=============CCIMP
    call method e_object->add_function
        EXPORTING
            fcode = 'BS_POST_ITEMS'
            text = text-002.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        call method e_object->add_function
            EXPORTING
                fcode = 'ZBS_POST_ITEMS'
                text = text-Z02.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        call method e_object->add_function
            EXPORTING
                fcode = 'BS_KILL_ADVICE'
                text = text-004.
    CL_FEBAN_ALV_GRID=============CCIMP
    when 'BS_POST_ITEMS'.
        call method cl_feban_propagator=>raise_event
            EXPORTING
                i_event = 'POST_ITEMS'
                i_ref_to_item = l_ref_to_item.
    *{ INSERT DHTK904078 2
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZBS_POST_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'ZPOST_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'BS_LOCK_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'LOCK_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    CL_FEBAN_PROPAGATOR===========CM001
        when 'POST_ITEMS'.
            raise event post_items
                exporting i_ref_to_item = i_ref_to_item.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZPOST_ITEMS'.
            data: zvalor(1) value '' .
                export zvalor from 'X' to memory ID 'ZFEBA01'.
                raise event post_items
                    exporting i_ref_to_item = i_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'LOCK_ITEMS'.
            raise event lock_items
                exporting i_ref_to_item = i_ref_to_item.
    Now, I proceed to calculate the total amount of the selected transactions to look for the correct one to post.
    LNEW_FEBAF01
    *     user parameter
            l_feban_position type c.
            field-symbols: <items> type item_tab_type.
    *{ INSERT DHTK904077 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zvalor(1) value '',
            zkwbtr type kwbtr,
            kwb type kwbtr.
        import zvalor to zvalor from memory ID 'ZFEBA01'.
        if ( zvalor is not initial ).
            if not i_ref_to_item is initial.
                assign i_ref_to_item->* to <items>.
                loop at <items> into h_item.
                    select single kwbtr
                        into kwb
                        from febep
                        where kukey = h_item-kukey and
                            esnum = h_item-esnum.
                            zkwbtr = zkwbtr + kwb.
                endloop.
            endif.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        refresh g_picked_items.
        if not i_ref_to_item is initial.
            assign i_ref_to_item->* to <items>.
            loop at <items> into h_item.
                move-corresponding h_item to h_picked_items.
                append h_picked_items to g_picked_items.
            endloop.
        endif.
        submit rfebbu00 and return
            user sy-uname
            with anwnd = r_doc->*-anwnd
            with s_kukey in s_kukey
            with s_esnum in s_esnum
            with buber = g_posting_area
            with mregel = '1'
            with function = 'C'
            with mode = g_mode
            with p_bupro = g_bupro.
    *{ INSERT DHTK904077 2
    *--> Miguel Estu00E9vez - 17/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        if ( zkwbtr is not initial ).
            select single kwbtr
                into kwb
                from febep
                where kukey = h_kukey-low and
                    esnum = h_esnum-low.
                    zkwbtr = zkwbtr - kwb.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 17/06/2008
    *} INSERT
        refresh s_kukey.
        refresh s_esnum.
        clear h_kukey.
        clear h_esnum.
    endloop. "loop over all picked items
    call function 'CUSTOMIZED_MESSAGE'
        EXPORTING
            i_arbgb = 'NEW_FEBA'
            i_dtype = '-'
            i_msgnr = '110'.
    RFEBBU00
    * original transaction currency provided and posting area = 2.
            ftclear-selvon = febep-fwbtr. "INSERT - mpEURO
        ENDIF. "INSERT - mpEURO
        CONDENSE ftclear-selvon NO-GAPS.
    *{ INSERT DHTK903977 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zkwbtr type kwbtr.
        import zkwbtr to zkwbtr from memory ID 'ZKWBTR'.
        if ( zkwbtr is not initial ).
            ftclear-selvon = zkwbtr.
            clear zkwbtr.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
    APPEND ftclear.
    ** Begin of comment C5053248
    * perform druck_buzei_ftclear using ftclear-agkon.

  • Error : Posting period 003 2008 is not open

    Hi Team,
    When I m doing recording through transaction FBS1 it is giving me
    error message "Posting period 003 2008 is not open". Can anyone tell me how to avoid this.
    Thank u in advance.

    Hi,
    use transaction OB52 to open the needed period.
    Regards Vassko!

  • HOW TO POST J1IEX FOR SERV ENTRY SHEET.?

    Dear All ,
                                          User had done a serv entry sheet ,
    against serv P.O in invoice the service is exciseable , pl help me how to post the J1IEX for this serv entry sheet.?
    item catogary in P.O is d & acctt assignnis P( Project )regards,
    sap11
    Edited by: sap11 on Feb 12, 2008 2:03 PM

    sir here the doc type is ZIN i.e for indivisible material & service
    i mean to say that the service provider had given us material & services both .the tax used here is for ED as Applicable + 4% VAT Raw Material , & condition maintained are as below , user had already done serv entry.
    BASB     Base Amount
         Calculated Call
         Sub total
         Service TAx Cenvat S
    JMOP     A/P BED Cenvatable %
    JMX1     A/P BED Setoff %
         Copy of Service TAX
         Total Excise Duty
         Copy Net Price
         Price +ED
         Subtotal for ECess S
         Subtotal for ECess I
    JEC1     A/P ECess Cenvat %
    JSEP     A/P SECess setoff %
    JEX1     A/P ECess Setoff%
    JHX1     A/P SECess SOTot%
         Basic Price + ED
         Basic Price + ED+ECe
         Total Value for VAT
    JVRD     A/P VAT RM Deductibl
    pl help me that in this situation what can be done OR either the P.O is made wrong .
    thanks in adv
    sap11

  • Reg:how to post the parked documents using BDC

    Duplicate message in General deleted.  Please do not post the same question in more than one forum.
    Hi
    I am creating parked Documents using FV50. I am able to check them using FBV0, I am able to select and post the documents using the same transaction. Its working fine. However I want to post the selected parked documents using BDC. I am having problems as the output in FBV0 is in ALV report format. HAving problems selcting the parked documents to be posted. As there any way to post the selected parked documents using BDC.
    Please suggest me a solution for this.
    Thanks,
    Satish
    Edited by: Matt on Dec 3, 2008 7:40 PM

    Hi Rob,
    Thank you for ur reply, can u send that code how u post the parked documents using BDC for FBV0 transaction.  Please send the code.
    Thanks,
    Satish

  • Posting period 007 2008 is not open

    HI
    I have customzied a new co code and all othr setting in sand box server. When i'm doing migo, i'm gettitng the blw error..  in omsy , i gave yr 2008 and period as 07
    Posting period 007 2008 is not open
    how to rectify it..

    Hi,
    If you open period in MM side in MMPV and also cross check which period is open in MMRV t.code.
    Now in FI side in t.code: OB52 and open the period 007 2008 for the Account Types A, K, D,M, S and specially Account Type u201C+u201D which stands for valid for all accounts type and save.
    Now try ur transaction.
    Note
    Check OMSY setting:
    Example;
    In OMSY steps, u have to enter .....
    Company Code .....
    Company Name ..............
    Fiscal Year of Current Period 2008
    Current period (posting period) ???
    Fiscal year of previous period 2008( will come automatic)
    Month of previous period( ???-1)( will come automatic)
    Fiscal year of last period of previous year 2007
    Last month of previous year 12
    Allow Posting to Previous Period (Back posting)
    Disallow back posting after a change of period
    For more Check the SAP Notes:487381 & 369637.
    Regards,
    Biju K

  • How to post depreciation to different depreciation areas

    Hi,
    Can any body explain how to post depreciation to different dep areas other than 01 book dep,
    and how to take the reports according GAAP and IAS.
    Regards,
    prasad

    Hi,
    When you create depreciation areas like Book, Tax, Costing etc., the system posts values like APC and Depreciation simultaneously in all the areas. You don't need to do any thing.
    Just posting values through F-90, F-92, etc and for Depreciation AFABN.
    This above holds good as long as you are posting to a single ledger.
    The above answer is slightly different in case you are having parallel ledgers. Let me explain by taking an example.
    Lets assume you are implementing for an Indian client whose parent compnay is in Dutch.
    As per Indian GAAP you need to submit the local reporting on April to March basis and for Ducth Jan - Dec.
    Assets in Indian GAAP are capitalised with values including frieght, Installation and trial run till Commencement date lets say @ 20%
    Assets in Ducth GAAP are capitalised with only Cost, Frieght & Insurance (This is only an example) and the depreciation rate is 15%.
    In this scenario you will be creating two ledgers(IN SAP sense and not the accounting GLs)  with different fiscal year variants and will be defining Leding ledger and Non leading ledgers and Ledger Groups.
    IN this case lets assueme Indian GAAP is Leading ledger and Dutch GAAP is Non Leading ledger and a ledger Group lets say "LG"
    When you post using the transation code FB01L you will be using ledgers or ledger groups that are effecting with this transaction.
    If you use the regular T codes without using the Ledger Groups, System posts the transaction to all ledgers simultaneously.
    When You want to post the transaction as I said in the above example, you will be using FB01L like capitalising total cost in "LeadingLedger" and upto CIF value to "Non leading ledger"
    NOw from the configuration front you will be creating seperate set of Depreciation keys for each GAAP and will be creating a  depereciation area for Dutch GAAP.
    You will also need to create a derived depreciation area which is the difference of Book Dep Area (as per Leading Ledger) and teh Duthc GAAP depreciation area (Non leading ledger). You can use the Wizard here which will guide you.
    For Book depreciation are its always realtime posting and for other areas its periodic posting. i.e. as a monthend process you need to do,
    For this you need to run TCODE ASKBN (Periodical posting ) anad AFABN.
    ASKBN checks for the difference in APCs, Depreciations, Loss or gain on account of retirements differently for diffrent depreciation areas and posts the values.
    When it comes to reporting all Standard reports will give you the flexibility of taking the reports based on Depreciation areas.
    You have a TCODE "OARP" where in you will get all the asset related transaction reports.
    The above scenerio is explained with an assumption of you using SAP Version above 4.7EE.
    Reward if you find this explanation useful.
    Sarma

  • HOW TO: Post a SQL statement tuning request - template posting

    This post is not a question, but similar to Rob van Wijk's "When your query takes too long ..." post should help to improve the quality of the requests for SQL statement tuning here on OTN.
    On the OTN forum very often tuning requests about single SQL statements are posted, but the information provided is rather limited, and therefore it's not that simple to provide a meaningful advice. Instead of writing the same requests for additional information over and over again I thought I put together a post that describes how a "useful" post for such a request should look like and what information it should cover.
    I've also prepared very detailed step-by-step instructions how to obtain that information on my blog, which can be used to easily gather the required information. It also covers again the details how to post the information properly here, in particular how to use the \ tag to preserve formatting and get a fixed font output:
    http://oracle-randolf.blogspot.com/2009/02/basic-sql-statement-performance.html
    So again: This post here describes how a "useful" post should look like and what information it ideally covers. The blog post explains in detail how to obtain that information.
    In the future, rather than requesting the same additional information and explaining how to obtain it, I'll simply refer to this HOW TO post and the corresponding blog post which describes in detail how to get that information.
    *Very important:*
    Use the \ tag to enclose any output that should have its formatting preserved as shown below.
    So if you want to use fixed font formatting that preserves the spaces etc., do the following:
    \   This preserves formatting
    \And it will look like this:
       This preserves formatting
       . . .Your post should cover the following information:
    1. The SQL and a short description of its purpose
    2. The version of your database with 4-digits (e.g. 10.2.0.4)
    3. Optimizer related parameters
    4. The TIMING and AUTOTRACE output
    5. The EXPLAIN PLAN output
    6. The TKPROF output snippet that corresponds to your statement
    7. If you're on 10g or later, the DBMS_XPLAN.DISPLAY_CURSOR output
    The above mentioned blog post describes in detail how to obtain that information.
    Your post should have a meaningful subject, e.g. "SQL statement tuning request", and the message body should look similar to the following:
    *-- Start of template body --*
    The following SQL statement has been identified to perform poorly. It currently takes up to 10 seconds to execute, but it's supposed to take a second at most.
    This is the statement:
    select
    from
             t_demo
    where
             type = 'VIEW'
    order by
             id;It should return data from a table in a specific order.
    The version of the database is 11.1.0.7.
    These are the parameters relevant to the optimizer:
    SQL>
    SQL> show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_capture_sql_plan_baselines boolean     FALSE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      11.1.0.7
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    optimizer_secure_view_merging        boolean     TRUE
    optimizer_use_invisible_indexes      boolean     FALSE
    optimizer_use_pending_statistics     boolean     FALSE
    optimizer_use_sql_plan_baselines     boolean     TRUE
    SQL>
    SQL> show parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     8
    SQL>
    SQL> show parameter db_block_size
    NAME                                 TYPE        VALUE
    db_block_size                        integer     8192
    SQL>
    SQL> show parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACT
    SQL>
    SQL> column sname format a20
    SQL> column pname format a20
    SQL> column pval2 format a20
    SQL>
    SQL> select
      2             sname
      3           , pname
      4           , pval1
      5           , pval2
      6  from
      7           sys.aux_stats$;
    SNAME                PNAME                     PVAL1 PVAL2
    SYSSTATS_INFO        STATUS                          COMPLETED
    SYSSTATS_INFO        DSTART                          01-30-2009 16:25
    SYSSTATS_INFO        DSTOP                           01-30-2009 16:25
    SYSSTATS_INFO        FLAGS                         0
    SYSSTATS_MAIN        CPUSPEEDNW              494,397
    SYSSTATS_MAIN        IOSEEKTIM                    10
    SYSSTATS_MAIN        IOTFRSPEED                 4096
    SYSSTATS_MAIN        SREADTIM
    SYSSTATS_MAIN        MREADTIM
    SYSSTATS_MAIN        CPUSPEED
    SYSSTATS_MAIN        MBRC
    SYSSTATS_MAIN        MAXTHR
    SYSSTATS_MAIN        SLAVETHR
    13 rows selected.Here is the output of EXPLAIN PLAN:
    SQL> explain plan for
      2  -- put your statement here
      3  select
      4             *
      5  from
      6             t_demo
      7  where
      8             type = 'VIEW'
      9  order by
    10             id;
    Explained.
    Elapsed: 00:00:00.01
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1390505571
    | Id  | Operation                   | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |          |     1 |    60 |     0   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_DEMO   |     1 |    60 |     0   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | IDX_DEMO |     1 |       |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("TYPE"='VIEW')
    14 rows selected.Here is the output of SQL*Plus AUTOTRACE including the TIMING information:
    SQL> rem Set the ARRAYSIZE according to your application
    SQL> set autotrace traceonly arraysize 100
    SQL> select
      2             *
      3  from
      4             t_demo
      5  where
      6             type = 'VIEW'
      7  order by
      8             id;
    149938 rows selected.
    Elapsed: 00:00:02.21
    Execution Plan
    Plan hash value: 1390505571
    | Id  | Operation                   | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |          |     1 |    60 |     0   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_DEMO   |     1 |    60 |     0   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | IDX_DEMO |     1 |       |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("TYPE"='VIEW')
    Statistics
              0  recursive calls
              0  db block gets
         149101  consistent gets
            800  physical reads
            196  redo size
        1077830  bytes sent via SQL*Net to client
          16905  bytes received via SQL*Net from client
           1501  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
         149938  rows processed
    SQL>
    SQL> disconnect
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing optionsThe TKPROF output for this statement looks like the following:
    TKPROF: Release 11.1.0.7.0 - Production on Mo Feb 23 10:23:08 2009
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Trace file: orcl11_ora_3376_mytrace1.trc
    Sort options: default
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    select
    from
             t_demo
    where
             type = 'VIEW'
    order by
             id
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch     1501      0.53       1.36        800     149101          0      149938
    total     1503      0.53       1.36        800     149101          0      149938
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 88 
    Rows     Row Source Operation
    149938  TABLE ACCESS BY INDEX ROWID T_DEMO (cr=149101 pr=800 pw=0 time=60042 us cost=0 size=60 card=1)
    149938   INDEX RANGE SCAN IDX_DEMO (cr=1881 pr=1 pw=0 time=0 us cost=0 size=0 card=1)(object id 74895)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                    1501        0.00          0.00
      db file sequential read                       800        0.05          0.80
      SQL*Net message from client                  1501        0.00          0.69
    ********************************************************************************The DBMS_XPLAN.DISPLAY_CURSOR output:
    SQL> -- put your statement here
    SQL> -- use the GATHER_PLAN_STATISTICS hint
    SQL> -- if you're not using STATISTICS_LEVEL = ALL
    SQL> select /*+ gather_plan_statistics */
      2  *
      3  from
      4  t_demo
      5  where
      6  type = 'VIEW'
      7  order by
      8  id;
    149938 rows selected.
    Elapsed: 00:00:02.21
    SQL>
    SQL> select * from table(dbms_xplan.display_cursor(null, null, 'ALLSTATS LAST'));
    PLAN_TABLE_OUTPUT
    SQL_ID  d4k5acu783vu8, child number 0
    select   /*+ gather_plan_statistics */          * from          t_demo
    where          type = 'VIEW' order by          id
    Plan hash value: 1390505571
    | Id  | Operation                   | Name     | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  |
    |   0 | SELECT STATEMENT            |          |      1 |        |    149K|00:00:00.02 |     149K|   1183 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_DEMO   |      1 |      1 |    149K|00:00:00.02 |     149K|   1183 |
    |*  2 |   INDEX RANGE SCAN          | IDX_DEMO |      1 |      1 |    149K|00:00:00.02 |    1880 |    383 |
    Predicate Information (identified by operation id):
       2 - access("TYPE"='VIEW')
    20 rows selected.I'm looking forward for suggestions how to improve the performance of this statement.
    *-- End of template body --*
    I'm sure that if you follow these instructions and obtain the information described, post them using a proper formatting (don't forget about the \ tag) you'll receive meaningful advice very soon.
    So, just to make sure you didn't miss this point:Use proper formatting!
    If you think I missed something important in this sample post let me know so that I can improve it.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Alex Nuijten wrote:
    ...you missed the proper formatting of the Autotrace section ;-)Alex,
    can't reproduce, does it still look unformatted? Or are you simply kidding? :-)
    Randolf
    PS: Just noticed that it actually sometimes doesn't show the proper formatting although the code tags are there. Changing to the \ tag helped in this case, but it seems to be odd.
    Edited by: Randolf Geist on Feb 23, 2009 11:28 AM
    Odd behaviour of forum software                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can i connect my 2008 mac book pro to a tv?

    how can i connect my 2008 mac book pro to a tv?

    The Mini-DVI to DVI adapter is designed for the iMac (Intel Core Duo), MacBook, and 12-inch PowerBook G4 — allowing you to connect to an external DVI monitor. It can also be used in combination with the Apple DVI to ADC adapter to support older Apple flat panel Studio or Cinema Displays.

  • My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

    My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

    My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

  • How to post a acquisition entry in Dep area 30 (for Non Leading ledger)

    How to post a acquisition entry in Dep area 30 (for Non Leading ledger N1)
    In our scenario, following configuring is being set up:
    1 Book depreciation IAS/IFRS 1 0L
    30 LOCAL 3 N1
    51 Property Tax 0
    60 DELTA 6 N1

    Hi Saurabh,
    Create a new custom transaction type by coping existing TTYPE 100 and restrict the transaction type which allow posting for dep.area 30 and do posting in FB01L by selecting ledger group.
    Regards,
    Mukthar

  • Error in document date & posting date-- Posting period 001 2008 is not open

    hi guru's
    while doing vendor creation in XK01, i m not getting the data screens like address, ..etc.i m getting error..posting period not open". what does it mean..
    What date i need to give in both fields...?
    can anybody send a set of data for me to create a vendor to test for my bdc/lsmw?
    can any help me step by step vendor creation in xk01,
    I am getting this below....
    Posting period 001 2008 is not open
    Message no. F5201
    Diagnosis
    Period 001 of fiscal year 2008 is not open for posting for the variant of posting period 1000.
    System Response
    Processing cannot be continued.
    Procedure
    The error can have several causes. In order to eliminate the error, proceed as follows:
    1. Check whether the posting date was entered correctly. The system determines the posting period by means of the date.
    2. Check whether the required posting period is open for posting for the variant of posting period 1000 and account type +. Make sure that the period is open for posting.
    To do this, specify a period interval in which the required period for the variant of posting period 1000 and account type + is contained.
    Proceed
    thanks

    Hi
    Kris is right, that message means you can't post a FI document in the period 1 (probably Gennuary) of the 2008, but this can't mean you can't create a new vendor.
    So are you sure on trx?
    If the trx is right perhaps somebody has inserted a control in a user-exit.
    Max

  • Posting period 002 2008 is not open

    Dear All
    The below is my problem.Please help me
    " Posting period 002 2008 is not open
    Message no. F5201
    Diagnosis
    Period 002 of fiscal year 2008 is not open for posting for the variant of posting period .
    System Response
    Processing cannot be continued.
    Procedure
    The error can have several causes. In order to eliminate the error, proceed as follows:
    1. Check whether the posting date was entered correctly. The system determines the posting period by means of the date.
    2. Check whether the required posting period is open for posting for the variant of posting period  and account type +. Make sure that the period is open for posting.
    To do this, specify a period interval in which the required period for the variant of posting period  and account type + is contained.
    Proceed"
    in OB52 -
    0001     +                     1     2008     12     2009     13     2010     14     2014        
    0001     A                    ZZZZZZZZZZ     1     2001     12     2005     13     2001     16     2001        
    0001     D                    ZZZZZZZZZZ     1     2001     12     2005     13     2001     16     2001        
    0001     K                    ZZZZZZZZZZ     1     2001     12     2005     13     2001     16     2001        
    0001     S                    ZZZZZZZZZZ     1     2007     12     2008     13     2008     16     2016        
    1000     +                                   1     2008     12     2010     13     2012     16     2014     
    in OMSY-
    TEST     TEST Company Pvt ltd     2008     2     2008     1     2007     12
    I have copy and past my settings.Pls analys the above and help me.
    Thanks
    Rajakumar

    MM periods follow as
    First go to OMSY and check the current period for your Comp code..
    Then go to MMPV trx..
    and Enter Comp code, period & year..
    Here you need to enter the period you wants to open..
    Ex: The Current period in OMSY is 10,2007
    Then you need to enter period 11 & year 2007 in MMPV.
    So, that period 10 will be closed & Period 11 will be opened automatically..
    Like that you need to close the periods one by one till the period you want to post.
    You can not reopen the closed MM period.
    Pls becareful while doing in PRD client
    and in OB52 maintain Like this
    0001 + 1 2008 12 2008 13 2010 14 2014
    0001 A ZZZZZZZZZZ 1 2008 12 2008 13 2001 16 2001
    0001 D ZZZZZZZZZZ 1 2008 12 2008 13 2001 16 2001
    0001 K ZZZZZZZZZZ 1 2008 12 2008 13 2001 16 2001
    0001 S ZZZZZZZZZZ 1 2008 12 2008 13 2008 16 2016
    1000 + 1 2008 12 2010 13 2012 16 2014

Maybe you are looking for

  • Measuring Point Downloading Error

    Hi I'm getting error in downloading Measurment Points data. When I'm executing the report "RALM_ME_MEASP_FULL_DOWNLOAD_SD", it is shown  that "5 Measurement Points have been transferred", but in table "MEREP_DELTABO", no new record is displayed. In S

  • 8i+WebDB HELP:How to make longer fields for "News items"

    8i+WebDB How do I create longer fields for my "News items"? If I try to publish long sized News I receive an Error: "Ora-02005: Implisit(-1) Length not valid for this bind or define data type". I HAVE chosen "long field" settings in the DB (8.1.5.0.0

  • Automatic distribution of workbooks

    Hello, we are actually under 3.5 and we intend to migrate soon to 7.0. We have created a workbook to report our function cost by cost center and cost center group. Actually, the distribution is done by the controllers and we would like to have an aut

  • UNIVERSE DESIGN TOOL

    Where can I find a sample database for practice to use in Business Objects Universe Design Tool and connect it to a server?

  • Office jet pro 8500 A

    My iPad no longer will connect to print from my hp office jet pro 8500A printer This question was solved. View Solution.