How to reduce Parse time in dynamic SQL

I'm using for a part of my code dynamic SQL with DBMS_SQL Package, this dynamic SQL code is located in a loop with say 1000 repeatations, if we trace the code we see that this sql statement is parsed 1000 times and this causes
a serios performance issue. If i convert this part of code into static PLSQL code , the statement is parsed only one time as expected. i would like
to know how i can resolve this problem in the dynamic SQL code.
Why in case of static SQL, despite it is inside the loop, it is parsed
only one time by ORACLE and in case of dynamic SQL as many as the upper limit of counter.
Why the ORACLE has different behaviour to parse them? Is there any way or trick
to force ORACLE to parse it only one time like static SQL?

despite the open cursor is also inside the loop but oracle parse it only one time.That is because PL/SQL is caching your cursor and resuing it. With DBMS_SQL you are opening a new cursor area in the loop for each iteration (DBMS_SQL.OPEN_CURSOR).
what you need to do is open/parse once and bind the value each time through the loop:
DECLARE
    expr      VARCHAR2(1000);
    check_cur PLS_INTEGER;
    nDummy    PLS_INTEGER;
    nFetched  PLS_INTEGER;
BEGIN
    -- Open Cursor
    check_cur := dbms_sql.open_cursor;
    expr      := 'select 1 from dual where ' || ':bindvar1 ' || '=' ||
                 ' ''bindvar1'' ';
    -- Parse Cursor
    dbms_sql.parse(check_cur,
                   expr,
                   1);
    FOR counter IN 1 .. 1000
    LOOP
        -- Define Column
        DBMS_SQL.define_column(check_cur,
                               1,
                               1);
        -- Do Binding
        dbms_sql.bind_variable(check_cur,
                               ':bindvar1',
                               'bindname1');
        -- Execute Cursor
        nDummy := DBMS_SQL.EXECUTE(check_cur);
        -- Fetch Rows
        nFetched := DBMS_SQL.fetch_rows(check_cur);
    END LOOP;
    -- Close Cursor
    dbms_sql.close_cursor(check_cur);
END;
call     count       cpu    elapsed       disk      query    current        rows
Parse        1      0.21       0.23          0          0          0           0
Execute   1000      0.11       0.10          0          0          0           0
Fetch     1000      0.03       0.01          0          0          0           0
total     2001      0.35       0.35          0          0          0           0

Similar Messages

  • How to reduce execution time of this SQL?

    This SQL will output only 2 rows. I tried using hints (an index) but to no avail.
    http://www.freeimagehosting.net/uploads/cf214afcf1.jpg
    Or, is it NOT possible, limit of query optimization has reached?

    Rakesh jayappa wrote:
    Hi,
    Run the sql tuning advisory.
    Let me know recommendation.
    Kind Regards,
    Rakesh************************** Here is my tuning request **************************
    1.) The following SQL statement has been identified to perform poorly. It currently takes up to 12 seconds to execute, but it's supposed to take a second at most.
    This is the statement:
    select DISTINCT trunc(c.sst_post_date) as post_date
    from ac_t_sessn b , ac_t_ssntr c
    where
           b.ses_status = 0
              and b.ses_profit_center = c.sst_profit_center
              and b.ses_acct_year = c.sst_acct_year
              and b.ses_acct_period = c.sst_acct_period
              and b.ses_sessn_no = c.sst_sessn_no
       AND
             C.sst_post_mtd||C.sst_post_TYPE IN
           (SELECT Y.pst_post_mtd||Y.pst_post_type
            FROM ac_r_post_functions Y
           WHERE Y.pst_post_status IN (0,'2'))
    order by trunc(c.sst_post_date);It should return data from a table in a specific order.
    2.) The version of the database is Oracle9i Enterprise Edition Release *9.2.0.6.0*
    3.) These are the parameters relevant to the optimizer:
    UAT_UML@umltest>show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_dynamic_sampling           integer     1
    optimizer_features_enable            string      9.2.0
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_max_permutations           integer     2000
    optimizer_mode                       string      CHOOSE
    UAT_UML@umltest>show parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     16
    UAT_UML@umltest>show parameter db_block_size
    NAME                                 TYPE        VALUE
    db_block_size                        integer     8192
    UAT_UML@umltest>show parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACT
    UAT_UML@umltest>column sname format a20
    UAT_UML@umltest>column pname format a20
    UAT_UML@umltest>column pval2 format a20
    UAT_UML@umltest>select
      2             sname
      3           , pname
      4           , pval1
      5           , pval2
      6      from
      7           sys.aux_stats$;
    no rows selected4.) Here is the output of EXPLAIN PLAN:
    UAT_UML@umltest>select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    | Id  | Operation              |  Name                | Rows  | Bytes |TempSpc| Cost  |
    |   0 | SELECT STATEMENT       |                      |   454 | 22700 |       |  5391 |
    |   1 |  SORT UNIQUE           |                      |   454 | 22700 |       |  5072 |
    |   2 |   HASH JOIN            |                      | 69384 |  3387K|  2592K|  4478 |
    |   3 |    INDEX FAST FULL SCAN| INDX_AC_T_SESSN      |   110K|  1294K|       |   244 |
    |   4 |    HASH JOIN           |                      |   416K|    15M|       |  3877 |
    |   5 |     TABLE ACCESS FULL  | AC_R_POST_FUNCTIONS  |    23 |   253 |       |     2 |
    |   6 |     TABLE ACCESS FULL  | AC_T_SSNTR           |  1790K|    46M|       |  3866 |
    Note: cpu costing is off, PLAN_TABLE' is old version5.) Here is the output of SQL*Plus AUTOTRACE including the TIMING information:
    UAT_UML@umltest>set autotrace traceonly arraysize 100
    UAT_UML@umltest>
    UAT_UML@umltest>select DISTINCT trunc(c.sst_post_date) as post_date
      2  from ac_t_sessn b , ac_t_ssntr c
      3  where
      4  b.ses_status = 0
      5  and b.ses_profit_center = c.sst_profit_center
      6  and b.ses_acct_year = c.sst_acct_year
      7  and b.ses_acct_period = c.sst_acct_period
      8  and b.ses_sessn_no = c.sst_sessn_no
      9  AND
    10  C.sst_post_mtd||C.sst_post_TYPE IN (SELECT         Y.pst_post_mtd||Y.pst_post_type FROM ac_r_po
    st_functions Y
    11  WHERE Y.pst_post_status IN (0,'2'))
    12  order by trunc(c.sst_post_date);
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=5391 Card=454 Bytes=
              22700)
       1    0   SORT (UNIQUE) (Cost=5072 Card=454 Bytes=22700)
       2    1     HASH JOIN (Cost=4478 Card=69384 Bytes=3469200)
       3    2       INDEX (FAST FULL SCAN) OF 'INDX_AC_T_SESSN' (NON-UNIQU
              E) (Cost=244 Card=110433 Bytes=1325196)
       4    2       HASH JOIN (Cost=3877 Card=416304 Bytes=15819552)
       5    4         TABLE ACCESS (FULL) OF 'AC_R_POST_FUNCTIONS' (Cost=2
               Card=23 Bytes=253)
       6    4         TABLE ACCESS (FULL) OF 'AC_T_SSNTR' (Cost=3866 Card=
              1790555 Bytes=48344985)
    Statistics
              0  recursive calls
              0  db block gets
          42741  consistent gets
            171  physical reads
              0  redo size
            425  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              2  rows processed
    UAT_UML@umltest>DISCONNECT
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production6.) The TKPROF output snippet
    TKPROF: Release 11.2.0.1.0 - Development on Wed Oct 27 12:47:35 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Trace file: umltest_ora_1604.trc
    Sort options: prsela  exeela  fchela 
    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 DISTINCT trunc(c.sst_post_date) as post_date
    from ac_t_sessn b , ac_t_ssntr c
    where
    b.ses_status = 0
    and b.ses_profit_center = c.sst_profit_center
    and b.ses_acct_year = c.sst_acct_year
    and b.ses_acct_period = c.sst_acct_period
    and b.ses_sessn_no = c.sst_sessn_no
    AND
    C.sst_post_mtd||C.sst_post_TYPE IN (SELECT         Y.pst_post_mtd||Y.pst_post_type FROM ac_r_post_functions Y
    WHERE Y.pst_post_status IN (0,'2'))
    order by trunc(c.sst_post_date)
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      3.20       4.38        171      42741          0           2
    total        4      3.21       4.39        171      42741          0           2
    Misses in library cache during parse: 1
    Optimizer mode: CHOOSE
    Parsing user id: 445 
    Rows     Row Source Operation
          2  SORT UNIQUE
         24   HASH JOIN 
         11    INDEX FAST FULL SCAN OBJ#(62817) (object id 62817)
    2293715    HASH JOIN 
         31     TABLE ACCESS FULL OBJ#(67305)
    1790555     TABLE ACCESS FULL OBJ#(62828)
    alter session set sql_trace true
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer mode: CHOOSE
    Parsing user id: 445 
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          0           0
    Execute      2      0.00       0.00          0          0          0           0
    Fetch        2      3.20       4.38        171      42741          0           2
    total        5      3.21       4.39        171      42741          0           2
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      0      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        0      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
        2  user  SQL statements in session.
        0  internal SQL statements in session.
        2  SQL statements in session.
    Trace file: umltest_ora_1604.trc
    Trace file compatibility: 9.02.00
    Sort options: prsela  exeela  fchela 
           1  session in tracefile.
           2  user  SQL statements in trace file.
           0  internal SQL statements in trace file.
           2  SQL statements in trace file.
           2  unique SQL statements in trace file.
          51  lines in trace file.
          10  elapsed seconds in trace file. Any help would be greatly appreciated?

  • Parse time for OLAP SQL statements

    Hello!
    I have built ROLAP cube and now trying to analyse performance.
    Most of problems are coming from SQL statements which are prepared by BI beans (Disco or Excel). These statements have a very big parse time because they use IN predicates with a lot of values. When I tried to prepare an execution plan for these statement Oracle thinks 20 or 30 second and then gives correct plan (using query rewrite), but it shows that plan preparation took only 0.04 or 0.1 second.
    If I decrese the number of INs in this statement then plan is preapred in 1 second.
    Question: Are there any parameters which can reduce parse time for such statements?
    For example my statement has following:
    WHERE
    (((ALIAS_R124) = :B1 )
    AND ((ALIAS_R110) = :B2 )
    AND ((ALIAS_R135) IN ((-8485.000000) , (-8486.000000) , (-8487.000000) , (-8488.000000) , (-8489.000000) , (-8490.000000) , (-8491.000000) , (-8492.000000) , (-8493.000000) , (-8494.000000) , (-8495.000000) , (-8496.000000) ) )
    AND ((ALIAS_R119) IN ((-8509568.000000) , (-8509863.000000) , (-8509643.000000) , (-8509538.000000) , (-8509476.000000) , (-8509449.000000) , (-8509446.000000) , (-8509334.000000) , (-8509318.000000) , (-8508828.000000) , (-8508822.000000) , (-8508622.000000) , (-8508306.000000) , (-8507896.000000) , (-8507749.000000) , (-8508881.000000) , (-8507583.000000) , (-8509641.000000) , (-8509537.000000) , (-8509463.000000) , (-8509371.000000) , (-8509113.000000) , (-8509035.000000) , (-8508534.000000) , (-8508531.000000) ,
    (-8508314.000000) , (-8507510.000000) , (-8509778.000000) , (-8509919.000000) , (-8509826.000000) , (-8509432.000000) , (-8509328.000000) , (-8508638.000000) , (-8508337.000000) , (-8508297.000000) , (-8508163.000000) , (-8508147.000000) , (-8507369.000000) , (-8508878.000000) , (-8507503.000000) , (-8507383.000000) , (-8507337.000000) , (-8507281.000000) , (-8509956.000000) , (-8509825.000000) , (-8509541.000000) , (-8509014.000000) , (-8508422.000000) , (-8507699.000000) , (-8509744.000000) ,
    (-8509477.000000) , (-8507799.000000) , (-8507256.000000) , (-8509502.000000) , (-8509052.000000) , (-8508768.000000) , (-8507594.000000) , (-8509997.000000) , (-8508818.000000) , (-8508736.000000) , (-8508386.000000) , (-8507534.000000) , (-8509110.000000) , (-8508955.000000) , (-8508797.000000) , (-8507804.000000) , (-8507618.000000) , (-8507402.000000) , (-8509983.000000) , (-8509965.000000) , (-8509680.000000) , (-8509354.000000) , (-8509184.000000) , (-8508677.000000) , (-8508659.000000) ,
    (-8508265.000000) , (-8508027.000000) , (-8507453.000000) , (-8507388.000000) , (-8509565.000000) , (-8509097.000000) , (-8508891.000000) , (-8508529.000000) , (-8507670.000000) , (-8507427.000000) , (-8508892.000000) , (-8508375.000000) , (-8507415.000000) , (-8509521.000000) , (-8508993.000000) , (-8508769.000000) , (-8508527.000000) , (-8508316.000000) , (-8507513.000000) , (-8507456.000000) , (-8509977.000000) , (-8509593.000000) , (-8509570.000000) , (-8509479.000000) , (-8509418.000000) ,
    (-8509275.000000) , (-8509129.000000) , (-8509121.000000) , (-8509098.000000) , (-8509004.000000) , (-8508981.000000) , (-8508886.000000) , (-8508858.000000) , (-8508806.000000) , (-8508784.000000) , (-8508720.000000) , (-8508656.000000) , (-8508570.000000) , (-8508428.000000) , (-8508417.000000) , (-8508352.000000) , (-8508279.000000) , (-8508181.000000) , (-8508043.000000) , (-8507888.000000) , (-8507765.000000) , (-8507560.000000) , (-8507547.000000) , (-8507323.000000) , (-8508848.000000) ,
    (-8509940.000000) , (-8509642.000000) , (-8509555.000000) , (-8509535.000000) , (-8509513.000000) , (-8509443.000000) , (-8509284.000000) , (-8509242.000000) , (-8509226.000000) , (-8509192.000000) , (-8509191.000000) , (-8509039.000000) , (-8509007.000000) , (-8508861.000000) , (-8508730.000000) , (-8508385.000000) , (-8508333.000000) , (-8508317.000000) , (-8508315.000000) , (-8508112.000000) , (-8508034.000000) , (-8507991.000000) , (-8507967.000000) , (-8507741.000000) , (-8507444.000000) ,
    (-8507403.000000) , (-8507319.000000) , (-8507261.000000) , (-8507245.000000) , (-8510001.000000) , (-8509637.000000) , (-8509127.000000) , (-8509115.000000) , (-8508343.000000) , (-8507944.000000) , (-8507317.000000) , (-8510002.000000) , (-8509933.000000) , (-8509922.000000) , (-8509906.000000) , (-8509694.000000) , (-8509652.000000) , (-8509594.000000) , (-8509349.000000) , (-8509301.000000) , (-8509080.000000) , (-8508859.000000) , (-8508717.000000) , (-8508536.000000) , (-8508433.000000) ,
    (-8508266.000000) , (-8508250.000000) , (-8508223.000000) , (-8508080.000000) , (-8507908.000000) , (-8507754.000000) , (-8507370.000000) , (-8507335.000000) , (-8507318.000000) , (-8507284.000000) , (-8509764.000000) , (-8509647.000000) , (-8509330.000000) , (-8509054.000000) , (-8508209.000000) , (-8507852.000000) , (-8507586.000000) , (-8509649.000000) , (-8509500.000000) , (-8509487.000000) , (-8509264.000000) , (-8508856.000000) , (-8508775.000000) , (-8508413.000000) , (-8508391.000000) ,
    (-8508236.000000) , (-8507948.000000) , (-8507921.000000) , (-8507861.000000) , (-8507793.000000) , (-8507581.000000) , (-8507362.000000) , (-8509391.000000) , (-8508801.000000) , (-8509874.000000) , (-8509823.000000) , (-8508539.000000) , (-8508528.000000) , (-8508515.000000) , (-8508158.000000) , (-8508003.000000) , (-8507533.000000) , (-8509559.000000) , (-8509507.000000) , (-8509314.000000) , (-8509306.000000) , (-8509222.000000) , (-8509107.000000) , (-8508979.000000) , (-8508817.000000) ,
    (-8508754.000000) , (-8508655.000000) , (-8508607.000000) , (-8508221.000000) , (-8508207.000000) , (-8507912.000000) , (-8507306.000000) , (-8507265.000000) , (-8507727.000000) , (-8509945.000000) , (-8509525.000000) , (-8509139.000000) , (-8507981.000000) , (-8507411.000000) , (-8509847.000000) , (-8509382.000000) , (-8508888.000000) , (-8508022.000000) , (-8509595.000000) , (-8508292.000000) , (-8508268.000000) , (-8508257.000000) , (-8507720.000000) , (-8509597.000000) , (-8509958.000000) ,
    (-8509685.000000) , (-8509614.000000) , (-8509571.000000) , (-8509470.000000) , (-8509143.000000) , (-8508976.000000) , (-8508845.000000) , (-8508641.000000) , (-8508551.000000) , (-8508434.000000) , (-8508418.000000) , (-8508381.000000) , (-8508377.000000) , (-8508376.000000) , (-8508364.000000) , (-8508188.000000) , (-8507869.000000) , (-8507855.000000) , (-8507681.000000) , (-8507638.000000) , (-8507377.000000) , (-8507336.000000) , (-8509353.000000) , (-8509038.000000) , (-8508393.000000) ,
    (-8507657.000000) , (-8509400.000000) , (-8509310.000000) , (-8509253.000000) , (-8509031.000000) , (-8508581.000000) , (-8508468.000000) , (-8508445.000000) , (-8508408.000000) , (-8507646.000000) , (-8507535.000000) , (-8507260.000000) , (-8507238.000000) , (-8508815.000000) , (-8508369.000000) , (-8508293.000000) , (-8508589.000000) , (-8508578.000000) , (-8507573.000000) , (-8509845.000000) , (-8509773.000000) , (-8509605.000000) , (-8509530.000000) , (-8509519.000000) , (-8509291.000000) ,
    (-8509220.000000) , (-8508934.000000) , (-8508637.000000) , (-8508613.000000) , (-8508611.000000) , (-8508356.000000) , (-8508349.000000) , (-8508225.000000) , (-8508137.000000) , (-8508102.000000) , (-8508082.000000) , (-8507897.000000) , (-8507486.000000) , (-8507364.000000) , (-8507736.000000) , (-8509286.000000) , (-8509257.000000) , (-8508959.000000) , (-8507707.000000) , (-8507592.000000) , (-8509190.000000) , (-8508938.000000) , (-8508873.000000) , (-8507429.000000) , (-8509975.000000) ,
    (-8509398.000000) , (-8509036.000000) , (-8508004.000000) , (-8507768.000000) , (-8508183.000000) , (-8509456.000000) , (-8508054.000000) , (-8507490.000000) , (-8509590.000000) , (-8509464.000000) , (-8509441.000000) , (-8508847.000000) , (-8507797.000000) , (-8509604.000000) , (-8509399.000000) , (-8508204.000000) , (-8507823.000000) , (-8509963.000000) , (-8509861.000000) , (-8509836.000000) , (-8509323.000000) , (-8509067.000000) , (-8508734.000000) , (-8508476.000000) , (-8508195.000000) ,
    (-8507255.000000) , (-8510005.000000) , (-8509799.000000) , (-8509362.000000) , (-8509158.000000) , (-8508486.000000) , (-8507802.000000) , (-8507231.000000) , (-8507828.000000) , (-8507630.000000) , (-8509760.000000) , (-8508067.000000) , (-8508017.000000) , (-8509053.000000) , (-8508235.000000) , (-8508108.000000) , (-8507606.000000) , (-8507536.000000) , (-8507350.000000) , (-8509350.000000) , (-8509203.000000) , (-8509175.000000) , (-8507683.000000) , (-8507301.000000) , (-8509821.000000) ,
    (-8509332.000000) , (-8508665.000000) , (-8508635.000000) , (-8509061.000000) , (-8507241.000000) , (-8509178.000000) , (-8508930.000000) , (-8508786.000000) , (-8507900.000000) , (-8507424.000000) , (-8509246.000000) , (-8508667.000000) , (-8509237.000000) , (-8508841.000000) , (-8508731.000000) , (-8508249.000000) , (-8508872.000000) , (-8508791.000000) , (-8509962.000000) , (-8509285.000000) , (-8508482.000000) , (-8508330.000000) , (-8507577.000000) , (-8508909.000000) , (-8508850.000000) ,
    (-8507873.000000) , (-8507627.000000) , (-8509161.000000) , (-8508863.000000) , (-8508243.000000) , (-8507731.000000) , (-8509583.000000) , (-8508833.000000) , (-8508770.000000) , (-8508726.000000) , (-8509948.000000) , (-8509090.000000) , (-8509037.000000) , (-8508960.000000) , (-8507546.000000) , (-8509753.000000) , (-8508461.000000) , (-8507397.000000) , (-8509809.000000) , (-8509573.000000) , (-8509024.000000) , (-8508712.000000) , (-8508978.000000) , (-8508766.000000) , (-8507694.000000) ,
    (-8507757.000000) , (-8509598.000000) , (-8509424.000000) , (-8509234.000000) , (-8509201.000000) , (-8507934.000000) , (-8507831.000000) , (-8507704.000000) , (-8507506.000000) , (-8507228.000000) , (-8509754.000000) , (-8508798.000000) , (-8508725.000000) , (-8509717.000000) , (-8509577.000000) , (-8509109.000000) , (-8508526.000000) , (-8507950.000000) , (-8507762.000000) , (-8507680.000000) , (-8507579.000000) , (-8509865.000000) , (-8509854.000000) , (-8509619.000000) , (-8508322.000000) ,
    (-8508241.000000) , (-8507969.000000) , (-8507947.000000) , (-8507803.000000) , (-8507709.000000) , (-8507584.000000) , (-8507327.000000) , (-8507246.000000) , (-8508253.000000) , (-8509897.000000) , (-8508670.000000) , (-8508084.000000) , (-8509994.000000) , (-8509692.000000) , (-8509687.000000) , (-8509549.000000) , (-8509435.000000) , (-8509015.000000) , (-8508980.000000) , (-8508939.000000) , (-8508857.000000) , (-8508747.000000) , (-8508695.000000) , (-8508543.000000) , (-8508219.000000) ,
    (-8508152.000000) , (-8508036.000000) , (-8508031.000000) , (-8507772.000000) , (-8507390.000000) , (-8509811.000000) , (-8508617.000000) , (-8508454.000000) , (-8508441.000000) , (-8508353.000000) , (-8508230.000000) , (-8508208.000000) , (-8507801.000000) , (-8507290.000000) , (-8507276.000000) , (-8509581.000000) , (-8509171.000000) , (-8508335.000000) , (-8508179.000000) , (-8507845.000000) , (-8507597.000000) , (-8507522.000000) , (-8507478.000000) , (-8507338.000000) , (-8508996.000000) ,
    (-8509954.000000) , (-8509774.000000) , (-8508922.000000) , (-8508682.000000) , (-8508407.000000) , (-8508109.000000) , (-8507558.000000) , (-8507251.000000) , (-8509606.000000) , (-8509021.000000) , (-8508762.000000) , (-8508371.000000) , (-8507347.000000) , (-8509387.000000) , (-8509307.000000) , (-8508310.000000) , (-8508129.000000) , (-8507622.000000) , (-8507562.000000) , (-8507496.000000) , (-8509095.000000) , (-8508479.000000) , (-8508444.000000) , (-8507965.000000) , (-8507603.000000) ,
    (-8507418.000000) , (-8507263.000000) , (-8509377.000000) , (-8509249.000000) , (-8508648.000000) , (-8508342.000000) , (-8507814.000000) , (-8508701.000000) , (-8508587.000000) , (-8508379.000000) , (-8508671.000000) , (-8507566.000000) , (-8509964.000000) , (-8509240.000000) , (-8509120.000000) , (-8508877.000000) , (-8508603.000000) , (-8508278.000000) , (-8508258.000000) , (-8507868.000000) , (-8507557.000000) , (-8507515.000000) , (-8508373.000000) , (-8507354.000000) , (-8510009.000000) ,
    (-8509714.000000) , (-8509651.000000) , (-8509156.000000) , (-8508336.000000) , (-8508263.000000) , (-8508011.000000) , (-8507929.000000) , (-8507685.000000) , (-8507428.000000) , (-8507300.000000) , (-8507291.000000) , (-8509767.000000) , (-8509013.000000) , (-8508964.000000) , (-8508773.000000) , (-8508662.000000) , (-8508093.000000) , (-8507771.000000) , (-8507472.000000) , (-8507421.000000) , (-8507285.000000) , (-8509830.000000) , (-8509681.000000) , (-8509675.000000) , (-8507941.000000) ,
    (-8507659.000000) , (-8507623.000000) , (-8509971.000000) , (-8507529.000000) , (-8509560.000000) , (-8509343.000000) , (-8507849.000000) , (-8507718.000000) , (-8509792.000000) , (-8509402.000000) , (-8509260.000000) , (-8508455.000000) , (-8507784.000000) , (-8507279.000000) , (-8509980.000000) , (-8509789.000000) , (-8509737.000000) , (-8509710.000000) , (-8509408.000000) , (-8509089.000000) , (-8508259.000000) , (-8508146.000000) , (-8507931.000000) , (-8507916.000000) , (-8507743.000000) ,
    (-8507307.000000) , (-8507439.000000) , (-8509816.000000) , (-8509540.000000) , (-8509488.000000) , (-8509204.000000) , (-8508544.000000) , (-8508121.000000) , (-8508039.000000) , (-8507920.000000) , (-8507277.000000) , (-8510020.000000) , (-8510007.000000) , (-8509544.000000) , (-8509176.000000) , (-8509138.000000) , (-8508973.000000) , (-8508062.000000) , (-8507906.000000) , (-8507775.000000) , (-8507617.000000) , (-8507365.000000) , (-8507267.000000) , (-8509999.000000) , (-8509982.000000) ,
    (-8509875.000000) , (-8509768.000000) , (-8509186.000000) , (-8508100.000000) , (-8508089.000000) , (-8507576.000000) , (-8507483.000000) , (-8509734.000000) , (-8509506.000000) , (-8508902.000000) , (-8508774.000000) , (-8509050.000000) , (-8507987.000000) , (-8509818.000000) , (-8509672.000000) , (-8509422.000000) , (-8509199.000000) , (-8508269.000000) , (-8507901.000000) , (-8507862.000000) , (-8507341.000000) , (-8507249.000000) , (-8509699.000000) , (-8509312.000000) , (-8509259.000000) ,
    (-8508737.000000) , (-8508442.000000) , (-8508362.000000) , (-8508361.000000) , (-8508328.000000) , (-8508174.000000) , (-8508064.000000) , (-8507405.000000) , (-8508135.000000) , (-8509946.000000) , (-8509921.000000) , (-8509755.000000) , (-8509532.000000) , (-8508997.000000) , (-8508904.000000) , (-8508606.000000) , (-8508475.000000) , (-8508450.000000) , (-8508165.000000) , (-8508096.000000) , (-8508009.000000) , (-8507442.000000) , (-8507339.000000) , (-8509394.000000) , (-8507824.000000) ,
    (-8509814.000000) , (-8509472.000000) , (-8509420.000000) , (-8509251.000000) , (-8509250.000000) , (-8509166.000000) , (-8508992.000000) , (-8508920.000000) , (-8508893.000000) , (-8508535.000000) , (-8508489.000000) , (-8508452.000000) , (-8508185.000000) , (-8507964.000000) , (-8507874.000000) , (-8507756.000000) , (-8507734.000000) , (-8507719.000000) , (-8507495.000000) , (-8509552.000000) , (-8507846.000000) , (-8510003.000000) , (-8509929.000000) , (-8509886.000000) , (-8509871.000000) ,
    (-8509658.000000) , (-8509629.000000) , (-8509302.000000) , (-8509279.000000) , (-8509267.000000) , (-8508706.000000) , (-8508405.000000) , (-8508218.000000) , (-8507953.000000) , (-8507788.000000) , (-8507561.000000) , (-8509218.000000) , (-8509074.000000) , (-8508991.000000) , (-8508890.000000) , (-8507903.000000) , (-8507568.000000) , (-8508929.000000) , (-8509759.000000) , (-8509758.000000) , (-8509368.000000) , (-8509065.000000) , (-8508394.000000) , (-8507994.000000) , (-8507530.000000) ,
    (-8509786.000000) , (-8509518.000000) , (-8509484.000000) , (-8509342.000000) , (-8509208.000000) , (-8509177.000000) , (-8509010.000000) , (-8508478.000000) , (-8508248.000000) , (-8508117.000000) , (-8507311.000000) , (-8509961.000000) , (-8509930.000000) , (-8509894.000000) , (-8509841.000000) , (-8509762.000000) , (-8509724.000000) , (-8509601.000000) , (-8509582.000000) , (-8509489.000000) , (-8509356.000000) , (-8509125.000000) , (-8509083.000000) , (-8509059.000000) , (-8509058.000000) ,
    (-8509048.000000) , (-8508867.000000) , (-8508788.000000) , (-8508749.000000) , (-8508742.000000) , (-8508741.000000) , (-8508626.000000) , (-8508615.000000) , (-8508573.000000) , (-8508558.000000) , (-8508521.000000) , (-8508437.000000) , (-8508414.000000) , (-8508325.000000) , (-8508285.000000) , (-8508277.000000) , (-8507993.000000) , (-8507972.000000) , (-8507952.000000) , (-8507875.000000) , (-8507791.000000) , (-8507738.000000) , (-8507624.000000) , (-8507619.000000) , (-8507602.000000) ,
    (-8507599.000000) , (-8507539.000000) , (-8507413.000000) , (-8507412.000000) , (-8507283.000000) , (-8507234.000000) , (-8507229.000000) , (-8509873.000000) , (-8509864.000000) , (-8509211.000000) , (-8508919.000000) , (-8508546.000000) , (-8508541.000000) , (-8507977.000000) , (-8507954.000000) , (-8507877.000000) , (-8507629.000000) , (-8507563.000000) , (-8507420.000000) , (-8507305.000000) , (-8507269.000000) , (-8509747.000000) , (-8509723.000000) , (-8509707.000000) , (-8508757.000000) ,
    (-8508453.000000) , (-8508366.000000) , (-8507796.000000) , (-8508492.000000) , (-8507979.000000) , (-8507847.000000) , (-8509902.000000) , (-8509805.000000) , (-8509671.000000) , (-8509415.000000) , (-8509243.000000) , (-8509228.000000) , (-8509225.000000) , (-8509221.000000) , (-8509167.000000) , (-8509140.000000) , (-8509033.000000) , (-8509022.000000) , (-8508951.000000) , (-8508874.000000) , (-8508864.000000) , (-8508844.000000) , (-8508777.000000) , (-8508733.000000) , (-8508627.000000) ,
    (-8508616.000000) , (-8508567.000000) , (-8508548.000000) , (-8508404.000000) , (-8508397.000000) , (-8508184.000000) , (-8508175.000000) , (-8508119.000000) , (-8508103.000000) , (-8507790.000000) , (-8507696.000000) , (-8507678.000000) , (-8507507.000000) , (-8507441.000000) , (-8507410.000000) , (-8507250.000000) , (-8507220.000000) , (-8509878.000000) , (-8509787.000000) , (-8509669.000000) , (-8508796.000000) , (-8508698.000000) , (-8508565.000000) , (-8507628.000000) , (-8507432.000000) ,
    (-8509648.000000) , (-8509322.000000) , (-8508540.000000) , (-8508388.000000) , (-8509974.000000) , (-8509409.000000) , (-8509157.000000) , (-8508522.000000) , (-8508400.000000) , (-8508332.000000) , (-8510021.000000) , (-8509991.000000) , (-8509866.000000) , (-8508148.000000) , (-8507625.000000) , (-8509625.000000) , (-8509600.000000) , (-8509303.000000) , (-8509217.000000) , (-8509136.000000) , (-8507295.000000) , (-8509907.000000) , (-8509475.000000) , (-8509461.000000) , (-8508834.000000) ,
    (-8508288.000000) , (-8508237.000000) , (-8508190.000000) , (-8507922.000000) , (-8507866.000000) , (-8507620.000000) , (-8507511.000000) , (-8507242.000000) , (-8509869.000000) , (-8509396.000000) , (-8509393.000000) , (-8507755.000000) , (-8509810.000000) , (-8509077.000000) , (-8508913.000000) , (-8508838.000000) , (-8508156.000000) , (-8507512.000000) , (-8507297.000000) , (-8509909.000000) , (-8509460.000000) , (-8509118.000000) , (-8508923.000000) , (-8508895.000000) , (-8508819.000000) ,
    (-8508308.000000) , (-8507957.000000) , (-8507462.000000) , (-8507302.000000) , (-8509911.000000) , (-8509890.000000) , (-8509325.000000) , (-8509027.000000) , (-8508046.000000) , (-8507737.000000) , (-8507695.000000) , (-8507542.000000) , (-8509379.000000) , (-8509117.000000) , (-8508821.000000) , (-8507473.000000) , (-8509376.000000) , (-8509339.000000) , (-8507373.000000) , (-8509603.000000) , (-8507898.000000) , (-8509892.000000) , (-8509635.000000) , (-8509445.000000) , (-8509299.000000) ,
    (-8508419.000000) , (-8508124.000000) , (-8507870.000000) , (-8507575.000000) , (-8507440.000000) , (-8507278.000000) , (-8509939.000000) , (-8509389.000000) , (-8509351.000000) , (-8509084.000000) , (-8508756.000000) , (-8508745.000000) , (-8508205.000000) , (-8509807.000000) , (-8509765.000000) , (-8509654.000000) , (-8509309.000000) , (-8509274.000000) , (-8508037.000000) , (-8507982.000000) , (-8507764.000000) , (-8509721.000000) , (-8509317.000000) , (-8508642.000000) , (-8508464.000000) ,
    (-8507810.000000) , (-8507578.000000) , (-8510017.000000) , (-8509898.000000) , (-8508764.000000) , (-8508010.000000) , (-8507611.000000) , (-8507273.000000) , (-8510006.000000) , (-8509244.000000) , (-8509016.000000) , (-8508153.000000) , (-8508114.000000) , (-8508095.000000) , (-8508047.000000) , (-8507998.000000) , (-8507983.000000) , (-8507454.000000) , (-8507353.000000) , (-8509624.000000) , (-8509423.000000) , (-8509146.000000) , (-8509102.000000) , (-8508643.000000) , (-8508392.000000) ,
    (-8507715.000000) , (-8507425.000000) , (-8509689.000000) , (-8509133.000000) , (-8508977.000000) , (-8507894.000000) , (-8507809.000000) , (-8507766.000000) , (-8507334.000000) , (-8507949.000000) , (-8509564.000000) , (-8509032.000000) , (-8508516.000000) , (-8508198.000000) , (-8507690.000000) , (-8507452.000000) , (-8507226.000000) , (-8509531.000000) , (-8508177.000000) , (-8508012.000000) , (-8507368.000000) , (-8509352.000000) , (-8509196.000000) , (-8508853.000000) , (-8507966.000000) )
    OR
    (ALIAS_R119) IN ((-8509276.000000) , (-8508942.000000) , (-8508763.000000) , (-8508030.000000) , (-8507758.000000) , (-8509270.000000) , (-8509212.000000) , (-8508267.000000) , (-8509798.000000) , (-8508985.000000) , (-8507351.000000) , (-8509639.000000) , (-8509580.000000) , (-8509360.000000) , (-8509277.000000) , (-8508900.000000) , (-8508196.000000) , (-8508136.000000) , (-8507930.000000) , (-8509155.000000) , (-8508767.000000) , (-8509676.000000) , (-8509412.000000) , (-8509300.000000) , (-8509151.000000) ,
    (-8508805.000000) , (-8508614.000000) , (-8508608.000000) , (-8508462.000000) , (-8508160.000000) , (-8508052.000000) , (-8507940.000000) , (-8507859.000000) , (-8507671.000000) , (-8508360.000000) , (-8507838.000000) , (-8509236.000000) , (-8508300.000000) , (-8509842.000000) , (-8508776.000000) , (-8508739.000000) , (-8507275.000000) , (-8509000.000000) , (-8508552.000000) , (-8508354.000000) , (-8508170.000000) , (-8509901.000000) , (-8509879.000000) , (-8508907.000000) , (-8508383.000000) ,
    (-8508019.000000) , (-8507989.000000) , (-8507509.000000) , (-8507352.000000) , (-8508262.000000) , (-8507287.000000) , (-8509988.000000) , (-8509160.000000) , (-8507909.000000) , (-8509019.000000) , (-8509006.000000) , (-8508633.000000) , (-8507760.000000) , (-8507612.000000) , (-8509985.000000) , (-8509280.000000) , (-8508210.000000) , (-8508164.000000) , (-8508145.000000) , (-8507999.000000) , (-8509223.000000) , (-8508680.000000) , (-8508355.000000) , (-8507889.000000) , (-8507752.000000) ,
    (-8507724.000000) , (-8507666.000000) , (-8507497.000000) , (-8509305.000000) , (-8508966.000000) , (-8508883.000000) , (-8509711.000000) , (-8509562.000000) , (-8508954.000000) , (-8508382.000000) , (-8509806.000000) , (-8509383.000000) , (-8508056.000000) , (-8507626.000000) , (-8507225.000000) , (-8509413.000000) , (-8508295.000000) , (-8509923.000000) , (-8508519.000000) , (-8508161.000000) , (-8507488.000000) , (-8509813.000000) , (-8509784.000000) , (-8508523.000000) , (-8507460.000000) ,
    (-8509454.000000) , (-8509292.000000) , (-8509183.000000) , (-8507729.000000) , (-8507702.000000) , (-8509752.000000) , (-8509653.000000) , (-8508632.000000) , (-8508299.000000) , (-8507481.000000) , (-8509987.000000) , (-8509914.000000) , (-8508514.000000) , (-8507745.000000) , (-8509835.000000) , (-8509150.000000) , (-8509018.000000) , (-8509001.000000) , (-8508953.000000) , (-8508602.000000) , (-8508530.000000) , (-8508340.000000) , (-8508032.000000) , (-8507663.000000) , (-8507384.000000) ,
    (-8510000.000000) , (-8509716.000000) , (-8509563.000000) , (-8509523.000000) , (-8509499.000000) , (-8509478.000000) , (-8509348.000000) , (-8509180.000000) , (-8509149.000000) , (-8509063.000000) , (-8508995.000000) , (-8508412.000000) , (-8508403.000000) , (-8508215.000000) , (-8508033.000000) , (-8507876.000000) , (-8507822.000000) , (-8507795.000000) , (-8507433.000000) , (-8507282.000000) , (-8509572.000000) , (-8508664.000000) , (-8509359.000000) , (-8508652.000000) , (-8508347.000000) ,
    (-8507479.000000) , (-8509952.000000) , (-8509944.000000) , (-8509900.000000) , (-8509896.000000) , (-8509857.000000) , (-8509838.000000) , (-8509761.000000) , (-8509736.000000) , (-8509728.000000) , (-8509684.000000) , (-8509522.000000) , (-8509498.000000) , (-8509482.000000) , (-8509451.000000) , (-8509427.000000) , (-8509366.000000) , (-8509315.000000) , (-8509258.000000) , (-8509144.000000) , (-8509119.000000) , (-8508887.000000) , (-8508793.000000) , (-8508666.000000) , (-8508448.000000) ,
    (-8508334.000000) , (-8508290.000000) , (-8508233.000000) , (-8508171.000000) , (-8508094.000000) , (-8508069.000000) , (-8508057.000000) , (-8507971.000000) , (-8507915.000000) , (-8507887.000000) , (-8507759.000000) , (-8507580.000000) , (-8507480.000000) , (-8507264.000000) , (-8509998.000000) , (-8509627.000000) , (-8509585.000000) , (-8509527.000000) , (-8509333.000000) , (-8509093.000000) , (-8508729.000000) , (-8508564.000000) , (-8508496.000000) , (-8507642.000000) , (-8507367.000000) ,
    (-8509981.000000) , (-8509797.000000) , (-8509655.000000) , (-8509442.000000) , (-8509075.000000) , (-8508963.000000) , (-8508727.000000) , (-8508704.000000) , (-8508684.000000) , (-8508231.000000) , (-8507710.000000) , (-8507595.000000) , (-8507470.000000) , (-8507218.000000) , (-8508965.000000) , (-8509777.000000) , (-8509712.000000) , (-8509622.000000) , (-8509550.000000) , (-8509298.000000) , (-8509213.000000) , (-8509041.000000) , (-8509029.000000) , (-8508912.000000) , (-8508908.000000) ,
    (-8508691.000000) , (-8508601.000000) , (-8508438.000000) , (-8508313.000000) , (-8507780.000000) , (-8507776.000000) , (-8507725.000000) , (-8507692.000000) , (-8507677.000000) , (-8507668.000000) , (-8507498.000000) , (-8507451.000000) , (-8507366.000000) , (-8509957.000000) , (-8509837.000000) , (-8509411.000000) , (-8509239.000000) , (-8509179.000000) , (-8509003.000000) , (-8508653.000000) , (-8508144.000000) , (-8508130.000000) , (-8508116.000000) , (-8507621.000000) , (-8507571.000000) ,
    (-8507395.000000) , (-8507330.000000) , (-8507257.000000) , (-8509970.000000) , (-8509966.000000) , (-8509529.000000) , (-8509473.000000) , (-8509202.000000) , (-8509168.000000) , (-8509008.000000) , (-8508924.000000) , (-8508879.000000) , (-8508866.000000) , (-8508852.000000) , (-8508679.000000) , (-8508518.000000) , (-8508473.000000) , (-8508345.000000) , (-8508331.000000) , (-8508063.000000) , (-8508028.000000) , (-8507673.000000) , (-8507601.000000) , (-8507559.000000) , (-8508154.000000) ,
    (-8509403.000000) , (-8509128.000000) , (-8508926.000000) , (-8508705.000000) , (-8508424.000000) , (-8507891.000000) , (-8507363.000000) , (-8509915.000000) , (-8509709.000000) , (-8509241.000000) , (-8508921.000000) , (-8508359.000000) , (-8509995.000000) , (-8509817.000000) , (-8509528.000000) , (-8509514.000000) , (-8509247.000000) , (-8509086.000000) , (-8509081.000000) , (-8509062.000000) , (-8508975.000000) , (-8508910.000000) , (-8508876.000000) , (-8508869.000000) , (-8508862.000000) ,
    (-8508771.000000) , (-8508685.000000) , (-8508585.000000) , (-8508556.000000) , (-8508363.000000) , (-8508051.000000) , (-8507881.000000) , (-8507808.000000) , (-8507807.000000) , (-8507616.000000) , (-8507342.000000) , (-8507326.000000) , (-8509781.000000) , (-8509729.000000) , (-8508915.000000) , (-8508484.000000) , (-8508457.000000) , (-8508406.000000) , (-8508367.000000) , (-8508251.000000) , (-8507608.000000) , (-8507525.000000) , (-8507423.000000) , (-8509345.000000) , (-8508952.000000) ,
    (-8508807.000000) , (-8508298.000000) , (-8509273.000000) , (-8509174.000000) , (-8508829.000000) , (-8508280.000000) , (-8508180.000000) , (-8508048.000000) , (-8507914.000000) , (-8507556.000000) , (-8509973.000000) , (-8509917.000000) , (-8509771.000000) , (-8509607.000000) , (-8509407.000000) , (-8509072.000000) , (-8509057.000000) , (-8508956.000000) , (-8508928.000000) , (-8508785.000000) , (-8508697.000000) , (-8508687.000000) , (-8508323.000000) , (-8508309.000000) , (-8508260.000000) ,
    (-8508133.000000) , (-8508101.000000) , (-8508049.000000) , (-8507917.000000) , (-8507655.000000) , (-8507610.000000) , (-8507524.000000) , (-8507358.000000) , (-8507309.000000) , (-8507259.000000) , (-8509663.000000) , (-8509414.000000) , (-8509401.000000) , (-8508612.000000) , (-8508508.000000) , (-8508435.000000) , (-8508172.000000) , (-8507872.000000) , (-8507835.000000) , (-8507387.000000) , (-8507359.000000) , (-8507357.000000) , (-8509082.000000) , (-8508710.000000) , (-8508014.000000) ,
    (-8507848.000000) , (-8507800.000000) , (-8507538.000000) , (-8509859.000000) , (-8509848.000000) , (-8509355.000000) , (-8509116.000000) , (-8509096.000000) , (-8509071.000000) , (-8509070.000000) , (-8508880.000000) , (-8508463.000000) , (-8507816.000000) , (-8507697.000000) , (-8507474.000000) , (-8507333.000000) , (-8507308.000000) , (-8509170.000000) , (-8509042.000000) , (-8509023.000000) , (-8508989.000000) , (-8507853.000000) , (-8507750.000000) , (-8507632.000000) , (-8507631.000000) ,
    (-8507447.000000) , (-8507356.000000) , (-8509812.000000) , (-8509405.000000) , (-8509147.000000) , (-8509043.000000) , (-8508962.000000) , (-8508804.000000) , (-8508494.000000) , (-8508261.000000) , (-8508111.000000) , (-8508044.000000) , (-8508038.000000) , (-8507974.000000) , (-8507672.000000) , (-8507543.000000) , (-8507501.000000) , (-8507355.000000) , (-8507293.000000) , (-8509943.000000) , (-8509908.000000) , (-8509695.000000) , (-8509365.000000) , (-8509255.000000) , (-8509227.000000) ,
    (-8509002.000000) , (-8508639.000000) , (-8508446.000000) , (-8508431.000000) , (-8508201.000000) , (-8508120.000000) , (-8508070.000000) , (-8507733.000000) , (-8507660.000000) , (-8507519.000000) , (-8507492.000000) , (-8509996.000000) , (-8509978.000000) , (-8509967.000000) , (-8509876.000000) , (-8509742.000000) , (-8509632.000000) , (-8509517.000000) , (-8509455.000000) , (-8509254.000000) , (-8508935.000000) , (-8508794.000000) , (-8508772.000000) , (-8508610.000000) , (-8508533.000000) ,
    (-8508471.000000) , (-8508107.000000) , (-8507990.000000) , (-8507806.000000) , (-8507567.000000) , (-8507430.000000) , (-8509609.000000) , (-8507938.000000) , (-8507890.000000) , (-8507268.000000) , (-8509916.000000) , (-8509751.000000) , (-8509706.000000) , (-8509363.000000) , (-8508971.000000) , (-8508623.000000) , (-8507970.000000) , (-8507928.000000) , (-8507910.000000) , (-8507850.000000) , (-8507842.000000) , (-8507514.000000) , (-8507325.000000) , (-8507233.000000) , (-8510022.000000) ,
    (-8509976.000000) , (-8509913.000000) , (-8509887.000000) , (-8509862.000000) , (-8509703.000000) , (-8509682.000000) , (-8509587.000000) , (-8509545.000000) , (-8509450.000000) , (-8509406.000000) , (-8509215.000000) , (-8509189.000000) , (-8509099.000000) , (-8509066.000000) , (-8509009.000000) , (-8508967.000000) , (-8508945.000000) , (-8508940.000000) , (-8508936.000000) , (-8508860.000000) , (-8508787.000000) , (-8508594.000000) , (-8508580.000000) , (-8507945.000000) , (-8507926.000000) ,
    (-8507840.000000) , (-8507820.000000) , (-8507778.000000) , (-8507676.000000) , (-8507665.000000) , (-8507614.000000) , (-8507613.000000) , (-8507545.000000) , (-8507435.000000) , (-8507324.000000) , (-8507316.000000) , (-8509193.000000) , (-8508724.000000) , (-8509321.000000) , (-8507634.000000) , (-8509287.000000) , (-8508273.000000) , (-8509850.000000) , (-8509722.000000) , (-8509558.000000) , (-8508700.000000) , (-8508436.000000) , (-8508372.000000) , (-8508341.000000) , (-8507633.000000) ,
    (-8507574.000000) , (-8509702.000000) , (-8509094.000000) , (-8508982.000000) , (-8508683.000000) , (-8508620.000000) , (-8508159.000000) , (-8509932.000000) , (-8509775.000000) , (-8509429.000000) , (-8509011.000000) , (-8508761.000000) , (-8508321.000000) , (-8508176.000000) , (-8509936.000000) , (-8509804.000000) , (-8509739.000000) , (-8509554.000000) , (-8509235.000000) , (-8509131.000000) , (-8508782.000000) , (-8508760.000000) , (-8509490.000000) , (-8509430.000000) , (-8509049.000000) ,
    (-8508972.000000) , (-8508025.000000) , (-8508600.000000) , (-8508005.000000) , (-8509020.000000) , (-8508512.000000) , (-8508006.000000) , (-8507927.000000) , (-8507332.000000) , (-8509272.000000) , (-8508896.000000) , (-8507320.000000) , (-8508820.000000) , (-8507669.000000) , (-8507449.000000) , (-8509726.000000) , (-8508583.000000) , (-8507654.000000) , (-8510019.000000) , (-8509662.000000) , (-8509602.000000) , (-8509588.000000) , (-8509526.000000) , (-8509494.000000) , (-8509440.000000) ,
    (-8509370.000000) , (-8509364.000000) , (-8509329.000000) , (-8509282.000000) , (-8509252.000000) , (-8509026.000000) , (-8508905.000000) , (-8508854.000000) , (-8508658.000000) , (-8508646.000000) , (-8508595.000000) , (-8508576.000000) , (-8508557.000000) , (-8508509.000000) , (-8508504.000000) , (-8508420.000000) , (-8508396.000000) , (-8508301.000000) , (-8508226.000000) , (-8508167.000000) , (-8508007.000000) , (-8507925.000000) , (-8507860.000000) , (-8507811.000000) , (-8507767.000000) ,
    (-8507713.000000) , (-8507679.000000) , (-8507615.000000) , (-8507590.000000) , (-8507499.000000) , (-8507380.000000) , (-8507262.000000) , (-8507247.000000) , (-8509808.000000) , (-8509051.000000) , (-8508467.000000) , (-8508338.000000) , (-8508000.000000) , (-8507469.000000) , (-8509953.000000) , (-8508814.000000) , (-8508802.000000) , (-8508211.000000) , (-8509960.000000) , (-8509829.000000) , (-8508738.000000) , (-8507919.000000) , (-8507812.000000) , (-8507520.000000) , (-8508649.000000) ,
    (-8508270.000000) , (-8508060.000000) , (-8507777.000000) , (-8509951.000000) , (-8509950.000000) , (-8509683.000000) , (-8509381.000000) , (-8509331.000000) , (-8509293.000000) , (-8509281.000000) , (-8509278.000000) , (-8509256.000000) , (-8509232.000000) , (-8509229.000000) , (-8509135.000000) , (-8509132.000000) , (-8509123.000000) , (-8509122.000000) , (-8508882.000000) , (-8508830.000000) , (-8508812.000000) , (-8508809.000000) , (-8508792.000000) , (-8508780.000000) , (-8508711.000000) ,
    (-8508703.000000) , (-8508681.000000) , (-8508676.000000) , (-8508634.000000) , (-8508549.000000) , (-8508506.000000) , (-8508307.000000) , (-8508283.000000) , (-8508187.000000) , (-8508178.000000) , (-8508132.000000) , (-8508090.000000) , (-8508085.000000) , (-8507946.000000) , (-8507913.000000) , (-8507882.000000) , (-8507789.000000) , (-8507664.000000) , (-8507593.000000) , (-8507564.000000) , (-8507541.000000) , (-8507527.000000) , (-8507422.000000) , (-8507393.000000) , (-8507329.000000) ,
    (-8507270.000000) , (-8509986.000000) , (-8509934.000000) , (-8509926.000000) , (-8509772.000000) , (-8509678.000000) , (-8509657.000000) , (-8509645.000000) , (-8509469.000000) , (-8509458.000000) , (-8509341.000000) , (-8509311.000000) , (-8509294.000000) , (-8509145.000000) , (-8509112.000000) , (-8509078.000000) , (-8508884.000000) , (-8508816.000000) , (-8508811.000000) , (-8508752.000000) , (-8508746.000000) , (-8508654.000000) , (-8508505.000000) , (-8508443.000000) , (-8508380.000000) ,
    (-8508344.000000) , (-8508287.000000) , (-8508026.000000) , (-8507904.000000) , (-8507899.000000) , (-8507867.000000) , (-8507833.000000) , (-8507761.000000) , (-8507740.000000) , (-8507600.000000) , (-8507569.000000) , (-8507484.000000) , (-8507344.000000) , (-8507310.000000) , (-8509644.000000) , (-8507294.000000) , (-8509984.000000) , (-8509979.000000) , (-8509931.000000) , (-8509883.000000) , (-8509827.000000) , (-8509718.000000) , (-8509705.000000) , (-8509656.000000) , (-8509492.000000) ,
    (-8509327.000000) , (-8509197.000000) , (-8509164.000000) , (-8509108.000000) , (-8508988.000000) , (-8508795.000000) , (-8508759.000000) , (-8508719.000000) , (-8508559.000000) , (-8508305.000000) , (-8508244.000000) , (-8507943.000000) , (-8507923.000000) , (-8507879.000000) , (-8507843.000000) , (-8507837.000000) , (-8507779.000000) , (-8507769.000000) , (-8507728.000000) , (-8507591.000000) , (-8507374.000000) , (-8509992.000000) , (-8509855.000000) , (-8509815.000000) , (-8509785.000000) ,
    (-8509708.000000) , (-8509688.000000) , (-8509668.000000) , (-8509633.000000) , (-8509340.000000) , (-8509245.000000) , (-8509142.000000) , (-8508903.000000) , (-8508824.000000) , (-8508755.000000) , (-8508605.000000) , (-8508477.000000) , (-8508466.000000) , (-8508384.000000) , (-8508304.000000) , (-8508232.000000) , (-8508150.000000) , (-8507726.000000) , (-8507227.000000) , (-8509889.000000) , (-8509634.000000) , (-8509508.000000) , (-8509459.000000) , (-8508799.000000) , (-8508783.000000) ,
    (-8508723.000000) , (-8508624.000000) , (-8508440.000000) , (-8508191.000000) , (-8508149.000000) , (-8507995.000000) , (-8507607.000000) , (-8507254.000000) , (-8509959.000000) , (-8509091.000000) , (-8508865.000000) , (-8508823.000000) , (-8507818.000000) , (-8507700.000000) , (-8509949.000000) , (-8509920.000000) , (-8509802.000000) , (-8509725.000000) , (-8509713.000000) , (-8509673.000000) , (-8509586.000000) , (-8509512.000000) , (-8509395.000000) , (-8509373.000000) , (-8509297.000000) ,
    (-8509055.000000) , (-8508778.000000) , (-8508735.000000) , (-8508660.000000) , (-8508465.000000) , (-8508389.000000) , (-8508348.000000) , (-8508324.000000) , (-8508217.000000) , (-8508076.000000) , (-8508050.000000) , (-8507984.000000) , (-8507902.000000) , (-8507555.000000) , (-8507409.000000) , (-8507391.000000) , (-8507248.000000) , (-8509092.000000) , (-8509047.000000) , (-8508678.000000) , (-8508432.000000) , (-8509884.000000) , (-8509757.000000) , (-8509693.000000) , (-8509509.000000) ,
    (-8509386.000000) , (-8509172.000000) , (-8508485.000000) , (-8508220.000000) , (-8508197.000000) , (-8507932.000000) , (-8507854.000000) , (-8507674.000000) , (-8507531.000000) , (-8509628.000000) , (-8509621.000000) , (-8509561.000000) , (-8508732.000000) , (-8508675.000000) , (-8507836.000000) , (-8507742.000000) , (-8507416.000000) , (-8507401.000000) , (-8510012.000000) , (-8509955.000000) , (-8509650.000000) , (-8509426.000000) , (-8509335.000000) , (-8508825.000000) , (-8508718.000000) ,
    (-8508168.000000) , (-8508077.000000) , (-8508061.000000) , (-8507863.000000) , (-8507667.000000) , (-8507637.000000) , (-8507476.000000) , (-8507450.000000) , (-8507314.000000) , (-8507258.000000) , (-8509497.000000) , (-8509417.000000) , (-8508744.000000) , (-8508493.000000) , (-8508429.000000) , (-8508199.000000) , (-8507892.000000) , (-8507589.000000) , (-8507588.000000) , (-8509853.000000) , (-8509851.000000) , (-8509686.000000) , (-8509534.000000) , (-8509438.000000) , (-8509425.000000) ,
    (-8509313.000000) , (-8509265.000000) , (-8509169.000000) , (-8509124.000000) , (-8508950.000000) , (-8508931.000000) , (-8508657.000000) , (-8508604.000000) , (-8508592.000000) , (-8508566.000000) , (-8508537.000000) , (-8508346.000000) , (-8508272.000000) , (-8508227.000000) , (-8508122.000000) , (-8508075.000000) , (-8507918.000000) , (-8507851.000000) , (-8507813.000000) , (-8507648.000000) , (-8507537.000000) , (-8507382.000000) , (-8507340.000000) , (-8507236.000000) , (-8507230.000000) ,
    (-8509893.000000) , (-8509533.000000) , (-8508216.000000) , (-8507266.000000) , (-8509231.000000) , (-8509068.000000) , (-8508901.000000) , (-8508575.000000) , (-8508182.000000) , (-8507708.000000) , (-8507466.000000) , (-8507404.000000) , (-8509820.000000) , (-8509819.000000) , (-8509610.000000) , (-8509584.000000) , (-8509453.000000) , (-8509361.000000) , (-8509288.000000) , (-8508779.000000) , (-8508743.000000) , (-8508686.000000) , (-8508650.000000) , (-8508194.000000) , (-8508141.000000) ,
    (-8508066.000000) , (-8507996.000000) , (-8507978.000000) , (-8507675.000000) , (-8507360.000000) , (-8507286.000000) , (-8507235.000000) , (-8509347.000000) , (-8509397.000000) , (-8508312.000000) , (-8509905.000000) , (-8509134.000000) , (-8508835.000000) , (-8508460.000000) , (-8507394.000000) , (-8507292.000000) , (-8507274.000000) , (-8507221.000000) , (-8509794.000000) , (-8509769.000000) , (-8509491.000000) , (-8509338.000000) , (-8508994.000000) , (-8508846.000000) , (-8508708.000000) ,
    (-8508591.000000) , (-8508447.000000) , (-8508402.000000) , (-8508395.000000) , (-8508374.000000) , (-8508123.000000) , (-8507885.000000) , (-8507732.000000) , (-8507730.000000) , (-8507455.000000) , (-8507426.000000) , (-8507331.000000) , (-8509436.000000) , (-8509198.000000) , (-8509173.000000) , (-8509111.000000) , (-8509085.000000) , (-8509073.000000) , (-8509069.000000) , (-8509056.000000) , (-8507552.000000) , (-8508889.000000) , (-8507554.000000) , (-8507551.000000) , (-8507345.000000) ,
    (-8509882.000000) , (-8509877.000000) , (-8509465.000000) , (-8509079.000000) , (-8508970.000000) , (-8508937.000000) , (-8508694.000000) , (-8507958.000000) , (-8509790.000000) , (-8508488.000000) , (-8508222.000000) , (-8508192.000000) , (-8507691.000000) , (-8508661.000000) , (-8508439.000000) , (-8509100.000000) , (-8508555.000000) , (-8508294.000000) , (-8507688.000000) , (-8507378.000000) , (-8509447.000000) , (-8509416.000000) , (-8508106.000000) , (-8507878.000000) , (-8507723.000000) )
    OR
    (ALIAS_R119) IN ((-8507482.000000) , (-8508750.000000) , (-8507419.000000) , (-8507321.000000) , (-8508560.000000) , (-8509910.000000) , (-8509667.000000) , (-8509357.000000) , (-8508674.000000) , (-8508155.000000) , (-8507986.000000) , (-8507961.000000) , (-8507895.000000) , (-8508943.000000) , (-8508572.000000) , (-8508474.000000) , (-8508281.000000) , (-8508071.000000) , (-8507924.000000) , (-8509701.000000) , (-8509569.000000) , (-8509468.000000) , (-8508855.000000) , (-8508781.000000) , (-8508596.000000) ,
    (-8508520.000000) , (-8508399.000000) , (-8507687.000000) , (-8509101.000000) , (-8508490.000000) , (-8508387.000000) , (-8508296.000000) , (-8507232.000000) , (-8509990.000000) , (-8508458.000000) , (-8509404.000000) , (-8509261.000000) , (-8508998.000000) , (-8508449.000000) , (-8508127.000000) , (-8509557.000000) , (-8509162.000000) , (-8508840.000000) , (-8508810.000000) , (-8508339.000000) , (-8508206.000000) , (-8508166.000000) , (-8508020.000000) , (-8507649.000000) , (-8507521.000000) ,
    (-8507417.000000) , (-8509803.000000) , (-8509646.000000) , (-8509471.000000) , (-8509295.000000) , (-8509088.000000) , (-8508947.000000) , (-8508851.000000) , (-8508800.000000) , (-8508398.000000) , (-8508370.000000) , (-8508302.000000) , (-8508068.000000) , (-8507939.000000) , (-8507489.000000) , (-8507477.000000) , (-8509496.000000) , (-8509060.000000) , (-8508990.000000) , (-8508663.000000) , (-8508584.000000) , (-8508002.000000) , (-8509745.000000) , (-8509520.000000) , (-8509421.000000) ,
    (-8508545.000000) , (-8508525.000000) , (-8508276.000000) , (-8508238.000000) , (-8508113.000000) , (-8508065.000000) , (-8507997.000000) , (-8507907.000000) , (-8507826.000000) , (-8507639.000000) , (-8509732.000000) , (-8509674.000000) , (-8508871.000000) , (-8508577.000000) , (-8508497.000000) , (-8508264.000000) , (-8507653.000000) , (-8507643.000000) , (-8507550.000000) , (-8507516.000000) , (-8507475.000000) , (-8507468.000000) , (-8507398.000000) , (-8509730.000000) , (-8509899.000000) ,
    (-8509780.000000) , (-8509638.000000) , (-8509618.000000) , (-8509263.000000) , (-8508875.000000) , (-8508138.000000) , (-8508081.000000) , (-8507886.000000) , (-8507596.000000) , (-8507315.000000) , (-8509843.000000) , (-8509700.000000) , (-8508247.000000) , (-8508224.000000) , (-8508186.000000) , (-8507662.000000) , (-8509698.000000) , (-8509419.000000) , (-8508914.000000) , (-8508728.000000) , (-8508597.000000) , (-8508524.000000) , (-8508228.000000) , (-8508193.000000) , (-8508098.000000) ,
    (-8507963.000000) , (-8507689.000000) , (-8507598.000000) , (-8507540.000000) , (-8507443.000000) , (-8509839.000000) , (-8508571.000000) , (-8508472.000000) , (-8507751.000000) , (-8508416.000000) , (-8508202.000000) , (-8508157.000000) , (-8508074.000000) , (-8509833.000000) , (-8509375.000000) , (-8508968.000000) , (-8508957.000000) , (-8508229.000000) , (-8507988.000000) , (-8507782.000000) , (-8507224.000000) , (-8510004.000000) , (-8509483.000000) , (-8509392.000000) , (-8508748.000000) ,
    (-8508702.000000) , (-8508609.000000) , (-8508517.000000) , (-8508511.000000) , (-8508023.000000) , (-8507864.000000) , (-8507585.000000) , (-8507517.000000) , (-8507437.000000) , (-8509856.000000) , (-8509824.000000) , (-8509791.000000) , (-8509733.000000) , (-8509664.000000) , (-8509515.000000) , (-8509433.000000) , (-8509209.000000) , (-8508983.000000) , (-8508688.000000) , (-8508599.000000) , (-8508501.000000) , (-8508291.000000) , (-8507992.000000) , (-8507962.000000) , (-8507605.000000) ,
    (-8507532.000000) , (-8507438.000000) , (-8507396.000000) , (-8507312.000000) , (-8507304.000000) , (-8507240.000000) , (-8510013.000000) , (-8509918.000000) , (-8509881.000000) , (-8509852.000000) , (-8509738.000000) , (-8509719.000000) , (-8509659.000000) , (-8509511.000000) , (-8509219.000000) , (-8508958.000000) , (-8508740.000000) , (-8508421.000000) , (-8508162.000000) , (-8508104.000000) , (-8507783.000000) , (-8507722.000000) , (-8507504.000000) , (-8507467.000000) , (-8507371.000000) ,
    (-8507960.000000) , (-8509320.000000) , (-8509661.000000) , (-8509428.000000) , (-8507747.000000) , (-8509885.000000) , (-8509344.000000) , (-8508916.000000) , (-8508906.000000) , (-8508483.000000) , (-8508319.000000) , (-8507805.000000) , (-8507494.000000) , (-8509793.000000) , (-8509783.000000) , (-8509720.000000) , (-8509574.000000) , (-8509536.000000) , (-8509358.000000) , (-8508125.000000) , (-8508042.000000) , (-8507942.000000) , (-8507656.000000) , (-8507464.000000) , (-8507386.000000) ,
    (-8507379.000000) , (-8509968.000000) , (-8509904.000000) , (-8509822.000000) , (-8509743.000000) , (-8509704.000000) , (-8509510.000000) , (-8509474.000000) , (-8509434.000000) , (-8509388.000000) , (-8509266.000000) , (-8509187.000000) , (-8508693.000000) , (-8508692.000000) , (-8508629.000000) , (-8508378.000000) , (-8508151.000000) , (-8508110.000000) , (-8508035.000000) , (-8507980.000000) , (-8507774.000000) , (-8507748.000000) , (-8507661.000000) , (-8507500.000000) , (-8507381.000000) ,
    (-8507303.000000) , (-8507243.000000) , (-8509840.000000) , (-8509776.000000) , (-8509592.000000) , (-8509457.000000) , (-8508897.000000) , (-8508532.000000) , (-8508487.000000) , (-8508456.000000) , (-8507821.000000) , (-8507658.000000) , (-8507647.000000) , (-8507376.000000) , (-8509617.000000) , (-8509431.000000) , (-8509207.000000) , (-8508713.000000) , (-8508425.000000) , (-8507744.000000) , (-8507448.000000) , (-8509938.000000) , (-8509367.000000) , (-8508630.000000) , (-8508303.000000) ,
    (-8508173.000000) , (-8507346.000000) , (-8509740.000000) , (-8509567.000000) , (-8509690.000000) , (-8507528.000000) , (-8507348.000000) , (-8508758.000000) , (-8507735.000000) , (-8507587.000000) , (-8509834.000000) , (-8507682.000000) , (-8509556.000000) , (-8509486.000000) , (-8509271.000000) , (-8509105.000000) , (-8508470.000000) , (-8508284.000000) , (-8507636.000000) , (-8509903.000000) , (-8509731.000000) , (-8509543.000000) , (-8509503.000000) , (-8509337.000000) , (-8509308.000000) ,
    (-8509290.000000) , (-8509289.000000) , (-8509262.000000) , (-8509182.000000) , (-8509044.000000) , (-8508946.000000) , (-8508894.000000) , (-8508826.000000) , (-8508696.000000) , (-8508271.000000) , (-8508254.000000) , (-8508240.000000) , (-8508134.000000) , (-8508041.000000) , (-8508008.000000) , (-8507703.000000) , (-8507652.000000) , (-8507582.000000) , (-8507458.000000) , (-8507222.000000) , (-8509576.000000) , (-8508836.000000) , (-8508411.000000) , (-8508275.000000) , (-8507968.000000) ,
    (-8507773.000000) , (-8507721.000000) , (-8507457.000000) , (-8509800.000000) , (-8509626.000000) , (-8509524.000000) , (-8509152.000000) , (-8509064.000000) , (-8508948.000000) , (-8508714.000000) , (-8508673.000000) , (-8508668.000000) , (-8508644.000000) , (-8508562.000000) , (-8508242.000000) , (-8508016.000000) , (-8507856.000000) , (-8507798.000000) , (-8507770.000000) , (-8507693.000000) , (-8507609.000000) , (-8507463.000000) , (-8507459.000000) , (-8509384.000000) , (-8509012.000000) ,
    (-8508628.000000) , (-8508500.000000) , (-8508078.000000) , (-8507815.000000) , (-8507712.000000) , (-8507343.000000) , (-8509216.000000) , (-8509969.000000) , (-8509925.000000) , (-8509437.000000) , (-8509087.000000) , (-8508553.000000) , (-8508200.000000) , (-8508073.000000) , (-8507839.000000) , (-8507645.000000) , (-8507349.000000) , (-8509467.000000) , (-8509210.000000) , (-8508941.000000) , (-8508789.000000) , (-8508590.000000) , (-8508289.000000) , (-8508246.000000) , (-8507937.000000) ,
    (-8507819.000000) , (-8509989.000000) , (-8509779.000000) , (-8509666.000000) , (-8509148.000000) , (-8508561.000000) , (-8508502.000000) , (-8508480.000000) , (-8508083.000000) , (-8507871.000000) , (-8507786.000000) , (-8507518.000000) , (-8507491.000000) , (-8509972.000000) , (-8509870.000000) , (-8509750.000000) , (-8509748.000000) , (-8509612.000000) , (-8509547.000000) , (-8509539.000000) , (-8509481.000000) , (-8509390.000000) , (-8509283.000000) , (-8508837.000000) , (-8508690.000000) ,
    (-8508563.000000) , (-8508311.000000) , (-8508055.000000) , (-8507857.000000) , (-8507565.000000) , (-8509928.000000) , (-8509801.000000) , (-8509788.000000) , (-8508499.000000) , (-8507829.000000) , (-8507714.000000) , (-8507698.000000) , (-8507471.000000) , (-8507431.000000) , (-8509756.000000) , (-8509336.000000) , (-8509206.000000) , (-8508015.000000) , (-8507844.000000) , (-8509040.000000) , (-8508018.000000) , (-8507487.000000) , (-8509935.000000) , (-8509912.000000) , (-8509832.000000) ,
    (-8509770.000000) , (-8509735.000000) , (-8509696.000000) , (-8509493.000000) , (-8509444.000000) , (-8509378.000000) , (-8509374.000000) , (-8508832.000000) , (-8508579.000000) , (-8508286.000000) , (-8508143.000000) , (-8507794.000000) , (-8507785.000000) , (-8507644.000000) , (-8507548.000000) , (-8507414.000000) , (-8507298.000000) , (-8507252.000000) , (-8510010.000000) , (-8509546.000000) , (-8509304.000000) , (-8509154.000000) , (-8509153.000000) , (-8508933.000000) , (-8508918.000000) ,
    (-8508868.000000) , (-8508716.000000) , (-8508709.000000) , (-8508588.000000) , (-8508554.000000) , (-8508547.000000) , (-8508409.000000) , (-8508401.000000) , (-8508358.000000) , (-8508357.000000) , (-8508131.000000) , (-8508105.000000) , (-8508092.000000) , (-8508072.000000) , (-8507841.000000) , (-8507827.000000) , (-8507716.000000) , (-8507549.000000) , (-8507434.000000) , (-8507400.000000) , (-8507392.000000) , (-8507389.000000) , (-8509880.000000) , (-8509616.000000) , (-8509516.000000) ,
    (-8509326.000000) , (-8509248.000000) , (-8509466.000000) , (-8508574.000000) , (-8508040.000000) , (-8507883.000000) , (-8507313.000000) , (-8509495.000000) , (-8509452.000000) , (-8509372.000000) , (-8509205.000000) , (-8508790.000000) , (-8508765.000000) , (-8508088.000000) , (-8507787.000000) , (-8510018.000000) , (-8509849.000000) , (-8509795.000000) , (-8509631.000000) , (-8509630.000000) , (-8507746.000000) , (-8509941.000000) , (-8509895.000000) , (-8508911.000000) , (-8508097.000000) ,
    (-8507975.000000) , (-8507375.000000) , (-8507239.000000) , (-8509846.000000) , (-8509844.000000) , (-8509741.000000) , (-8509268.000000) , (-8509141.000000) , (-8508803.000000) , (-8508542.000000) , (-8508503.000000) , (-8508498.000000) , (-8508427.000000) , (-8508426.000000) , (-8508234.000000) , (-8508053.000000) , (-8507880.000000) , (-8507651.000000) , (-8507485.000000) , (-8507271.000000) , (-8509924.000000) , (-8508481.000000) , (-8508252.000000) , (-8508021.000000) , (-8508350.000000) ,
    (-8507219.000000) , (-8509937.000000) , (-8509319.000000) , (-8509233.000000) , (-8507792.000000) , (-8509369.000000) , (-8509316.000000) , (-8508351.000000) , (-8507935.000000) , (-8507544.000000) , (-8507526.000000) , (-8507272.000000) , (-8509831.000000) , (-8509620.000000) , (-8509596.000000) , (-8509566.000000) , (-8509551.000000) , (-8509324.000000) , (-8509296.000000) , (-8509238.000000) , (-8509106.000000) , (-8509045.000000) , (-8508986.000000) , (-8508689.000000) , (-8508647.000000) ,
    (-8508538.000000) , (-8508079.000000) , (-8507905.000000) , (-8507604.000000) , (-8507446.000000) , (-8508459.000000) , (-8507635.000000) , (-8507502.000000) , (-8507385.000000) , (-8509782.000000) , (-8509410.000000) , (-8509046.000000) , (-8508415.000000) , (-8507858.000000) , (-8507641.000000) , (-8509224.000000) , (-8510016.000000) , (-8509947.000000) , (-8509185.000000) , (-8508987.000000) , (-8508927.000000) , (-8508831.000000) , (-8508326.000000) , (-8507711.000000) , (-8507408.000000) ,
    (-8507289.000000) , (-8509691.000000) , (-8508813.000000) , (-8508751.000000) , (-8508636.000000) , (-8508619.000000) , (-8507684.000000) , (-8507372.000000) , (-8509591.000000) , (-8508969.000000) , (-8508839.000000) , (-8510011.000000) , (-8509346.000000) , (-8507706.000000) , (-8508640.000000) , (-8508582.000000) , (-8508029.000000) , (-8509763.000000) , (-8509640.000000) , (-8509188.000000) , (-8508899.000000) , (-8508699.000000) , (-8508569.000000) , (-8508329.000000) , (-8508214.000000) ,
    (-8507825.000000) , (-8510014.000000) , (-8509868.000000) , (-8509623.000000) , (-8509575.000000) , (-8509485.000000) , (-8509462.000000) , (-8509448.000000) , (-8509380.000000) , (-8509028.000000) , (-8508974.000000) , (-8508843.000000) , (-8508618.000000) , (-8508390.000000) , (-8508255.000000) , (-8508203.000000) , (-8508058.000000) , (-8507830.000000) , (-8507701.000000) , (-8507328.000000) , (-8509927.000000) , (-8509888.000000) , (-8509749.000000) , (-8509636.000000) , (-8509578.000000) ,
    (-8509553.000000) , (-8509501.000000) , (-8509126.000000) , (-8509114.000000) , (-8509030.000000) , (-8508984.000000) , (-8508870.000000) , (-8508669.000000) , (-8508189.000000) , (-8507955.000000) , (-8507508.000000) , (-8507299.000000) , (-8507223.000000) , (-8509611.000000) , (-8509589.000000) , (-8509103.000000) , (-8508753.000000) , (-8508721.000000) , (-8508672.000000) , (-8508213.000000) , (-8508118.000000) , (-8507753.000000) , (-8509993.000000) , (-8509860.000000) , (-8509679.000000) ,
    (-8509034.000000) , (-8508849.000000) , (-8508715.000000) , (-8508507.000000) , (-8508239.000000) , (-8508212.000000) , (-8508091.000000) , (-8508059.000000) , (-8508013.000000) , (-8507406.000000) , (-8509697.000000) , (-8509542.000000) , (-8508491.000000) , (-8508320.000000) , (-8509828.000000) , (-8508808.000000) , (-8508423.000000) , (-8508086.000000) , (-8507705.000000) , (-8507493.000000) , (-8509005.000000) , (-8508139.000000) , (-8507973.000000) , (-8507244.000000) , (-8509269.000000) ,
    (-8508842.000000) , (-8509677.000000) , (-8508925.000000) , (-8508827.000000) , (-8508586.000000) , (-8508469.000000) , (-8508126.000000) , (-8508045.000000) , (-8507959.000000) , (-8507933.000000) , (-8509746.000000) , (-8509385.000000) , (-8508625.000000) , (-8508568.000000) , (-8508944.000000) , (-8508550.000000) , (-8507686.000000) , (-8508318.000000) , (-8507893.000000) , (-8508593.000000) , (-8508001.000000) , (-8507817.000000) , (-8507781.000000) , (-8507296.000000) , (-8509159.000000) ,
    (-8507911.000000) , (-8507640.000000) , (-8507523.000000) , (-8507436.000000) , (-8508140.000000) , (-8509796.000000) , (-8509613.000000) , (-8509608.000000) , (-8509104.000000) , (-8509025.000000) , (-8509017.000000) , (-8508949.000000) , (-8508898.000000) , (-8508885.000000) , (-8508598.000000) , (-8508513.000000) , (-8508365.000000) , (-8508327.000000) , (-8508274.000000) , (-8508128.000000) , (-8508024.000000) , (-8507976.000000) , (-8507553.000000) , (-8507465.000000) , (-8507461.000000) ,
    (-8507407.000000) , (-8507399.000000) , (-8508631.000000) , (-8507253.000000) , (-8507739.000000) , (-8509504.000000) , (-8507445.000000) , (-8507237.000000) , (-8510015.000000) , (-8509867.000000) , (-8509766.000000) , (-8508722.000000) , (-8507865.000000) , (-8507280.000000) , (-8509181.000000) , (-8507361.000000) , (-8509615.000000) , (-8508282.000000) , (-8507884.000000) , (-8509548.000000) , (-8508256.000000) , (-8508169.000000) , (-8508651.000000) , (-8508961.000000) , (-8508621.000000) ,
    (-8508410.000000) , (-8509858.000000) , (-8507717.000000) , (-8509872.000000) , (-8509942.000000) , (-8507985.000000) , (-8507763.000000) , (-8507505.000000) , (-8509660.000000) , (-8509214.000000) , (-8509165.000000) , (-8509130.000000) , (-8508932.000000) , (-8508917.000000) , (-8508368.000000) , (-8507650.000000) , (-8509715.000000) , (-8509505.000000) , (-8509076.000000) , (-8508099.000000) , (-8507570.000000) , (-8508245.000000) , (-8509670.000000) , (-8509194.000000) , (-8508645.000000) ,
    (-8508430.000000) , (-8507288.000000) , (-8509599.000000) , (-8507951.000000) , (-8507832.000000) , (-8509439.000000) , (-8509200.000000) , (-8507936.000000) , (-8509665.000000) , (-8508510.000000) , (-8507834.000000) , (-8508142.000000) , (-8508087.000000) , (-8509230.000000) , (-8509137.000000) , (-8508999.000000) , (-8508451.000000) , (-8507572.000000) , (-8507322.000000) , (-8509579.000000) , (-8507956.000000) , (-8510008.000000) , (-8509727.000000) , (-8509480.000000) , (-8509195.000000) ,
    (-8509163.000000) , (-8508495.000000) , (-8508115.000000) ) )
    AND (C28_M_WWHHST_R_CATCCA IS NOT NULL) )
    Regards,
    Kirill Boyko

    Kirill/Watrost,
    Development just responded with the following ideas: There are some init.ora / alter session settings for this kind of thing. The format for all of them is 'hint1;hint2;hint3' The different settings control which kind of queries the hints are added to.
    Add to innermost measure (i.e. fact) and dimension select statements
    XSOLAPISQL_HINTS
    Add to the innermost measure select statements
    XSOLAPISQL_MEASURE_HINTS
    Add to the innermost dimensionselect statements
    XSOLAPISQL_DIMENSION_HINTS
    Add to the topmost measure select statements
    XSOLAPISQL_TOP_MEASURE_HINTS
    Add to the topmost dimension select statements
    XSOLAPISQL_TOP_DIMENSION_HINTS
    Add to all select statements except the innermost
    XSOLAPISQL_ALL_NON_BASE_HINTS
    Add to all non-base select statements that join two or more tables
    XSOLAPISQL_MULTI_JOIN_NON_BASE_HINTS
    As an example you could try
    XSOLAPISQL_MULTI_JOIN_NON_BASE_HINTS = 'ordered'
    or
    XSOLAPISQL_MEASURE_HINTS = 'ordered'
    Let me know if this helps or if you need more information.
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • How to reduce performance time.

    Hi,
    Any body guide me how to reduce performance time for this report.
    It’s taking to much time for execution.
    *& Report  ZEOU_CST_CLAIM_REP                                          *
    REPORT  zeou_cst_claim_rep.
    *& Program Name    : ZEOU_CST_CLAIM_REP                                *
    *& Title           : CST Claim Report                                  *
    *& Module Name     : EOU                                               *
    *& Author          : Chandra Vangoor                                   *
    *& Create Date     : 05.05.2006                                        *
    *& Logical DB      : None                                              *
    *& Program Type    : On-Line.                                          *
    *& SAP Release     : 4.7                                               *
    *& Description     :                                                   *
    *& Log    Date    Author        Reason of change
    TABLES
    TABLES : a363,
             mara,
             marc,
             makt,
             ekko,
             ekpo,
             mkpf,
             mseg,
             konp,
             konh.
    SELECTION-SCREEN
    SELECTION-SCREEN   :   BEGIN OF BLOCK cst WITH FRAME TITLE text-001.
    SELECT-OPTIONS :   s_matnr FOR mara-matnr,                            "Material Number
                       s_lifnr FOR ekko-lifnr,                            "Account Number of the Vendor
                       s_bedat FOR ekko-bedat,                            "Purchasing Document Date
                       s_kschl FOR konh-kschl OBLIGATORY NO INTERVALS,    "Condition type
                       s_bwart FOR mseg-bwart OBLIGATORY NO INTERVALS.    "Movement Type (Inventory Management)
    PARAMETERS     :   p_werks LIKE marc-werks OBLIGATORY.                "Plant
    SELECTION-SCREEN   :   END OF BLOCK cst.
    INCLUDES
    INCLUDE zalv_data.
    DATA - INTERNAL TABLES AND FIELD LISTS
    DATA :  BEGIN    OF     a363_itab  OCCURS 0,
            matnr    LIKE   a363-matnr,                    "Material Number
            lifnr    LIKE   a363-lifnr,                    "Account Number of the Vendor
            werks    LIKE   a363-werks,                    "Plant
            kschl    LIKE   a363-kschl,                    "Condition type
            knumh    LIKE   a363-knumh,                    "Condition record number
            kbetr    LIKE   konp-kbetr,                    "Rate (condition amount or percentage) where no scale exists
            END      OF     a363_itab.
    DATA :  BEGIN    OF     konp_itab  OCCURS 0,
            knumh    LIKE   a363-knumh,                    "Condition record number
            kbetr    LIKE   konp-kbetr,                    "Rate (condition amount or percentage) where no scale exists
            lifnr    LIKE   a363-lifnr,                    "Account Number of the Vendor
            END      OF     konp_itab.
    DATA :  BEGIN    OF     ekko_itab  OCCURS 0,
            ebeln    LIKE   ekko-ebeln,                    "Purchasing Document Number
            lifnr    LIKE   ekko-lifnr,                    "Account Number of the Vendor
            bedat    LIKE   ekko-bedat,                    "Purchasing Document Date
            END      OF     ekko_itab.
    DATA :  BEGIN    OF     ekpo_itab  OCCURS 0,
            ebeln    LIKE   ekpo-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   ekpo-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   ekpo-matnr,                    "Material Number
            werks    LIKE   ekpo-werks,                    "Plant
            menge    LIKE   ekpo-menge,                    "Purchase order quantity
            END      OF     ekpo_itab.
    DATA :  BEGIN    OF     v_po_det  OCCURS 0,            "VENDOR + PLANT + PO DEATILS
            lifnr    LIKE   ekko-lifnr,                    "Account Number of the Vendor
            ebeln    LIKE   ekko-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   ekpo-ebelp,                    "Item Number of Purchasing Document
            bedat    LIKE   ekko-bedat,                    "Purchasing Document Date
            matnr    LIKE   ekpo-matnr,                    "Material Number
            werks    LIKE   ekpo-werks,                    "Plant
            menge    LIKE   ekpo-menge,                    "Purchase order quantity
            kbetr    LIKE   konp-kbetr,                    "Rate (condition amount or percentage) where no scale exists
            END      OF     v_po_det.
    DATA :  BEGIN    OF     mseg_itab  OCCURS 0,
            mblnr    LIKE   mseg-mblnr,                    "Number of Material Document
            ebeln    LIKE   mseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   mseg-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   mseg-matnr,                    "Material Number
            lifnr    LIKE   mseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   mseg-werks,                    "Plant
            menge    LIKE   mseg-menge,                    "Quantity
            dmbtr    LIKE   mseg-dmbtr,                    "Amount in local currency
            bwart    LIKE   mseg-bwart,                    "Movement Type (Inventory Management)
            END      OF     mseg_itab.
    DATA :  BEGIN    OF     mkpf_itab  OCCURS 0,
            mblnr    LIKE   mkpf-mblnr,                    "Number of Material Document
            bldat    LIKE   mkpf-bldat,                    "Document Date in Document
            END      OF     mkpf_itab.
    DATA :  BEGIN    OF     zeou_pcrdtl_itab  OCCURS 0,
            matnr    LIKE   zeou_pcrdtl-matnr,             "Material Number
            lifnr    LIKE   zeou_pcrdtl-lifnr,             "Account Number of the Vendor
            mblnr    LIKE   zeou_pcrdtl-mblnr,             "Number of Material Document
            whssn    LIKE   zeou_pcrdtl-whssn,             "Warehouse Records Entry Serial No.
            whsdt    LIKE   zeou_pcrdtl-whsdt,             "Warehouse Records Entry date
            END      OF     zeou_pcrdtl_itab.
    DATA :  BEGIN    OF     gr_wh_info  OCCURS 0,          "INFO OF GR & WH BASED ON MVMT TYPE & PO
            mblnr    LIKE   mseg-mblnr,                    "Number of Material Document
            bldat    LIKE   mkpf-bldat,                    "Document Date in Document
            ebeln    LIKE   mseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   ekpo-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   mseg-matnr,                    "Material Number
            lifnr    LIKE   mseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   mseg-werks,                    "Plant
            menge    LIKE   mseg-menge,                    "Quantity
            dmbtr    LIKE   mseg-dmbtr,                    "Amount in local currency
            bwart    LIKE   mseg-bwart,                    "Movement Type (Inventory Management)
            whssn    LIKE   zeou_pcrdtl-whssn,             "Warehouse Records Entry Serial No.
            whsdt    LIKE   zeou_pcrdtl-whsdt,             "Warehouse Records Entry date
            END      OF     gr_wh_info.
    DATA :  BEGIN    OF     bseg_itab  OCCURS 0,
            ebeln    LIKE   bseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   bseg-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   bseg-matnr,                    "Material Number
            lifnr    LIKE   bseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   bseg-werks,                    "Plant
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            wrbtr    LIKE   bseg-wrbtr,                    "Amount in document currency
            bukrs    LIKE   bseg-bukrs,                    "Company Code
            belnr    LIKE   bseg-belnr,                    "Accounting Document Number
            gjahr    LIKE   bseg-gjahr,                    "Fiscal Year
            END      OF     bseg_itab.
    DATA :  BEGIN    OF     bkpf_itab  OCCURS 0,
            bukrs    LIKE   bkpf-bukrs,                    "Company Code
            belnr    LIKE   bkpf-belnr,                    "Accounting Document Number
            gjahr    LIKE   bkpf-gjahr,                    "Fiscal Year
            xblnr    LIKE   bkpf-xblnr,                    "Reference Document Number
            bldat    LIKE   bkpf-bldat,                    "Document Date in Document
            END      OF     bkpf_itab.
    DATA :  BEGIN    OF     vend_inv  OCCURS 0,            "VENDOR INVOICE DETAILS
            ebeln    LIKE   bseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   bseg-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   bseg-matnr,                    "Material Number
            lifnr    LIKE   bseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   bseg-werks,                    "Plant
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            wrbtr    LIKE   bseg-wrbtr,                    "Amount in document currency
            bukrs    LIKE   bseg-bukrs,                    "Company Code
            belnr    LIKE   bseg-belnr,                    "Accounting Document Number
            gjahr    LIKE   bseg-gjahr,                    "Fiscal Year
            xblnr    LIKE   bkpf-xblnr,                    "Reference Document Number
            bldat    LIKE   bkpf-bldat,                    "Document Date in Document
            END      OF     vend_inv.
    DATA :  BEGIN    OF     chckinit  OCCURS 0,            "CHEQUE INIT INFO
            ebeln    LIKE   bseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   bseg-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   bseg-matnr,                    "Material Number
            lifnr    LIKE   bseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   bseg-werks,                    "Plant
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            bukrs    LIKE   bkpf-bukrs,                    "Company Code
            belnr    LIKE   bkpf-belnr,                    "Accounting Document Number
            gjahr    LIKE   bkpf-gjahr,                    "Fiscal Year
            koart    LIKE   bseg-koart,                    "Account type
            augbl    LIKE   bseg-augbl,                    "Document Number of the Clearing Document
            END      OF     chckinit.
    DATA :  BEGIN    OF     chckpayer  OCCURS 0,           "CHEQUE BANK DETAILS
            vblnr    LIKE   payr-vblnr,                    "Document Number of the Payment Document
            zbukr    LIKE   payr-zbukr,                    "Paying company code
            gjahr    LIKE   payr-gjahr,                    "Fiscal Year
            chect    LIKE   payr-chect,                    "Check Number
            zaldt    LIKE   payr-zaldt,                    "Probable Payment Date (Cash Discount 1 Due)
            hbkid    LIKE   payr-hbkid,                    "Short key for a house bank
            END      OF     chckpayer.
    DATA :  chckpayer_u LIKE chckpayer OCCURS 0 WITH HEADER LINE.      "UNIQUE CHEQUE DETAILS
    DATA :  BEGIN    OF     chckfinal  OCCURS 0,           "CHEQUE FINAL INFO
            ebeln    LIKE   bseg-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   bseg-ebelp,                    "Item Number of Purchasing Document
            matnr    LIKE   bseg-matnr,                    "Material Number
            lifnr    LIKE   bseg-lifnr,                    "Account Number of the Vendor
            werks    LIKE   bseg-werks,                    "Plant
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            bukrs    LIKE   bkpf-bukrs,                    "Company Code
            belnr    LIKE   bkpf-belnr,                    "Accounting Document Number
            gjahr    LIKE   bkpf-gjahr,                    "Fiscal Year
            koart    LIKE   bseg-koart,                    "Account type
            augbl    LIKE   bseg-augbl,                    "Document Number of the Clearing Document
            vblnr    LIKE   payr-vblnr,                    "Document Number of the Payment Document
            zbukr    LIKE   payr-zbukr,                    "Paying company code
            chect    LIKE   payr-chect,                    "Check Number
            zaldt    LIKE   payr-zaldt,                    "Probable Payment Date (Cash Discount 1 Due)
            hbkid    LIKE   payr-hbkid,                    "Short key for a house bank
            END      OF     chckfinal.
    DATA :  BEGIN    OF     mat_desc OCCURS 0,
            matnr    LIKE   mara-matnr,
            maktx    LIKE   makt-maktx,
            END      OF     mat_desc.
    DATA :  BEGIN      OF     vend_det OCCURS 0,
            lifnr      LIKE   lfa1-lifnr,
            name1      LIKE   lfa1-name1,
            j_1icstno  LIKE   j_1imovend-j_1icstno,
            END        OF     vend_det.
    DATA :  BEGIN    OF     cst_rep  OCCURS 0,             "FINAL CST REPORT
            lifnr    LIKE   a363-lifnr,                    "Account Number of the Vendor
            name1    LIKE   lfa1-name1,                    "Vendor Name
            j_1icstno  LIKE   j_1imovend-j_1icstno,        " Vendor CST No.
            werks    LIKE   a363-werks,                    "Plant
           kschl    LIKE   a363-kschl,                    "Condition type
            ebeln    LIKE   ekko-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   ekpo-ebelp,                    "Item Number of Purchasing Document
            bedat    LIKE   ekko-bedat,                    "Purchasing Document Date
            matnr    LIKE   ekpo-matnr,                    "Material Number
            maktx    LIKE   makt-maktx,                    "Material Description.
            kbetr    LIKE   konp-kbetr,                    "Rate (condition amount or percentage) where no scale exists
            mblnr    LIKE   mseg-mblnr,                    "Number of Material Document
            bldat    LIKE   mkpf-bldat,                    "Document Date in Document
            menge    LIKE   mseg-menge,                    "Quantity
            dmbtr    LIKE   mseg-dmbtr,                    "Amount in local currency
            cst_dmbtr LIKE  mseg-dmbtr,                    "CST Amount in local currency
            bwart    LIKE   mseg-bwart,                    "Movement Type (Inventory Management)
            whssn    LIKE   zeou_pcrdtl-whssn,             "Warehouse Records Entry Serial No.
            whsdt    LIKE   zeou_pcrdtl-whsdt,             "Warehouse Records Entry date
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            wrbtr    LIKE   bseg-wrbtr,                    "Amount in document currency
            cst_wrbtr LIKE  bseg-wrbtr,                    "CST Amount in document currency
            belnr    LIKE   bseg-belnr,                    "Accounting Document Number
            gjahr    LIKE   bseg-gjahr,                    "Fiscal Year
            xblnr    LIKE   bkpf-xblnr,                    "Reference Document Number
            koart    LIKE   bseg-koart,                    "Account type
            augbl    LIKE   bseg-augbl,                    "Document Number of the Clearing Document
            vblnr    LIKE   payr-vblnr,                    "Document Number of the Payment Document
            zbukr    LIKE   payr-zbukr,                    "Paying company code
            chect    LIKE   payr-chect,                    "Check Number
            zaldt    LIKE   payr-zaldt,                    "Probable Payment Date (Cash Discount 1 Due)
            hbkid    LIKE   payr-hbkid,                    "Short key for a house bank
            END      OF     cst_rep.
    DATA :  BEGIN    OF     gt_output  OCCURS 0,              "ALV OUTPUT
            slno     LIKE   sy-tabix,                      "Serial Number
            lifnr    LIKE   a363-lifnr,                    "Account Number of the Vendor
            name1    LIKE   lfa1-name1,                    "Vendor Name
            j_1icstno  LIKE   j_1imovend-j_1icstno,        " Vendor CST No.
            werks    LIKE   a363-werks,                    "Plant
           kschl    LIKE   a363-kschl,                    "Condition type
            ebeln    LIKE   ekko-ebeln,                    "Purchasing Document Number
            ebelp    LIKE   ekpo-ebelp,                    "Item Number of Purchasing Document
            bedat    LIKE   ekko-bedat,                    "Purchasing Document Date
            matnr    LIKE   ekpo-matnr,                    "Material Number
            maktx    LIKE   makt-maktx,                    "Material Description
            mblnr    LIKE   mseg-mblnr,                    "Number of Material Document
            bldat    LIKE   mkpf-bldat,                    "Document Date in Document
            menge    LIKE   mseg-menge,                    "Quantity
            dmbtr    LIKE   mseg-dmbtr,                    "Amount in local currency
            cst_dmbtr LIKE  mseg-dmbtr,                    "CST Amount in local currency
            bwart    LIKE   mseg-bwart,                    "Movement Type (Inventory Management)
            whssn    LIKE   zeou_pcrdtl-whssn,             "Warehouse Records Entry Serial No.
            whsdt    LIKE   zeou_pcrdtl-whsdt,             "Warehouse Records Entry date
            buzid    LIKE   bseg-buzid,                    "Identification of the Line Item
            bschl    LIKE   bseg-bschl,                    "Posting Key
            wrbtr    LIKE   bseg-wrbtr,                    "Amount in document currency
            cst_wrbtr LIKE  bseg-wrbtr,                    "CST Amount in document currency
            belnr    LIKE   bseg-belnr,                    "Accounting Document Number
            gjahr    LIKE   bseg-gjahr,                    "Fiscal Year
            xblnr    LIKE   bkpf-xblnr,                    "Reference Document Number
            koart    LIKE   bseg-koart,                    "Account type
            augbl    LIKE   bseg-augbl,                    "Document Number of the Clearing Document
            vblnr    LIKE   payr-vblnr,                    "Document Number of the Payment Document
            zbukr    LIKE   payr-zbukr,                    "Paying company code
            chect    LIKE   payr-chect,                    "Check Number
            zaldt    LIKE   payr-zaldt,                    "Probable Payment Date (Cash Discount 1 Due)
            hbkid    LIKE   payr-hbkid,                    "Short key for a house bank
            usr_txt1(20) TYPE c,
            usr_txt2(20) TYPE c,
            END      OF     gt_output.
    *Working Variables
    DATA : cst_gr  LIKE  mseg-dmbtr,
           cst_inv LIKE  bseg-wrbtr,
           usr_txt1(20) TYPE c,
           usr_txt2(20) TYPE c.
    START-OF-SELECTION.
    *Retreiving Data from a363 table for the given input
      SELECT  matnr
              lifnr
              werks
              kschl
              knumh
              FROM a363
              INTO TABLE a363_itab
              WHERE matnr IN s_matnr AND lifnr IN s_lifnr AND werks EQ p_werks AND kschl IN s_kschl.
    *rakesh ***************************
    SELECT  *
             FROM konp
             INTO CORRESPONDING FIELDS OF TABLE konp_itab
             FOR ALL ENTRIES IN a363_itab
             WHERE knumh EQ a363_itab-knumh.
      IF  a363_itab[] IS NOT INITIAL.
        SELECT knumh
               kbetr
               lifnr
               FROM konp INTO TABLE konp_itab
               FOR ALL ENTRIES IN a363_itab
               WHERE knumh EQ a363_itab-knumh.
      ENDIF.
      LOOP AT a363_itab.
        READ TABLE konp_itab WITH KEY knumh = a363_itab-knumh.
        IF sy-subrc EQ 0.
          MOVE : konp_itab-kbetr TO a363_itab-kbetr.
          MODIFY a363_itab.
        ENDIF.
        CLEAR : a363_itab, konp_itab.
      ENDLOOP.
    rakesh****************************
    SELECT *
            FROM makt
            INTO CORRESPONDING FIELDS OF TABLE mat_desc
            FOR ALL ENTRIES IN a363_itab
            WHERE matnr EQ a363_itab-matnr.
      SELECT matnr
             maktx
             FROM makt INTO TABLE mat_desc
             FOR ALL ENTRIES IN a363_itab
             WHERE matnr EQ a363_itab-matnr.
      SELECT a~lifnr
             a~name1
             b~j_1icstno
             INTO TABLE vend_det
             FROM lfa1 AS a JOIN j_1imovend AS b
             ON alifnr EQ blifnr
             FOR ALL ENTRIES IN a363_itab
             WHERE a~lifnr EQ a363_itab-lifnr.
    Retreiving Data from EKKO & EKPO table for the given input
    And Populating the V_PO_DETAILS itab
    SELECT  *
             FROM ekko
             INTO CORRESPONDING FIELDS OF TABLE ekko_itab
             FOR ALL ENTRIES IN a363_itab
             WHERE lifnr EQ a363_itab-lifnr AND bedat IN s_bedat.
      IF  a363_itab[] IS NOT INITIAL.
        SELECT ebeln
               lifnr
               bedat
               FROM ekko INTO TABLE ekko_itab
               FOR ALL ENTRIES IN a363_itab
                WHERE lifnr EQ a363_itab-lifnr AND bedat IN s_bedat.
      ENDIF.
    SELECT  *
             FROM ekpo
             INTO CORRESPONDING FIELDS OF TABLE ekpo_itab
             FOR ALL ENTRIES IN a363_itab
             WHERE matnr EQ a363_itab-matnr AND werks EQ a363_itab-werks AND mwskz NE 'V0'.
      IF  a363_itab[] IS NOT INITIAL.
        SELECT ebeln
               ebelp
               matnr
               werks
               menge
               FROM ekpo INTO TABLE ekpo_itab
               FOR ALL ENTRIES IN a363_itab
               WHERE matnr EQ a363_itab-matnr AND werks EQ a363_itab-werks AND mwskz NE 'V0'.
      ENDIF.
      LOOP AT ekpo_itab.
        MOVE :   ekpo_itab-ebelp TO v_po_det-ebelp,
                 ekpo_itab-matnr TO v_po_det-matnr,
                 ekpo_itab-werks TO v_po_det-werks,
                 ekpo_itab-menge TO v_po_det-menge.
        READ TABLE ekko_itab WITH KEY ebeln = ekpo_itab-ebeln.
        IF sy-subrc EQ 0.
          MOVE  :  ekko_itab-lifnr TO v_po_det-lifnr,
                   ekko_itab-ebeln TO v_po_det-ebeln,
                   ekko_itab-bedat TO v_po_det-bedat.
          APPEND : v_po_det.
        ENDIF.
        CLEAR  : ekko_itab, ekpo_itab, v_po_det.
      ENDLOOP.
      LOOP AT v_po_det.
        READ TABLE a363_itab WITH KEY matnr = v_po_det-matnr lifnr = v_po_det-lifnr werks = v_po_det-werks.
        IF sy-subrc EQ 0.
          MOVE : a363_itab-kbetr TO v_po_det-kbetr.
          MODIFY v_po_det.
        ENDIF.
        CLEAR : a363_itab, v_po_det.
      ENDLOOP.
    Retreiving Data from MKPF & MSEG & ZEOU_PCRDTL table for the given input
    And Populating the GR_WH_info itab
    SELECT  *
             FROM mseg
             INTO CORRESPONDING FIELDS OF TABLE mseg_itab
             FOR ALL ENTRIES IN v_po_det
             WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND bwart IN s_bwart.
      IF v_po_det[] IS NOT INITIAL.
        SELECT mblnr
               ebeln
               ebelp
               matnr
               lifnr
               werks
               menge
               dmbtr
               bwart
               FROM mseg INTO TABLE mseg_itab
               FOR ALL ENTRIES IN v_po_det
               WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND bwart IN s_bwart.
      ENDIF.
      IF mseg_itab[] IS NOT INITIAL.
    SELECT  *
             FROM mkpf
             INTO CORRESPONDING FIELDS OF TABLE mkpf_itab
             FOR ALL ENTRIES IN mseg_itab
             WHERE mblnr EQ mseg_itab-mblnr.
        SELECT  mblnr
                bldat
                FROM mkpf INTO TABLE mkpf_itab
                FOR ALL ENTRIES IN mseg_itab
                WHERE mblnr EQ mseg_itab-mblnr.
      SELECT  *
             FROM zeou_pcrdtl
             INTO CORRESPONDING FIELDS OF TABLE zeou_pcrdtl_itab
             FOR ALL ENTRIES IN mseg_itab
             WHERE mblnr EQ mseg_itab-mblnr AND matnr EQ mseg_itab-matnr.
        SELECT matnr
               lifnr
               mblnr
               whssn
               whsdt
               FROM zeou_pcrdtl INTO TABLE zeou_pcrdtl_itab
                 FOR ALL ENTRIES IN mseg_itab
                 WHERE mblnr EQ mseg_itab-mblnr AND matnr EQ mseg_itab-matnr.
      ENDIF.
      LOOP AT mseg_itab.
        MOVE  :  mseg_itab-mblnr TO gr_wh_info-mblnr,
                 mseg_itab-ebeln TO gr_wh_info-ebeln,
                 mseg_itab-ebelp TO gr_wh_info-ebelp,
                 mseg_itab-matnr TO gr_wh_info-matnr,
                 mseg_itab-lifnr TO gr_wh_info-lifnr,
                 mseg_itab-werks TO gr_wh_info-werks,
                 mseg_itab-menge TO gr_wh_info-menge,
                 mseg_itab-dmbtr TO gr_wh_info-dmbtr,
                 mseg_itab-bwart TO gr_wh_info-bwart.
        READ TABLE mkpf_itab WITH KEY mblnr = mseg_itab-mblnr.
        IF sy-subrc EQ 0.
          MOVE  :  mkpf_itab-bldat TO gr_wh_info-bldat.
        ENDIF.
        READ TABLE zeou_pcrdtl_itab WITH KEY mblnr = mseg_itab-mblnr.
        IF sy-subrc EQ 0.
          MOVE  :  zeou_pcrdtl_itab-whssn TO gr_wh_info-whssn,
                   zeou_pcrdtl_itab-whsdt TO gr_wh_info-whsdt.
        ENDIF.
        APPEND : gr_wh_info.
        CLEAR : mseg_itab, mkpf_itab, gr_wh_info.
      ENDLOOP.
    Retreiving Data from BSEG & BKPF table
    And Populating the Vendor Invoice Details
      IF v_po_det[] IS NOT INITIAL.
    SELECT  *
             FROM bseg
             INTO CORRESPONDING FIELDS OF TABLE bseg_itab
             FOR ALL ENTRIES IN v_po_det
             WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '96'.
        SELECT  ebeln
                ebelp
                matnr
                lifnr
                werks
                buzid
                bschl
                wrbtr
                bukrs
                belnr
                gjahr
                FROM bseg INTO TABLE bseg_itab
                  FOR ALL ENTRIES IN v_po_det
                  WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '96'.
      ENDIF.
      IF bseg_itab[] IS NOT INITIAL.
    SELECT  *
             FROM bkpf
             INTO CORRESPONDING FIELDS OF TABLE bkpf_itab
             FOR ALL ENTRIES IN bseg_itab
             WHERE bukrs EQ bseg_itab-bukrs AND belnr EQ bseg_itab-belnr AND gjahr EQ bseg_itab-gjahr.
        SELECT  bukrs
                belnr
                gjahr
                xblnr
                bldat
                FROM bkpf INTO TABLE bkpf_itab
                FOR ALL ENTRIES IN bseg_itab
                WHERE bukrs EQ bseg_itab-bukrs AND belnr EQ bseg_itab-belnr AND gjahr EQ bseg_itab-gjahr.
      ENDIF.
      LOOP AT bseg_itab.
        MOVE  :  bseg_itab-ebeln TO vend_inv-ebeln,
                 bseg_itab-ebelp TO vend_inv-ebelp,
                 bseg_itab-matnr TO vend_inv-matnr,
                 bseg_itab-lifnr TO vend_inv-lifnr,
                 bseg_itab-werks TO vend_inv-werks,
                 bseg_itab-buzid TO vend_inv-buzid,
                 bseg_itab-bschl TO vend_inv-bschl,
                 bseg_itab-wrbtr TO vend_inv-wrbtr,
                 bseg_itab-bukrs TO vend_inv-bukrs,
                 bseg_itab-belnr TO vend_inv-belnr,
                 bseg_itab-gjahr TO vend_inv-gjahr.
        READ TABLE bkpf_itab WITH KEY bukrs = bseg_itab-bukrs belnr = bseg_itab-belnr gjahr = bseg_itab-gjahr.
        IF sy-subrc EQ 0.
          MOVE  :  bkpf_itab-xblnr TO vend_inv-xblnr,
                   bkpf_itab-bldat TO vend_inv-bldat.
          APPEND  :  vend_inv.
        ENDIF.
        CLEAR : vend_inv, bseg_itab, bkpf_itab.
      ENDLOOP.
    Retreiving Data from BSEG & BKPF table
    And Populating the Cheque Info Details
      IF v_po_det[] IS NOT INITIAL.
    SELECT  *
             FROM bseg
             INTO CORRESPONDING FIELDS OF TABLE chckinit
             FOR ALL ENTRIES IN v_po_det
             WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '86' AND koart EQ 'K'.
        SELECT  ebeln
                ebelp
                matnr
                lifnr
                werks
                buzid
                bschl
                bukrs
                belnr
                gjahr
                koart
                augbl
                FROM bseg INTO TABLE chckinit
                  FOR ALL ENTRIES IN v_po_det
                  WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '86' AND koart EQ 'K'.
      ENDIF.
      IF chckinit[] IS NOT INITIAL.
    SELECT  *
             FROM payr
             INTO CORRESPONDING FIELDS OF TABLE chckpayer
             FOR ALL ENTRIES IN chckinit
             WHERE vblnr EQ chckinit-augbl.
        SELECT  vblnr
                zbukr
                gjahr
                chect
                zaldt
                hbkid
                FROM payr INTO TABLE chckpayer
                FOR ALL ENTRIES IN chckinit
                WHERE vblnr EQ chckinit-augbl.
      ENDIF.
      SORT chckpayer BY vblnr DESCENDING.
      LOOP AT chckpayer.
        ON CHANGE OF chckpayer-vblnr.
          MOVE   : chckpayer TO chckpayer_u.
          APPEND : chckpayer_u.
          CLEAR  : chckpayer_u, chckpayer.
        ENDON.
      ENDLOOP.
      LOOP AT chckinit.
        MOVE  :  chckinit-ebeln TO chckfinal-ebeln,
                 chckinit-ebelp TO chckfinal-ebelp,
                 chckinit-matnr TO chckfinal-matnr,
                 chckinit-lifnr TO chckfinal-lifnr,
                 chckinit-werks TO chckfinal-werks,
                 chckinit-buzid TO chckfinal-buzid,
                 chckinit-bschl TO chckfinal-bschl,
                 chckinit-bukrs TO chckfinal-bukrs,
                 chckinit-gjahr TO chckfinal-gjahr,
                 chckinit-koart TO chckfinal-koart,
                 chckinit-augbl TO chckfinal-augbl.
        READ TABLE chckpayer_u WITH KEY vblnr = chckinit-augbl gjahr = chckinit-gjahr.
        IF sy-subrc EQ 0.
          MOVE  :  chckpayer_u-vblnr TO chckfinal-vblnr,
                   chckpayer_u-zbukr TO chckfinal-zbukr,
                   chckpayer_u-chect TO chckfinal-chect,
                   chckpayer_u-zaldt TO chckfinal-zaldt,
                   chckpayer_u-hbkid TO chckfinal-hbkid.
          APPEND : chckfinal.
        ENDIF.
        CLEAR : chckfinal, chckpayer_u, chckinit.
      ENDLOOP.
    Populating the final CST TABLE
      LOOP AT v_po_det.
        MOVE  :   v_po_det-lifnr TO cst_rep-lifnr,
                  v_po_det-werks TO cst_rep-werks,
                  v_po_det-ebeln TO cst_rep-ebeln,
                  v_po_det-ebelp TO cst_rep-ebelp,
                  v_po_det-bedat TO cst_rep-bedat,
                  v_po_det-matnr TO cst_rep-matnr,
                  v_po_det-kbetr TO cst_rep-kbetr.
        READ TABLE gr_wh_info WITH KEY ebeln = v_po_det-ebeln ebelp = v_po_det-ebelp."matnr = v_po_det-matnr.
        IF sy-subrc EQ 0.
          MOVE :  gr_wh_info-mblnr TO cst_rep-mblnr,
                  gr_wh_info-bldat TO cst_rep-bldat,
                  gr_wh_info-menge TO cst_rep-menge,
                  gr_wh_info-dmbtr TO cst_rep-dmbtr,
                  gr_wh_info-bwart TO cst_rep-bwart,
                  gr_wh_info-whssn TO cst_rep-whssn,
                  gr_wh_info-whsdt TO cst_rep-whsdt.
        ENDIF.
        READ TABLE vend_inv WITH KEY ebeln = v_po_det-ebeln ebelp = v_po_det-ebelp."matnr = v_po_det-matnr.
        IF sy-subrc EQ 0.
          MOVE : vend_inv-buzid TO cst_rep-buzid,
                 vend_inv-bschl TO cst_rep-bschl,
                 vend_inv-wrbtr TO cst_rep-wrbtr,
                 vend_inv-belnr TO cst_rep-belnr,
                 vend_inv-gjahr TO cst_rep-gjahr,
                 vend_inv-xblnr TO cst_rep-xblnr.
        ENDIF.
        READ TABLE chckfinal WITH KEY ebeln = v_po_det-ebeln ebelp = v_po_det-ebelp."matnr = v_po_det-matnr.
        IF sy-subrc EQ 0.
          MOVE : chckfinal-augbl TO cst_rep-augbl,
                 chckfinal-vblnr TO cst_rep-vblnr,
                 chckfinal-zbukr TO cst_rep-zbukr,
                 chckfinal-chect TO cst_rep-chect,
                 chckfinal-zaldt TO cst_rep-zaldt,
                 chckfinal-hbkid TO cst_rep-hbkid.
        ENDIF.
        READ TABLE mat_desc WITH KEY matnr = v_po_det-matnr.
        IF sy-subrc EQ 0.
          MOVE : mat_desc-maktx TO cst_rep-maktx.
        ENDIF.
        READ TABLE vend_det WITH KEY lifnr = v_po_det-lifnr.
        IF sy-subrc EQ 0.
          MOVE : vend_det-name1 TO cst_rep-name1,
                 vend_det-j_1icstno TO cst_rep-j_1icstno.
        ENDIF.
        APPEND : cst_rep.
        CLEAR  : cst_rep, v_po_det, gr_wh_info, vend_inv, chckfinal.
      ENDLOOP.
    Populating GT_output
      LOOP AT cst_rep.
        cst_gr = cst_rep-dmbtr * ( cst_rep-kbetr / 1000 ).
        cst_inv = cst_rep-wrbtr * ( cst_rep-kbetr / 1000 ).
        MOVE : cst_gr  TO cst_rep-cst_dmbtr,
               cst_inv TO cst_rep-cst_wrbtr.
        MODIFY : cst_rep.
        CLEAR : cst_rep, cst_gr, cst_inv.
      ENDLOOP.
      LOOP AT cst_rep.
        MOVE :  sy-tabix TO gt_output-slno,
                cst_rep-lifnr TO gt_output-lifnr,
                cst_rep-name1 TO gt_output-name1,
                cst_rep-j_1icstno TO gt_output-j_1icstno,
                cst_rep-werks TO gt_output-werks,
                cst_rep-matnr TO gt_output-matnr,
                cst_rep-maktx TO gt_output-maktx,
                cst_rep-ebeln TO gt_output-ebeln,
                cst_rep-ebelp TO gt_output-ebelp,
                cst_rep-bedat TO gt_output-bedat,
                cst_rep-mblnr TO gt_output-mblnr,
                cst_rep-bldat TO gt_output-bldat,
                cst_rep-menge TO gt_output-menge,
                cst_rep-dmbtr TO gt_output-dmbtr,
                cst_rep-cst_dmbtr TO gt_output-cst_dmbtr,
                cst_rep-bwart TO gt_output-bwart,
                cst_rep-whssn TO gt_output-whssn,
                cst_rep-whsdt TO gt_output-whsdt,
                cst_rep-buzid TO gt_output-buzid,
                cst_rep-bschl TO gt_output-bschl,
                cst_rep-wrbtr TO gt_output-wrbtr,
                cst_rep-cst_wrbtr TO gt_output-cst_wrbtr,
                cst_rep-belnr TO gt_output-belnr,
                cst_rep-gjahr TO gt_output-gjahr,
                cst_rep-xblnr TO gt_output-xblnr,
                cst_rep-augbl TO gt_output-augbl,
                cst_rep-vblnr TO gt_output-vblnr,
                cst_rep-zbukr TO gt_output-zbukr,
                cst_rep-chect TO gt_output-chect,
                cst_rep-zaldt TO gt_output-zaldt,
                cst_rep-hbkid TO gt_output-hbkid.
        APPEND gt_output.
        CLEAR : cst_rep, gt_output, sy-tabix.
      ENDLOOP.
    END-OF-SELECTION.
    *-ALV Routine
      PERFORM alv_forms.
    *&      Form  alv_forms
    FORM alv_forms.
      PERFORM alv_routines.
      gx_variant = sy-repid.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        vari = gx_variant-variant.
      ENDIF.
      PERFORM comment_build  USING gt_list_top_of_page[].
      PERFORM fieldcat_init  USING gt_fieldcat[].
      PERFORM layout_build USING gs_layout.
      PERFORM print_build  USING gs_print.
      PERFORM alv_output.
    ENDFORM.                    " alv_forms
    *&      Form  alv_routines
    FORM alv_routines.
      PERFORM eventtab_build USING gt_events[].
      PERFORM e06_t_sort_build  USING gt_sort[].
      PERFORM sp_group_build USING gt_sp_group[].
      g_save = 'A'.
      PERFORM variant_init.
    ENDFORM.                    " alv_routines
    *&      Form  eventtab_build
    ----

    Hi Anu,
    These two statements taking to much time for execution what I can do for reducing execution time.
    Regards,
    Rakesh
    SELECT ebeln
    ebelp
    matnr
    lifnr
    werks
    buzid
    bschl
    wrbtr
    bukrs
    belnr
    gjahr
    FROM bseg INTO TABLE bseg_itab
    FOR ALL ENTRIES IN v_po_det
    WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '96'.
    ENDIF.
    SELECT ebeln
    ebelp
    matnr
    lifnr
    werks
    buzid
    bschl
    bukrs
    belnr
    gjahr
    koart
    augbl
    FROM bseg INTO TABLE chckinit
    FOR ALL ENTRIES IN v_po_det
    WHERE ebeln EQ v_po_det-ebeln AND matnr EQ v_po_det-matnr AND buzid EQ 'W' AND bschl EQ '86' AND koart EQ 'K'.
    ENDIF.

  • Web report for opening it takes long time how to reduce the time?

    HI Experts,
    I created report using webi. For next time while opening it takes more time. How to reduce the time.

    Hi Manikandan,
    There could be multiple reason behind the bad performance.
    1. Are you using supported JVM version to run Webi reports?
    2. Do the reports contain prompts? Are the LOVs set to "Automatic refresh before use"? If yes, uncheck it.
    3. How many queries do the report has? Can you run the queries one by one and check which query is taking much time?
    4. If it based on relational database, copy and run it against the database directly and check how much time it takes. If more, you may have to fix the issue at database level like using temporary tables, indices, etc.
    5. Also check if there are firewalls or proxy server between client and server communication. if yes, try to refresh the report directly on BO server and check.
    6. Check if there is any hinderance between BO server and Database server communcation.
    Hope it will help.
    Regards,
    Yuvraj

  • How to reduce download time for intial swf?

    How to reduce download time for intial swf?
    There are a number of RPC calls but most of the data is cached at server end but still swf takes a lot of time to download completely.
    What all are the ways by which i can reuce the inital load time of my application?

    Reduce the size of the SWF by moving code and assets not needed for the
    first screen out into modules.

  • How to reduce Boot time of 10.8.3

    How to reduce Boot time of 10.8.3(Mountain Lion),Have Upgraded from 10.6.x recently,
    Dont have any start up items, No Dual Boot, No user accounts not even guest(Turned off)
    I really Dont Know what to do, Please help me in this..

    Go to the Startup Disk system preferences and select your boot drive in there. This will ensure the system has your main boot drive set in the PRAM as a the default boot device. Without this, the system may pause while it searches for an available boot device.
    Do you have FileVault disk encryption enabled? If so then this may increase boot times a touch.
    Do you have any system monitors, firewalls, or security software installed? Again these may also increase boot times as they load in the background, especially if they use kernel extensions.
    Finally, boot to the OS X Recovery HD partition by holding the Command-R keys at startup. In here, launch Disk Utility and run a permissions fix on the boot drive, followed by running a repair on the boot drive (both done in the First Aid tab). If there are any access permissions or format structure issues on the boot drive then this should fix them.
    Is your hard drive relatively full? If you only have a few GB of space left on the drive then you might consider removing some files to give the system breathing room to better manage memory. Additionally, how much RAM do you have installed? If you have less than 4GB then consider upgrading. While older versions of OS X could get away with 1-2GB of RAM, this amount will only bog down Lion and Mountain Lion. 4GB is a recommended minimum.
    Some of these things could provide cumulative delays that you might find noticeable at bootup.

  • How to reduce process time in report

    Hi all..
    Is there any technique to reduce process time in report on programmer side??
    Plz help me...

    Hi
    check this and ensure that your code is as per the stds
    1) Dont use nested select statements
    2) If possible use for all entries in addition
    3) In the where addition make sure you give all the primary key
    4) Use Index for the selection criteria.
    5) You can also use inner joins
    6) You can try to put the data from the first select statement into an Itab and then in order to select the data from the second table use for all entries in.
    7) Use the runtime analysis SE30 and SQL Trace (ST05) to identify the performance and also to identify where the load is heavy, so that you can change the code accordingly
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d0db4c9-0e01-0010-b68f-9b1408d5f234
    ABAP performance depends upon various factors and in devicded in three parts:
    1. Database
    2. ABAP
    3. System
    Run Any program using SE30 (performance analys) to improve performance refer to tips and trics section of SE30, Always remember that ABAP perfirmance is improved when there is least load on Database.
    u can get an interactive grap in SE30 regarding this with a file.
    also if u find runtime of parts of codes then use :
    Switch on RTA Dynamically within ABAP Code
    *To turn runtim analysis on within ABAP code insert the following code
    SET RUN TIME ANALYZER ON.
    *To turn runtim analysis off within ABAP code insert the following code
    SET RUN TIME ANALYZER OFF.
    Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    Avoid for all entries in JOINS
    Try to avoid joins and use FOR ALL ENTRIES.
    Try to restrict the joins to 1 level only ie only for tables
    Avoid using Select *.
    Avoid having multiple Selects from the same table in the same object.
    Try to minimize the number of variables to save memory.
    The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    Avoid creation of index as far as possible
    Avoid operators like <>, > , < & like % in where clause conditions
    Avoid select/select single statements in loops.
    Try to use 'binary search' in READ internal table. Ensure table is sorted before using BINARY SEARCH.
    Avoid using aggregate functions (SUM, MAX etc) in selects ( GROUP BY , HAVING,)
    Avoid using ORDER BY in selects
    Avoid Nested Selects
    Avoid Nested Loops of Internal Tables
    Try to use FIELD SYMBOLS.
    Try to avoid into Corresponding Fields of
    Avoid using Select Distinct, Use DELETE ADJACENT
    Check the following Links
    Re: performance tuning
    Re: Performance tuning of program
    http://www.sapgenie.com/abap/performance.htm
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    check the below link
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    See the following link if it's any help:
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    Check also http://service.sap.com/performance
    and
    books like
    http://www.sap-press.com/product.cfm?account=&product=H951
    http://www.sap-press.com/product.cfm?account=&product=H973
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    Performance tuning for Data Selection Statement
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    Debugger
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    Run Time Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617cafe68c11d2b2ab080009b43351/content.htm
    SQL trace
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f7c454211d189710000e8322d00/content.htm
    CATT - Computer Aided Testing Too
    http://help.sap.com/saphelp_47x200/helpdata/en/b3/410b37233f7c6fe10000009b38f936/frameset.htm
    Test Workbench
    http://help.sap.com/saphelp_47x200/helpdata/en/a8/157235d0fa8742e10000009b38f889/frameset.htm
    Coverage Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c7/af9a79061a11d4b3d4080009b43351/content.htm
    Runtime Monitor
    http://help.sap.com/saphelp_47x200/helpdata/en/b5/fa121cc15911d5993d00508b6b8b11/content.htm
    Memory Inspector
    http://help.sap.com/saphelp_47x200/helpdata/en/a2/e5fc84cc87964cb2c29f584152d74e/content.htm
    ECATT - Extended Computer Aided testing tool.
    http://help.sap.com/saphelp_47x200/helpdata/en/20/e81c3b84e65e7be10000000a11402f/frameset.htm
    Just refer to these links...
    performance
    Performance
    Performance Guide
    performance issues...
    Performance Tuning
    Performance issues
    performance tuning
    performance tuning
    You can go to the transaction SE30 to have the runtime analysis of your program.Also try the transaction SCI , which is SAP Code Inspector.
    1 Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    2 Avoid for all entries in JOINS
    3 Try to avoid joins and use FOR ALL ENTRIES.
    4 Try to restrict the joins to 1 level only ie only for 2 tables
    5 Avoid using Select *.
    6 Avoid having multiple Selects from the same table in the same object.
    7 Try to minimize the number of variables to save memory.
    8 The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    9 Avoid creation of index as far as possible
    10 Avoid operators like <>, > , < & like % in where clause conditions
    11 Avoid select/select single statements in loops.
    12 Try to use 'binary search' in READ internal table. Ensure table is sorted before using BINARY SEARCH.
    13 Avoid using aggregate functions (SUM, MAX etc) in selects ( GROUP BY , HAVING,)
    14 Avoid using ORDER BY in selects
    15 Avoid Nested Selects
    16 Avoid Nested Loops of Internal Tables
    17 Try to use FIELD SYMBOLS.
    18 Try to avoid into Corresponding Fields of
    19 Avoid using Select Distinct, Use DELETE ADJACENT.
    Regards
    Anji

  • How to reduce insert time

    I have to insert and update nearly 1000 records in Oracle, when user clicks "Save" button, but this is taking approx. 2mins, and the user has to wait for these 2mins, with out any operation. Is there any chance that i can reduce this time. I am using prepared Statement and batch statements. but still it is really slow... can ideas???

    Using Oracle, you can set the fetchSize (number of rows sent during a single network round trip) to be greater then the default, which I think is either 10 or 100 (sorry, I don't remember). This may limit (it is only a suggestion to the driver) the total number of round trips executed on the network and could result in a minor speed up of your insert processing. My suggestion would be to set fetchSize at or above your expected Batch size.
    PreparedStatements should in most cases be faster, not slower for insert processing. Your results don't identify that to be true in your case. Are you using PreparedStatements within Batch processing, or are you running them individually (they should be within Batch processing).
    You mention updates, not just insert processing. Updates can be optimized by ensuring correct use of indexes on the table(s) you are updating. Use of a PreparedStatement can alter the path the optimizer chooses when executing the update when contrasted against Dynamic SQL, but the 10-15 second difference does not point me in that direction.
    Again, best of luck.

  • How to reduce execution time ?

    Hi friends...
    I have created a report to display vendor opening balances,
    total debit ,total credit , total balance & closing balance for the given date range. it is working fine .But it takes more time to execute . How can I reduce execution time ?
    Plz help me. It's a very urgent report...
    The coding is as below.....
    report  yfiin_rep_vendordetail no standard page heading.
    tables : bsik,bsak,lfb1,lfa1.
    type-pools : slis .
    --TABLE STRUCTURE--
    types : begin of tt_bsik,
            bukrs type bukrs,
            lifnr type lifnr,
            budat type budat,
            augdt type augdt,
            dmbtr type dmbtr,
            wrbtr type wrbtr,
            shkzg type shkzg,
            hkont type hkont,
            bstat type bstat_d ,
            prctr type prctr,
            name1 type name1,
         end of tt_bsik,
         begin of tt_lfb1,
             lifnr type lifnr,
             mindk type mindk,
         end of tt_lfb1,
        begin of tt_lfa1,
            lifnr type lifnr,
            name1 type name1,
            ktokk type ktokk,
        end of tt_lfa1,
        begin of tt_opbal,
            bukrs type bukrs,
            lifnr type lifnr,
            gjahr type gjahr,
            belnr type belnr_d,
            budat type budat,
            bldat type bldat,
            waers type waers,
            dmbtr type dmbtr,
            wrbtr type wrbtr,
            shkzg type shkzg,
            blart type blart,
            monat type monat,
            hkont type hkont,
            bstat type bstat_d ,
            prctr type prctr,
            name1 type name1,
            tdr type  dmbtr,
            tcr type  dmbtr,
            tbal type  dmbtr,
          end of tt_opbal,
         begin of tt_bs ,
            bukrs type bukrs,
            lifnr type lifnr,
            name1 type name1,
            prctr type prctr,
            tbal type dmbtr,
            bala type dmbtr,
            balb type dmbtr,
            balc type dmbtr,
            bald type dmbtr,
            bale type dmbtr,
            gbal type dmbtr,
        end of tt_bs.
    ************WORK AREA DECLARATION *********************
    data :  gs_bsik type tt_bsik,
            gs_bsak type tt_bsik,
            gs_lfb1 type tt_lfb1,
            gs_lfa1 type tt_lfa1,
            gs_ageing  type tt_ageing,
            gs_bs type tt_bs,
            gs_opdisp type tt_bs,
            gs_final type tt_bsik,
            gs_opbal type tt_opbal,
            gs_opfinal type tt_opbal.
    ************INTERNAL TABLE DECLARATION*************
    data :  gt_bsik type standard table of tt_bsik,
            gt_bsak type standard table of tt_bsik,
            gt_lfb1 type standard table of tt_lfb1,
            gt_lfa1 type standard table of tt_lfa1,
            gt_ageing type standard table of tt_ageing,
            gt_bs type standard table of tt_bs,
            gt_opdisp type standard table of tt_bs,
            gt_final type standard table of tt_bsik,
            gt_opbal type standard table of tt_opbal,
            gt_opfinal type standard table of tt_opbal.
    ALV DECLARATIONS *******************
    data : gs_fcat type slis_fieldcat_alv ,
           gt_fcat type slis_t_fieldcat_alv ,
           gs_sort type slis_sortinfo_alv,
           gs_fcats type slis_fieldcat_alv ,
           gt_fcats type slis_t_fieldcat_alv.
    **********global data declration***************
    data :   kb type dmbtr ,
              return like  bapireturn ,
              balancespgli like  bapi3008-bal_sglind,
              noteditems like  bapi3008-ntditms_rq,
              keybalance type table of  bapi3008_3 with header line,
             opbalance type p.
    SELECTION SCREEN DECLARATIONS *********************
    selection-screen begin of block b1 with frame .
    select-options : so_bukrs for bsik-bukrs obligatory,
                     so_lifnr for bsik-lifnr,
                     so_hkont for bsik-hkont,
                     so_prctr for bsik-prctr ,
                     so_mindk for lfb1-mindk,
                     so_ktokk for lfa1-ktokk.
    selection-screen end of block b1.
    selection-screen : begin of block b1 with frame.
    parameters       : p_rb1 radiobutton group rad1 .
    select-options   : so_date for sy-datum .
    selection-screen : end of block b1.
    ********************************ASSIGNING ALV GRID
    ****field catalog for balance report
    gs_fcats-col_pos = 1.
    gs_fcats-fieldname = 'BUKRS'.
    gs_fcats-seltext_m =  text-001.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 2 .
    gs_fcats-fieldname = 'LIFNR'.
    gs_fcats-seltext_m = text-002.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 3.
    gs_fcats-fieldname = 'NAME1'.
    gs_fcats-seltext_m =  text-003.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 4.
    gs_fcats-fieldname = 'BALC'.
    gs_fcats-seltext_m =  text-016.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 5.
    gs_fcats-fieldname = 'BALA'.
    gs_fcats-seltext_m =  text-012.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 6.
    gs_fcats-fieldname = 'BALB'.
    gs_fcats-seltext_m =  text-013.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 7.
    gs_fcats-fieldname = 'TBAL'.
    gs_fcats-seltext_m =  text-014.
    append gs_fcats to gt_fcats .
    gs_fcats-col_pos = 8.
    gs_fcats-fieldname = 'GBAL'.
    gs_fcats-seltext_m =  text-015.
    append gs_fcats to gt_fcats .
    data : repid1 type sy-repid.
    repid1 = sy-repid.
    INITIALIZATION EVENTS ******************************
    initialization.
    *Clearing the work area.
    clear gs_bsik.
    Refreshing the internal tables.
    refresh gt_bsik.
    ******************START OF  SELECTION EVENTS **************************
    start-of-selection.
    *get data for balance report.
      perform sub_openbal.
      perform sub_openbal_display.
    *&      Form  sub_openbal
          text
    -->  p1        text
    <--  p2        text
    form sub_openbal .
      if   so_date-low > sy-datum or so_date-high > sy-datum .
          message i005(yfi02).
         leave screen.
    endif.
         select bukrs lifnr gjahr belnr budat bldat
           waers dmbtr wrbtr shkzg blart monat hkont prctr
           from bsik into table gt_opbal
           where bukrs in so_bukrs and lifnr in so_lifnr
           and hkont in so_hkont and prctr in so_prctr
           and budat in so_date .
        select bukrs lifnr gjahr belnr budat bldat
           waers dmbtr wrbtr shkzg blart monat hkont prctr
           from bsak appending table gt_opbal
           for all entries in gt_opbal
           where lifnr = gt_opbal-lifnr
           and budat in so_date .
    if sy-subrc <> 0.
      message i007(yfi02).
      leave screen.
      endif.
    select lifnr mindk from lfb1 into table gt_lfb1
      for all entries in gt_opbal
        where lifnr = gt_opbal-lifnr and mindk in so_mindk.
    select lifnr name1 ktokk from lfa1 into table gt_lfa1
      for all entries in gt_opbal
       where lifnr = gt_opbal-lifnr and ktokk in so_ktokk.
       loop at gt_opbal into gs_opbal .
         loop at gt_lfb1 into gs_lfb1 where lifnr = gs_opbal-lifnr.
           loop at gt_lfa1 into gs_lfa1 where lifnr = gs_opbal-lifnr.
            gs_opfinal-bukrs = gs_opbal-bukrs.
            gs_opfinal-lifnr = gs_opbal-lifnr.
            gs_opfinal-gjahr = gs_opbal-gjahr.
            gs_opfinal-belnr = gs_opbal-belnr.
            gs_opfinal-budat = gs_opbal-budat.
            gs_opfinal-bldat = gs_opbal-bldat.
            gs_opfinal-waers = gs_opbal-waers.
            gs_opfinal-dmbtr = gs_opbal-dmbtr.
            gs_opfinal-wrbtr = gs_opbal-wrbtr.
            gs_opfinal-shkzg = gs_opbal-shkzg.
            gs_opfinal-blart = gs_opbal-blart.
            gs_opfinal-monat = gs_opbal-monat.
            gs_opfinal-hkont = gs_opbal-hkont.
            gs_opfinal-prctr = gs_opbal-prctr.
            gs_opfinal-name1 = gs_lfa1-name1.
        if gs_opbal-shkzg    = 'H'.
            gs_opfinal-tcr   =  gs_opbal-dmbtr * -1.
            gs_opfinal-tdr   =  '000000'.
        else.
            gs_opfinal-tdr   =  gs_opbal-dmbtr.
            gs_opfinal-tcr   =  '000000'.
        endif.
           append gs_opfinal to gt_opfinal.
           endloop.
           endloop.
           endloop.
    sort gt_opfinal by bukrs lifnr prctr .
    so_date-low = so_date-low - 1 .
    loop at gt_opfinal into gs_opfinal.
    call function 'BAPI_AP_ACC_GETKEYDATEBALANCE'
      exporting
        companycode        = gs_opfinal-bukrs
        vendor             =  gs_opfinal-lifnr
        keydate            = so_date-low
       balancespgli        = ' '
       noteditems          = ' '
      importing
        return             = return
      tables
        keybalance         = keybalance.
    clear kb .
    loop at keybalance .
       kb = keybalance-lc_bal + kb .
    endloop.
          gs_opdisp-balc = kb.
          gs_opdisp-bukrs =  gs_opfinal-bukrs.
          gs_opdisp-lifnr =  gs_opfinal-lifnr.
          gs_opdisp-name1 =  gs_opfinal-name1.
        at new lifnr .
          sum .
          gs_opfinal-tbal =  gs_opfinal-tdr + gs_opfinal-tcr  .
          gs_opdisp-tbal = gs_opfinal-tbal.
          gs_opdisp-bala = gs_opfinal-tdr .
          gs_opdisp-balb = gs_opfinal-tcr .
          gs_opdisp-gbal = keybalance-lc_bal + gs_opfinal-tbal .
          append gs_opdisp to gt_opdisp.
        endat.
        clear gs_opdisp.
        clear keybalance .
      endloop.
      delete adjacent duplicates from gt_opdisp.
    endform.                    " sub_openbal
    *&      Form  sub_openbal_display
          text
    -->  p1        text
    <--  p2        text
    form sub_openbal_display .
    call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
          i_callback_program              =  repid1
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          it_fieldcat                     = gt_fcats
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = 'X'
      IS_VARIANT                        =
       it_events                        =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
         tables
           t_outtab                       = gt_opdisp
      exceptions
        program_error                     = 1
        others                            = 2
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " sub_openbal_display

    I think you are using for all entries statement in almost all select statements but i didnt see any condtion before you are using for all entries statement.
    If you are using for all entries in gt_opbal ... make sure that gt_opbal has some records other wise it will try to read all records from the data base tables.
    Try to check before using for all entries in the select statement like
    if gt_opbal is not initial.
    select adfda adfadf afdadf into table
      for all entries in gt_opbal.
    else.
    select abdf afad into table
    from abcd
    where a = 1
        and b = 2.
    endif.
    i didnt see anything wrong in your report but this is major time consuming when you dont have records in the table which you are using for all entries.

  • How to reduce the time..?

    Hi All,
    this statement below is taking lot of time how can i reduce the time ....?
    cheers
    sundeep
    select * from zausfu where vbeln in so_vbeln
                        AND wadat_ist IN so_wadat
                        AND aland IN so_eland
                        AND vsbed IN so_vsbed
                        AND vsart IN so_vsart
                        AND sdabw = sdabw_wert.
    tab-aland = zausfu-aland.
    tab-vbeln = zausfu-vbeln.
    tab-wadat = zausfu-wadat_ist.
    tab-vsart = zausfu-vsart.
    tab-sdabw = zausfu-sdabw.
    IF sdabw_wert = 'A'.
        tab-flag = 'X'.
      ENDIF.
       anz_datensaetze = anz_datensaetze + 1.
    append tab.
    endselect.

    Hi Sundeep,
    Please use the below code, might be it will reduce the time for u r program.
    Types Declaration
    types: begin of ty_zausfu,
           aland type zausfu-aland,
           vbeln type zausfu-vbeln,
           wadat type zausfu-wadat_ist,
           vsart type zausfu-vsart,
           sdabw type zausfu-sdabw,
           end of ty_zausfu.
    types: begin of ty_tab,
           aland type zausfu-aland,
           vbeln type zausfu-vbeln,
           wadat type zausfu-wadat_ist,
           vsart type zausfu-vsart,
           sdabw type zausfu-sdabw,
           flag(1)
           end of ty_tab.
    Internal Table Declaration
    data: it_zausfu type standard table of ty_zausfu initial size 0,
            it_tab type standard table of ty_tab initial size 0.     
    Workarea Declaration
    data: is_zausfu type ty_zausfu,
            is_tab type ty_tab.
    Data Declaration
          anz_datensaetze type i.
    Data Read from Tables
    select aland vbeln wadat_ist vsart sdabw from zausfu
    into table it_zausfu
    where vbeln in so_vbeln
    AND wadat_ist IN so_wadat
    AND aland IN so_eland
    AND vsbed IN so_vsbed
    AND vsart IN so_vsart
    AND sdabw = sdabw_wert.
    describe table it_zausfu lines anz_datensaetze.
          loop at it_zausfu into is_zausfu.
          move-corresponding is_zausfu to is_tab.
          if sdabw_wert = 'A'.
            is_tab-flag = 'X'.
          endif.
          append is_tab to it_tab.
          clear: is_zausfu, is_tab.
          endloop.
    Please reward points, if it is ok.
    Regards,
    Subbarao

  • How to reduce rollwait time..?

    Hi All,
    the production system is showing avg.diag.resp.time more than 7seconds since last one month.while analysing the avg.Roll wait time is about more than 2sec.kindly suggest how to reduce the roll wait time.
    Thanks & Regards
    Srinivas

    Hi Jaya,
    Few days back we had a long chat on this, may be this will help you to pin point the pain area.
    High roll wait Time
    Regards,
    Gagan Deep Kaushal

  • How to Reduce Updating Time

    Does anyone have any ideas about how to reduce the amount of time it can take to make updates/revisions to captivate files? I am in a technical writing position where I do the writing, editing, illustrating, and creating captivate files. Quite often, I do not have the time to spend ensuring that my captivate files timing is ample or updating screen shots in the case of frequent software updates. We place captivate into FrameMaker or Robohelp. Thanks!

    update policy1    A
        set total_si =
           (select avg(nvl(pol_cvr_si,0))
               from TEST2.TRN_POLICY_COVER_GIS    B
              where B.pol_sys_id = A.pol_sys_id
    ;hopefully there is an index on TEST2.TRN_POLICY_COVER_GIS (POL_SYS_ID)

  • Avoid Hard Parsing for executing dynamic SQL using DUAL table Oracle

    I want to know if dynamic sql statements involving DUAL table can be modified to remove HARD PARSING.
    We have several SQL statements are stored in configuration table, here is sample example
    -- query 1 before replacing index values as stored in config table ---
    select count(*) from dual where  'REPLACE_VALUE_OF_INDEX_3' IN ('K')
    AND (('REPLACE_VALUE_OF_INDEX_13' IN ('1053','1095','1199') ) OR ('REPLACE_VALUE_OF_INDEX_13' IN ('1200') ))
    AND 'REPLACE_VALUE_OF_INDEX_2' IN ('6')
    AND 'REPLACE_VALUE_OF_INDEX_15' IN ('870001305')
    -- query 1 after replacing index values--
    select count(*) from dual where  'REPLACE_VALUE_OF_INDEX_10' IN ('K')
    AND (('1030' IN ('1053','1095','1199') ) OR ('1030' IN ('1200') ))
    AND '2' IN ('6')
    AND 'X' IN ('870001305')
    -- query 2 before replacing index values as stored in config table --
    select count(*) from dual where  'REPLACE_VALUE_OF_INDEX_5' IN ('361A','362A')
    AND 'REPLACE_VALUE_OF_INDEX_22' BETWEEN '200707' AND '200806'
    -- query 2 after replacing index values--
    select count(*) from dual where  '3MAA' IN ('361A','362A') AND '201304' BETWEEN '200707' AND '200806'

    If I got it right you have some (maybe lots of) conditions stored in a table (be patient - it's my interpretation)
    create table eb_conditions as
    select 1 rid,q'{:5 IN ('361A','362A') AND :3 BETWEEN '200707' AND '200806'}' cndtn from dual union all
    select 2,q'{:2 IN ('361A','362A') AND :3 BETWEEN '200707' AND '200806'}' from dual union all
    select 3,q'{:1 IN ('K') AND ((:2 IN ('1053','1095','1199') ) OR (:4 IN ('1200') )) AND :3 IN ('6') AND :5 IN ('870001305')}' from dual
    RID
    CNDTN
    1
    :5 IN ('361A','362A') AND :3 BETWEEN '200707' AND '200806'
    2
    :2 IN ('361A','362A') AND :3 BETWEEN '200707' AND '200806'
    3
    :1 IN ('K') AND ((:2 IN ('1053','1095','1199') ) OR (:4 IN ('1200') )) AND :3 IN ('6') AND :5 IN ('870001305')
    and you have to check the conditions using values stored in an array
    I used a table instead: the vl at rid = 1 representing the value of bind variable :1 in eb_conditions table and so on ...
    create table eb_array as
    select 1 rid,'K' vl from dual union all
    select 2,'1199' from dual union all
    select 3,'200803' from dual union all
    select 4,'1000' from dual union all
    select 5,'870001305' from dual
    RID
    VL
    1
    K
    2
    1199
    3
    200803
    4
    1000
    5
    870001305
    You want to check the conditions using select count(*) from dual where <condition with binds substituted fron the array>
    Judging from the title Hard Parsing represents the major problem and you cannot avoid it since every condition to be verified is different from every other condition.
    I think your best bet is not to evaluate conditions row by row - context shift cannot be avoided and there might be more than one for each iteration.
    So try to do it in a single step:
    declare
    w_cndtn varchar2(4000);
    w_clob  clob;
    w_cursor sys_refcursor;
    one number;
    two number;
    begin
      dbms_lob.createtemporary(w_clob,false);
      for rw in (select rid,
                        max(cndtn) cndtn,
                        listagg(val,',') within group (order by rn)||',' usng
                   from (select c.rid,c.cndtn,c.rn,c.bind,
                                replace(rtrim(c.bind),':'||to_char(v.rid),''''||v.vl||'''') val
                           from (select rid,
                                        cndtn,
                                        regexp_substr(cndtn,':\d+ ',1,level) bind,
                                        level rn
                                   from eb_conditions
                                 connect by level <= regexp_count(cndtn,':')
                                        and prior rid = rid
                                        and prior sys_guid() is not null
                                ) c,
                                eb_array v
                          where instr(c.bind,':'||v.rid||' ') > 0
                  group by rid
      loop
        w_cndtn := rw.cndtn;
        while instr(w_cndtn,':') > 0
        loop
          w_cndtn := replace(w_cndtn,trim(regexp_substr(w_cndtn,':\d+ ',1,1)),substr(rw.usng,1,instr(rw.usng,',') - 1));
          rw.usng := substr(rw.usng,instr(rw.usng,',') + 1);
        end loop;
        w_cndtn := 'select '||to_char(rw.rid)||' cndtn_id,count(*) from dual where '||w_cndtn||' union all ';
        w_clob := w_clob ||' '||w_cndtn;
      end loop;
      w_clob := substr(w_clob,1,instr(w_clob,'union all',-1,1) - 1);
      open w_cursor for w_clob;
      loop
        fetch w_cursor into one,two;
        exit when w_cursor%notfound;
        dbms_output.put_line(to_char(one)||':'||to_char(two));
      end loop;
      dbms_lob.freetemporary(w_clob);
    end;
    1:0
    2:0
    3:0
    Statement processed.
    Regards
    Etbin

  • How to reduce rendering time.

    Hi
    I have a couple of questions-
    1. When i am rendering an hd video pal format, it takes on an average 3.5 hours to render it. This is through encore as well as premiere? How do i reduce rendering time?
    2. Second issue is how do i tranfer an open project from 1 computer to the other, since the data is on the hard disk of the first, and there are chances of it getting lost?
    3. When i try converting a pal HD video to ntsc in encore, it doesnt take the frame size. So i have to export it in ntsc in premiere then make the title in encore and then render it again. Takes too long, any way of shortening the process?
    4. How to make dvd copies from a rendered HD project?

    export settings, film size 1440x1080i
    computer specifications 8gb ram, windows 7 (64bit), fx series amd...
    for 01- what would you recommend?  i have a budget constraint that i cannot exceed 3000$
    02- could you elaborate as to how i can copy? i am using a cat 6 network cables between my systems.
    03- when i export it in encore, in the encore export setting there all these otions, based upon frame rate, when i choose the ntsc option, it still takes the default pal option, and doesnt accept the ntsc. So to counter that i have to go back to premiere, export it in ntsc and then make the final output in encore. so it takes 3 hours first to convert to ntsc and then another 3 hours when rendering through encore. i know my process is wrong, what do i do?
    04- any link where i can see it. our time line in bluray is 2 hours, to mantain quality you would need to split that rather than convert the 2 hour project to dvd. i think that is my question, how can you split the bluray project over two dvd's
    thanks for your reply

Maybe you are looking for