Any Other Method to Read Cube in abap ?

I use pop method to read cube ,including following Function
  BAPI_MDDATASET_CREATE_OBJECT
  BAPI_MDDATASET_GET_AXIS_DATA
  BAPI_MDDATASET_GET_AXIS_INFO
  BAPI_MDDATASET_GET_CELL_DATA
  BAPI_MDDATASET_DELETE_OBJECT.
I find it is  time-consuming ,even if the return dataset is small ( for example 1000 Records).
Any one can give a tip?
-Reed Lei

Hi,
I checked out in se37, but could not find any other function module for the same, and when I check at these function module to see why it takes this much of time, I found that it was RFC enabled, due to which it is obvious that it will take some extra time ...
go to se37 give MDDATASET and press F4 you will find only this set of function module and none other than those...
Regards,
Siddarth

Similar Messages

  • Is there any other method so that I can contact Apple to get IMEI number ? since the phone was shyncronized several times in apple store / iCloud.

    Hello community members, my iPhone has been stolen and I tried to contact police, they are asking for IMEI number of the phone. Unfortunately I could not read the IMEI number on the box due to moisture wiped out most of the number on it. I sacanned it in and enhanced, I'm still unable to read out the number. Is there any other method so that I can contact Apple to get IMEI number ? since the phone was shyncronized several times in apple store / iCloud.

    If you backed up your iPhone in iTunes on your computer -
    Open iTunes - Edit - Preferences - Devices - See Device Backups in the Window.
    Hover mouse/curser on any backup. Read IMEI and Serial no. your of iPhone.

  • Are there any other methods which has same functionality as Ensure method in Sharepoint

    Hi,
    Am using "Ensureuser method" which will checks whether user belongs to the user list in share point  if not it will add the user to list.Is there any other method which can be used in the place of  "Ensureuser method" because
    am facing some problem with it.
    Thanks in Advance.

    Hi Shilpa,
    Am assigning permissions for folders in document libraries to users in external active directory.While assigning permissions to users am using Ensure User method but because of this method some of users are losing permission to folders even after assigning.so,
    am searching for any other method can i use in place of this Ensure User method to overcome my problem.Can I add permissions to user without using Ensure User method?
    Thanks in advance.

  • Is there any other method other than se78 to upload a graphic into SAP R/3?

    Hi,
      Is there any other method other than se78 to upload a graphic into SAP R/3?
    Anita Jeyan

    hi ,
    just use  OAER or RSTXLDMC program
    it will definately help you
    regards
    rahul

  • Any other methods to downgrade my iphone 5c ios 7.1.1

    I want to downgrade my ios 7.1.1 iphone 5c to ios 7.0.6,but the "error 3194" appear on the itunes. I've checked my itunes version,its the latest! I also tried the tinyumbrella even the ifaith too! Is there any other methods to downgrade my iphone?

    As has always been the case, you cannot go back.
    Since you have now hacked your iphone, you can no longer get support here or from Apple.
    Sorry

  • Im unable to quit safari by cmd q or any other method as a result my mac book won't close down

    Im unable to quit safari using CMD Q or any other method as a result my mac book won't close down, any suggestions?

    Hold down Option  Command  Escape  at the same time, In the window that Appears  choose  Force Quit Safari...
    Or you can click on the Apple Icon (top left) > Force Quit > Safari

  • Any other method to delete mass records

    Hi,
    I need to delete large amounts of records from UI.Batch delete is useful but it has a restriction on the count of records deleted at a time.(say 250 at a time).Since I have more number of records to delete I find this Batch delete a tedious process.
    Could any one suggest any other method to mass delete records based on certain condition.
    Thanks in advance,
    Ashan.

    Hi, Ashan, create a program which will call the SOD web services for this:
    The program would initiate connection with SOD, once that is done, call the Delete method for the required object and pass the query criteria as input.
    Ady

  • If your computer is reformatted can it still be found with find my iphone or any other method?

    See title

    Apple will do nothing to assist.  Problems about proof of ownership are too complex.  Once the computer has been formatted it cannot be traced by Find My iPhone or any other software process.

  • Any other method to do this (time, miliseconds)?

    Hi all,
    is there any other more "elegant"(without stringsubset) way to do next thing (I need miliseconds !!!):
    Rookie; LV 2011 on WIN 7
    Solved!
    Go to Solution.
    Attachments:
    test_time.vi ‏8 KB

    Cue the Regular Expression heroes.  Unfortunately, I'm not one of them.  That's one thing I need to study up on.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to read specific lines from a text file using external table or any other method?

    Hi,
    I have a text file with delimited data, I have to pick only odd number rows and load into a table...
    Ex:
    row1:  1,2,2,3,3,34,4,4,4,5,5,5,,,5  ( have to load only this row)
    row2:   8,9,878,78,657,575,7,5,,,7,7
    Hope this is enough..
    I am using Oracle 11.2.0 version...
    Thanks

    There are various ways to do this.  I would be inclined to use SQL*Loader.  That way you can load it from the client or the server and you can use a SQL*Loader sequence to preserve the row order in the text file.  I would load the whole row as a varray into a staging table, then use the TABLE and MOD functions to load the individual numbers from only the odd rows.  Please see the demonstration below.
    SCOTT@orcl12c> HOST TYPE text_file.csv
    1,2,2,3,3,34,4,4,4,5,5,5,,,5
    8,9,878,78,657,575,7,5,,,7,7
    101,201
    102,202
    SCOTT@orcl12c> HOST TYPE test.ctl
    LOAD DATA
    INFILE text_file.csv
    INTO TABLE staging
    FIELDS TERMINATED BY ','
    TRAILING NULLCOLS
    (whole_row VARRAY TERMINATED BY '/n' (x INTEGER EXTERNAL),
    rn SEQUENCE)
    SCOTT@orcl12c> CREATE TABLE staging
      2    (rn         NUMBER,
      3     whole_row  SYS.OdciNumberList)
      4  /
    Table created.
    SCOTT@orcl12c> HOST SQLLDR scott/tiger CONTROL=test.ctl LOG=test.log
    SQL*Loader: Release 12.1.0.1.0 - Production on Tue Aug 27 13:48:37 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    Path used:      Conventional
    Commit point reached - logical record count 4
    Table STAGING:
      4 Rows successfully loaded.
    Check the log file:
      test.log
    for more information about the load.
    SCOTT@orcl12c> CREATE TABLE a_table
      2    (rn       NUMBER,
      3     data  NUMBER)
      4  /
    Table created.
    SCOTT@orcl12c> INSERT INTO a_table (rn, data)
      2  SELECT s.rn,
      3         t.COLUMN_VALUE data
      4  FROM   staging s,
      5         TABLE (s.whole_row) t
      6  WHERE  MOD (rn, 2) != 0
      7  /
    17 rows created.
    SCOTT@orcl12c> SELECT * FROM a_table
      2  /
            RN       DATA
             1          1
             1          2
             1          2
             1          3
             1          3
             1         34
             1          4
             1          4
             1          4
             1          5
             1          5
             1          5
             1
             1
             1          5
             3        101
             3        201
    17 rows selected.

  • Product Search Using Oracle Text or By Any Other Methods using PL/SQL

    Hi All,
    I have requirement for product search using the product table which has around 5 million products. I Need to show top 100 disitnct products searched  in the following order
    1. = ProductDescription
    2. ProductDescription_%
    3. %_ProductDescription_%
    4. %_ProductDescription
    5. ProductDescription%
    6. %ProductDescription
    Where '_' is space.  If first two/three/or any criteria itslef gives me 100 records then i need not search for another patterns
    Table Structure Is as follows
    Create Table Tbl_Product_Lookup
        Barcode_number                Varchar2(9),
        Product_Description Varchar2(200),
        Product_Start_Date Date,
        Product_End_Date Date,
        Product_Price Number(12,4)
    Could you please help me implementing this one ? SLA for the search result is 2 seconds
    Thanks,
    Varun

    You could use an Oracle Text context index with a wordlist to speed up substring searches and return all rows that match any of your criteria, combined with a case statement to provide a ranking that can be ordered by within an inner query, then use rownum to limit the rows in an outer query.  You could also use the first_rows(n) hint to speed up the return of limited rows.  Please see the demonstration below.  If you decide to use Oracle Text, you may want to ask further questions in the Oracle Text sub-forum on this forum or space or whatever they call it now.
    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> Create Table Tbl_Product_Lookup
      2    (
      3       Barcode_number       Varchar2(9),
      4       Product_Description  Varchar2(200),
      5       Product_Start_Date   Date,
      6       Product_End_Date     Date,
      7       Product_Price          Number(12,4)
      8    )
      9  /
    Table created.
    SCOTT@orcl_11gR2> -- sample data:
    SCOTT@orcl_11gR2> insert all
      2  into tbl_product_lookup (product_description) values ('test product')
      3  into tbl_product_lookup (product_description) values ('test product and more')
      4  into tbl_product_lookup (product_description) values ('another test product and more')
      5  into tbl_product_lookup (product_description) values ('another test product')
      6  into tbl_product_lookup (product_description) values ('test products')
      7  into tbl_product_lookup (product_description) values ('selftest product')
      8  select * from dual
      9  /
    6 rows created.
    SCOTT@orcl_11gR2> insert into tbl_product_lookup (product_description) select object_name from all_objects
      2  /
    75046 rows created.
    SCOTT@orcl_11gR2> -- wordlist:
    SCOTT@orcl_11gR2> begin
      2    ctx_ddl.create_preference('mywordlist', 'BASIC_WORDLIST');
      3    ctx_ddl.set_attribute('mywordlist','PREFIX_INDEX','TRUE');
      4    ctx_ddl.set_attribute('mywordlist','PREFIX_MIN_LENGTH', '3');
      5    ctx_ddl.set_attribute('mywordlist','PREFIX_MAX_LENGTH', '4');
      6    ctx_ddl.set_attribute('mywordlist','SUBSTRING_INDEX', 'YES');
      7    ctx_ddl.set_attribute('mywordlist', 'wildcard_maxterms', 0) ;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- context index that uses wordlist:
    SCOTT@orcl_11gR2> create index prod_desc_text_idx
      2  on tbl_product_lookup (product_description)
      3  indextype is ctxsys.context
      4  parameters ('wordlist mywordlist')
      5  /
    Index created.
    SCOTT@orcl_11gR2> -- gather statistics:
    SCOTT@orcl_11gR2> exec dbms_stats.gather_table_stats (user, 'TBL_PRODUCT_LOOKUP')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- query:
    SCOTT@orcl_11gR2> variable productdescription varchar2(100)
    SCOTT@orcl_11gR2> exec :productdescription := 'test product'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> column product_description format a45
    SCOTT@orcl_11gR2> set autotrace on explain
    SCOTT@orcl_11gR2> set timing on
    SCOTT@orcl_11gR2> select /*+ FIRST_ROWS(100) */ *
      2  from   (select /*+ FIRST_ROWS(100) */ distinct
      3              case when product_description = :productdescription            then 1
      4               when product_description like :productdescription || ' %'       then 2
      5               when product_description like '% ' || :productdescription || ' %' then 3
      6               when product_description like '% ' || :productdescription       then 4
      7               when product_description like :productdescription || '%'       then 5
      8               when product_description like '%' || :productdescription       then 6
      9              end as ranking,
    10              product_description
    11           from   tbl_product_lookup
    12           where  contains (product_description, '%' || :productdescription || '%') > 0
    13           order  by ranking)
    14  where  rownum <= 100
    15  /
       RANKING PRODUCT_DESCRIPTION
             1 test product
             2 test product and more
             3 another test product and more
             4 another test product
             5 test products
             6 selftest product
    6 rows selected.
    Elapsed: 00:00:00.10
    Execution Plan
    Plan hash value: 459057338
    | Id  | Operation                      | Name               | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT               |                    |    38 |  3990 |    13  (16)| 00:00:01 |
    |*  1 |  COUNT STOPKEY                 |                    |       |       |            |          |
    |   2 |   VIEW                         |                    |    38 |  3990 |    13  (16)| 00:00:01 |
    |*  3 |    SORT UNIQUE STOPKEY         |                    |    38 |   988 |    12   (9)| 00:00:01 |
    |   4 |     TABLE ACCESS BY INDEX ROWID| TBL_PRODUCT_LOOKUP |    38 |   988 |    11   (0)| 00:00:01 |
    |*  5 |      DOMAIN INDEX              | PROD_DESC_TEXT_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(ROWNUM<=100)
       3 - filter(ROWNUM<=100)
       5 - access("CTXSYS"."CONTAINS"("PRODUCT_DESCRIPTION",'%'||:PRODUCTDESCRIPTION||'%')>0)
    SCOTT@orcl_11gR2>

  • When I try to open a new tab by using ctrl+t or by any other method, a new tab won't open. How do I fix this???

    i try to open another tab by using control+t, or by going to fill and pressing new tab, or by clicking the plus sign to add another tab, but none of these work and a new tab won't open.

    Uninstall the '''''Ask Toolbar'''''. It can cause that problem.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to Retrive Data using Case or any other method

    Hi All
    i am new to Oracle, i have three tables. 1 )*Person* contains following data
    id,     Name,      DOB
    98,     sss,     01/01/2009
    99,     rrr,     01/01/2009
    100,     rws,     01/01/2009
    2) Reference Table Contains Following Data
    Person_ID,     Ref_type,     Reference
    98,     AAA,     jk98923
    98,     BBB,     io9898
    99,     AAA,     nb6666
    100,     BBB,     g10090
    now i need all pesons who got reference AAA only, i dont want to use any where clause. this because i have to incoporate this logic in Business Objects Report.
    i need output as follows
    Person_ID,     Name,      Reference
    98,     sss,     jk98923
    99,     rrr,     nb6666
    100,     rws,     NULL
    guys i know this is so simple for you, please come back to me on this. many thanks in advance
    Edited by: user11078264 on 17-Apr-2009 05:46

    How about something like this (note the WITH clause was used to generate sample data)?
    SQL > WITH person AS
      2  (
      3  SELECT 98  AS ID, 'sss' AS NAME, TO_DATE('01/01/2009','MM/DD/YYYY') AS DOB FROM DUAL UNION ALL
      4  SELECT 99  AS ID, 'rrr' AS NAME, TO_DATE('01/01/2009','MM/DD/YYYY') AS DOB FROM DUAL UNION ALL
      5  SELECT 100         AS ID, 'rws' AS NAME, TO_DATE('01/01/2009','MM/DD/YYYY') AS DOB FROM DUAL
      6  ),
      7  reference AS
      8  (
      9     SELECT 98       AS PERSON_ID, 'AAA' AS REF_TYPE, 'jk98923' AS REFERENCE FROM DUAL UNION ALL
    10     SELECT 98       AS PERSON_ID, 'BBB' AS REF_TYPE, 'io9898' AS REFERENCE FROM DUAL UNION ALL
    11     SELECT 99       AS PERSON_ID, 'AAA' AS REF_TYPE, 'nb6666' AS REFERENCE FROM DUAL UNION ALL
    12     SELECT 100      AS PERSON_ID, 'BBB' AS REF_TYPE, 'g10090' AS REFERENCE FROM DUAL
    13  )
    14  SELECT     PERSON_ID
    15  ,  NAME
    16  ,  MAX(DECODE(REF_TYPE,'AAA',REFERENCE,NULL)) Reference
    17  FROM       person
    18  JOIN       reference ON person.id = reference.person_id
    19  GROUP BY PERSON_ID, NAME
    20  ORDER BY PERSON_ID
    21  /
    PERSON_ID NAM REFEREN
            98 sss jk98923
            99 rrr nb6666
           100 rws

  • Any other apps with read-only Keynote?

    I have several Keynote presenations that I'm trying to memorize.  I have them all stored on my iPad, but the tempatation is too great to edit them as I go along.
    Does anybody make an app that can present Keynote files (including the builds) in a read-only format?  Then, I could whip through these Keynote files without feeling the temptation to edit them as I go along (ie - I would spend more time reading the information).
    Thanks!

    That will depend on what you want to do. The bare minimum I would install photoshop, bridge, and Acrobat(If included). When you get time and if you happened to purchase the full package, play around with Illustrator and InDesign. Then later on try the rest see what they do, figure out if they can help you. Each one can be uninstalled if you don't want it, so don't worry about having them all installed. As long as you have the room, why not try them.

  • What is the importance of 4 in  ABAP/4 , is there any other types

    hi friends,
    what is the importance of 4 in  ABAP/4 , is there any other types like that availble in ABAP.

    Hi Satish,
    Here's an interesting link ...
    http://en.wikipedia.org/wiki/Fourth-generation_programming_language
    I hope this serves your purpose of knowing about "Generation of Programming Languages" and even more
    Reward if useful!
    Cheers
    Kripa Rangachari

Maybe you are looking for

  • Database connection is not working anymore

    I just installed the deprecated Server Behaviors on my brand new Dreamweaver CC, since I use a lot PHP/MySQL stuff Site configuration is ok: I did it hundreds of time before, and you can see the screenshots below (sorry, it's all in Italian but I'm s

  • Filter condition in ABAP Initial Load Job

    Hi,    The ECC Initial Load JOb for IDM has been failing continuously because of 'Out of Memory' Exception Error Description - Unhandled Error in DSERuntime - Exception:java.lang.OutOfMemoryError    All the FROM PASSES except the "ReadAbapUsers" pass

  • Unable to Open Downloaded Apps in ITunes

    I have downloaded some apps in itunes app store but i am unable to open then once they have downloaded. I am using a new imac. could someone help me please?

  • How to make sound better quality?

    So I exported a preview of my animation but the sound isn't high quality. How can I make it better quality? It doesn't sound like when I press Enter in Flash CS5.

  • SPA303 - Reordering the position of Content-Length header in SIP INVITE

    Hi, I have SPA303 IP Phone connected behind a SIP ALG router but have been facing issues with media setup for incoming and outgoing calls. Further investigation using SIPp script helped me out to understand the root cause of the issue which is as fol