Help, can I declare an object using a variable name

I need to make a bunch of objects using a for loop, so I was wanting to name the object one of the variables that I read. But I basically want to know if I can do this.
     private Software makeObject(String proName, int proStock, double proPrice,String objName){
          Software objName = new Software(proName,proStock,proPrice);
          return objName;
I want to create a Software object using the objName inputted to it. The software object holds three fields as you can see. The name, num in stock, and price. However it won't let me do this, because it says objName is a duplicate variable. Help would be appreciated

private Software makeObject(String proName, int proStock, double proPrice,String objName){
Software objName = new Software(proName,proStock,proPrice);
... it won't let me do this, because it
says objName is a duplicate variable. Help would be
appreciatedWell, it is duplicate. Change the name of one or the other of those variable names.

Similar Messages

  • How can I remove an object using Photoshop Elements 7?

    How can I remove an object using Photoshop Elements 7?

    You could probably use the 8 point garbage matte in this situation. I personally think the 8-point garbage matte is a bit cumbersome, but it should get the job done.
    1. Use the Razor Blade tool to place a cut before and after the shot with the bottle.
    2. Select the bottle clip.
    3. Press and hold Shift + Option, then drag the bottle clip up one track. This should create a duplicate clip directly above your original clip. (I'll refer to this duplicated clip as bottle2.)
    4. Locate the 8-point Garbage Matte filter and apply it to bottle2.
    5. Locate the Gaussian Blur filter and apply it to bottle2.
    6. Control click bottle1, and uncheck the "Clip Enable" setting from the shortcut menu. This will disable that clip.
    7. Double click bottle2 to load it into the Viewer. Then select the Filter tab.
    8. For the Garbage Matte filter, you'll notice 8 rows of numbers, these are the current locations for the control points, which you should be able to see in the Canvas. Start with point #1, and click the "+" button in the filters area, then in the Canvas click and drag to move the point. When you release the mouse button, you'll need to reclick the "+" button in the filters tab. Repeat these steps until you've isolated the bottle.
    9. Feather the edge of the matte.
    10. Adjust the Blur amount.
    11. Reenable bottle1. Playback the clip and make any necessary adjustments.
    Depending on your experience with Motion, you might also want to try sending bottle1 to Motion, then use Motion to control the layering.

  • Declare, Set, and Use a variable in a SQL Developer Query

    I come from the SQL Server world and am trying to do something very simple: Declare, set, and use a variable in a query. For example:
    Declare @lastPeriod date;
    Set @lastPeriod = (select max(payperiod) from table 1 where payperiod < current_date);
    Select field 1,
    Field2
    From table2
    Where payperiod = @lastPeriod
    The variable is going to be used in more areas in the query which is why I am simply not using a Sub-query in the where clause. I appreciate any assistance.

    This forum is for issues with the SQL Developer tool. You'd get more response in the SQL And PL/SQL forum.
    That said, read up on bind variables and substitution variables.
    Whenever you can you should use Bind variables (e.g. *:lastPeriod* ), as they increase performance. In sqldev, there's no need to declare as you will be prompted to enter them on execution (F9), but you do if you execute as script (F5) (e.g. VARIABLE lastPeriod VARCHAR2(30);).
    Alternatively, Substitution variables (e.g. *&lastPeriod* ) will literally be substituted in your statement before the database parses it. In sqldev, there's no need to declare as you will be prompted to enter them on execution (either F9 or F5), but you can (DEF lastPeriod='TEST'; ).
    Have fun,
    K.

  • Need to get IRole object using Roles Display Name

    Hi,
    I need to get IRole object using Roles Display Name. I had the below code in EP 2004 SP12 and it works. But the same code dont work in EP 2004s SP13
    user = request.getUser();
    profile = request.getComponentContext().getProfile();     
    String strRoles = profile.getProperty("Roles");
    String strRole[] = strRoles.split(",");
    IRoleFactory roleFactory = UMFactory.getRoleFactory();
    String roleUniqueId = null;
    int i = 0;
    boolean flagRedirect = false;
    for(i = 0; i < strRole.length; i++){
         try
              com.sap.security.api.IRole role = roleFactory.getRoleByUniqueName(strRole<i>);
              roleUniqueId = role.getUniqueID();
              if(!user.isMemberOfRole(roleUniqueId, true))
                   continue;
              flagRedirect = true;                    
              break;
         catch(UMException ex)
         catch(IOException ex)
    if(!flagRedirect){
    Where property Roles will have comma separated roles display names like "com.ABC.ortho_reports,com.ABC.lawns_ortho_reports,com.ABC.executive_reports"
    Please advise.

    Thanks Mrudula for the response. Sorry for the delay in responding.
    I get UMEException with the message "Role with uniqueName com.ABC.general not found"
    But it works fine if i specify Role unique role (like pcd:portal_content/com.abc.Marketing_Workbench/com.abc.Roles/com.abc.general).
    We are in the process of upgrading Portal environment from EP6.0 SP12 to EP7.0 SP13. Above scenario works fine in the older environment.

  • Use a variable name within a function?

    here's my function....
    myInterval = setInterval (TTMO,15);
    function TTMO () {
    InstanceNameOfMovieClip._x -= (InstanceNameOfMovieClip._x -
    _xmouse)/10;
    InstanceNameOfMovieClip._y -= (InstanceNameOfMovieClip._y -
    _ymouse)/10-2;
    instead of using the "InstanceNameOfMovieClip" can i use a
    variable name? i've tried, but it doesn't work. i also tried using
    the correct hierarchy too, such as this._parent.VariableName
    too.

    you need to concat the linkage to the movieclip using your
    string variable like this
    var mcName_str = "bigBox_mc";
    this[mcName_str]._x = 20;
    you can use this method for looping through incrementally
    named objects
    for(var i:Number=0;i<10;i++)
    this["mc"+i]._x = 20;
    hope that helped

  • Error while using the variable name "VARIABLE" in variable substitution

    Hi Experts,
      I am using variable substitution to have my output filename set as a payload field value. It is working fine when I am using the variable name as fname, subs etc but channel goes in error when I am using the variable name as "VARIABLE". This is probably a reserved word but i would like to know where i can find a detailed documentation on this. Say things to note / restrictions while using variable substitution.
    This is the error in the channel:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error during variable substitution: java.text.ParseException: Variable 'variable' not found in variable substitution table: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: java.text.ParseException: Variable 'variable' not found in variable substitution table
    Thanks,
    Diya

    Hi Zevik,
    Thanks for the reply. The output file is created correctly by merely changing the variable name to something else and hence the doubt.
    Below is the configuration:
    Variable Substituition
    VARIABLE    payload:interface_dummy,1,Recordset,1,Header,1,field1,1
    Filename schema : TEST_%VARIABLE%.txt
    Output xml structure:
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:interface_dummy xmlns:ns="http://training.eu.unilever.com">
    - <ns:Recordset xmlns:ns="http://training.eu.unilever.com">
    - <Header>
      <identifier>HDR</identifier>
      <field1>001</field1>
      <field2>001</field2>
      <field3>R</field3>
      </Header>
    - <Detail>
      <identifier>A</identifier>
      <field1>000000002</field1>
      <field2 />
      <field3>Doretha.Walker</field3>
      </Detail>
    I thimk my configuration is correct as it is working correctly with the variable name change, However, maybe i missed something !

  • Can't access object using "id" or "name" if created with actionscript

    How can you register an instance of an object with actionscript so that it's id or name value is accessible?
    I included a simple example where a Button is created using mxml and in the same way it is created using actionscript.  The actionscript object is inaccessible using it's "id" and "name" property.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                   creationComplete="application1_creationCompleteHandler(event)">
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                protected function application1_creationCompleteHandler(event:FlexEvent):void
                    import spark.components.Button;
                    var asBtn:Button = new Button();
                    asBtn.label = "actionscript";
                    asBtn.x = 200;
                    asBtn.id = "asButton";
                    asBtn.name = "asButtonName";
                    addElement(asBtn);
                    trace("mxmlButton="+this["mxmlButton"].label); // returns: mxml  label
                    //trace("mxmlButton="+this["asButton"].label); // returns runtime error: ReferenceError: Error #1069: Property asButton not found on TestId and there is no default value.
                    //trace("mxmlButton="+this["asButtonName"].label); // returns runtime error: ReferenceError: Error #1069: Property asButtonName not found on TestId and there is no default value.
            ]]>
        </fx:Script>
        <s:Button
            id="mxmlButton"
            label="mxml label"
            alpha="0.8"/>
    </s:Application>

    Hi Dan,
    It is a very rare occurrence when I miss not being able to access an object (object property, really) using the ["name"] notation for objects created using actionscript.
    In MXML the compiler is conveniently adding an attribute to the class with the same name as the id, so you can conveniently refer to it using the [] notation. While we explicitly specify an application container to use, the MXML compiler creates a custom container which is a derivative of the base container and to that it adds properties for the children declared in MXML. I guess it also effectively calls "addElement" for us when  the container is being constructed.
    Your example assumes that using "addElement" to add the button to the application container is the same as declaring a variable (ie property ). It isn't, so there's no point in looking for an property of the name "as3Button" using the [] notation, because it doesn't exist. The container is managing a collection of children in it's display list and that's not the same as being accessible as properties of the container.
    Generally speaking, accessing properties using the ["name"] syntax isn't necessary.
    Paul
    [edit: you may wonder why "addElement" doesn't conveniently also add the "id" attribute to be an property of the container class. Unfortunately, it can't because the container class would need to be dynamic and it's not. A further complication would be that adding properties at runtime would invite naming clashes at runtime with associated mayhem. MXML can do this because the compiler generates the class and can trap name duplication at compile time.
    Great question, BTW.
    -last edit changed my "attributes" to be "properties" in line with Adobe's terminology]

  • Can't import BIP object using BIPCatlogUtil

    I am using the BIPCatalogUtil script to upload an object to the RC7 BIP server in our OVM environment.
    ade:[ minglin_FAMIGSBL ] [minglin@den65041fwks bin]$ ./BIPCatalogUtil.sh -import source=/home/minglin/view_storage/minglin_FAMIGSBL/BIPCatalogUtil/MyImportExport/bipub/CrmDataMigration/datamodels/DVMValidationDm mode=fusionapp
    The script shows the following output on the command line:
    [import] Connect to https://crm-siebel-mig.us.oracle.com:10622/xmlpserver/ using ProvAdmin
    [import] Import "DVMValidationDm" from "/home/minglin/view_storage/minglin_FAMIGSBL/BIPCatalogUtil/MyImportExport/bipub/CrmDataMigration/datamodels" to "/DataMigration/DomainValueMappings/DVMValidationDm.xdm"
    Command Error: import->importObject
    oracle.xdo.webservice.exception.OperationFailedException: PublicReportServiceImpl::executeUploadReport Failure: Due to unable to create new Report Object as AbsolutePath [DataMigration/DomainValueMappings/DVMValidationDm.xdm] due to java.io.IOException: Stream closedDone.
    The server side trace below shows that the user "ProvAdmin" used to import the object is somehow Impersonate to BIEE as "BISystemUser". Is the failure due to security?
    BIP SERVER log for the import:
    [2011-04-18T09:48:50.186-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.webservice.PublicReportService] [APP: bipublisher#11.1.1] [SRC_METHOD: uploadReportObject] [URI: /xmlpserver/services/PublicReportService] PublicReportService::uploadReportObject Service BEGIN
    [2011-04-18T09:48:50.186-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.webservice.PublicReportServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: initSession] [URI: /xmlpserver/services/PublicReportService] PublicReportService::initSession BEGIN
    [2011-04-18T09:48:50.200-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.data.SawDataSourceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Impersonate to BIEE as BISystemUser, username: provadmin
    [2011-04-18T09:48:50.200-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.data.SawDataSourceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] getting session id from provided credential: BISystemUser
    [2011-04-18T09:48:50.408-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.service.report.saw.SawUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: impersonate] [URI: /xmlpserver/services/PublicReportService] SawUtil.imperonate - saw user: BISystemUser as user: provadmin
    [2011-04-18T09:48:50.408-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.service.report.saw.SawUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: setUserHome] [URI: /xmlpserver/services/PublicReportService] SawUtil.setUserHome - user: provadmin
    [2011-04-18T09:48:50.689-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.service.report.saw.SawUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: setUserHome] [URI: /xmlpserver/services/PublicReportService] SawUtil.setUserHome - user: provadmin, home: /users/provadmin
    [2011-04-18T09:48:50.724-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.security.DirectoryUser] [APP: bipublisher#11.1.1] [SRC_METHOD: init] [URI: /xmlpserver/services/PublicReportService] Inside DirectoryUser.init()....
    [2011-04-18T09:48:50.729-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.security.FusionSecurityHandler] [APP: bipublisher#11.1.1] [SRC_METHOD: integrateUserContext] [URI: /xmlpserver/services/PublicReportService] Enters FusionSecurityHandler.integrateUserContext()
    [2011-04-18T09:48:50.729-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredResourceProviderUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: toStructuredAbsPath] [URI: /xmlpserver/services/PublicReportService] absPath/~provadmin/user~.profile, is report item type: false, is layout template type: false, matches report item reg expr: false, matches style template reg expr: false
    [2011-04-18T09:48:50.729-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /users/provadmin/user\~.profile
    [2011-04-18T09:48:50.850-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.security.FusionSecurityHandler] [APP: bipublisher#11.1.1] [SRC_METHOD: integrateUserContext] [URI: /xmlpserver/services/PublicReportService] Leaves FusionSecurityHandler.integrateUserContext()
    [2011-04-18T09:48:50.850-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.webservice.PublicReportServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: initSession] [URI: /xmlpserver/services/PublicReportService] PublicReportService::initSession END --- Elapse Time = 664
    [2011-04-18T09:48:50.851-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredResourceProviderUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: toStructuredAbsPath] [URI: /xmlpserver/services/PublicReportService] absPath/DataMigration/DomainValueMappings/DVMValidationDm/DVMValidationDm.xdm, is report item type: true, is layout template type: false, matches report item reg expr: true, matches style template reg expr: false
    [2011-04-18T09:48:50.851-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared/DataMigration/DomainValueMappings/DVMValidationDm.xdm/_datamodel.xdm
    [2011-04-18T09:48:50.984-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredResourceProviderUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: toStructuredAbsPath] [URI: /xmlpserver/services/PublicReportService] absPath/~provadmin/_temp/DataMigration/DomainValueMappings/DVMValidationDm/DVMValidationDm.xdm, is report item type: true, is layout template type: false, matches report item reg expr: true, matches style template reg expr: false
    [2011-04-18T09:48:50.984-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /users/provadmin/_temp/DataMigration/DomainValueMappings/DVMValidationDm.xdm/_datamodel.xdm
    [2011-04-18T09:48:51.002-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.TemporaryStorage] [APP: bipublisher#11.1.1] [SRC_METHOD: getFile] [URI: /xmlpserver/services/PublicReportService] temp file is created: /u01/APPLTOP/instance/domains/bi.oracleoutsourcing.com/BIDomain/servers/bi_server1/tmp/_WL_user/bipublisher_11.1.1/to5gma/public/xdo/tmp/xmlp9220322207228573610tmp
    [2011-04-18T09:48:51.006-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.webservice.PublicReportServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: uploadReportObject] [URI: /xmlpserver/services/PublicReportService] Passed-in to CatalogServiceUtil writeZipToCatalog as reportName [DVMValidationDm.xdmz], folderAbsolutePath=[/DataMigration/DomainValueMappings
    [2011-04-18T09:48:51.006-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredResourceProviderUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: toStructuredAbsPath] [URI: /xmlpserver/services/PublicReportService] absPath/DataMigration/DomainValueMappings/DVMValidationDm/DVMValidationDm.xdm, is report item type: true, is layout template type: false, matches report item reg expr: true, matches style template reg expr: false
    [2011-04-18T09:48:51.006-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared/DataMigration/DomainValueMappings/DVMValidationDm.xdm/_datamodel.xdm
    [2011-04-18T09:48:51.021-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredResourceProviderUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: toStructuredAbsPath] [URI: /xmlpserver/services/PublicReportService] absPath/~provadmin/_temp/DataMigration/DomainValueMappings/DVMValidationDm/DVMValidationDm.xdm, is report item type: true, is layout template type: false, matches report item reg expr: true, matches style template reg expr: false
    [2011-04-18T09:48:51.021-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /users/provadmin/_temp/DataMigration/DomainValueMappings/DVMValidationDm.xdm/_datamodel.xdm
    [2011-04-18T09:48:51.031-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.TemporaryStorage] [APP: bipublisher#11.1.1] [SRC_METHOD: getFile] [URI: /xmlpserver/services/PublicReportService] temp file is created: /u01/APPLTOP/instance/domains/bi.oracleoutsourcing.com/BIDomain/servers/bi_server1/tmp/_WL_user/bipublisher_11.1.1/to5gma/public/xdo/tmp/xmlp8058309259715169225tmp
    [2011-04-18T09:48:51.036-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceCatalogServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Loading: Basic
    [2011-04-18T09:48:51.036-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared/DataMigration/DomainValueMappings
    [2011-04-18T09:48:51.114-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /users/provadmin/_temp/DataMigration/DomainValueMappings
    [2011-04-18T09:48:51.124-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceCatalogServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Loading: Basic
    [2011-04-18T09:48:51.124-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared/DataMigration
    [2011-04-18T09:48:51.159-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /users/provadmin/_temp/DataMigration
    [2011-04-18T09:48:51.167-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceCatalogServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Loading: Basic
    [2011-04-18T09:48:51.167-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared
    [2011-04-18T09:48:51.227-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] XDOPrincipal: provadmin, saw curr user: ProvAdmin, [permissions: 0 = /shared,[[
    0 = 65535,
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: SET_OWNER
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: CHANGE_PERMISSIONS
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: FULL_ACCESS
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.CatalogServiceUtil] [APP: bipublisher#11.1.1] [SRC_METHOD: getValidation] [URI: /xmlpserver/services/PublicReportService] CatalogServiceUtil.getValidation: [Resoure type: Folder, Readable: true, traversable: true]
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: SET_OWNER
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: CHANGE_PERMISSIONS
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceFolder] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Unknown privilege: FULL_ACCESS
    [2011-04-18T09:48:51.234-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.StructuredSawMtomResourceProvider] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] real path: /shared/DataMigration/DomainValueMappings/DVMValidationDm.xdm/_datamodel.xdm
    [2011-04-18T09:48:51.245-07:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [APP: bipublisher#11.1.1] [URI: /xmlpserver/services/PublicReportService] Context: 0, code: EUMOQYH6, message: Error outside of Presentation Catalog occurred., details: <sawsoape:Error xmlns:sawsoape="urn://oracle.bi.webservices/error/v1">[[
    <sawsoape:Code>EUMOQYH6</sawsoape:Code>
    <sawsoape:CatalogCode>42</sawsoape:CatalogCode>
    <sawsoape:Message>Error outside of Presentation Catalog occurred.</sawsoape:Message>
    </sawsoape:Error>
    [2011-04-18T09:48:51.246-07:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [APP: bipublisher#11.1.1] [URI: /xmlpserver/services/PublicReportService] Context: 1, code: EUMOQYH6, message: Error outside of Presentation Catalog occurred., details: <sawsoape:Error xmlns:sawsoape="urn://oracle.bi.webservices/error/v1">[[
    <sawsoape:Code>EUMOQYH6</sawsoape:Code>
    <sawsoape:CatalogCode>42</sawsoape:CatalogCode>
    <sawsoape:Message>Error outside of Presentation Catalog occurred.</sawsoape:Message>
    </sawsoape:Error>
    [2011-04-18T09:48:51.246-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [SRC_CLASS: oracle.xdo.servlet.resources.catalog.ResourceCatalogServiceImpl] [APP: bipublisher#11.1.1] [SRC_METHOD: ] [URI: /xmlpserver/services/PublicReportService] Granting permission to role: null
    [2011-04-18T09:48:51.247-07:00] [bi_server1] [ERROR] [] [oracle.xdo] [tid: 63] [userId: <anonymous>] [ecid: 004cJGeVfETFw00Fzzx0g00000wd00010S,0:1] [APP: bipublisher#11.1.1] [URI: /xmlpserver/services/PublicReportService] PublicReportServiceImpl::executeUploadReport Failure: for creating new report object with AbsolutePath[DataMigration/DomainValueMappings/DVMValidationDm.xdm] due to [Ljava.lang.StackTraceElement;@1a41bb8d
    [2011-04-18T09:49:34.150-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 59] [userId: <anonymous>] [ecid: 513ba4b48d285072:581749f3:12f67892892:-8000-0000000000000004,1:32116] [SRC_CLASS: oracle.xdo.servlet.security.BieeKeepAliveTimerTask] [APP: bipublisher#11.1.1] [SRC_METHOD: ] Keep alive for provadmin, provadmin,
    [2011-04-18T09:50:34.149-07:00] [bi_server1] [TRACE] [] [oracle.xdo] [tid: 59] [userId: <anonymous>] [ecid: 513ba4b48d285072:581749f3:12f67892892:-8000-0000000000000004,1:32116] [SRC_CLASS: oracle.xdo.servlet.security.BieeKeepAliveTimerTask] [APP: bipublisher#11.1.1] [SRC_METHOD: ] Keep alive for provadmin, provadmin,

    We can't re-import because the objects were imported first when the BIP server processes were started under root users. After the BIP server processes re-started with a non-root user, we can see all the objects imported previously under root due to file system permission. The re-import failed for the same file system permission issue.

  • Can you create 3D object using Repousse w/ front and back Inflation w/o seam?

    Greetings. I have created a 3d object using repousse in Photoshop (CS5 extended). The original 2d image is circular. I used the Magic Wand Tool to select the 2d image, then 3D/Repousse/Current Selection to create, selecting the inflate (rounded) Repousse Shape Preset with the Depth of 0. It creates the object as expected, except the front-and-back seam has minor irregularities leaving the object with an uneven seam (see image below). The original 2d image was created in Illustrator using the eliptical tool, so it is as regular as possible. I want it to be seamless. The image below shows the rotated object and the very distinct seam.
    Any ideas on how to get rid of, or avoid, that seam?  Thanks much.

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • I can not save new object using JPA entity manager, please help

    I am using Spring 3 with JPA to access database, I tried to persist object, but failed. This is what I do:
    1) Config:
         <tx:annotation-driven transaction-manager="txManager" proxy-target-class="true"/>
         <bean id="txManager"
              class="org.springframework.orm.jpa.JpaTransactionManager">
              <property name="entityManagerFactory" ref="emf" />
         </bean>
         <bean id="emf"
              class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
              <property name="dataSource" ref="dataSource" />
              <property name="jpaVendorAdapter" ref="jpaVendorAdapter" />
              <property name="loadTimeWeaver">
                   <bean
                        class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver" />
              </property>
              <property name="persistenceUnitName" value="memberPU"></property>
         </bean>
         <bean id="jpaVendorAdapter"
              class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
              <property name="database" value="MYSQL" />
              <property name="showSql" value="true" />
              <property name="generateDdl" value="false" />
              <property name="databasePlatform" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
         </bean>
         <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
              destroy-method="close">
              <property name="driverClassName" value="com.mysql.jdbc.Driver" />
              <property name="url"
                   value="jdbc:mysql://localhost:3306/springinaction?createDatabaseIfNotExist\=true&amp;useUnicode\=true&amp;characterEncoding\=utf-8&amp;enableQueryTimeouts\=false" />
              <property name="username" value="root" />
              <property name="password" value="" />
              <property name="initialSize" value="5" />
              <property name="maxActive" value="10" />
         </bean>
    2) Persistence.xml:
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
         version="1.0">
         <persistence-unit name="memberPU" transaction-type="RESOURCE_LOCAL">
              <properties>
                   <property name="hibernate.hbm2ddl.auto" value="validate" />
              </properties>
         </persistence-unit>
    </persistence>
    3) Domain:
    @Entity
    @Table(name = "members")
    public class Spitter {
         @Id
         @Column(name = "id")
         @GeneratedValue(generator = "InvSeq")
         @SequenceGenerator(name = "InvSeq", sequenceName = "group table seq01", allocationSize = 5)
         private int id;
         @Column
         private String firstName;
         @Column
         private String lastName;
         @Column
         private int age;
    gettters and setters...
    4) Dao:
    @Repository
    @Transactional
    public class SpitterDao {
         @PersistenceContext
         private EntityManager em;
    public void addSpitter(Spitter spitter){
              Spitter s = new Spitter();
              //s.setId(null);
              s.setFirstName("Frank");
              s.setLastName("wqrewreqwr");
              s.setAge(45);
              System.out.print("Persisting into tDB here ");
              this.em.merge(s);
              this.em.persist(s);
              //this.em.flush();
              //this.em.getTransaction().commit();
    If I do not call em.flush(), no error throws, and program is executed succesfully. BUT nothing is saved to DB. IF I used em.flush(), I got errormsg - "No Transaction", but the Dao is already annoted with @Transactional.
    Reading through the JPA is no problem.
    I tried different solutions heavily, but no result. Pleaes anyone point out what's the error and why object can not be serialized to DB.
    Thanks very much

    Hello,
    You might try posting on a different forum (possibly a Spring forum) as this one is more specifically aimed at TopLink/EclipseLink which you are not using.
    It appears the em is not associated to the transaction, but I can't suggest much other than point you at an EclipseLink Spring integration demo such as described here
    http://www.vogella.de/java.html
    or http://blog.springsource.org/2008/07/17/using-eclipselink-on-the-springsource-application-platform/
    which might show settings that are missing or incorrect.
    If you switched to using EclipseLink as the JPA provider i would suggest uploading the log file as that might detail how or why it is not being assocated to the transaction.
    Best Regards,
    Chris

  • HELP, CAN"T LOGIN TO COMPUTER, USING OTHER ONE, FORGOT PASSWORD.    HELP!!!

    Please Help Me

    Boot with your install disk, when it starts up, select your language, on the next screen, you'll get menu items, select Utilities, and one of those will be reset password. Do that, select Startup Disk, select the internal HD, and click on restart. See http://docs.info.apple.com/article.html?artnum=106156 for further details.

  • Need help hosting an XE APEX application using a domain name

    Hi,
    I have a pc with win xp and have installed XP with sp2. I have installed XE and upgraded to APEX 3.1. I have apache 2.2 installed. I have a dynamic IP so I have been using dyndns.org. I have just bought a domain name from 123-reg.co.uk. Now I want to link my domain name to my app.
    At the moment my users type http://mydomain.dyndns.com/apex. That open my APEX home page. Ideally I would like my users to type www.mydomain.co.uk and it should default to one of my applications.
    1. How do I get apache to redirect to a default application so users can just type www.mydomain.co.uk?
    I have the following lines in the config file
    <IfModule proxy_module>
    ProxyPass /apex http://127.0.0.1:8080/apex
    ProxyPassReverse /apex http://127.0.0.1:8080/apex
    ProxyPass /i http://127.0.0.1:8080/i
    ProxyPassReverse /i http://127.0.0.1:8080/i
    </IfModule>2. How do I link my domain name from 123-reg.co.uk to dyndns.com to my local pc?
    I sort of got it to work by setting up web forwarding in my domain settting I choi
    Non-framed web-forwarding - The destination URL will remain in the browser's address bar
    but then the url reverts back to mydomain.dysdns.org instead of www.mydomain.co.uk
    Thanks for your help.

    Hello,
    Non-framed web-forwarding - The destination URL will remain in the browser's address barI wouldn't advise using forwarding, since you have control over the DNS set the DNS to point to your IP address rather than their server, this will have a couple of advantages -
    1) You don't incur the 'penalty' of having your users having to go via your hosting companies servers for each request (they communicate directly with your server instead).
    2) You will incur less 'pain', web-forwarding can cause quite a few issues depending on your exact requirements (they might not affect you today or tomorrow, but someday down the line you might get bitten by them).
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • How can I create a function using TestStand variables and call it from a step's Pre-Expression?

    In one sequence I have dozens of Pre-Expressions which are almost the same thing, like this...
    Locals.tagID = (Parameters.singlePhaseEnabled ? "L" : "D") & Str(Locals.phase) & "006"
    ...and the only thing different is that three digit string at the end ("006" will vary). How can I write a function that I can call from a step's Pre-Expression so it would look something like this? ...
    Locals.tagID = MyNewFunction("006")

    You cannot write custom commands for expressions.
    That being said, there are a couple of options:
    Create a subsequence with a single step. Use a parameter of the sequence as "function parameter".
    Create a custom step type including a substep module which implements the function. Add an edit substep to enable the user of the steptype to gracefully change the parameter.
    Store the variable parameter in a local/file global variable and modify the value in each step. This will, at least, keep the "function" the same for every step.
    Norbert

  • Using Dynamic Variable Names

    I am hoping someone can help me out with this.
    I am creating my own record that has the format (id_1, title_1, id_2, title_2...id_50, title_50). I was wondering if there was a way that I could iteratively assign values to each attribute in this record without having to explicitly type out each assignment (partially because the number of columns will vary).
    Any help is greatly appreciated!
    Thx

    I did not think that there was a way to access the attributes within a record/object by using an offset or an index (i.e. set the 4th attribute of the record to 'XXX').
    Here might be a better example for my problem. Let's say the "object" is a car. The car can have 1 to N options associated with it (we'll use 3 for this example). Each option has an ID associated with it as well as text that describes that option. Each car should only have one record that describes all of it's options collectively.
    car_id Opt1_id Opt1_Text Opt2_id Opt2_Text Opt3_id Opt3_text
    'car1' 25 'CD Player' 41 'A/C' 11 '4X4'
    'car2' 25 'CD Player' 40 NULL 10 '2X4'
    So how can I build these records without having to directly assign each value as show below?
    car(1).car_id := 'car1';
    car(1).Opt1_id := 25;
    car(1).Opt1_Text := 'CD Player';
    car(1).Opt2_id = 41;
    car(1).Opt2_Text := 'A/C';
    car(1).Opt3_id := 11;
    car(1).Opt3_Text := '4X4';
    Desired solution:
    car(1).car_id := 'car1';
    For i IN 1..3
    LOOP
    car(1).Opt||i||_id := <some id>;
    car(1).Opt||i||_Text := <some text>;
    END LOOP;

  • Using multiple variable names in a for statement?

    I have searched, and I just can't seem to find how to do something, I do not have the code atm, but easy enough to explain...
    I have a GUI that has 3 rows of 3 fields...
    emp1Name, emp1Phone, emp1Fax
    emp2Name, emp2Phone, emp2Fax
    emp3Name, emp3Phone, emp3Fax
    I also have a tabbed file that has the input for each of these fields, it looks something like...
    Mike 602-111-1111 602-111-1112
    Dave 602-222-2222 602-222-2223
    Bethany 602-333-3333 602-333-3334
    Here is my method...
        private void getFile() {
            myFile = new File("C:/javainput.txt");
            msgField.setText("Welcome!");
            try {
                BufferedReader br = new BufferedReader(new FileReader(myFile));
                String s;
                while ((s=br.readLine())!=null){
                    String f[] = s.split("\t");
                    emp1Name.setText(f[0]);
                    emp1Phone.setText(f[1]);
                    emp1Fax.setText(f[2]);
                br.close();
            } catch (IOException e) {
                msgField.setText("INPUT FILE NOT FOUND!");
        }My question is, how do I cycle through emp1, emp2 and emp3 in a for statement. I tried empName, but that obviously isn't correct.
    Help, or point me to where I can read on this?
    Thank you!
    Edited by: 805764 on Oct 27, 2010 12:10 PM

    Do one thing at a time. First, define your Employee class. Compile it, debug it. Test it. Make sure that you can create Employees, set their names, phone numbers, etc., and get them back.
    Once that works, familiarize yourself with arrays, if necessary, completely separately from your Employee class.
    Once you're comfortable with arrays and with defining a new class (i.e., Employee), write a tiny test program that just, say, creates an array of a certain size and populates it with Employees, and then iterates over it printing out each Employee's information to the console.
    Once that works, set it aside. Now work on a GUI. Start by just displaying one or two hardcoded names and phone numbers. Once that works, add a bit more to it--say by getting that hardcoded information from inside Employee objects.
    And so on.
    Right now you're biting off too much at once. Keep working on one very small new step at a time, only move on to the next step once the previous one is solid, and do the steps independently of each other first, and then combine their respective results. It may sound like a lot of work, but I promise you, in the end, it's faster, easier, and far less frustrating to do it this way.
    At any given step, if you get stuck, post a question here, providing an [url http://sscce.org]SSCCE that shows what you're trying to do, and clearly explain exactly what problems you're having.

Maybe you are looking for

  • Help with export pdf

    I just purchased export pdf but cannot get it to work on a file.

  • Highlight some of the rows in a datagrid

    Hi I'm new to Flex. My question is: Say I have a datagrid and I upload a CSV and show the data on the grid. After that I save these values to the DB. I'm using Arraycollection. Now say all the rows are not imported as a few of them are invalid data.

  • Blocking parts of pdf file

    when i use the drawing markup tools to say, block out portions of sensitive data in a document, the data/image is still being printed although on the screen within Acrobat 7, the area is blackened out. i'm using the highlighter and rectangular drawin

  • Java Cache Issue on SAP MII 12.1 SP09 (Build 116)

    Hi All, Has anybody experienced this issue before? Problem Description This installation is a central MII instance, which is HP hosted in Swindon, UK. On Login we are experiencing a delay in loading the Java Applets, i.e. iGrids, iCharts, iCommands e

  • Creating and binding a reference to a remote EJB

    We have encountered a problem trying to run our Web Services WAR on a separate server/domain to our back-end EJBs. The problem is that we need to bind the remote EJB objects into the Web Services local JNDI tree so that it can access them. We have su