problem in creating xml import classes.

I am trying to create a class. In a small trial, I can not succeed to create an instance of my class newly created and import XML data.
I can import xml data into a prototype, but some how the instance does not receive this info.
Can someone help me with a suggestion?

I have a zip with the testfiles (fla, .as, and xml): http://www.flashfocus.nl/forum/attachment.php?attachmentid=5646

Thanks in advance for the help,

To remedy this:
Add a stop() action to the code on frame 1 of the fla.
Insert a keyframe (framework 5 for example) and add the code:
Stop();
trace (asTest1.getProperty1 ());

Add the last line in the onLoad handler in TestClass.as:
_root.gotoAndPlay (5); This is line 54 of the code.

the trace now comes with the correct value

Tags: Adobe Animate

Similar Questions

  • < a > tag is creating error importing XML in InDesign CS5.5

    Hi all

    I do InDesign CS2 to InDesign CS5.5 update.

    I have the indt file. It was designed by using the CS2 and now converted this file using InDesign CS5.5 CS5.5 indt.

    But I am facing a problem while making the export as pdf in version CS5.5.

    I'm following steps below:

    (1) indt open the file.

    2) menu file-> import XML... [This XML file contains < a href = "Web site link" > html tag]

    (3) [no change-defalut option selected] XML import options

    (4) ideally, it should merge XML data with the indt file but this is ask me for feedback and show me "search:" dialogue [below instant check]

    Error.IDCS5.5.JPG

    I did some research and know I get this dialog search because of the < a > tag XML. When I removed the < a > tag XML, then it gives no dialog and XML imported without any problems.

    I get this XML system and I can't manually delete the < a > tag of xml.

    However I was getting any error while making import XML in the CS2 version.

    Please can someone help with this?

    When there is "http://" in the anchor tag, it will jump to the top of this entry window manual indd/indt export to PDF and it will be failed in export by the action script.

    I contacted Adobe software and it was bug. Adobe has confirmed that they would be realease the patch for even some time later, but I have not heard anything. I got the job by removing "http://" using java.

  • Best option for creating XML

    Hello

    I am facing problem,

    I have created the XML file, but I can't see it / exit it.

    Please can anyone suggest what's best way to create xml files?

    (1) create xml with DocumentBuilderFactory and then analyze or

    (2) manually create xml hardcoded and save it to the sd card and then access it for analysis.

    I have continuously variable data text in xml files.

    What approach will be following me more?

    Help, please.

    Thank you

    Françoise.

    Why you are unable to view the XML file? How to read as a byte array and look into the debugger? That way at least you can check the syntax of the XML prologue is correct. Then, you can read in as an array of characters using the appropriate encoding and check the syntax of the entire file.

    Regarding the creation of XML code, the best approach depends entirely on what you start with. You have built a DOM model or or do you have custom data structures you want to encode?

    The XMLWriter class in net.rim.device.api.xml.jaxp is not all that useful for generating XML, because it is designed to be used as a Manager when parsing existing XML - it is more than an XML processor to an XML writer. It's not too hard to write your own code to generate XML; a search on the web will be probably some examples of implementation.

    To find out where to keep the XML on the device: the file system, permanent storage, or RMS all work fine. Your basis in the analysis job it will be to open an input stream on what you've stored, create an InputSource of the stream and feed it to one of the analyzers. In general, unless you really need to generate a DOM model, the approach of SAX parser is much more effective. You can create your custom data directly structures as the analysis takes place, rather than going back in a DOM trying to get information. Still, a web search for "SAX compared to DOM parsing" or a similar collection of key words meet a number of good tutorials on how to do this.

    PS After re-reading your original post, I think you may be confused about something. The DocumentBuilderFactory and the SAXParserFactory are tools to transform XML in an internal data structure. You do not use them to go the other way. For this, you are going to have to write your own code, or find others, you can borrow; I don't think that there is something useful in the RIM API. (XMLWriter can be used to move from the existing to the new, equivalent XML, XML, which is not that it would be useful for you.)

  • Compare PDF fields XML imported in a loop

    Hello

    At first, I am a newbie in Acrobat and Javascript.

    I create a PDF with Acrobat Pro form, my next idea is to fill out the PDF with the related data via an XML Import.

    Real, I can import the xml file and fill the fields PDF hard-coded, it already works via Javascript.

    My real problem is, I want to fill the PDF with the XML data via a loop for, because we want to use this script in several PDF forms and not each form has the same number of fields.

    Here my script to work:

    var xmldoc = util.readFileIntoStream ();

    xmlString var = util.stringFromStream ();

    var myXML = XMLData.parse (xmlstring, false);

    var oNode = XMLData.applyXPath(myXML,"//Customer");

    this.getField("CustomerName").value = oNode.Customer.CustomerName.value;

    this.getField("CustomerStreet").value = oNode.Customer.CustomerStreet.value;

    this.getField("CustomerPlace").value = oNode.Customer.CustomerPlace.value;

    this.getField("CustomerSiteName").value = oNode.Customer.CustomerSiteName.value;

    this.getField("CustomerSiteStreet").value = oNode.Customer.CustomerSiteStreet.value;

    this.getField("CustomerSitePlace").value = oNode.Customer.CustomerSitePlace.value;

    Here my problem

    for (var i = 0; i < oNode.length; i ++) {}

    If (this.getField (?) == oNode.Order.?) {

    this.getField (?.) [i]). value = oNode.Order. ??? [i] .value;

    }

    }

    I hope that everyone understands what I mean and can help me.

    THX in advance

    Concerning

    Dirk

    Hello try67,

    Thank you.

    As a first step, I see, with getNthFieldName and numFields, all fields in the PDF file now, but I have no idea how to do to access the fields of the XML file.

    Thank you in advance.

  • To access the data that is loaded by the XML Loader class

    Hi guys,.

    I have trouble accessing the data loaded by external class.

    Here is my code:

    Main class:

    package {}

    import flash.display.MovieClip;
    nucleus of import. XMLLoader;

    SerializableAttribute public class Main extends MovieClip {}

    var projectSetupMainMenuXML:Boolean = true;

    public void Main() {}

    If {(projectSetupMainMenuXML)
    var mainMenuXML = new XMLLoader ("menu.xml");
    }
    }
    }
    }

    XMLLoader class:

    package base {}

    import flash.display. *;
    import flash.events. *;
    flash.net import. *;

    public class XMLLoader {}
    private var mainMenu:XML;
    private var urlLoader:URLLoader;

    public function XMLLoader (mainMenuPath:String) {}
    var urlRequest:URLRequest = new URLRequest (mainMenuPath);
    urlLoader = new URLLoader();
    urlLoader.addEventListener (Event.COMPLETE, completeListener);
    urlLoader.load (urlRequest);
    }

    private void completeListener(e:Event):void {}
    mainMenu = new XML (urlLoader.data);
    e.target.removeEventListener (Event.COMPLETE, completeListener);
    }
    }
    }

    Now, I want to create another external class (called MainMenu) which will be launched from the main class.

    This class should create the menu based on the loaded XML class.

    My question is, how can I make use of the loaded content through the XMLLoader class within the class MainMenu XML?

    Thank you.

    I think you have to use XMLLoader as a singleton - with the properties and static methods. In this way, you can load XML only once and make available XMl data to any object in the application.

  • How to create a new class

    Hello

    I am trying to create a new class called Questions, which has two properties (type and condition).
    Action script is saved in the myComponents the project folder.

    When I compile the application, I get the following error message:
    "1172 definition myComponents:Question is not found."
    Why?

    How to call a constructor for a new class, which is not an extension of an existing class?

    Concerning
    / Acke

    //-----------Class----------//
    myComponents package
    {
    Import all classes in the package mx.events
    Mx.events import. *;

    public class {Question

    Public constructor.
    public var {Question()}
    Call the constructor of the superclass.
    Super();
    }
    Define properties and methods.
    Define the public vars.
    public var type: string;
    public var status: string;
    }
    }

    //------Main----------//
    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' layout = "absolute".
    xmlns:mycomp = "myComponents.*" >

    < mx:Script >
    <! [CDATA]
    Import mx.controls.Alert;
    Import mx.events.CloseEvent;
    Import myComponents.Question;
    etc, etc...

    Stupid me!

    I have two projects, Quest and AutoQuest, and I recorded it under that bad!.

    Thus, it is important now as it should.

    Thank you all for your efforts.

    Concerning
    Acke

  • Need help with XML import

    I created the project using jdevelopr.
    locally, it works fine.
    I moved all my files from my development instance.

    trying to IMPORT an xml file using the following observation.

    When I try to import xml AU_TOP rum.

    I am getting error "java denied execute permission.

    Same as I did chmod - A - R 777
    Should I do something else?

    If I run of webui where my pg.xml is available, I get java not found error.

    PL. Let me know where I need to run this file

    Also, pl. check the import xml command I use to import


    Java oracle.jrad.tools.xml.importer.XMLImporter
    /oradev2/test/testcomn/Java/xxhr/Oracle/Apps/xxhr/selfservice/personalaction/WebUI/XXHRPersonalActionSearchPG.XML
    / oradev2/test/testcomn/java/xxhr/oracle/apps/xxhr/selfservice/personalaction/webui - rootdir/userId - apps
    rootPackage - / oradev2/test/testcomn/java/xxhr/oracle/apps/xxhr/selfservice/personalaction/webui /.
    apps - username username-password apps - dbconnection ' (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=10.1.4.57) (PORT = 1528)) (CONNECT_DATA = (SID = dev))) ".


    PL. Let me do I need to do any authorization or what the problem is.

    pl in a timely response.

    Thanks in advance
    Siva

    Yes, you can run it from any path (if you all the access path to the command)

  • Substitution of the class, how to create the child class and then the base class

    I started to write a program for a DMM smart, that the problem is all versions of DMM greet the change company communication.

    My idea is to write a child class for each version, DMM and each Subvi child will replace the Subvi base class.

    My problem is, I first want to create a child class and after I see everything is working, start creating the base class. in this way, I'll see if think the right way.

    My question is

    How can I create a child class and then create the base class and configure the Subvi class of the child to be the substitution of the base class?

    I tried searching in the property of the class, but I don't see anything.

    Thank you

    This can be done and I did on occasion.

    You create the base class with the methods of dynamic distribution, you need (Connector components must be identical to those of the class of the child).

    Set then the legacy of the class inherits this base class.  If your method is defined as a dynamic distribution method in the parent, you will probably now have some errors (unless your method of child was already DD, in which case you might be OK already).

    To change the inheritance of a class, right-click on the properties of the class in your project, and then select Properties.  According to me, the tree of estate is at the lower end of the property.  Click on the 'legacy of change' (or something similar) to choose the class from which you now want to inherit.

  • Problem to create the project

    Hi everyone ,.

    I use Eclipse IDE 3.6 Helios and plug in BB "BlackBerry_JDE_PluginFull_1.1.2.201004161203 - 16.exe" to develop the application but when I create or import demonstration projects, I found a red error the file 'BlackBerry_App_Descriptor.xml '. So, I look down 'Tab' and he writes...

    «InvalidRegex: value of mires "([a-zA-Z_]{1,63}[\s-a-zA-Z_0-9.]» 0.63 {} [---]?) *' is not a valid regular expression. The error reported was: "-' is an invalid character range. Write '--'. "" in column 19'. "."

    When should I fix this?   I am beginner in BB app development.

    THX,

    MAZ

    THX rcmaniac,

    I have create one project BB. But now I change Eclipse 3.4 and BB JDE plugin is 'BlackBerry_JDE_PluginFull_1.0.0.67.exe' (an older version which is only supported for the 3.4, I think that ). So I can create project BB without error!  (because no "BlackBerry_App_Descriptor.xml" don't file when I create the project in this version)

    THX,

    MAZ

  • Signatory of bar - Debug tokens, create fails, import does nothing

    In Eclipse, Preferences, BlackBerry, BlackBerry SDK tools, Bar signatory both create and import fail (in a slightly different way). It comes with the new tools of 1.3 released this week.

    Create has always been broken (for me both v1.2 and 1.3 tools), where it still shows the certificate of loading error: java.io.IOException: key topic, java.security.InvalidKeyException: invalid key CE.

    Advice on another forum entry, work-arround is to manually create a debugging token using the blackberry-debugtokenrequest tool.  This process with an import, worked under Tools v1.2 (at least once).  Now with a new device I created a new token of debugging with the new device ID and he gave a new file name. When I try to import into. I get the 'in progress' for about 5 seconds operation"and then the dialog box disappears and information has NOT been added to the list of tokens of Debug (so I can't download the token).

    During the process, I have only the new attached device (a Dev B device with active debugging).  I use Windows 7 x 64 SP1 with Eclipse SP2 Indigo and BlackBerry taken into 1.3.0.201209131728, Java 7 update 7.  I have all the latest update in Eclipse. Another note, during an attempt to create, it automatically detect the device and shows the right PIN device if you can see the device.

    Any ideas?

    Good idea. I couldn't find any 32-bit command-line tools, but I just copied the files in the 64-bit directory in a folder in the "Program files (x 86)" assumming they run in both modes. I managed, but I don't know if the "32-bit" operation makes no difference. I came across the same problem as before, but I understand an alternative that worked as follows. It is a different process as described in the documentation.

    Start with a token created debug created via the command line utility (blackberry-debugtokenrequest) for your specific device (in my case, a Dev Alpha B). Have the device connected via the USB port and within the parameters of the device, secuity, Mode of development.

    In the Eclipse-> BlackBerry preferences-> BlackBerry tools-> target.  The (default) usb item should appear in the list. Select it and then press the button of Details Token debug, and then select Import.  Point to the file debug token you already created.  Once completed, he must invite to download the token to the device, I did. Success at last!

  • Error importing metadata when you create the import profile

    Hi guys,.

    I am creating an interface to metadata (out-of-the-box) to Fusion (source) to a HFM application. I have successfully completed the following activities:

    -Registry system source

    -Configure entities accounting source

    -Initialize the source system

    -Target registry system

    -Create the import format (Fusion of application HTP) that corresponds to the account dimension in the target application the COA account segment from the source system.

    -Create the location, connected to the high import format

    -Create the metadata rule

    When I try to run the rule of metadata, it triggers the following error in the step "design EPMA import profile for dimension ERPI system profile 5:

    2015-03-09 13:04:32, 456 [AIF] INFO: [exportMetadataToEPMA: 201] end (java.lang.Exception: javax.xml.rpc.soap.SOAPFaultException: System.Web.Services.Protocols.SoapException: server was unable to process request.---> System.FormatException: input string is not in a correct format.)

    See below the FDM application log:

    2015-03-09 13:04:25, 716 [AIF] DEBUG: CommDim.getRuleInfo - END
    2015-03-09 13:04:25, 717 DEBUG [AIF]: AIFUtil.callOdiServlet - START
    2015-03-09 13:04:25, 941 [AIF] DEBUG: the registry has been found!
    2015-03-09 13:04:26, 006 INFO [AIF]: Services of EPMA Web URL: http://EPM11124V2:19000 / hyperion-bpma-Server
    2015-03-09 13:04:26, 007 [AIF] DEBUG: establishing a session now...
    2015-03-09 13:04:29, 523 INFO [AIF]: the session Id is: fa0ecc96-m-e2ee-f7be-8b8b6d0112d8
    2015-03-09 13:04:31, 305 [AIF] INFO: creation of profile import:
    2015-03-09 13:04:32, ERROR 451 [AIF]: error encountered
    2015-03-09 13:04:32, ERROR 453 [AIF]: error encountered
    2015-03-09 13:04:32, 456 [AIF] INFO: [exportMetadataToEPMA: 201] end (java.lang.Exception: javax.xml.rpc.soap.SOAPFaultException: System.Web.Services.Protocols.SoapException: server was unable to process request.---> System.FormatException: input string is not in a correct format.)

    Server stack trace:
    at System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)
    at System.Number.ParseInt32 (String s, NumberStyles style NumberFormatInfo info)
    At Hyperion.DimensionServer.Proxies.ImportsProxy.DataSourceInfoByName (Guid sessionID String dataSource)
    to Hyperion.DimensionServer.Proxies.ImportsProxy. <>c__DisplayClass1. b__0() < CreateImportProfileForApplication >
    At Hyperion.DimensionServer.Global.HandleThreadContext (Guid sessionID, method ThreadContextDelegate)
    At Hyperion.DimensionServer.BaseProxy.HandleAPICall (Guid sessionID, method ThreadContextDelegate)
    At Hyperion.DimensionServer.Proxies.ImportsProxy.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    to System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage (md IntPtr, Object [] args, object, Int32 methodPtr, Boolean, Object fExecuteInContext Server [] & outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage (Int32 methodPtr, IMessage msg, Boolean fExecuteInContext)

    Exception thrown once again [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage (IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke (MessageData & msgData, Int32 type)
    At Hyperion.DimensionServer.Interface.IImports.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    At Hyperion.DimensionServer.WebServices.Imports.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    ---End of inner exception stack trace---)
    2015-03-09 13:04:32, 489 [AIF] DEBUG: AIFUtil.callOdiServlet - END
    2015-03-09 13:04:32, 498 FATAL [AIF]: error in CommDim.loadMetadata
    Traceback (most recent call changed):
    Folder "< string >", line 4185 in loadMetadata
    RuntimeError: java.lang.Exception: javax.xml.rpc.soap.SOAPFaultException: System.Web.Services.Protocols.SoapException: server could not process the request. ---> System.FormatException: input string is not in the correct format.

    Server stack trace:
    at System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)
    at System.Number.ParseInt32 (String s, NumberStyles style NumberFormatInfo info)
    At Hyperion.DimensionServer.Proxies.ImportsProxy.DataSourceInfoByName (Guid sessionID String dataSource)
    to Hyperion.DimensionServer.Proxies.ImportsProxy. <>c__DisplayClass1. b__0() < CreateImportProfileForApplication >
    At Hyperion.DimensionServer.Global.HandleThreadContext (Guid sessionID, method ThreadContextDelegate)
    At Hyperion.DimensionServer.BaseProxy.HandleAPICall (Guid sessionID, method ThreadContextDelegate)
    At Hyperion.DimensionServer.Proxies.ImportsProxy.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    to System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage (md IntPtr, Object [] args, object, Int32 methodPtr, Boolean, Object fExecuteInContext Server [] & outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage (Int32 methodPtr, IMessage msg, Boolean fExecuteInContext)

    Exception thrown once again [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage (IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke (MessageData & msgData, Int32 type)
    At Hyperion.DimensionServer.Interface.IImports.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    At Hyperion.DimensionServer.WebServices.Imports.CreateImportProfileForApplication (Guid sessionID, String name, description of the chain, ImportType importType, dataSourceName, index of the ApplicationLocator String)
    -End of the exception stack trace internal-

    2015-03-09 13:04:32, 568 FATAL [AIF]: error in the load metadata
    2015-03-09 13:04:32, 641 [AIF] INFO: end process FDMEE, process ID: 201

    I'm new type of debugging using FDMEE, but I am not mistaken, he finds a string where I shouldn't be finding a string somewhere in the metadata? I looked in the source system metadata, but I see not all metadata 'string. ' Could someone maybe advise and point me in the right direction on how to handle this error (which causes the error, where to look, etc.). Any help would be appreciated kindly!

    Kind regards

    Gerard

    Hello

    Looks like you might need to work on ensuring that FDMEE can talk to EPMA.

    Also take a look at the following doc:

    FDMEE: Export of metadata for EPMA fails (Doc ID 1633771.1)

  • -Dashboard - content cannot create/delete/import/export dashboards

    Hello

    (1) Just deployed my first instance 2777062 vRops 6.0.2 (master node).

    Connect with the admin user, or any other user, I have create which has all permissions to content, I don't see the create/delete/Import/Export 'Actions' in view 'content-> dashboard.

    The only actions, I see are reorganize/autoswitch, managing analytical dashboards share dahsboars. Add dashboards for the House and remove the dashboards of the home is greyed out...

    In views, reports I see these actions.

    Ask yourself what is the problem, because as an administrator, I should be able to do everything?

    I tried to create a new user with the role of ContentAdmin as well.

    (2) another question: can I create a role in vROps and have it propagated in the global permissions in vCenter Server tab, so I can assign this custom group to users? Seems that the default groups are available in the "Global" section in vCenter SErver.

    Erik

    Hi Erik,

    Please recheck license, if you use a Standard key license, these operations will be unavailable to you.

  • Problems with export and import

    I have a problem with export and import

    Here's what I did...
    exp "'/ as sysdba'" PARFILE=parfile.txt
    
    PAFILE
    
    TABLES=user1.Table1
    file=Table1_1006.dmp
    LOG=Table1_1006.log
    query="where to_char(processeddate,'YYYYMMDDHHMISS') between to_char(to_timestamp('1911-01-01 00:00:00','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS') and to_char(to_timestamp('2011-10-06 16:46:26','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS')"
    Here is my log export
     set and AL16UTF16 NCHAR character set
    
    About to export specified tables via Conventional Path ...
    Current user changed to user1
    . . exporting table               Table1   16019049 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.
    Then I started to import
    /database2/rdbm15> imp "'/ as sysdba'" file=Table1_1006.dmp fromuser=user1 touser=user1 tables=Table1 log=imp_Table1_1006.log
    
    Import: Release 10.2.0.5.0 - Production on Thu Oct 6 19:57:01 2011
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    . importing user1's objects into user1
    IMP-00015: following statement failed because the object already exists:
     "CREATE TABLE "Table1" ("APPROVALTRACEID" VARCHAR2(64), "REQUESTOR"
     "EID" VARCHAR2(9), "EID" VARCHAR2(9), "FIRSTNAME" VARCHAR2(32), "LASTNAME" V"
     "ARCHAR2(32), "MIDDLEINITIAL" VARCHAR2(8), "TIER" VARCHAR2(3), "JOBTITLE" VA"
     "RCHAR2(64), "JOBCODE" VARCHAR2(10), "EMPLOYEETYPE" VARCHAR2(2), "CONTRACTOR"
     "TYPE" VARCHAR2(2), "EMPLOYEESTATUS" VARCHAR2(2), "COSTCENTER" VARCHAR2(10),"
     " "COSTCENTERDESCRIPTION" VARCHAR2(50), "CONTRACTENDINGDATE" VARCHAR2(8), "A"
     "CCOUNTSTATUS" VARCHAR2(2), "LOGINID" VARCHAR2(70), "APPLICATIONGROUP" VARCH"
     "AR2(50), "APPLICATIONNAME" VARCHAR2(50), "APPLICATIONID" VARCHAR2(12), "LEV"
     "EL1" VARCHAR2(512), "LEVEL2" VARCHAR2(512), "LEVEL3" VARCHAR2(512), "LEVEL4"
     "" VARCHAR2(512), "LEVEL5" VARCHAR2(512), "PROFILECODE" VARCHAR2(50), "PROCE"
     "SSEDDATE" DATE, "APPROVERMANAGEREID" VARCHAR2(9), "APPROVERMANAGERDELEGATEE"
     "ID" VARCHAR2(9), "APPROVERT4MANAGEREEID" VARCHAR2(9), "APPROVERT4MANAGERDEL"
     "EGATEEID" VARCHAR2(9), "APPROVERAPPOWNEREID" VARCHAR2(9), "APPROVERAPPOWNER"
     "DELEGATEEID" VARCHAR2(9), "PERFORMEREID" VARCHAR2(9), "NATIONALID" VARCHAR2"
     "(30), "COUNTRYCODE" VARCHAR2(9), "PASSPORTID" VARCHAR2(20), "DATEOFBIRTH" V"
     "ARCHAR2(15), "CITYOFBIRTH" VARCHAR2(15), "VENDORNAME" VARCHAR2(50), "VENDOR"
     "MANAGERNAME" VARCHAR2(50), "VENDORMANAGERID" VARCHAR2(9), "VENDORADDRESS1" "
     "VARCHAR2(100), "VENDORADDRESS2" VARCHAR2(100), "VENDORSTATEPROVINCE" VARCHA"
     "R2(15), "VENDORCOUNTRYCODE" VARCHAR2(9), "VENDORZIPPOSTALCODE" VARCHAR2(9))"
     "  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 4076863488 "
     "NEXT 1048576 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)            "
     "                   LOGGING NOCOMPRESS"
    Import terminated successfully with warnings.
    but I have no lines of base2
    [server1]database2
    /database2/rdbm15> sqlplus / as sysdba
    
    SQL*Plus: Release 10.2.0.5.0 - Production on Thu Oct 6 19:59:17 2011
    
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    
    
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> select count(*) from user1.Table1;
    
      COUNT(*)
    ----------
             0
    
    SQL> exit
    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for HPUX: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    Published by: user3636719 on October 6, 2011 17:23

    could ignore = y, and then try again. It should work

    Concerning
    Julien

  • Error when I import classes using the JSP page directive

    Hi all!

    I installed JDeveloper 11 g (11.1.1.3.0)

    My applications are found in the C:\dir (JDEV_USER_DIR = C:\dir)
    I created the application "Appliation1". In it, I created 2 projects (Project1, inside session entity beans and other classes of java;) Project2, inside JSP).
    I want to import classes of Project1 in Project2 using the following directive:
    ----------------------------------------------------------------------------------------
    < % @ page contentType = text/html"; charset = windows-1252 ".
    import="Project1.*"% >
    ----------------------------------------------------------------------------------------
    so in Project2 project properties set the way to classes in Project1.
    When I run JSP, an error has occurred:
    Error (4.9): the Project1 to import cannot be solved.

    Maybe that I am not correctly defined the path to classes

    Thanks in advance.

    Hello
    Try the project properties/project source paths/resources
    or
    Properties/project dependencies

    then restart

    concerning

  • Table of contents via XML import?

    I understood how to export the table of contents via XML.  The generated .xml contains fairly simple tags is easy to understand and would be simple to build in another tool.  There are XML import, but he seems to want to only import the XML file as content, and not as the table of contents.

    If I want to create this new table of contents in the format XML file using another tool and then import it into the RoboHelp project to replace the void that is, after I imported a bunch of WinHelp files, how can I do this?  I did a lot of research in the application, within the help, etc., online search and come up emptyhanded.

    Am I stuck at absolutely having to create and maintain the table of contents in RoboHelp?

    That's the one.

    See www.grainge.org for creating tips and RoboHelp

Maybe you are looking for

  • My firefox is the latest version, but will not update

    My firefox is the latest version, but will not update

  • How can I transfer photos from film on iPad mini iMac

    I have pictures on my camera iPad mini roll which do not seem to have been downloaded on my iMac. I often will have pictures from an Sd Card (with adapters) or wifi from my camera to my iPad but not, when I got home, of course to my iMac. I need to m

  • Battery drains to 4.4.4

    battery end if fast in 4.4.4 compared to 4.4.2 update... any solution?

  • Login and password of the windows Server2008 trial

    Recently, I downloaded Windows Server 2008 R2 with the first version of service pack 1. Never happened to me the famous 3 messages with resources to guide me, I ask you what login and password should I use to access inside the trial version because I

  • Task not named which opens on the taskbar

    Original title: there's a task without a name that opens on the bar spots. When I click on the taks bar nothing opens on the screen. How can I find out what the application open?Click left or right or anything like that on the screen opens. Task Mana