Data display on remote cube

Hi Guru's
I've created a generic ds using fm for direct access.creating virtual cube and mapped accordingluy with ds.
Now when I do test extract on ds per a single posting day then it takes few secords to pull through the data and the no. of records are 45 on dev box.But I do data display on remote cub and it takes long and throughing a timed out error.
I dont have any routines on transformaions.
What could be the problem?
Nagesh.

HI
here's the code in FM
Example: DataSource for table SFLIGHT
  TABLES: BKPF,BSEG.
Auxiliary Selection criteria structure
  DATA: L_S_SELECT TYPE SRSC_S_SELECT.
Maximum number of lines for DB table
  STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
counter
          S_COUNTER_DATAPAKID LIKE SY-TABIX,
Starting point for each data package
         READ_NEXT LIKE SY-TABIX,
Total Number of Extracted Records
         NO_RECS LIKE SY-TABIX,
Number read so far
         TEMP_CNTR(9) TYPE N.
cursor
S_CURSOR TYPE CURSOR.
Select ranges
  RANGES: R_BLDAT FOR BKPF-BLDAT,
          R_BUDAT FOR BKPF-BUDAT,
          R_CPUDT FOR BKPF-CPUDT,
          R_BUKRS FOR BKPF-BUKRS,
          R_GJAHR FOR BKPF-GJAHR,
          R_BELNR FOR BKPF-BELNR.
  DATA: GT_T_DATA LIKE ZFI_GL_4 OCCURS 0 WITH HEADER LINE.
  DATA: GT_BKPF TYPE TABLE OF BKPF,
        GS_BKPF TYPE BKPF.
  DATA: COUNTER(9) TYPE N.
  DATA: LV_MONAT(3).
Initialization mode (first call by SAPI) or data transfer mode
(following calls) ?
  IF I_INITFLAG = SBIWA_C_FLAG_ON.
Initialization: check input parameters
                buffer input parameters
                prepare data selection
Check DataSource validity
    CASE I_DSOURCE.
      WHEN 'ZFI_GL_4'.
      WHEN OTHERS.
        IF 1 = 2. MESSAGE E009(R3). ENDIF.
this is a typical log call. Please write every error message like this
        LOG_WRITE 'E'                  "message type
                  'R3'                 "message class
                  '009'                "message number
                  I_DSOURCE   "message variable 1
                  ' '.                 "message variable 2
        RAISE ERROR_PASSED_TO_MESS_HANDLER.
    ENDCASE.
    APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
Fill parameter buffer for data extraction calls
    S_S_IF-REQUNR    = I_REQUNR.
    S_S_IF-DSOURCE = I_DSOURCE.
    S_S_IF-MAXSIZE   = I_MAXSIZE.
Fill field list table for an optimized select statement
(in case that there is no 1:1 relation between InfoSource fields
and database table fields this may be far from beeing trivial)
    APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
  ELSE.                 "Initialization mode or data extraction ?
Data transfer: First Call      OPEN CURSOR + FETCH
               Following Calls FETCH only
First data package -> OPEN CURSOR
    IF S_COUNTER_DATAPAKID = 0.
Fill range tables BW will only pass down simple selection criteria
of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'BLDAT'.
        MOVE-CORRESPONDING L_S_SELECT TO r_bldat.
        APPEND R_BLDAT.
      ENDLOOP.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'BUDAT'.
        MOVE-CORRESPONDING L_S_SELECT TO R_BUDAT.
        APPEND R_BUDAT.
      ENDLOOP.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'CPUDT'.
        MOVE-CORRESPONDING L_S_SELECT TO R_CPUDT.
        APPEND R_CPUDT.
      ENDLOOP.
         LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'BUKRS'.
        MOVE-CORRESPONDING L_S_SELECT TO R_BUKRS.
        APPEND R_BUKRS.
      ENDLOOP.
         LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'GJAHR'.
        MOVE-CORRESPONDING L_S_SELECT TO R_GJAHR.
        APPEND R_GJAHR.
      ENDLOOP.
          LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'BELNR'.
        MOVE-CORRESPONDING L_S_SELECT TO R_BELNR.
        APPEND R_BELNR.
      ENDLOOP.
Determine number of database records to be read per FETCH statement
from input parameter I_MAXSIZE. If there is a one to one relation
between DataSource table lines and database entries, this is trivial.
In other cases, it may be impossible and some estimated value has to
be determined.
      SELECT * FROM BKPF INTO TABLE GT_BKPF WHERE BLDAT IN R_BLDAT
                                              AND BUDAT IN R_BUDAT
                                              AND CPUDT IN R_CPUDT
                                              AND BUKRS IN R_BUKRS
                                              AND GJAHR IN R_GJAHR
                                              AND BELNR IN R_BELNR.
      LOOP AT GT_BKPF INTO GS_BKPF.
        SELECT * FROM BSEG WHERE BELNR = GS_BKPF-BELNR
                           AND   BUKRS = GS_BKPF-BUKRS
                           AND   GJAHR = GS_BKPF-GJAHR.
          MOVE-CORRESPONDING GS_BKPF TO GT_T_DATA.
          MOVE-CORRESPONDING BSEG TO GT_T_DATA.
          CLEAR LV_MONAT.
          CONCATENATE '0' GT_T_DATA-MONAT INTO LV_MONAT.
          CONCATENATE GT_T_DATA-GJAHR LV_MONAT INTO GT_T_DATA-FISCPER.
          CALL FUNCTION 'BWFIU_GET_DOCUMENT_ORIGIN'
            EXPORTING
              I_AWTYP    = GT_T_DATA-AWTYP
              I_AWKEY    = GT_T_DATA-AWKEY
            IMPORTING
              E_REFBELNR = GT_T_DATA-AWREF
              E_REFGJAHR = GT_T_DATA-AWGJA
              E_REFBUKRS = GT_T_DATA-AWBUK
              E_REFKOKRS = GT_T_DATA-AWKOK.
Lcal currency calculations.
          IF GT_T_DATA-SHKZG EQ 'S'.
            GT_T_DATA-DMSOL = GT_T_DATA-DMBTR.
            GT_T_DATA-DMSHB = GT_T_DATA-DMBTR.
            GT_T_DATA-DMHAB = 0.
          ELSEIF GT_T_DATA-SHKZG EQ 'H'.
            GT_T_DATA-DMHAB = GT_T_DATA-DMBTR.
            GT_T_DATA-DMSHB = GT_T_DATA-DMBTR * -1.
            GT_T_DATA-DMSOL = 0.
          ENDIF.
Foriegn Currency calculations.
          IF GT_T_DATA-SHKZG EQ 'S'.
            GT_T_DATA-WRSOL = GT_T_DATA-DMBTR.
            GT_T_DATA-WRSHB = GT_T_DATA-DMBTR.
            GT_T_DATA-WRHAB = 0.
          ELSEIF GT_T_DATA-SHKZG EQ 'H'.
            GT_T_DATA-WRHAB = GT_T_DATA-DMBTR.
            GT_T_DATA-WRSHB = GT_T_DATA-DMBTR * -1.
            GT_T_DATA-WRSOL = 0.
          ENDIF.
          APPEND GT_T_DATA.
        ENDSELECT.
      ENDLOOP.
      DESCRIBE TABLE GT_T_DATA LINES NO_RECS.
      READ_NEXT = 0.
      TEMP_CNTR = 0.
    ENDIF.                             "First data package ?
Fetch records into interface table.
    IF ( READ_NEXT GT NO_RECS ) OR ( NO_RECS EQ 0 ).
      REFRESH GT_T_DATA.
      CLEAR:S_COUNTER_DATAPAKID, COUNTER, READ_NEXT, S_S_IF, NO_RECS.
      RAISE NO_MORE_DATA.
    ENDIF.
    COUNTER = 0.
    LOOP AT GT_T_DATA FROM READ_NEXT.
      COUNTER = COUNTER + 1.
      IF COUNTER GT S_S_IF-MAXSIZE.
        IF TEMP_CNTR EQ NO_RECS.
          CLEAR: S_COUNTER_DATAPAKID,COUNTER,READ_NEXT,S_S_IF,NO_RECS.
          RAISE NO_MORE_DATA.
        ELSE.
          READ_NEXT = READ_NEXT + COUNTER.
        ENDIF.
        EXIT.
      ENDIF.
      MOVE-CORRESPONDING GT_T_DATA TO E_T_DATA.
      APPEND E_T_DATA.
      TEMP_CNTR = TEMP_CNTR + 1.
      iF TEMP_CNTR GT NO_RECS.
        CLEAR GT_T_DATA.
        CLEAR: S_COUNTER_DATAPAKID, COUNTER,READ_NEXT, S_S_IF,NO_RECS.
        RAISE NO_MORE_DATA.
        EXIT.
      ENDIF.
    ENDLOOP.
    S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
  ENDIF.              "Initialization mode or data extraction ?
ENDFUNCTION.
If it's a code then why it's quick on rsa3?
Nagesh.

Similar Messages

  • Error reading the data from the remote cube

    Hi all,
    When we try to get the data for remote cube from LISTCUBE, we are getting the following msg.
    1) Messages for DataSource 9AUPA_DP_HK_01 from source system AD1CLNT100
    2) 224(/SAPAPO/TSM): No planning version selected
    3) Errors have occurred while extracting data from DataSource 9AUPA_DP_HK_01
    4) Error reading the data of InfoProvider UICHKRMTC.
    Any Inputs?

    Hi,
    Check whether the sourcesystem is responding.
    And also in the error mesg: 224(/SAPAPO/TSM): No planning version selected
    It seems you have not selected any planning version. Give any planning version in the listcube selection screen and execute.
    Regards,
    Ravi Kanth

  • How do we check intermediate data in Remote Cube

    Hi Experts,
    I want to check how the data is coming upto Remote Cube from Planning area.
    Currently the flow is MPRO -> Remote Cube ->PSA (directly updates to to target , so data stored in PSA)-> Planning Layout.
    Whenever I update data in the planning layout ->save-> and runs IP the data gets updated ( can check it in MPRO)  .
    How can i check the dat in between , also I tried to find out any docs. on the detailed mechaninsm of Remote cube but could find much .
    Can anyone plz help with the detailed mechanism of Remote Cube links ?
    Regards,
    Rajat

    Hi Rajat,
    A RemoteCube is an InfoCube whose transaction data is not managed in the BW but externally. Only the structure of the RemoteCube is defined in BW. The data is read for reporting using a BAPI from another system.
    Please see the discussion below for more information:
    Data load in Remote Cube
    More information on:
    SAP RemoteCube - Modeling - SAP Library
    Regards,
    Ashvin

  • Remote  Cube back ground processing

    Hi gurus,
    Is it possible to execute a Query which is on a remote cube in Back ground.
    In my situation: I am loaded the data into the regular cube and then reconciling this cube data with the remote cube data ( which picks the data from R/3 tables using a fucntion module.)
    Is it possible to run this Query in Background job.
    I came accross the sm36 option, but I don't know the exact time when to start the job as the base cube data load should be finished before this query executes and the matter of fact there are 9 cubes which should complete the load and then the respective queries should start exectuing.
    Thank you

    Ohter options are:
    Create a report calling function module RSCRMBW_REPORT.
       Catch: You need to call the FM twice in your report once to initialize with OPEN and second time to run with START (passing values to i_mode)
    Create a report calling function module WEBQUERY
      Catch: You will have to deal with all the HTML generated with the query result

  • Max data pull from Virtual Cube - is this a setting?

    We have a user doing a query against a Remote cube in our BW system, and they're hitting a "maximum data" limit of data from this remote cube.  Is this a setting for this cube or globals, and can you modify it?
    Thanks,
    Ken Little
    RJ Reynolds Tobacco

    Hi,
    MAXSIZE = Maximum size of an individual data packet in KB.
    The individual records are sent in packages of varying sizes in the data transfer to the Business In-formation Warehouse. Using these parameters you determine the maximum size of such a package and therefore how much of the main memory may be used for the creation of the data package. SAP recommends a data package size between 10 and 50 MB.
    https://www.sdn.sap.com/irj/sdn/directforumsearch?threadid=&q=cube+size&objid=c4&daterange=all&numresults=15
    MAXLINES = Upper-limit for the number of records per data packet
    The default setting is 'Max. lines' = 100000
    The maximum main memory space requirement per data packet is around
    memory requirement = 2 * 'Max. lines' * 1000 Byte,
    meaning 200 MByte with the default setting
    3 THE FORMULA FOR CALCULATING NUMBER OF RECORDS
    The formula for calculating the number of records in a Data Packet is:
    packet size = MAXSIZE * 1000 / transfer structure size (ABAP Length)
    but not more than MAXLINES.
    eg. if MAXLINES < than the result of the formula, then MAXLINES size is transferred into BW.
    The size of the Data Packet is the lowest of MAXSIZE * 1000 / transfer structure size (ABAP Length) or MAXLINES
    Goto RSCUSTV6 tcode and set it.
    Go to your Infopackage, from tool bar, scheduler, data packet settings, here you can specify your data packet size
    Go to R/3, Transaction SBIW --> General settings --> Maintain Control Parameters for Data Transfer.
    Here you can set the maximum number. But the same can be reduced in BW...
    Info package>Scheduler>data’s default data transfer-->here you can give the size, but can reduce the size given in R/3 side, you can’t increase here...
    In RSCUSTV6 you can set the package size...press F1 on it to have more info and take a look to OSS Notes 409641 'Examples of packet size dependency on ROIDOCPRMS' and 417307 'Extractor Package Size Collective Note'...
    Also Check SAP Note 919694.
    This applies irrelevant of source system meaning applicable for all the DS:
    Go To SBIW-> General Settings -> Maintain Control Parameters for Data Transfer -> Enter the entries in table
    If you want to change at DS level then:
    IS->IP -> Scheduler Menu -> Data’s. Default Data Transfer and change the values.
    Before changing the values keep in mind the SAP recommended params.
    Hope this helps u..
    Best Regards,
    VVenkat..

  • Return code 8 while converting field in record 1 (Remote cube)

    Hello,
    I am executing a query which fetches data from a remote cube. This query gives me errors 'Return code 8 while converting <Field> in record <no.>' RSAR 1118.
    What might be the issue with the remote cube. and how should I check it.
    Tx.
    Regards,
    KP

    Hi Venkat,
    Is already has ALPHA conversion routine. We are getting this error for few more infoobjects in different transaction data loads.
    Regards
    SSS

  • Remote Cube data problem

    Hi All,
    Please help on this.
    When clicked on  display data on remote cube ,i tis not showing any data.
    It is diaplaying messages as
    No active transfer rules for source system qwCLNT100
    Error reading the data of InfoProvider ZKR_C01.
    Thanks in advance!

    Hi,
          Go to se38 and execute the program RS_TRANS*  then u will be able to find rs_trans_activate_all execute it and mention the source and infosource name and execute it.
    Regards,
    Rahul.

  • Report is not getting data from Remote cube thru Multi Provider

    Hi SAPians
    I ve strucked up with a Problem in The Reconciliation Report in BW3.5
    The Report was built on a Multi Provider, which was created on Basic and Remote Cubes .
    Both cubes have same Data Source and all the Objects were in Active version and found good.
    When I m executing the Report ,I m only getting the data from the Basic cube and no data is coming from Remote Cube.
    I ve checked the char " 0Infoprov " in Multi Provider and It was assigned with the both the cubes.
    What might be the problem
    Please help me in this regard
    Thanks in advance
    Regards
    Arjun

    Hi
    In the Reconciliation multiprovider, include 0INFOPROVIDER = Remote cube.
    If data still not coming, you can be sure connectivity with Source system of the Remote cube is the issue
    Check with basis to solve the connectivity issue.
    Ensure Remote cube is consistent
    Bye

  • Remote cube on Data Source 0FI_GL_4

    HI,
    I have a requirement of  reconciling  the Line Items from R/3 to BW.
    So i tried to create Remote cube with Direct access, but coudnt due to 0FI_GL_4 data source doesnt support Direct access and reconciliation.
    I can see that Data Source  0FI_GL_4  is being fetched by Function module BWFID_GET_FIGL_ITEM and the base table is DTFIGL_4.
    My question is can I create the Generic data source based on the function module by taking the copy of existing FM BWFID_GET_FIGL_ITEM  and change Direct access option to 2(Supports Preaggregation).
    Do i need to change any settings at table level and parameters to get the required solution.
    Please sugget me how to proceed the development to reconcile the Line Items from R3 to BW.
    Regards,
    Siva..
    Edited by: Siv Kishore on Apr 7, 2011 4:59 PM

    HI Banerjee,
    Thanks for the update.
    As you said i cant use the data source 0FI_GL_1, Because we need to reconcile many fields from R/3 to BW, but  those fields are not available in this data source and it will be complicated to enhance such fields.
    can I create View based generic data source on BSEK and BSEG tables, Will it work? if yes do i need to follow any criteria to get the Correct Line Items.
    Please suggest me is there any SAP suggested solution or if you worked on such kind of development.
    Regards,
    Siva Thottempudi..
    Edited by: Siv Kishore on Apr 12, 2011 4:06 PM

  • Report Does Not Display Data from Non-BCS Cube

    Hi,
    I have the following scenario.
    I have a MultiProvider with two real-time cubes. Cube A is used to store Actual data and Cube B is used to store Budget data.
    Cube A is used by BCS, so the real-time load behavior is set to "Real-Time Data Target Can Be Planned; Data Loading Not Alllowed".
    Cube B is not used by BCS, so data is being loaded using BW InfoPackages, with real-time behavior set to "Re-Time Data Target Can Be Loaded With Data; Planning Not Allowed"
    My BCS has two Consolidation Group hierarchy. One is for Legal reporting and another one is for Business Segment reporting. So, if I have a Consolidation Unit, COMPANY1, it would belong both hierarchies, e.g. LEGAL1 and BSEG1.
    In my query, I have no problem displaying Actual data when I specified Reporting Mode (0BCS_REPMOD) = Standard. (S). However, Budget data does not get displayed. FYI, I have uploaded data twice for each record i.e. LEGAL1 and BSEG1 in the Cons Group (0SEM_CGCOMP) characteristic.
    Any idea on how can I get the budget data displayed?
    Thanks.

    Hi,
    Have you Identified Characteristics and Selected Key Figures:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/cf/bc734190ba137de10000000a155106/frameset.htm
    Without proper construction of multiprovider you'll not be able to see both cubes.

  • Data flow not visible while creating remote cube.

    Hi SDN,
    I am working on a remote cube. I need to link the infosource to remote cube. I have  selected the source system and assigned.
    I have done,  like--Remote cube --> Context Menu --> Show Data flow , and I wanted to see the source system , Info source and the remote cube, but could not find them .
    Guide me what I've missed /went wrong.
    Thanks in Advance
    Ankit

    Hi,
    Remote cube is technology where you report on data which is stored in the source system. While creating the Infocube you have to select Remote Infocube Radiobutton and in the next screen it will ask you for the infosource.
    In that infosource you can assign the datasource in the infosource menu.
    Now you see the data flow.
    Hope it works,
    Regards,
    Sasi

  • Can we use remote cubes for real time data

    Hi Gurus,
    Can you please explain, can remote cubes be used for sales item and billing item ,data sources, if it, can i extract the data as of normal cube running on these DataSource, if so then i want to make multicube on normal cube and remote cube and make a real time sales data on BW, please explain the possibilities of this, we are on version 3.1c
    Thanks in advance

    Hi,
    Remote cubes are special InfoCubes. A Remote cube represents a logical view.
    Unlike with BasisCubes however, no data is physically stored in SAP BW. The
    data is taken from the source systems only after a query has been executed.
    There are three types of remote cube. They can be distinguished by the way
    in which they retrieve data.
    Overview: Virtual Cube Types
    -SAP RemoteCube
    A SAP RemoteCube allows you to define queries with direct access to transaction data in other SAP systems.
    -General RemoteCube:
    A general Remote Cube allows reporting using data from non-SAP systems. The external system transfers the requested data to the OLAP processor via the BAPI.
    -Virtual InfoCube with Services:
    For a virtual InfoCube with services, a user-defined function module is used as the data source.
    Regards
    Pavan Prakhya

  • Error while assigning source system to SAP Remote cube

    I need to do a query using remote cube and the source sys is flat file.
    it wont let me assign the source system to the remote cube.
    the r/3 system icon is seen next to the remote cube technical  name...
    I can't  see my flatfile source system
    can somebody help me.

    Hello Kiran,
    I don't think its possible to use Remote cubes for PC_FILE or FLAT FILE as Source system.
    You can use Virtual Providers in these different scenarios
    Virtual Providers based on DTP => used for SAP source systems
    Virtual Providers based on BAPI => used for non-SAP or external systems
    Virtual Providers bsaed on Function modules => You use this VirtualProvider if you want to display data from non-BI data sources in BI without having to copy the dataset into the BI structures. The data can be local or remote. You can also use your own calculations to change the data before it is passed to the OLAP processor. This function is used primarily in the SAP Strategic Enterprise Management (SEM) application.
    Use InfoObects as Virtual Providers
    Your case is none of these.
    More details can be found under this link:
    http://help.sap.com/saphelp_nw70/helpdata/EN/84/497e4ec079584ca36b8edba0ea9495/frameset.htm

  • Variable on Remote Cube

    Hi,
    I am trying to generate a report on  BW using  Remote Cubes   have source as SQL server using UD Connect. I am using this process to re-consile some of the values. I am getting  a  date from source and I want it to  display as  Fiscal Period.
    Creating variable is not of much use because the code will  execute at the first point and is passes as selection criteria to UD Connect , This may impact the performance. I want the variable/formula to execute after the data comes to BEx.
    I tried of creating the Text variable with replacement variable on Characterstic (Date) so that I can pick on mmyyyy. The text variable is not working.
    Can any  one suggest me on this.
    Regards
    Sudheer

    hi
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f05d0b81-076a-2c10-44ab-f00b0b90ce38?QuickLink=index&overridelayout=true
    this may help you

  • 0FIGL_C10 and its remote cube

    Hi all,
    I installed cube 0FIGL_C10 and it came with a remote cube. I would like to execute a query from the remote cube but i cannot seem to execute a query. how do i execute a query from the remote cube, and how does data come in a remote cube?
    Thanks
    Edited by: DANIEL GREEN on Apr 30, 2008 5:48 AM

    Hi,
    Refer for Queries and how to execute them
    General Ledger (New): Balance Display
    http://help.sap.com/saphelp_nw70/helpdata/EN/49/026940c3c7bf49e10000000a1550b0/frameset.htm
    General Ledger (New): Balances – Cumulated, Comparison with Previous Year
    http://help.sap.com/saphelp_nw70/helpdata/EN/4a/ed6840b151181ce10000000a1550b0/frameset.htm
    General Ledger (New): Balances – Cumulated, Comparison with Previous Year, REMOTE
    http://help.sap.com/saphelp_nw70/helpdata/EN/d8/ef6840b151181ce10000000a1550b0/frameset.htm
    General Ledger (New): Balance Display, Remote
    http://help.sap.com/saphelp_nw70/helpdata/EN/fd/ed6840b151181ce10000000a1550b0/frameset.htm
    For General Ledger (New): Balances – Cumulated, Comparison with Previous Year it says that When you call up the query, you must enter the posting period until which the cumulated account balances are to be displayed for the specified posting period and the previous posting periods of the selected fiscal year.
    Hope this helps.
    Thanks,
    JituK

Maybe you are looking for

  • Help with Layer Positioning and TimeLine

    Hello all, here is my situation: I am trying to do a simple Layer animation for my home page... 4 Layers startoff at the right of my webpage(table) and end up at the left handside, as an example. My problem is I have a main 1x1 table that is centered

  • Someone created a new itunes account using my mac Email!

    Someone using the name "Maryellen McHenry" got into my email account somehow, and used it to create an itunes account! Is there any way I can shut this account down, and/or deauthorize any purchases "Maryellen" made with this account?

  • Cubase SX4 on Intel Mac

    Hi I just wondered if anyone has started using Cubase SX4 on an Intel Mac? I can't get any of the plugins I used in SX3 to even show up in SX4. I have seached the Cubase forums and tried all kinds of possible fixes to no avail. eg remove blacklist, s

  • I need to call an external application (on the user's PC) from web forms 6i

    We do imaging here, and all our images are scanned to a novell fileserver that has a drive letter mapped to the user's PC. These images are used for Oracle applications and other applications, and we only store the image's location path and file type

  • SCOM Monitoring - throttling perf counters

    Hi, In performance rules in the BizTalk SCOM MP, there are 4 perf counters (high process memory...). But I'm not able to find the throttling performance counters (Message publishing throttling state and Message delivery throttling state). May I consi