Execute BW query using ABAP

Hello ,
1) I used the function module from this link :
/people/durairaj.athavanraja/blog/2005/12/05/execute-bw-query-using-abap-part-iii
When I run it , I see the metadata correct and this is all. No more data to display.
2) Then I used the code from here :
/people/durairaj.athavanraja/blog/2005/12/05/execute-bw-query-using-abap-part-iii
MOVE: <variable name> TO wa_var-vnam ,
   'I' TO wa_var-sign,
   'EQ' TO wa_var-opt,
   <variable value> TO wa_var-low .
     query_variables       = var
FUNCTION z_test_query.
  FIELD-SYMBOLS: <outtab> TYPE ANY TABLE,
    <l_line>  TYPE ANY,
    <l_field> TYPE ANY.
  TYPE-POOLS: rrx1 .
  DATA: wa_var     TYPE     rrx_var ,
        var TYPE STANDARD TABLE OF rrx_var ,
        xml_out TYPE string ,
        breturn TYPE STANDARD TABLE OF bapiret2 ,
        rpt_tech_id(50) ,
        wa_meta TYPE zbw_query_output_metadata ,
        xslt_error TYPE REF TO cx_xslt_exception ,
        is_fieldcat     TYPE     lvc_s_fcat,
        it_fieldcat       TYPE     lvc_t_fcat,
        new_table  TYPE REF TO data ,
        xslt_message TYPE string ,
        meta TYPE STANDARD TABLE OF zbw_query_output_metadata . " this structure was created in the previous part
*fill all the variables like below.
  MOVE: 'SEM_PSG01/PSG___00000_080_V1' TO rpt_tech_id .
  APPEND wa_var TO var .
  CLEAR :xml_out .
  REFRESH breturn .
  CALL FUNCTION 'Z_QUERY_EXECUTE'
    EXPORTING
      query_name            = rpt_tech_id
    IMPORTING
      xml_out               = xml_out
    TABLES
      return                = breturn
      meta                  = meta
    EXCEPTIONS
      bad_value_combination = 1
      user_not_authorized   = 2
      unknown_error         = 3
      query_not_found       = 4
      OTHERS                = 5.
  CASE sy-subrc .
    WHEN 0 .
      CLEAR: is_fieldcat, wa_meta .
      REFRESH: it_fieldcat .
      LOOP AT meta INTO wa_meta.
        is_fieldcat-fieldname = wa_meta-fieldname.
        is_fieldcat-outputlen = wa_meta-outputlen .
        is_fieldcat-datatype = wa_meta-datatype.
        is_fieldcat-scrtext_l = wa_meta-scrtext_l.
        APPEND is_fieldcat TO it_fieldcat.
        CLEAR : is_fieldcat .
      ENDLOOP .
      IF NOT it_fieldcat[] IS INITIAL .
        CALL METHOD cl_alv_table_create=>create_dynamic_table
          EXPORTING
            it_fieldcatalog = it_fieldcat
          IMPORTING
            ep_table        = new_table.
        ASSIGN new_table->* TO <outtab>.
      ENDIF .
      TRY .
          CALL TRANSFORMATION ('Z_GPS_TR')
          SOURCE XML  xml_out
          RESULT     outtab = <outtab>.
        CATCH cx_xslt_exception INTO xslt_error.
          xslt_message = xslt_error->get_text( ).
      ENDTRY.
    WHEN 1 .
    WHEN 2 .
    WHEN OTHERS .
  ENDCASE .
{ENDFUNCTION.
'Z_GPS_TR' is my transformation (exactly the code from the blog).
'Z_QUERY_EXECUTE' is the function from 1). I did not use variables for the query parameter.
I see with  the debugger that <outtab> is filled corectly, with the values from my query.  Still , the function, when is runed normally, does not display anything.
3) If I run only the transformation Z_GPS_TR alone, it says invalid source XM source file.
Please, some suggestion? I don't know hot to proceed.
Many thanks.
Edited by: Ariana D on May 19, 2009 11:40 AM

Hi All
I able to solve this problem
Regards
Satrajit.

Similar Messages

  • Execute a query using ABAP  (XSLT transformation issue)

    Hello,
    I made the steps from this blog (part I, II and III).
    /people/durairaj.athavanraja/blog/2005/12/05/execute-bw-query-using-abap-part-iii
    When trying to run the XSLT transformation, I got the message that : XML invalid source file.
    I am not sure what are the steps for running a transformation, or running it for this case ,maybe something it's not ok. I just run it, did not provide any information.
    Any suggestions ? Did anyone use the function module described in this blog ?
    Thank you very much in advance.

    try giving
    CALL TRANSFORMATION (`ID`)
    SOURCE meta = meta_data[]
    output = <ltable>[]
    RESULT XML xml_out
    OPTIONS xml_header = 'NO'.
    and check - sometimes the codepages configured in the BW system tend to cause an issue... I am not sure if the syntax is right though - but you are basically trying to bypass any encoding that is happening in the query transformation....
    http://www.sapetabap.com/ovidentia/index.php?tg=fileman&sAction=getFile&inl=1&id=4&gr=Y&path=ABAP%2FABAPENANGLAIS&file=ABAP-XML+Mapping.pdf&idf=41
    Edited by: Arun Varadarajan on May 18, 2009 11:28 PM

  • Executinga BW query using ABAP

    I saw this blog on how to execute a BW query using abap. My question is, where do we create the function module Y_EXECUTE_QUERY? I mean under which function group? Thanks.

    This is the blog I was referring to:
    /people/durairaj.athavanraja/blog/2005/04/03/execute-bw-query-using-abap-part-i

  • Execute Bex query from ABAP

    Hi,
    I am using the method mentioned by Durairaj (@  /people/durairaj.athavanraja/blog/2005/04/03/execute-bw-query-using-abap-part-i )
    to execute queries from ABAP.
    When I try to execute a query with characteristics in rows and if the characteristics name is large then i get a dump:
    'Field symbol has not yet been assigned'
    @ <l_field> = wa_set-chavl .
    I tried the same for another cahracteristic of lesser length and it works fine.
    Initially the chara name was like:
    <8 letter dim name>__<7 letter chara name >
    when i used a dim name with lesser no of letters:
    <7 letter dim name>__<6 letter chara name >
    It works fine.
    is there any restricition on the lenght of characteristics ?
    Thanks,
    Message was edited by:
            Rithesh Vijayakrishnan

    Matthias,
    I have tried to use this method before, but with the follow URL:
    /SAP/BC/WebDynpro/SAP/YWEBTEMPLATE_TEST/bi_template_page.htm?&varn1=0pcalmon&varv1=200901&varn2=0p_cocd&varv2=b047&url=/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex
    didn't work as I image.
    Do I have to transform this url before execute the method?
    Tnks for your patience.

  • Getting an error when i am execution a BI query using ABAP.

    Hi Expert,
    I am getting an error when i am execution a BI query using ABAP. Its Giving me this Error "The Info Provider properties for GHRGPDM12 are not the same as the system default" and in the error analysis it saying as bellow.
    Property Data Integrity has been set differently to the system default.
    Current setting: 0 for GHRGPDM12
    System default: u2019 7 u2018
    As I am very new to BI and have very limited knowledge, so I am not able to understand this problem. Can any one help me to resolving this issue. Previously it as working fine, I am getting this error last 2 days.
    when i am debugging , I am getting error from
    create instance of cl_rsr_request
    CREATE OBJECT r_request
    EXPORTING
    i_genuniid = p_genuniid.
    this FM. Its not able to create the object. Can any one please help me out.
    Thanks in advance.
    Regards
    Satrajit

    Hi,
    I am able to solve this problem
    Regards
    Satrajit

  • Rename RKF and CKF in query using ABAP

    Hi guys,
    I am supposed to rename RKF and CKF in query using ABAP.  (RKF: restricted key figures, CKF: calculated key figures)
    Right now, I am using FM RSZ_X_COMPONENT_GET to load query definition. I can find and rename all used RKF and CKF technical names and rename them in returned tables and then save it using  RSZ_X_COMPONENT_SET.
    But  I see that both RKF and CKF are reusable elements and they are can be probably used somewhere else.
    Can you tell me where can I find information in what header table are they saved or maybe some "where used" table.
    What FM am I supposed to use to rename CKF and RKF in given query and also in other parts of SAP system?
    Even some information how to get deeply into this problem would be very helpful.
    Thanks.

    Hi,
    You can see the query element definitions in RSZ* tables, but not sure if you will be able to find complete info, like a particular RKF is restricted by following selections by looking at the tables. Also, please do not try to change the info directly in the tables even though you seem to have a lot of objects to changes.
    Hope this helps...

  • Error executing a query using a DB-Link

    Hi all,
    I'm trying to execute a query on a DB using a connection. I created a DB-LINK on the DB. executing the select:
    select sysdate from dual@lnk_db_prod;
    I get the following error:
    Error starting at line 1 in command:
    select sysdate from dual@lnk_db_prod
    Error at Command Line:1 Column:19
    Error report:
    SQL Error: ORA-01882: timezone region not found
    ORA-02063: preceding line from lnk_db_prod
    The error will be return executing any query on a db-link.
    It appens if I create a db-link using syntax referencing the SID and using the sintax with the complete connection string. Below the two example of db-link DDL commands:
    1.
    CREATE DATABASE LINK lnk_db_prod
    CONNECT TO prod IDENTIFIED BY prod
    USING 'DBPROD';
    2.
    create database link lnk_db_prod2
    connect to prod
    identified by prod
    using '(DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 10.41.54.156)
    (Port = 1521)
    (CONNECT_DATA = (SID = DBPROD)
    Can you help me, please?
    bye,
    Ivan

    Hi,
    You would be better off posting / searching on other Oracle forums that deal more specifically with Application Servers. I googled "WebLogic set time_zone" and the first three hits were from our forums:
    Default TimeZone
    How to fix msg=ORA-01882: timezone region  not found
    http://kr.forums.oracle.com/forums/thread.jspa?messageID=9400587
    I hope one of the these is what you are looking for.
    Regards,
    Gary Graham
    SQL Developer Team

  • Executing Select query using JDBC Receiver Adapter

    I created couple types in Oracle and also new function instead of procedure
    Can I execute the above query using JDBC Receiver Adapter.
    select *
    from  the ( select cast( apr.get_distribut('', '', '', 'hdfcgd', 'CAN') as dsrTable )
             from dual );
    If possible how my message structure should look like...

    Hi vikram,
       If you use JDBC as Receiver Adapter you can only post the data to the data base I do no think so we can select the records from the data base.
       If you use JDBC as Sender hope,we can the select query in the sender communication channel.
        Hope I am clear.
      Thanks and Regardds,
      Chandu.

  • Executing a query using API

    Hi All
    Is there any way to query OIM database using OIM API.
    i mean excuting a custom query.
    Thank you
    sas

    To execute a query, you can use the following:
    tcDataSet tcDS = new tcDataSet();
    tcDS.setQuery(<dbRef>, <queryString>);
    tcDS.executeQuery();
    <dbRef> -> If executing from adapter, you can use tcDataProvider or if invoking from a scheduled task use 'getDataBase()'
    <queryString> -> String containing the query.
    As mentioned in earlier replies, using direct queries is not recommended, you should be using APIs instead. tcUserOperationsIntf.findUsers(Map) wil work. Then on the tcResultSet object returned you can use getRowCOunt() to determine # of rows.
    Hope this helps.
    - Aman

  • Change query using abap

    hi all,
    i find a situation when i need to change many queries to include a common variable of a characteristic. is it possible to create a program to change query? are there any function modules for this?
    thanks.

    Hi,
    You can run or get an URL for query with ABAP Function modules. but for creation, it may not possible.
    As this is a different tool.
    Regards,
    Ravi Kanth

  • RRi for query using ABAP program

    For a report, we are using RRI (jump to target) functionality to see invoices in R/3 system using an ABAP program. I do not have much idea on R/3 systems how invoices are setup in R/3 Dev, test and prod. The ABAP report is done by a backend person. I need to place that in RSBBS. Here, my doubt is that do we need to follow the same procedure for this to move it to production system i.e, first create that RRI and ABAP in respective dev systems and transport both to test and then to Prod? Could anyone please explain me the steps on how this will work in real-time?
    Points will be assigned.
    Thanks

    Hi,
    I am not able to find how the two reports are conncted.
    You can check in RSBBS t-code. RRI will be defined here to jump from One Query yo another and many more options.
    My work is to copy the parent query a nd do some modification to it. Please let me know how to check and achieve that.
    You can do this BEx Query Designer itself.
    Regards,
    Suman

  • Error executing a query using VPD and BC4J

    Hi all,
    Our team is developing an application using an Oracle DB 9.2.0.4 and BC4J 10g (9.0.5.16.0) as persistence layer.
    We also are using the VPD (virtual private database) to have security in the database at row level.
    The problem we are facing is that every some time (days) we get a jdbc error when a query (see below) that uses VPD policies is executed. Once the error occurs I execute it from sqlplus without getting any error .. it only occurs from our java application.
    To temporary solve this problem, we delete and recreate the VPD policies, then the application continue working fine for some time ...
    I'll appreciate any comment / suggestions
    Thank in advance.
    Eduardo.
    ERROR LOG:
    oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT CalLocation.ID,
    CalLocation.CODE, eo
    CalLocation.NAME,
    CalLocation.ZIP,
    CalLocation.PHONE,
    CalLocation.FAX,
    CalLocation.ADDRESS1,
    CalLocation.ADDRESS2,
    CalLocation.URL,
    CalLocation.OWNER,
    CalLocation.CTY_ID,
    CalLocation.DESCRIPTION,
    ORefCity.CODE CTY_CODE,
    ORefCountry.ID CTR_ID,
    ORefCountry.CODE CTR_CODE,
    ORefRegion.ID REG_ID,
    ORefRegion.CODE REG_CODE
    FROM CAL_LOCATIONS CalLocation,
    OREF_CITIES ORefCity,
    OREF_COUNTRIES ORefCountry,
    OREF_REGIONS ORefRegion
    WHERE ORefCity.ID = CalLocation.CTY_ID
    and ORefCountry.ID = ORefCity.CTR_ID
    and ORefRegion.ID = ORefCountry.REG_ID) QRSLT WHERE ( ( (CTY_ID = 867) ) )
    ## Detail 0 ##
    java.sql.SQLException: Io exception: Broken pipe
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:231)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:345)
         at oracle.jdbc.driver.OracleStatement.open(OracleStatement.java:717)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2605)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:387)

    The symptoms we have been getting are quite similar to the bug 3662364 .
    I'm going to implement the patch for that bug and see what happend then.
    Thank you very much for your help.
    Regards,
    Eduardo.

  • APEX 'crawling' whilst executing a query using CONNECT BY

    Hi Folks.
    Anyone seen this behaviour before?
    I can run this SQL (with the appropriate page item values substitued) in PL/SQL developer and I get the result in less than 0.094 seconds with a COST of 13
    SELECT NULL LINK
          ,a.data_points
          ,5000 forecast_value
    FROM
    (SELECT to_char(trunc(add_months((SELECT iag.agreement_start_date
                                    FROM   iot_agreement iag
                                    WHERE  iag.iot_agreement_id =
                                           :P317_IOT_REBATE_AGREEMENT_ID)
                                   ,LEVEL - 1)
                        ,'mm')
                  ,'MON-RR') data_points
    FROM   dual
    CONNECT BY LEVEL <=
               trunc(months_between((SELECT iag.agreement_end_date
                                    FROM   iot_agreement iag
                                    WHERE  iag.iot_agreement_id =
                                           :P317_IOT_REBATE_AGREEMENT_ID)
                                   ,(SELECT iag.agreement_start_date
                                    FROM   iot_agreement iag
                                    WHERE  iag.iot_agreement_id =
                                           :P317_IOT_REBATE_AGREEMENT_ID)))
    MINUS
    SELECT pkg_ngc_utilities.get_long_traffic_month(imps.traffic_period_id)
    FROM   iot_mfs_plus_summary imps
    WHERE  imps.client_master_entity_id = :P317_CLIENT_MASTER_ENTITY_ID
    AND    imps.home_master_entity_id IN
           (SELECT ipy.master_entity_id
             FROM   iot_party ipy
             WHERE  ipy.iot_agreement_id = :P317_IOT_REBATE_AGREEMENT_ID
             AND    ipy.client_side = 0) -- Roaming Partner
    AND    imps.visited_master_entity_id = imps.client_master_entity_id
    AND    pkg_ngc_utilities.get_long_traffic_month(imps.traffic_period_id) IN
           (SELECT to_char(trunc(add_months((SELECT iag.agreement_start_date
                                                FROM   iot_agreement iag
                                                WHERE  iag.iot_agreement_id =
                                                       :P317_IOT_REBATE_AGREEMENT_ID)
                                            ,LEVEL - 1)
                                 ,'mm')
                           ,'MON-RR') data_points
             FROM   dual
             CONNECT BY LEVEL <= trunc(months_between ((SELECT iag.agreement_end_date
                                        FROM   iot_agreement iag
                                        WHERE  iag.iot_agreement_id =
                                               :P317_IOT_REBATE_AGREEMENT_ID) ,
                                          (SELECT iag.agreement_start_date
                                                FROM   iot_agreement iag
                                                WHERE  iag.iot_agreement_id =
                                                       :P317_IOT_REBATE_AGREEMENT_ID)
                                        )))) a
    ORDER BY to_date(a.data_points, 'MON-RR')If I use the same query in a Flash Chart the page still only takes a few seconds to display but the chart takes over a minute to display. APEX ADMIN shows the page being served in 2 - 3 seconds.
    If I drop the chart and drop the query into a simple report region, the entire page takes over a minute to display.
    Has anyone experienced anything similar?
    This is the first time I have used CONNECT BY LEVEL in my SQL so that is my main suspect. But please remember, in SQL/Developer the query executes very quickly indeed.
    Many thanks
    Kind regards
    Simon Gadd

    Hi Simon,
    I had something similar. When my code ran is SQL is took seconds, but took minutes in an ApEx page. There seems to the something strange with the way ApEx and/or the optimizer execute code via ApEx pages.
    I gave my code to one of my tuning experts and they added a simple rule to force index use:
    select  /*+RULE index(r AMS_REQUESTS_IDX4) */
            r.requester_name,
            r.ams_type_code_name,
            d.display_date
    from
            (select TO_DATE(:P23_CALENDAR_DATE,'YYYYMMDD')-100+rownum display_date from all_objects where rownum < 300) d,
            ams_requests_v r
    where
            trunc(d.display_date) between trunc(r.start_date) and trunc(r.end_date)
    and        r.approval_status != 'R'       
    and        to_char(d.display_date,'DY') NOT IN ('SAT','SUN')
    and     d.display_date not in (select trunc(closure_date) from ams_closures)
    and        (nvl(r.restricted_view_flag,'N') = 'N' or trunc(r.end_date) >= trunc(sysdate))
    and     r.department_id in (        select
                                            d.department_id
                                    from
                                            ams_departments d
                                    connect by ( PRIOR DEPARTMENT_ID = PARENT_DEPARTMENT_ID)
                                    start with department_id = (
                                                                    select
                                                                            department_id
                                                                    from
                                                                            ams_departments
                                                                    where
                                                                            nvl(terminating_dept_flag,'N') = 'Y'
                                                                    and         level = (select
                                                                                            min(level)                                                       
                                                                                     from
                                                                                            ams_departments
                                                                                    where
                                                                                            nvl(terminating_dept_flag,'N') = 'Y'
                                                                                            connect by department_id = prior parent_department_id
                                                                                            start with department_id = :P0_DEPARTMENT_ID)
                                                                    connect by department_id = prior parent_department_id
                                                                    start with department_id = :P0_DEPARTMENT_ID))        
    UNION
    select  /*+RULE index(r AMS_REQUESTS_IDX4) */
            r.requester_name,
            r.ams_type_code_name,
            d.display_date
    from
            (select TO_DATE(:P23_CALENDAR_DATE,'YYYYMMDD')-100+rownum display_date from all_objects where rownum < 300) d,
            ams_requests_v r
    where
            trunc(d.display_date) between trunc(r.start_date) and trunc(r.end_date)
    and        r.approval_status != 'R'       
    and     to_char(d.display_date,'DY') NOT IN ('SAT','SUN')
    and     d.display_date not in (select trunc(closure_date) from ams_closures)
    and     nvl(r.restricted_view_flag,'N') = 'Y'
    and     r.department_id in (        select distinct
                                            d.department_id
                                    from
                                            ams_departments d
                                    connect by ( PRIOR DEPARTMENT_ID = PARENT_DEPARTMENT_ID)
                                    start with department_id in (
                                                                    select
                                                                            department_id
                                                                    from
                                                                            ams_departments_v
                                                                    where
                                                                            :P0_PERSON_ID in (manager_id, deputy_id,administrator_id)))       
    UNION
    select
            NULL                              requester_name,
            t.name                            ams_type_code_name,
            trunc(c.closure_date)             display_date
    from
            ams_closures c,
            ams_closure_type_codes_v t
    where
            c.AMS_CLOSURE_TYPE_CODE = t.AMS_CLOSURE_TYPE_CODE   
    order by 3,1It might be worth you trying something similar.
    best regards,
    Martin

  • How can I execute a query using RSCRMBW_REPORT?

    Hi everybody,
    I have read the document:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3ba5e590-0201-0010-59b1-cab51fd245b7
    and found it is very intersting for my requirement.
    I copied the report,and modified it regarding our case.But during the second call,I get runtime error.
    I debugged the code, and found the error results from method GET_CUBETYPE() of class CL_RSCRMBW_BAPI.In this method,it tries to create a object which is TYPE REF TO cl_rsd_dta.
    CREATE OBJECT lr_dta
         EXPORTING
           i_infoprov    = g_s_status-infocube
    But g_s_status-infcube is null.
    I am not able to find where this 'infocube' component  in this g_s_status struction is filled,even I found,I don't know how I can give this infocube parameter from report which 2 FM are called.
    My code is following:
    parameters: p_repuid TYPE RSCRMSTATUS-REPORTUID
    DEFAULT 'Z_IC_01/Z_COMP_Q003'.
    parameters: p_split type BAPI6110DIM-DIM_NAM.
    data:name_query TYPE CHAR50,
         result_table LIKE RSCRMSTATUS-TABNAME,
         it_return LIKE BAPIRET2 OCCURS 2 WITH HEADER LINE,
         infocube TYPE CHAR30,
         compid TYPE CHAR30.
    AT SELECTION-SCREEN  ON VALUE-REQUEST FOR p_repuid.
    CALL FUNCTION 'RSZ_COMPONENT_TREE_GET'
        EXPORTING
          i_title    = 'Query auswählen'(031)
        IMPORTING
          E_INFOCUBE = infocube
          E_COMPID   = compid
        EXCEPTIONS
          OTHERS     = 1.
      IF sy-subrc GT 0.
      ENDIF.
    concatenate infocube '/' compid into p_repuid.
    START-OF-SELECTION.
    CALL FUNCTION 'RSCRMBW_REPORT'
    EXPORTING
    i_mode = 'OPEN'
    i_reportuid = p_repuid
    I_PACKSIZE = 10000
    I_EXECMODE = 'TABLE'
    I_EXTRACT = 'ZBWTEST'
    I_SPLIT = p_split
    I_CLEAREXTRACT = 'X'
    TABLES
    E_T_RETURN = it_return.
    CALL FUNCTION 'RSCRMBW_REPORT'
    EXPORTING
    i_mode = 'START'
    i_reportuid = p_repuid
    I_PACKSIZE = 10000
    I_EXECMODE = 'TABLE'
    I_CLEAREXTRACT = 'X'
    TABLES
    E_T_RETURN = it_return.
    So far this creation of report is only the 2nd step.But I am not sure how step 3 to step 6 should be done so that the report can be execute exactly.
    What should I do? Pleas help me!
    Thanks in advance
    Regards,
    Liying
    Message was edited by: Liying Wang
    Message was edited by: Liying Wang
    Message was edited by: Liying Wang

    Liying
    Were you able to get a solution to this problem? I am facing the same issue too. The g_s_status-infocube is showing blank.
    Regards
    Dilip

  • Execute Process Chain Using ABAP

    Hi All,
    Is there any standard ABAP Code or Function Module through which we can execute the Process Chain Manually.
    Regards,
    Anuja

    Hi,
    this forum is for the SAP integration with SAP businessObjects BI. The entry should go to the BW forum
    ingo

Maybe you are looking for

  • How do I get Muse to remember the last directory when accessing files?

    When I use Muse, I can't get it to remember the last directory or folder I used to access site assets. Every time I go back to access another image or document, explorer has me navigate from the "My Documents" folder to my project folder instead of r

  • Query updation

    hi all, SELECT T0.[Quantity] + (T0.[Quantity]/10), T0.[ItemCode] FROM RDR1 T0  INNER JOIN ORDR T1 ON T0.DocEntry = T1.DocEntry WHERE T1.[DocNum] =[%0] This query select particular sales order and then item is selected one by one in this order, after

  • File not found: index.cfm

    Hi, I have a new ColdFusion 9 install on a CentOS server with Apache 2.2 I applied the 9.0.1 update. The install is Standard, not Enterprise. I can access the admin at /CFIDE/... perfectly. The problem is when I try to access the first domain I have

  • URGENT - need help with ansi/iso outer joins

    Hi, I am currently preparing for the OCP sql exam for the 9i developer track and I think a statement is printed wrong in my study book, please could somebody confirm the following:- Oracle Outer Join syntax from tab_a, tab_b where a.col_1 (+) = b.col

  • Email Notification to Approver - PCR Approval Process

    Hi, We are in the process of implementing PCR Approval using MSS . And as per requirement , we are supposed to send email notification to the Approver Outlook mail box - as and when the Appoval work item is delivered to the Approver's UWL. By adding