Importing flash package

I create an action script block and try to import a flash
package:
import flash.net;
I get an error:
Severity Description Resource In Folder Location Creation
Time Id
2 Definition flash:net could not be found. DLW.mxml DLW line
7 June 20, 2006 4:24:55 PM 172
Why can Flex Builder not see the package? I have reinstalled
twice on different systems, still the same problem...
Has no one else come accross this, or am I just an idiot?

Try
import flash.net.*;
Rebecca - Adobe
mikeDoh wrote:
> I create an action script block and try to import a
flash package:
>
> import flash.net;
>
> I get an error:
>
> Severity Description Resource In Folder Location
Creation Time Id
> 2 Definition flash:net could not be found. DLW.mxml DLW
line 7 June 20, 2006
> 4:24:55 PM 172
>
>
> Why can Flex Builder not see the package? I have
reinstalled twice on
> different systems, still the same problem...
>
> Has no one else come accross this, or am I just an
idiot?
>
>

Similar Messages

  • Importing flash symbols from an external SWF using URLrequest

    Hello.
    I'm trying for several days now to properly import flash symbols into a flex application.
    i can't only @Embed because the swf file that contains the skins will not be available locally so i need to use URLRequest.
    This is what I've got so far.
    1. I created a flash file, lets call it foo.swf that contains several elements in the library and each element has both `Export for ActionScript` and `Export for runtime sharing` on. one of the elements is called 'test' which is a movieclip of an image.
    2. i created a flex project that creates the swf flashSkins.swf that contains the following Wrapper class:
            package
                import flash.display.Sprite;
                    public class Wrapper extends Sprite
                     [Embed(source="foo.swf",symbol="test")]
                        [Bindable]public static var test: Class;
    I tested to make sure that this class properly fetchs symbols from the flash file properly
    using the following code:
        <fx:Script>
            <![CDATA[
                public var wrapper:Wrapper;
            ]]>
        </fx:Script>
            <mx:Image source="{Wrapper.test}"/>
    it loads the image and shows it properly.
    3. I created another swf file that will fetch the flashSkins swf and import the Wrapper class from it. this is where i fail.
            public function loadSkins():void
                    bgLoader = new Loader();
                    var bgURL:URLRequest = new URLRequest('http://files.xpogames.com/flashSkins/flashSkins.swf');
                    bgLoader.contentLoaderInfo.addEventListener(Event.INIT,onLoaded);
                    bgLoader.load(bgURL);
                public function onLoaded(e:Event):void {
                    var clazz:Class = bgLoader.contentLoaderInfo.applicationDomain.getDefinition('Wrapper') as Class;
                    var a:Object = new clazz();
                    theimage.source=a.test;
            ]]>
          </fx:Script>
            <mx:Image id="theimage" />
    I tried using getDefinition with 'wrapper' or 'Wrapper' but on both cases i get an error that the variable is not defined.
    any ideas?

    Did you try using the Event.COMPLETE instead of Event.INIT?

  • Flash package - beginner question

    hi, i have found this flash package to
    convert shapefiles  to flash but I am not sure what needs to be done with the flash package.  I have my
    shapefiles ready to go. Am i supposed to just paste this code in flash
    (making sure the .as is in the same folder as my shapefile) and voila, flash will convert the shapefile to .fla
    or .swf format?  Please explain what i need to be doing. Thanks
    here is the code:
    package {
        import com.cartogrammar.shp.ShpFeature;
        import com.cartogrammar.shp.ShpMap;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.geom.ColorTransform;
        [SWF(width='800', height='600', backgroundColor='#ffffff', frameRate='30')]
         * An example of drawing a simple map from a shapefile using my ShpMap class and Edwin van Rijkom's library.
         * @author Andy Woodruff (cartogrammar.com/blog)
        public class ShapefileExample extends Sprite
            private var map : ShpMap;
            public function ShapefileExample()
                map = new ShpMap("data/STATES.shp","data/STATES.dbf");
                addChild(map);
                map.addEventListener("map loaded",onMapLoaded);
                map.addEventListener("attributes loaded",onAttributesLoaded);
            // Need to wait for the map to finish loading/drawing before it can be resized correctly.
            private function onMapLoaded(event:Event):void
                map.scaleX = map.scaleY = map.width > map.height ? stage.stageWidth/map.width : stage.stageHeight/map.height;
                // just for fun, add a marker to somewhere around my house!
                addMarkerAt( 42.36,-71.11 );
            // To demonstrate retrieving a particular feature and doing something to it. This colors Wisconsin green.
            private function onAttributesLoaded(event:Event):void
                var f : ShpFeature = map.getFeatureByAttribute("STATE_NAME","Wisconsin");
                if (f != null){
                    var cTrans : ColorTransform = new ColorTransform();
                    cTrans.color = 0x009933;
                    f.transform.colorTransform = cTrans;
            // Super basic method for adding a green box at a specified lat/long.
            private function addMarkerAt( lat : Number, lon : Number )  : void
                var box : Sprite = new Sprite();
                box.graphics.lineStyle(1,0,1,false,"none");
                box.graphics.beginFill(0x009933);
                box.graphics.drawRect(-.5,-.5,1,1);
                box.graphics.endFill();
                map.addMarker(lat,lon,box);

    hi, i have found this flash package to
    convert shapefiles  to flash but I am not sure what needs to be done with the flash package.  I have my
    shapefiles ready to go. Am i supposed to just paste this code in flash
    (making sure the .as is in the same folder as my shapefile) and voila, flash will convert the shapefile to .fla
    or .swf format?  Please explain what i need to be doing. Thanks
    here is the code:
    package {
        import com.cartogrammar.shp.ShpFeature;
        import com.cartogrammar.shp.ShpMap;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.geom.ColorTransform;
        [SWF(width='800', height='600', backgroundColor='#ffffff', frameRate='30')]
         * An example of drawing a simple map from a shapefile using my ShpMap class and Edwin van Rijkom's library.
         * @author Andy Woodruff (cartogrammar.com/blog)
        public class ShapefileExample extends Sprite
            private var map : ShpMap;
            public function ShapefileExample()
                map = new ShpMap("data/STATES.shp","data/STATES.dbf");
                addChild(map);
                map.addEventListener("map loaded",onMapLoaded);
                map.addEventListener("attributes loaded",onAttributesLoaded);
            // Need to wait for the map to finish loading/drawing before it can be resized correctly.
            private function onMapLoaded(event:Event):void
                map.scaleX = map.scaleY = map.width > map.height ? stage.stageWidth/map.width : stage.stageHeight/map.height;
                // just for fun, add a marker to somewhere around my house!
                addMarkerAt( 42.36,-71.11 );
            // To demonstrate retrieving a particular feature and doing something to it. This colors Wisconsin green.
            private function onAttributesLoaded(event:Event):void
                var f : ShpFeature = map.getFeatureByAttribute("STATE_NAME","Wisconsin");
                if (f != null){
                    var cTrans : ColorTransform = new ColorTransform();
                    cTrans.color = 0x009933;
                    f.transform.colorTransform = cTrans;
            // Super basic method for adding a green box at a specified lat/long.
            private function addMarkerAt( lat : Number, lon : Number )  : void
                var box : Sprite = new Sprite();
                box.graphics.lineStyle(1,0,1,false,"none");
                box.graphics.beginFill(0x009933);
                box.graphics.drawRect(-.5,-.5,1,1);
                box.graphics.endFill();
                map.addMarker(lat,lon,box);

  • Flex Builder 3 Flash package changed / incomplete?

    Hi,
    I have installed
    Flexbuilder3_b2,
    flex3sdk_b3 &
    air_b3_win_sdk. I am having problems with the
    flash.desktop package in Flex builder 3.
    When I use the Help I can see that in Flex 3 flash.desktop
    are package components flash.desktop.NativeDrag* but when I try to
    use them in code it appears they are not in my flash.desktop
    package. Have flash.desktop.NativeDrag* been replaced by
    flash.desktop.Drag*? I refer specifically to
    NativeDragManager, NativeDragActions, NativeDragOptions.
    Also, I am trying to run an example project which also refers
    to flash.desktop.NativeApplication thus:
    import flash.desktop.NativeApplication;
    NativeApplication.nativeApplication.addEventListener(Event.NETWORK_CHANGE,
    checkNetworkConnection);
    - but NativeApplication is not referred to in the Help as
    part of flash.desktop & not available in the list of
    components. Can anyone tell me what this has been replaced with?
    Thanks in advance,
    Ob

    Hi, your Flex Builder beta 2 is out of sync with your SDKs.
    You should upgrade to FB beta 3.
    NativeApplication is now WindowedApplication, and NativeDrag*
    is the current naming for those classes. Perhaps you are looking at
    the beta 3 AIR help while compiling with the beta 2 SDK paired with
    FB beta 2. Try bringing FB up to date.

  • We auto import flash.utils.trace; which cannot be found

    Steps to reproduce:
    1. Create a flex application with a script tag
    2. Inside the script tag get hints after 'tra'
    3. The first item that appears is 'trace(..rest)' -- select
    that
    Actual Results:
    import flash.utils.trace; is added
    and this error appears in problems pane

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - flash.error package Error classes:
    The flash.error package contains Error classes that are
    considered part of the Flash Player API. In contrast to the Error
    classes just described,
    Link:
    http://livedocs.adobe.com/flex/3/html/11_Handling_errors_14.html
    Yahoo! Flash (R) Blog Blog Archive Yahoo! and Flex: Feel
    Good:
    Dec 13, 2007 ... generates an error (Flex SDK 2 compiler on
    mac OS X) ... came across this skin for Flex via the Yahoo! Flash
    Blog. Its a very clean looking
    Link:
    http://www.yswfblog.com/blog/2007/12/13/yahoo-and-flex-feel-good-in-your-own-skin/
    Error (Flex 3):
    Returns the call stack for an error as a string at the time
    of the error's construction (for the debugger version of Flash
    Player and the AIR Debug Launcher
    Link:
    http://livedocs.adobe.com/flex/3/langref/Error.html
    Error #2025 - Clash between Flex 2 & Flash CS3 :: Thanks,
    Mister!:
    This was a tough error, and probably not the first one that
    will be encountered as Flash and Flex start mingling more in the
    near future.
    Link:
    http://thanksmister.com/?p=64
    Error (Flex 2.0.1 Language Reference):
    package { import flash.display.Sprite; public class
    ErrorExample extends Sprite ... Current page:
    http://livedocs.adobe.com/flex/201/langref/Error.html
    Link:
    http://livedocs.adobe.com/flex/201/langref/Error.html
    Flex Monkey Patches flash:
    Recently we upgraded to flash player 9.0.115. We are still
    using Flex 2.0.1 hfxxx and now we regularly get the following error
    when we run our Flex app:
    Link:
    http://blog.flexmonkeypatches.com/tag/flash/
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Importing flash.filesystem.file

    Hi all
              i was making a functionality to upload an image ..
    the package import flash.filesystem.file works in desktop app but in web app i am unable to import the package..how come this...

    Actually, you can load an image directly into Flash Player using FileReference/load():
    var file:FileReference = new FileReference();
    stage.addEventListener(MouseEvent.CLICK, click);
    function click(e:MouseEvent):void {
      file.browse([new FileFilter("JPEG", "*.jpg")]);
      file.addEventListener(Event.SELECT, fileSelect);
    function fileSelect(e:Event):void {
      trace(file.name)
      file.load();
      file.addEventListener(Event.COMPLETE, fileComplete);
    function fileComplete(e:Event):void {
      var loader:Loader = new Loader();
      loader.loadBytes(file.data);
      addChild(loader);

  • IN-APP PURCHASE and other flash packager limitations

    Hi,
    I am a mobile developer in a major, if not the biggest game company. We are currently working on a game that needs in-app purchase and that will be multi-platform (IPad, IPhone, Android, Pc, Mac, and Web)
    We considered Flash as a multi-platform/screen development tool but the lack of an in-app purchase feature is a huge problem for us since it’s a key element of our game development strategy..
    My question is: Does anyone know any workaround to make it happen?
    If not: Is this feature planned in the future updates?
    That makes me wonder: Can anyone enumerate the flash packager limitation in terms of features?
    Is it possible to create a module in Objective C that would communicate with a flash packaged game?
    I am very surprised that little information can be found on the web since it’s a very important feature for serious game development.

    Hi sakhaarun,
    Apple allows in-app purchases to be used for products you define within the same app.  In other words, you can sell an upgrade, add-on, or 'full version' for your own app, but you can't sell somebody else's app.  (Have a look on the 'Top-Grossing' list to see some examples- if it's free, it probably has in-app purchase so you can see what you sell.)  If you want to sell somebody else's app, you'd need to join Apple's iTunes affiliate program which is not related to in-app purchases.
    When you enable In-App Purchases with Apple, they are bound to your own application- so another developer cannot access them directly.
    However, if you let me know specifically what you are trying to do, I might be able to make a suggestion. If for instance, you have "My App", and you want to sell an upgrade to "My App Pro", it would make more sense to have just "My App", with an in-app purchase that enables all the "pro" features in the main app.
    Feel free to email me any time if you want to chat more.
    -Alex
    Milkman Games, LLC

  • SAP Ides ECC 6.0 Install: Import ABAP - Package SAPDODS Error - ORA-00903

    Experts,
    Good Morning!
    I'm trying to install SAP IDES ECC 6.0 version on a Windows 2008 R2 Server with Oracle 11g DB (11.2).
    System Info: 16GM RAM & 600GB Hdd. Prereqs passed.
    I'm getting the following error during the Import ABAP phase (16 of 29) in the sapinst log:
    "An error occurred while processing option Enhancement Package 6 for SAP ERP 6.0 > SAP Application Server ABAP > Oracle > Central System > Central System( Last error reported by the step: Program 'Migration Monitor' exits with error code 103. "
    Here's the dump of import_monitor.java.log
    java version "1.4.2_32"
    Java(TM) 2 Runtime Environment, Standard Edition (build 4.1.012)
    SAP Java Server VM (build 4.1.012 1.6-b03, Oct 21 2011 14:18:45 - 41_REL - optU - windows amd64 - 6 - bas2:161688 (mixed mode))
    Import Monitor jobs: running 1, waiting 1, completed 141, failed 0, total 143.
    Loading of 'SAPDODS' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 141, failed 1, total 143.
    Here's the dump of import_monitor.log:
    INFO: 2014-07-05 13:42:53
    Data codepage 4103 is determined using TOC file 'C:\Target\Export1\DATA\D010TAB.TOC' for package 'D010TAB'.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is started.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDODS' import package into database:
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    ERROR: 2014-07-05 13:42:54 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is interrupted with R3load error.
    Process 'C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error' exited with return code 2.
    For mode details see 'SAPDODS.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2014-07-05 13:43:21
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2014-07-05 13:43:21
    1 error(s) during processing of packages.
    INFO: 2014-07-05 13:43:21
    Import Monitor is stopped.
    Here's the log of SAPDODS...
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140705134253
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Aug 16 2011 02:26:36
    patchinfo (patches.h): (0.098) DB6: correction for R3load PL 91 on HP-UX and SOLARIS (note 1609719)
    process id 1488
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF16
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/SQLFiles.LST
    (SQL) INFO: C:\Target\Export1\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file DODS.SQL
    (SQL) INFO: DODS.SQL not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: found C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: Trying to open C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: C:\Target\Export1\DB/ORA/DODS.SQL opened
    (DB) ERROR: DDL statement failed
    (DROP TABLE "/BI0/APERS_BOD00")
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    DbSl Trace: Error 903 in exec_immediate() from oci_execute_stmt(), orpc=0
    DbSl Trace: ORA-00903 occurred at SQL stmt (parse error offset=15)
    (DB) ERROR: DDL statement failed
    (  CREATE TABLE [/BI0/APERS_BOD00]         (  [TCTUSERNM] nvarchar(000012)          NOT NULL  ,           [TCTOBJVERS] nvarchar(000001)          NOT NULL  ,           [TCTSYSID] nvarchar(000010)          NOT NULL  ,           [TCTQUACT] nvarchar(000001)          NOT NULL  ,           [TCTOBJNM] nvarchar(000040)          NOT NULL  ,           [TCTTLOGO] nvarchar(000004)          NOT NULL  ,           [RECORDMODE] nvarchar(000001)          NOT NULL  ,           [TCTTIMSTMP] nvarchar(000014)          NOT NULL   )          WITH ( DATA_COMPRESSION = PAGE )   )
    DbSlExecute: rc = 99
      (SQL error 903)
      error message returned by DbSl:
    ORA-00903: invalid table name
    (DB) INFO: disconnected from DB
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140705134254
    FYI - A retry does not help. Also tried to search for the error on scn, google but haven't been able to find the right solution.
    Can you help?
    Regards,
    Cobain.

    Divyanshu - sorry to ask but can you explain why i need to update r3load and r3trans to resolve this error? Just want to understand why I'm doing a correction so I can learn from the same.
    Also, can you clarify the file update process:
    For R3load:
    a) the r3load used by the command is dated 8/16/2011 (location:C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\...)
    b) the r3load i have in my db folder is dated 10/23/2011 (location:C:\Final\Installer\BS7i2011_Installation_Master_\DATA_UNITS\BS2011_IM_WINDOWS_X86_64\ORA\UC\...)
    Do i replace (a) with (b)?
    For R3trans:
    How do I update this file?
    - Cobain.

  • Import support package SAPKB70015 at PI System is stuck on IMPORT_PROPER

    Dear Expert,
    I have some problem when import support package SAPKB70015 at PI System.
    IT had shown as below.
    Main import
    Transport request : SAPKB70015
    System : CXI
    tp path : tp
    Version and release: 372.04.08 700
    sap_dext called with msgnr 4:
    db call info
    function: db_report_interface
    fcode: UPDATE_REPORT
    tabname: TEXT
    len (char): 40
    key: /OSP/CL_CJS_CONTEXT===========CP
    retcode: 4
    Main import
    End date and time : 20081120021353
    Ended with return code: ===> 12 <===
    And I checked the transport log,It shown as below.
    4 ETW690 COMMIT "360444" "53156878"
    3 ETW674Xstart import of "LIMUCLSD/OSP/CL_CJS_CONTEXT" ...
    4 ETW000 1 entry for TADIR updated (R3TRCLAS/OSP/CL_CJS_CONTEXT ).
    4 ETW000 REPOS /OSP/CL_CJS_CONTEXT===========CP A replaced.
    4 ETW000 dev trc ,00000 Thu Nov 20 02:13:53 2008 39924798 39.924798
    4 ETW000 http://dbsloci. ,00000 *** ERROR => Cannot update a LOB column for more than one row piecewise
    4 ETW000 85 39.924883
    4 ETW000 dev trc ,00000 sc_p=0x110f57d68,no=55,idc_p=0x110f70638,con=0,act=1,slen=125,smax=256,#vars=5,stmt=0x111e1f700,tabl
    e=REPOTEXT
    4 ETW000 66 39.924949
    4 ETW000 dev trc ,00000 prep=0,lit=0,nsql=0,lobret=1,#exec=1,dbcnt=2,upsh_p=(nil),ocistmth_p=0x111e20098
    4 ETW000 53 39.925002
    4 ETW000 dev trc ,00000 IN : cols=4,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=1,upto=4294967295,rsize=84,vmax=32,bound=1,iobuf_p=0x111
    0a4220,vda_p=0x111e21a60
    4 ETW000 58 39.925060
    4 ETW000 dev trc ,00000 lobs=1,lmax=4,lpcnt=0,larr=0x111e22180,lcurr_p=(nil),rret=0
    4 ETW000 48 39.925108
    4 ETW000 dev trc ,00000 OUT: cols=1,rmax=0,xcnt=0,rpc=0,rowi=0,rtot=0,upto=0,rsize=0,vmax=32,bound=0,iobuf_p=(nil),vda_p=0x1
    11e222c0
    4 ETW000 55 39.925163
    4 ETW000 dev trc ,00000 lobs=1,lmax=4,lpcnt=0,larr=0x111e22220,lcurr_p=(nil),rret=2
    4 ETW000 47 39.925210
    4 ETW000 dev trc ,00000 UPDATE "REPOTEXT" SET "DATA" = :A0 WHERE "PROGNAME" = :A1 AND "R3STATE" = :A2 AND "LANGUAGE" = :A3
    4 ETW000 51 39.925261
    4 ETW000 dev trc ,00000 RETURNING "DATA" INTO :A4; 29 39.925290
    4 ETW000 dbrepolo ,00735 ***LOG BZY=>unexpected return code 2 calling dbrepolo#? @ 735
    4 ETW000 75 39.925365
    2EETW000 sap_dext called with msgnr "4":
    2EETW000 -
    db call info -
    2EETW000 function: db_report_interface
    2EETW000 fcode: UPDATE_REPORT
    2EETW000 tabname: TEXT
    2EETW000 len (char): 40
    2EETW000 key: /OSP/CL_CJS_CONTEXT===========CP
    2EETW000 retcode: 4
    1 ETP154 MAIN IMPORT
    1 ETP110 end date and time : "20081120021353"
    1 ETP111 exit code : "12"
    1 ETP199 ######################################
    System information
    SAP = NW2004s SR3
    Database = Oracle 10.2.0.2
    OS versions = AIX 5.3
    Tp version = 700 Unicode 179
    R3trans version = 700 Unicode 183
    PS.I checked tp connect return code 0 and R3trans u2013s return code 0
    Could you please suggest how to fix this problem?
    Thank you very much
    Jaturong

    Iu2019ve updated database statistics and then try to reimport the package again. But It canu2019t import package.
    Are you still getting the same error after you retry the statistics update?

  • While Import support package getting error in R/3

    Hi All,
    I am getting one error following error while importing support package in R/3.
    Open data extraction requests
    The system has found a number of open data extraction requests.These should be processed before starting the object import process, as changes to DDIC structures could prevent data extraction requests from being read after the import, thus causing them to terminate. Call the Customizing Cockpit data extraction transaction and process all open extraction requests.
    Can Anybody aware of this error. How do I delete the open data extraction process specified here.
    Thx & Regds,
    SGK

    Hi,
    I think I have to stop extraction process in LBWE or R/3. Can anybody tell me how to stop extraction process.
    Thx & Regds,
    SGK

  • Error getting while importing support package in R/3

    Hi All,
    I am getting one error following error while importing support package in R/3.
    Open data extraction requests
    The system has found a number of open data extraction requests.These should be processed before starting the object import process, as changes to DDIC structures could prevent data extraction requests from being read after the import, thus causing them to terminate. Call the Customizing Cockpit data extraction transaction and process all open extraction requests.
    Can Anybody aware of this error.
    Thx & Regds,
    SGK

    Hi,
    I think I have to stop extraction process in LBWE or R/3. Can anybody tell me how to stop extraction process.
    Thx & Regds,
    SGK

  • Import support package SAPKB70015. Is stuck in IMPORT_PROPER phase

    Dear Expert,
    I have some problem when import support package SAPKB70015 at PI System.
    IT had shown as below.
    Main import
    Transport request   : SAPKB70015
    System              : CXI
    tp path             : tp
    Version and release: 372.04.08 700
    sap_dext called with msgnr 4:
          db call info
    function:   db_report_interface
    fcode:      UPDATE_REPORT
    tabname:    TEXT
    len (char): 40
    key:        /OSP/CL_CJS_CONTEXT===========CP
    retcode:    4
    Main import
    End date and time : 20081120021353
    Ended with return code:  ===> 12 <===
    And I checked the transport log,It shown as below.
    4 ETW690 COMMIT "360444" "53156878"
    3 ETW674Xstart import of "LIMUCLSD/OSP/CL_CJS_CONTEXT" ...
    4 ETW000   1 entry for TADIR updated  (R3TRCLAS/OSP/CL_CJS_CONTEXT                     ).
    4 ETW000 REPOS /OSP/CL_CJS_CONTEXT===========CP         A replaced.
    4 ETW000  [dev trc     ,00000]  Thu Nov 20 02:13:53 2008                         39924798  39.924798
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => Cannot update a LOB column for more than one row piecewise
    4 ETW000                                                                              85  39.924883
    4 ETW000  [dev trc     ,00000]  sc_p=0x110f57d68,no=55,idc_p=0x110f70638,con=0,act=1,slen=125,smax=256,#vars=5,stmt=0x111e1f700,tabl
    e=REPOTEXT
    4 ETW000                                                                              66  39.924949
    4 ETW000  [dev trc     ,00000]  prep=0,lit=0,nsql=0,lobret=1,#exec=1,dbcnt=2,upsh_p=(nil),ocistmth_p=0x111e20098
    4 ETW000                                                                              53  39.925002
    4 ETW000  [dev trc     ,00000]  IN : cols=4,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=1,upto=4294967295,rsize=84,vmax=32,bound=1,iobuf_p=0x111
    0a4220,vda_p=0x111e21a60
    4 ETW000                                                                              58  39.925060
    4 ETW000  [dev trc     ,00000]       lobs=1,lmax=4,lpcnt=0,larr=0x111e22180,lcurr_p=(nil),rret=0
    4 ETW000                                                                              48  39.925108
    4 ETW000  [dev trc     ,00000]  OUT: cols=1,rmax=0,xcnt=0,rpc=0,rowi=0,rtot=0,upto=0,rsize=0,vmax=32,bound=0,iobuf_p=(nil),vda_p=0x1
    11e222c0
    4 ETW000                                                                              55  39.925163
    4 ETW000  [dev trc     ,00000]       lobs=1,lmax=4,lpcnt=0,larr=0x111e22220,lcurr_p=(nil),rret=2
    4 ETW000                                                                              47  39.925210
    4 ETW000  [dev trc     ,00000]  UPDATE "REPOTEXT" SET "DATA" = :A0 WHERE "PROGNAME" = :A1 AND "R3STATE" = :A2 AND "LANGUAGE" = :A3
    4 ETW000                                                                              51  39.925261
    4 ETW000  [dev trc     ,00000]  RETURNING "DATA" INTO :A4;                            29  39.925290
    4 ETW000  [dbrepolo    ,00735]  ***LOG BZY=>unexpected return code 2          calling            [dbrepolo#? @ 735]
    4 ETW000                                                                              75  39.925365
    2EETW000 sap_dext called with msgnr "4":
    2EETW000 -
    db call info -
    2EETW000 function:   db_report_interface
    2EETW000 fcode:      UPDATE_REPORT
    2EETW000 tabname:    TEXT
    2EETW000 len (char): 40
    2EETW000 key:        /OSP/CL_CJS_CONTEXT===========CP
    2EETW000 retcode:    4
    1 ETP154 MAIN IMPORT
    1 ETP110 end date and time   : "20081120021353"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    System information
    SAP = NW2004s SR3
    Database          = Oracle 10.2.0.2
    OS versions      = AIX 5.3
    Tp version = 700 Unicode 179
    R3trans version = 700 Unicode 183
    PS.I checked tp connect return code 0 and R3trans u2013s return code 0
    Could you please suggest how to fix this problem?
    Thank you very much
    Jaturong

    Hello Karthik
    I know the list is long. Unfortunately I have never had such a long list of inactive objects in the system during an update or upgrade. But I believe you can make use of the mass activation program RADMASG0 to have them activated. The other option I can think of is to use the function module RS_INACTIVE_OBJECTS_LIST to list all the inactive objects and see whether they can be mass activated from there. I believe it is possible to activate all from there after selecting a block. (Never tried so I cannot guarantee).
    Regards
    RB

  • OWB Can't Import Existing Package with Collection Data Type as Arguments

    I created a package and compiled it successfully as the follows:
    +++++++++++++++++++++++++++++
    CREATE OR REPLACE PACKAGE PACKAGE_TEST AS
    TYPE Num_LIST IS TABLE of NUMBER INDEX BY BINARY_INTEGER;
    FUNCTION TEST_FUNCTION1 ( arg1 NUMBER, arg2 NUMBER) RETURN NUMBER;
    FUNCTION TEST_FUNCTION2 ( args NUM_LIST) RETURN NUMBER;
    END PACKAGE_TEST;
    CREATE OR REPLACE PACKAGE BODY PACKAGE_TEST AS
    FUNCTION TEST_FUNCTION1 ( arg1 NUMBER, arg2 NUMBER) RETURN NUMBER IS
    ln_sum NUMBER;
    BEGIN
    ln_sum := arg1 + arg2;
         RETURN ln_sum;     
    EXCEPTION
    WHEN OTHERS THEN
    RETURN -10000;     
    END TEST_FUNCTION1;
    FUNCTION TEST_FUNCTION2 ( args NUM_LIST) RETURN NUMBER IS      
         ln_sum NUMBER;
    BEGIN
    ln_sum :=0;
         FOR i IN 1.. args.COUNT LOOP
         ln_sum := ln_sum + args( i );     
         END LOOP;     
         RETURN ln_sum;     
    EXCEPTION
    WHEN OTHERS THEN
    RETURN -10000;     
    END TEST_FUNCTION2;     
    END PACKAGE_TEST;
    ++++++++++++++++++++++++++++++++++++++++
    Then I tried to import the package into OWB (9.2). The problem came: all the package body and
    the specification of TEST_FUNCTION1 were imported, but the package specification of
    TEST_FUNCTION2 couldn't be imported. The IMPORT FILTER gave an error message:
    "TEST_FUNCTION2: Argument Data type is not supported".
    How to resolve this problem? It is very import for our project, since we have to import some
    packages with user_defined collection data types as arguments.
    Thank you.
    Lushu

    Hi Lushu,
    Unfortunately this is indeed not supported and I would not know how to work around this one. The only way I guess that this would work is to not import it, and then use Expressions to call the function with inputs.
    Jean-Pierre

  • Can I use iAd in my flash package?

    Hello.
    I start learning to make iOS application using adobe flash.
    I will make a free application. So I need iAd in my application.
    Can I use iAd in my flash package?

    I have this question also...

  • Importing Inter-package classes

    hello
    I have never had this problem before but I just 'downgraded' to JDK 1.1.8 because the code will be used on my PDA. I am trying to import Inter-package classes but the compiler it cannot find the classes I've imported. This code was working perfectly in j2sdk1.4.2_02
    I think the code is right all files saved in folder graphs and beginning looks like this:
    package graphs;
    import graphs.AxisParameter;

    Yes they are in the same folder with 'package graphs;' in the 1st line,
    i've tried with and without package.class to no avail
    the exact errors i'm getting are
    without the package in front
    error: File .\CustomLabel.class does not contain type CustomLabel as expected, but type graphs.CustomLabel. Please remove the file or make sure it appears in the correct subdirectory of the class path
    with the graphs.CustomLabel i get the following errors
    error: Invalid class File formate: .\graphs\CustomLabel.class, wrong version: 46, expected 45
    2nd error: Class graphs.CustomLabel not found in import.

Maybe you are looking for