An error when I use InfoView to modify scheduled instances

Is anyone familiar with this error:
An error has occurred: Object reference not set to an instance of an object
In the past if I wanted to make a change to an instance of a report; i.e. change the when, database logon, filters, destination, format, etc. I could use the InfoView, click history, then click reschedule of a report that was in a recurring status, make my changes and schedule it or could modify a report that has already ran.
Now, if I try to modify scheduling detais through the InfoView I get the error:
An error has occurred: Object reference not set to an instance of an object
I now use the Central Management Console to alter distros, which is a hassle at times.
The weird thing is I could use the InfoView one day, the next I couldnu2019t.
Any ideas would be greatly appreciated.
Thanks-

Hi Vancoug,
This problem can occur if an earlier version of Crystal Reports is installed on top of BusinessObjects Enterprise XI Release 2. To verify that this is the cause, run modules.exe and view the version of the DLLs that are loaded by IIS (w3wp.exe). To work properly, version 11.5.x should be loaded. Any previous versions of DLLs will cause this issue.
then the solution would be: Perform a complete uninstallation of Crystal Reports and BusinessObjects Enterprise XI Release 2. Reinstall only XI Release 2 on this machine to restore the .NET InfoView functionality.
Think this would be helpful..
Thanks,
Naveen.

Similar Messages

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • Getting errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation

    Hi sap Gurus,
      I am getting Errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation that Material (144) does not exist but it is alreardy maintained in MM01.
    I dont get how it is coming.and what are the mandatory fields in bapi BAPI_PO_CREATE1 in item level .that is too material only.
    pls let me know .
    thanks in advance.

    Hi,
    Check the sample code..
    report  zpo_test             .
    *DATA DECLARATION
    constants : c_x value 'X'.
    *Structures to hold PO header data
    data : header like bapimepoheader ,
    headerx like bapimepoheaderx .
    *Structures to hold PO account data
    data : account like bapimepoaccount occurs 0 with header line ,
    accountx like bapimepoaccountx occurs 0 with header line .
    *Internal Tables to hold PO ITEM DATA
    data : item like bapimepoitem occurs 0 with header line,
    itemx like bapimepoitemx occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    return like bapiret2 occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    pocontractlimits like bapiesucc occurs 0 with header line.
    data : w_header(40) value 'PO Header',
    purchaseorder like bapimepoheader-po_number,
    delivery_date like bapimeposchedule-delivery_date.
    data : ws_langu like sy-langu.
    *text-001 = 'PO Header' - define as text element
    selection-screen begin of block b1 with frame title text-001.
    parameters : company like header-comp_code default '122' ,
    doctyp like header-doc_type default 'NB' ,
    cdate like header-creat_date default sy-datum ,
    vendor like header-vendor default '2000000012' ,
    pur_org like header-purch_org default 'PU01' ,
    pur_grp like header-pur_group default '005' .
    *sociedad like HEADER-COMP_CODE default '122' ,
    *vendedor like HEADER-SALES_PERS default 'sale person'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters : item_num like item-po_item default '00010',
    material like item-material default '12000000' ,
    tipo_imp like item-acctasscat default 'K' ,
    *pos_doc like ITEM-ITEM_CAT default 'F' ,
    shorttxt like item-short_text default 'PRUEBA BAPI' ,
    grup_art like item-matl_group default '817230000' ,
    plant like item-plant default '3001' ,
    mpe like item-trackingno default '9999' ,
    *contrato like ITEM-AGREEMENT default '4904000003' ,
    *quantity like ITEM-QUANTITY default 1 .
    po_unit like item-po_unit default 'EA'.
    selection-screen end of block b2.
    Par?mnetros de imputaci?n
    selection-screen begin of block b3 with frame title text-004.
    parameters : centro like account-costcenter default '1220813150',
    cuenta like account-gl_account default '6631400' ,
    num_pos like account-po_item default '10' ,
    serial like account-serial_no default '01' ,
    ind_imp like account-tax_code default 'I2' .
    selection-screen end of block b3.
    start-of-selection.
    *DATA POPULATION
      ws_langu = sy-langu. "Language variable
    *POPULATE HEADER DATA FOR PO
    *HEADER-COMP_CODE = sociedad .
      header-doc_type = doctyp .
      header-vendor = vendor .
      header-creat_date = cdate .
      header-created_by = 'TD17191' .
      header-purch_org = pur_org .
      header-pur_group = pur_grp .
      header-comp_code = company .
      header-langu = ws_langu .
    *HEADER-SALES_PERS = vendedor .
    *HEADER-CURRENCY = 'DOP' .
    *HEADER-ITEM_INTVL = 10 .
    *HEADER-PMNTTRMS = 'N30' .
    *HEADER-EXCH_RATE = 1 .
    *POPULATE HEADER FLAG.
      headerx-comp_code = c_x.
      headerx-doc_type = c_x.
      headerx-vendor = c_x.
      headerx-creat_date = c_x.
      headerx-created_by = c_x.
      headerx-purch_org = c_x.
      headerx-pur_group = c_x.
      headerx-langu = c_x.
    *HEADERX-sales_pers = c_x.
    *HEADERX-CURRENCY = c_x.
    *HEADER-ITEM_INTVL = c_x.
    *HEADER-PMNTTRMS = c_x.
    *HEADER-EXCH_RATE = c_x.
    *HEADER-EXCH_RATE = c_x.
    *POPULATE ITEM DATA.
      item-po_item = item_num.
      item-quantity = '1'.
    *ITEM-MATERIAL = material .
      item-short_text = 'prueba bapi_po_create1'.
    *ITEM-TAX_CODE = ''.
      item-acctasscat = 'K' .
    *ITEM-ITEM_CAT = 'D' .
      item-matl_group = '817230000' .
      item-plant = '3001' .
      item-trackingno = '99999'.
      item-preq_name = 'test'.
    *ITEM-AGREEMENT = '' .
    *ITEM-AGMT_ITEM = ''.
      item-quantity = '1' .
      item-po_unit = 'EA'.
    *ITEM-ORDERPR_UN = 'EA'.
      item-conv_num1 = '1'.
      item-conv_den1 = '1'.
      item-net_price = '1000000' .
      item-price_unit = '1'.
      item-gr_pr_time = '0'.
      item-prnt_price = 'X'.
      item-unlimited_dlv = 'X'.
      item-gr_ind = 'X' .
      item-ir_ind = 'X' .
      item-gr_basediv = 'X'.
    *ITEM-PCKG_NO = '' .
      append item. clear item.
    *POPULATE ITEM FLAG TABLE
      itemx-po_item = item_num.
      itemx-po_itemx = c_x.
    *ITEMX-MATERIAL = C_X.
      itemx-short_text = c_x.
      itemx-quantity = c_x.
    *ITEMX-TAX_CODE = C_X.
      itemx-acctasscat = c_x.
    *ITEMX-ITEM_CAT = c_x.
      itemx-matl_group = c_x.
      itemx-plant = c_x.
      itemx-trackingno = c_x.
      itemx-preq_name = c_x.
    *ITEMX-AGREEMENT = C_X.
    *ITEMX-AGMT_ITEM = c_x.
      itemx-stge_loc = c_x.
      itemx-quantity = c_x.
      itemx-po_unit = c_x.
    *ITEMX-ORDERPR_UN = C_X.
      itemx-conv_num1 = c_x.
      itemx-conv_den1 = c_x.
      itemx-net_price = c_x.
      itemx-price_unit = c_x.
      itemx-gr_pr_time = c_x.
      itemx-prnt_price = c_x.
      itemx-unlimited_dlv = c_x.
      itemx-gr_ind = c_x .
      itemx-ir_ind = c_x .
      itemx-gr_basediv = c_x .
      append itemx. clear itemx.
    *POPULATE ACCOUNT DATA.
      account-po_item = item_num.
      account-serial_no = serial .
      account-creat_date = sy-datum .
      account-costcenter = centro .
      account-gl_account = cuenta .
      account-gr_rcpt = 'tester'.
      append account. clear account.
    *POPULATE ACCOUNT FLAG TABLE.
      accountx-po_item = item_num .
      accountx-po_itemx = c_x .
      accountx-serial_no = serial .
      accountx-serial_nox = c_x .
      accountx-creat_date = c_x .
      accountx-costcenter = c_x .
      accountx-gl_account = c_x .
      account-gr_rcpt = c_x.
      append accountx. clear accountx.
    *BAPI CALL
      call function 'DIALOG_SET_NO_DIALOG'.
      call function 'BAPI_PO_CREATE1'
        exporting
          poheader         = header
          poheaderx        = headerx
        importing
          exppurchaseorder = purchaseorder
        tables
          return           = return
          poitem           = item
          poitemx          = itemx
          poaccount        = account
          poaccountx       = accountx.
    *Confirm the document creation by calling database COMMIT
      call function 'BAPI_TRANSACTION_COMMIT'
      exporting
      wait = 'X'
    IMPORTING
    RETURN =
    end-of-selection.
    *Output the messages returned from BAPI call
      loop at return.
        write / return-message.
      endloop.
    Regards
    Sudheer

  • Same thing is happening to me. Adobe has not responded to anyone about this error. It appears that Abobe XI is not compatible with IE 11.  I do not get this error when I use Chrome or Firefox. Only IE 11 does this. I have tried clearing cache and cookies.

    Same thing is happening to me. Adobe has not responded to anyone about this error. It appears that Abobe XI is not compatible with IE 11.  I do not get this error when I use Chrome or Firefox. Only IE 11 does this. I have tried clearing cache and cookies. I even uninstalled and re-installed IE 11. It is still doing it.  I am surprized that a company like Adobe would just ignore our posts and leave us hanging this this.
    Error message is FAILED TO GET DISPATCH FROM IBRWSR2.  Then when you click on it the next error message says:  PHTML IS NULL. You have to click this error message twice and then the PDF finally loads. Happened every time
    Does anyone have a solution since Adobe will not respond?
    As a last resort I will try uninstalling the Adobe Reader XI and install Adobe Reader 10 instead. It seems to work ok. But when I try to install version 10 the Adobe site tries to install XI.  Any ideas?
    JimP08758

    It worked just fine for me.
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • Am getting error  error when am using  wm_concat funcation.

    hi all
    am getting error error when am using wm_concat funcation.
    SQL> DECLARE
    2 ex VARCHAR2(200);
    3 BEGIN
    4 SELECT wm_concat(ename) INTO EX FROM EMP WHERE deptno=30;
    5 DBMS_OUTPUT.PUT_LINE(EX);
    6 END;
    7
    8 .
    SQL>
    SQL> /
    DECLARE
    ERROR at line 1:
    ORA-06550: line 4, column 10:
    PL/SQL: ORA-00904: "WM_CONCAT": invalid identifier
    ORA-06550: line 4, column 3:
    PL/SQL: SQL Statement ignoredThanks for all in advance
    Edited by: maddy on 9 Jan, 2012 10:02 PM

    >
    WM_CONCAT is undocumented and unsupported by Oracle, meaning it should not be used in production systems.
    >
    so change your way
    btw
    for me
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> set serveroutput on
    SQL> DECLARE
      2   ex varchar2(200);
      3   BEGIN
      4   SELECT wm_concat(ename) INTO EX FROM EMP WHERE deptno=30;
      5   DBMS_OUTPUT.PUT_LINE(EX);
      6   END;
      7  /
    ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
    PL/SQL procedure successfully completed.
    SQL> try wmsys.wm_concat

  • Error Refreshing DeskI using Infoview

    Hi all,
    I'm getting the below error when trying to refresh DeskI report using infoview
    "Your request could not be completed because a failure occured while the report was being processed. Please contact your system administrator.[RCIRAS0546]"
    I cannot find any reference to this error code even on google!!!!!!
    The strange thing about this error that is appears with some reports with a specific users
    I'm using BOXIR3 on AIX on ORACLE 9i

    Hi Mahmaud,
    Just wanted to ask a few quick questions:
    1. Is the issue replicable with all the reports you have? have you tried using the report based on sample universes.
    2. Are these new reports or migrtated ones.
    3. Since when have you started to face this issue?
    4. You can go for increasing the Tomcat Heap size.

  • ORA 2005 error when you using ODBC driver of 10.2.0.3

    I am getting following error when connecting Oracle 10.2.0.3 to Oracle 11.1 database from a thrid part application:
    Issue Description. An application using Oracle ODBC driver version 10.2.0.3 to communicate with the Oracle database 11g tries to update the field “SOURCE_CODE” of LONG data type in table “SUBROUTINE” returns the following error.
    ORA-02005: Implict -1 length not valid for the bind or dfeine datatype.
    I updated my client to 10.2.0.4,, error is still present. Does any one know what patch to install to get rid of this error. I cannot modify the third party code.

    What are the system requirements (supported config) of 3rd party app?
    According to the 9.2 Error Messages document,
    >
    ORA-02005 implicit (-1) length not valid for this bind or define datatype
    Cause: A negative length for the define variable was passed to a define function.
    Action: An explicit, non-negative, length parameter must be passed.
    >
    Perhaps you should report this back to vendor as a bug.
    You could also turn on odbc tracing (driver/dsn config) to catch the cuplrit statement.

  • Sharepoint-Hosted App giving FORBIDDEN error when i use REST Api

    Hi,
    I have created a sharepoint hosted app which will create Team site on button click.
    I used REST Api  and  NAPA Tool to develop this app.
    Napa tool gives to things ClientWebpart.aspx and Default.aspx.
    When i run my Default.aspx code is working fine but ClientWebpart.aspx is giving FORBIDDEN error when i am trying to create site.
    Below is the code which i used to create site
    code:
    var hostweburl;
    var appweburl;
    $(document).ready(function () {
    hostweburl= decodeURIComponent(getQueryStringParameter("SPHostUrl"));
    appweburl = decodeURIComponent(getQueryStringParameter("SPAppWebUrl"));
    function createSPWeb() {
    $.ajax(
    url: appweburl +
    "/_api/SP.AppContextSite(@target)/web/webinfos/add?@target='" +
    hostweburl + "'",
    type: "POST",
    data: JSON.stringify(
    'parameters':
    '__metadata': { 'type': 'SP.WebInfoCreationInformation' },
    'Url': 'RestSubWeb',
    'Title': 'RestSubWeb',
    'Description': 'REST created web',
    'Language': 1033,
    'WebTemplate': 'sts#0',
    'UseUniquePermissions': false
    headers: {
    "accept": "application/json;odata=verbose",
    "content-type": "application/json;odata=verbose",
    "X-RequestDigest": $("#__REQUESTDIGEST").val()
    success: successHandler,
    error: errorHandler
    NOTE:This is on sharepoint online.
    Please help
    Regards,
    sudeep

    So in the app you are testing, are you using the FQDN or the NetBIOS name? Bad practice but could you test with both (hard code the absolute URL for testing purposes) then retest your app?
    If you are making a web part based on the new app model this will be an "app part" and probably have the same issues you are experiencing. If this is for something internal rather than a product you are developing to resell then the script editor /
    content editor web part approach could work for you.
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Help!!!!!these is error when i use tcode mr21!!

    dear all:
    i have a problem when i use tcode mr21.
    i want to change the material's price by tcode mr21,when i pree save
    then the system  stop and tell me 'material cc001d000780 have actual or intending standard price'.
      what should i chech for this error?
    i need help !
    thank you a lot !
    best regards!

    Hello Zhao,
    If want to trying to change the material price through MR21 TCode the system will give the error or warning message which has been set in the Customizing.This you can Change and control throgh customizing through T code OKZZ.In this activity you have to give that whether the message as a Error or Information or a warning messgae.
    I thope your problem has been clear with this.Plz assign points.
    Thanx,
    Edu

  • Error : when i use transform

    The problem is still coming after doing an update to Oracle9i 9.2.0.2.0
    When i use transform method, It logs me out. if i do same transform using xmlspy it works.
    html := srcXml.transform(xslFile);
    return html.getclobval();
    where
    srcXml : select extract(value(x), xPath) into srcXml from tbl_main_xml x;
    xslFile : select xsldoc into xslFile from tbl_xsl
    where filename = xslFileName;
    How to open a tar to submit my xml and xsl files.
    Regards
    Error which is coming :
    SQL> select gethtml from dual;
    ERROR:
    ORA-03113: end-of-file on communication channel
    no rows selected

    Hi Mark
    I have opened a tar and submitted my xml and xsl files.
    TAR 2903047.995
    Can you pls have a look.
    Regards

  • CL_RSRD_PRODUCER_PRECALC Error when Printing using Info Broadcasting

    Hi,
    I get the following error when trying to print from the Portal using Information Broadcasting - CL_RSRD_PRODUCER_PRECALC, type PROD.  I am trying to print using PS or PCL not PDF.
    We are running SPS12.  The printer is setup in BW and tested.  All other connections between Portal and BW appear to be working.
    Any ideas?
    Thanks,

    Thanks,  but that note applies to Patch 8 and as mentioned we are running SPS12.
    Basically what happens is we get a blank browser window for some time then the error returns as mentioned in my original post.

  • Getting errors when iam using bapi ' BAPI_PO_CREATE1'

    Hi Sap Gurus,
    I need small info over bapi BAPI_PO_CREATE1.
    While creating Purchase orders using BAPI_PO_CREATE1 it is not allowing me to enter partner function details .I am getting below errors.
    i.e
    1)  it is not allowing to update partner function details.and iam not getting what excact bapi structure for partner function details.here i found 'BAPIEKKOP' in tables option.but these fields are not matching with ME21N screen partner function fields . I want to update PARTNER FUNTCION, PARTNER NAME, DEFALT PARTNER.in bapi structure BAPIEKKOP there is no DEFAULT PARTNER instead of this there is DELETION INDICATOR.
    Pls let me know the exact bapi structure and fields in BAPI.
    2). I am getting the below error when iam posting the Pur.Order
    i.e Item 10 Acct Assgt 1
    Account 460600 does not exist in chart of accounts CANO.
    what does it means? Evenif that Account is existed in chart of account CANO and Even i posted that PO, it showing like above.and iam getting all field in PO like CO area,COST center and G/L account for Account Assingment group 'K' .
    I could not understand why it is giving such type of errors.
    Pls let me know the anwsers for above errors .
    thanks in advance.

    Hi Sap Gurus,
    I need small info over bapi BAPI_PO_CREATE1.
    While creating Purchase orders using BAPI_PO_CREATE1 it is not allowing me to enter partner function details .I am getting below errors.
    i.e
    1)  it is not allowing to update partner function details.and iam not getting what excact bapi structure for partner function details.here i found 'BAPIEKKOP' in tables option.but these fields are not matching with ME21N screen partner function fields . I want to update PARTNER FUNTCION, PARTNER NAME, DEFALT PARTNER.in bapi structure BAPIEKKOP there is no DEFAULT PARTNER instead of this there is DELETION INDICATOR.
    Pls let me know the exact bapi structure and fields in BAPI.
    2). I am getting the below error when iam posting the Pur.Order
    i.e Item 10 Acct Assgt 1
    Account 460600 does not exist in chart of accounts CANO.
    what does it means? Evenif that Account is existed in chart of account CANO and Even i posted that PO, it showing like above.and iam getting all field in PO like CO area,COST center and G/L account for Account Assingment group 'K' .
    I could not understand why it is giving such type of errors.
    Pls let me know the anwsers for above errors .
    thanks in advance.

  • Error when transporting using CMS

    Hi,
    Please ssist.
    We are on PI 7.0 SP17. We want to transport using CMS from Dev box to Prod system. We get to export steps. Select Mode, able to go pass, Then Select Objects We select them and Click on Finish(at bottom of pop-up screen). "correct mark"Then We get Transport Using CMS. Trnsport request generated and released for transport using CMS, Shoose Tools-> System Messages to display result. Then after a few minutes the screen pops a long message.
    "Sent on 11/18/09 at 10:39 AM: CMS (server: http://server:port) cannot export the following transport lists: 
    Export list (send time = 11/18/09 10:39 AM, component = Default Software Component, ID = e10bf190d41d11dead8f00096bdd826a) 
    Details: com.sap.aii.util.misc.api.BaseRuntimeException: Reading GDI ... FAILED. Source is not well formed. SAXParseException at line -1, column -1. Details:
    Message: Generic Exception:
    Stacktrace: com.sap.engine.lib.xml.parser.NestedSAXParserException: Generic Exception: -> com.sap.aii.util.misc.api.BaseRuntimeException: Parsing generic data instance: begin of unexpected element "html"!"
    Regards
    Scharlotte

    Check if it is a password-related issu as mentioned here: Error when defining Xi-track in CMS
    Regards,
    Abhishek.

  • TS3297 Error when I use search function in itunes store and select an artist

    When I use search function in itunes store and select an artist I get this message. Microsoft visual C++ run time library. Prog C:\progfiles\itunes\itunes.exe  R6025 - Pure virtual function call .  It then shuts down itunes and cannot provide a solution.
    Have tried reinstalling itunes but it did not help.  Any other ideas?

    I have yet to find a solution, but as a work around, do not click or select any of the suggested results while you are typing in your search. Type in your search, and press enter.

  • Render Mode GPU generate error when we use window.open()

    Hi,
       Am using AIR 3 beta2 SDK. I set the rendermode descriptor to gpu(<renderMode>gpu</renderMode>) in the application descriptor file. In the application I created a window component which can be opened as a new window within the main application.
    Some lines of code where I load the new window
    var window3DInstance:Window3D=new Window3D();
    window3DInstance.open(true)
    When I run the application and try to open the new window, it generates the following error:
    Error #1508: The value specified for argument renderMode is invalid.
    When we set the rederMode to Auto or cpu, the error disappears and the new window is opened. But I need to render it in gpu mode.
    How we can solve this issue?

    01.  The way that a Monkey Patch is applied depends upon your build/test environment.  You probably use FlashBuilder.  I do not use FlashBuilder, I use FlashDevelop, but the approach is the same, either way.  The principle is that the mxmlc compiler, when it looks to resolve a reference to spark.components.Window, will find two possible resolutions.  Without a Monkey Patch, it would find only one.  Without a Monkey Patch, it would find spark.components.Window only in the airglobal.swc file.  With the Monkey Patch, it will find spark.components.Window because you will add that path to the sources that your project is using.  When the compiler has both a source and a swc entry, it will use the source instead of the swc entry.
    In my build/test environment, the two files are found in my SDK directory:
         G:\FlexSDK\21328
    The swc is at:
        frameworks\libs\air\airgloabal.swc
    The modified source is at:
        frameworks\projects\airspark\src\spark\components\Windows.as
    02.  Wherever your spark.component.Window.as file is located, you should first rename that to Window.org.  Then, you should save the attachment in this email to that location.  To make the modified code visible to your compiler, you will add a sourcepath.  Using my example, the added source path is G:\FlexSDK\21328\frameworks\projects\airspark\src.
    03.  If you open my attachment, you can search for the string 'SSS'.  You will find it only twice -- the patch is trivial.  The first change is to add an additional argument to the constructor for the class.  The second change is to use the value of that argument where Window creates the NativeWindow.  I have set the default value to NativeWindowRenderMode.AUTO, but I do not know if that will work correctly or not.  In my use case, EVERY sub-window is being created by this invocation:
          new Window (new NativeWindowRenderMode.GPU);
    04.  If you read the ASDoc notes for the NativeWindowRenderMode class you will see some rules concerning the requirement of a RenderMode specified in your code having to agree with the RenderMode that is set in the AIR Application Descriptor.  Since my Application Descriptor sets the value of that <RenderMode> parameter to the string 'gpu', I know that my application is obeying the NativeWindowRenderMode class' rules.  What I do not know is how you would create an AIR application in which you had some sub-windows configured for GPU usage and other sub-windows configured for non-GPU usage.  I suspect that under this new architecture, it is not possible to mix and match.  I suspect it is only possible to have one or the other.  Since I must have GPU rendering in at least one of my application's sub-windows, I am setting ALL of them that way even though most of the other sub-windows have no Molehill code running inside them.
    05.  Since Adobe has not published clear documentation concerning these matters, I have no idea whether or not my setting of the default value to NativeWindowRenderMode.AUTO is generally valid.  I have not tested that theory.  If it breaks other applications, then I will simply revert to the un-modified spark.component.Window when working with the broken application(s), and only use the Monkey Patch when working with the important application that requires rendering of Molehill code in a sub-window.

Maybe you are looking for

  • Report Server 2008 R2 incorrect Data in Report (Matrix)

    Hi, i try to build a report based on a stored procedure. Query returns data like: The Matrix should show data per EmplID and FOSGRP (Rows) and per BaseType Column. But the matrix shows data like this (eLearning and ILT are different Basetypes). Rows

  • Migo & Miro Check

    Hi all, My client requirement is to check the pending Miro at the time of Migo. The flow is when end user doing migo, if there is any miro pending for any migo at plant level then the system should propose an error. is it possible in standard or i ha

  • Quality operation confirmation check point

    There are 3 operations in routing, out of that 2nd operation is quality check. If QA person does final confirmation for 2nd operation by accepting 9 nos out of 10 and scrapping one number due to quality issue. During final operation confirmation and

  • Referencing object from another form

    I have two forms. The first one (F) uses some objects from the second one (Lib). There is a reference to item of the form Lib in a program unit of the form F as :something:=:blok.item (blok.item is defined in the form Lib). Although I have put the fo

  • Where is the cursor after calling setFocus on AS created TextInput?

    I am having trouble getting a TextInput field to replace the current selection when the user starts typing without having to first click the field. I have seen that many people face this problem when initially loading the movie, but this is not my ca