Object 7.2.0 Questions

Hi,all:Does new version Object API provide treeview control (just like outline tree view control in old version) for WEB FORM? I found out there is esstreview class, but looks it's for windows form.Another question is: is there any way we can handle Microsoft Web Component( spreadsheet and chartspace) events(like double click) in WEB FORM? in windows form, it's not a problem, but for web form these events are only in client side( HTML ) cant trigger server side function ( vb.net or c# code). I doubt perhaps there is no way we can do that.

Object API provide treeview control (just like outline tree view control in old version) for WEB FORM?<<No, you could write the functionality, though, using the EssMemberInfo class (look at the Hyperion.Objects.Essbase.Common.EssMemberInfo.RunMemberQuery method to get back the children of a given member quickly to build your own webform tree; the EssTreeView class using this method internally).>>Another question is: is there any way we can handle Microsoft Web Component( spreadsheet and chartspace) events(like double click) in WEB FORM? in windows form, it's not a problem, but for web form these events are only in client side( HTML ) cant trigger server side function ( vb.net or c# code). I doubt perhaps there is no way we can do that. <<I can't remember if you can handle those events in a webform; it seems as though you could but I can't remember for sure.. Look at the ASP.NET sample that ships with objects for alternative methods for simulating those 'essbase' oriented events (using buttons instead of clicks).Tim TowApplied OLAP, Inc.

Similar Messages

  • 3D repousse objects and linking / rotation question

    In Photoshop CS5 Ext, I have 4 layers, each with a 3D repousse object on them. I want to somehow link them, so that I can rotate the object as a whole (or the camera), but also want to still be able to manipulate the objects separately (like rotate and position). Is there a way to do this in PS, or does this need to be done in another program like Flash? Tried unsuccessfully using merge 3D, linking, grouping...
    Thanks,
    John

    Thanks Steve for the reply and screenshot.
    I see that 3D panel will let me rotate, etc., but it doesn't look like I will be able to rotate objects separately using animation from the timeline, will it? That is another thing I forgot to mention that I want to do, is be able to animate (rotate and move) the objects separately.
    Thanks,
    John
    From: SG... <[email protected]>
    To: PSJK2011 <[email protected]>
    Sent: Sunday, September 25, 2011 9:37 PM
    Subject: 3D repousse objects and linking / rotation question
    Re: 3D repousse objects and linking / rotation question created by SG... in Photoshop Windows - View the full discussion
    Hi John,
    Merging 3D layers should be what you want. When you tried this what failed? If it was that you could only transform all of the objects instead of each separate object, then you'll need to make sure you are using the appropriate 3D tool. The UI needs some work to make this a bit easier to discover.
    There are 3D Mesh tools in the 3D panel that allow you to manipulate individual meshes, instead of the whole scene (3D Object tools).
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-3937802-84277/176-600/3DMeshTo ll.png
    regards,
    steve
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3937802#3937802
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3937802#3937802. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Windows by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • DOC BUG: 9.0.3.1 View Object Wizard and a Question

    First the question: What is the Passivate property for in the View Object Wizard's Attribute Settings page?
    Related Doc Bugs 9.0.3.1
    Topic: Define New View Attribute Dialog
    (click Help button in New Attribute dialog when creating a view object attribute)
    Problems: The description for the "Attribute" property is "foo"; Descrimator, Updateable, and Queriable have single letter descriptions. Key Attribute and Passivate are not listed.
    Topic: View Object Wizard - Attribute Settings Page
    (click Help button in Attribute Settings page in View Object Wizard)
    Problems: Query Column Type and Passivate are not listed. Attribute Settings column lists properties in a strange order (not a bug).
    Peter Koletzke

    Peter,
    I've logged doc bug 2814172: BC4J GLOSSARY SHOULD HAVE ENTRIES FOR PASSIVATE AND ACTIVATE.
    For more information, you could read the "About Application Module Pooling" topic in the online documentation. Passivation is what happens when the application module's state is saved to the database - and activation happens when an application module instance retrieves passivated state from the database.
    Thanks
    Blaise

  • Global Object Access Auditing test question

    Hello!
    There's a test question (N4) I'd like to have clearified:
    http://exam.test4actual.com/70-411.pdf
    Yes, D and F will enable auditing with no extra replication traffic, but enabling Global Object Acces Auditing will lead to auditing not only SYSVOL shares but to any others as well (http://blogs.technet.com/b/askds/archive/2011/03/10/global-object-access-auditing-is-magic.aspx)
    - is this replication traffic worth it???
    Thank you in advance,
    Michael

    Hi,
    For this question, the correct answer is DF, but we do not need to use Global Object Acces Auditing policy to audit SYSVOL shares.
    About the replication traffic, please refer to:
    http://technet.microsoft.com/en-us/library/bb742457.aspx
    Meanwhile, any changes made to SYSVOL are automatically replicated to the other domain controllers in the domain. If the files stored in SYSVOL change frequently, the replication increases the input and output for the volume where SYSVOL is located. For
    example, editing a GPO can potentially force a GPO-level replication. If the volume is also host to other system files, such as the directory database or the pagefile, then the increased input and output for the volume can impact the performance of the server.
    More detail information:
    Introduction to Administering SYSVOL
    http://technet.microsoft.com/en-us/library/cc778037(v=WS.10).aspx
    Regards.

  • Regarding OBJECT class. A question please.

    A question regarding the Object class.
    Please correct me in case I am wrong.
    If I create a class called Foo :
    class Foo{
          Foo(){
    }The constructor of class Foo automatically invokes the constructor
    of its super class.ie it is like saying :
    class Foo{
      Foo(){
        super();
    }Am I Right?
    Even if the Foo class constructor does not include a call to 'super',
    it is implicitly invoked.
    That is the reason the Foo class can invoke/send messages toe methods defined by 'Object',
    as 'super' defined on Foo's constructor constructs/instantiates 'Object'
    Am I Right again ?
    Now,I have just noticed that the Object class does not contain any constructor
    So how can the constructor of Foo call super implicitly if the Object class
    does not contain any constructor.

    So how can the constructor of Foo call superimplicitly if the Object class
    does not contain any constructor.Even if you don't specify one, there will alwaysbe
    at least a no-args c'tor.But if you do specify a ctor with args, the
    compiler will not insert a no-arg ctor for you.That why I said there is "at least" a no-args (or more args) c'tor [in any class].

  • Dynamic View Object Creation and Scope Question

    I'm trying to come up with a way to load up an SQL statement into a view object, execute it, process the results, then keep looping, populating the view object with a new statement, etc. I also need to handle any bad SQL statement and just keep going. I'm running into a problem that is split between the way java scopes objects and the available methods of a view object. Here's some psuedo code:
    while (more queries)
    ViewObject myView = am.createViewObjectFromQueryStmt("myView",query); //fails if previous query was bad
    myView.executeQuery();
    Row myRow = myView.first();
    int rc = myView.getRowCount();
    int x = 1;
    myView.first();
    outStr = "";
    int cc = 0;
    while (x <= rc) //get query output
    Object[] result = myRow.getAttributeValues();
    while (cc < result.length)
    outStr = outStr+result[cc].toString();
    cc = cc+1;
    x = x+1;
    myView.remove();
    catch (Exception sql)
    sql.printStackTrace(); myView.remove(); //won't compile, out of scope
    finally
    myView.remove(); //won't compile, out of scope
    //do something with query output
    Basically, if the queries are all perfect, everything works fine, but if a query fails, I can't execute a myView.remove in an exception handler. Nor can I clean it up in a finally block. The only other way I can think of to handle this would be to re-use the same view object and just change the SQL being passed to it, but there's no methods to set the SQL directly on the view object, only at creation time as a method call from the application module.
    Can anyone offer any suggestions as to how to deal with this?

    I figured this out. You can pass a null name to the createViewObjectFromQueryStmt method, which apparently creates a unqiue name for you. I got around my variable scoping issue by re-thinking my loop logic.

  • Object skew and deform question

    Can you skew a pasted object like
    you can warp text? Is it possible to arch or wave a pasted object? If so, how?

    Familiarize yourself with Filter>Distort>Liquify, and,  Image>transform>>>various selections here.
    Perhaps one of these options is applicable to your project.

  • Object Link to DMS document - does not allow to link to docs not released

    Hi Folks,
    I am trying to create an object link from cProjects 4.5 to a DMS document. When I select a document in DMS I am getting the message "26 223 Document <doc_number> has not been released". If I set the status of the DMS document to a released status I am allowed to create the object link.
    My question is - why am I only allowed to object link to released DMS documents? I want link to a DMS document regardless of the status.
    Thanks,
    Lashan

    Hi Lashan,
    Not sure whether this works, but do check in CFC01 and see "Document Type Dependent Data'
    Regards,
    Aby

  • What is the best way to add a day to a Date object?

    I have come across numerous examples on adding a day to the CURRENT date, using the Calendar object. However, what I need to do is to add a day to a Date variable.
    Can someone tell me how to do that? I tried to set the value of my Date variable into the Calendar object, but, it appears that for the current JAVA version, they have deprecated the getYear(), getMonth() and getDay() methods for the Date class.
    Really appreciate your suggestions.
    Thank you in advance,
    SiowLing

    I haven't seen the OP express a concern over how to create/obtain the Date object (he could be using "new Date()" given the emphasis on "CURRENT"). Milliseconds is fine too if that's what you have (for example from a java.sql.Date).
    So the way to add a day to a Date object (the OPs original question) is to:
    - set the Date on a Calendar using setTime
    - add 1 to the DATE field of the calendar
    - get the Date from the Calendar using getTime
    Obviously you're right if the OP doesn't have Date object to start with, but just the "numbers" for year, month, day.

  • Help PI Modeling Experts -- cannot generate objects via Model Configurator

    All the SAP documentation I have been reading encourages service integration development to originate using the modeling tools.
    I was creating a custom service interface using the ProComp Interaction Model, but could not generate the configuration objects using the Model Configurator. 
    Integration Builder
    When generating the configuration scenario from the custom ES Repository Model,  my model is found u201C not configurableu201D with the following messages:
    PCIM <MyModel>: Process component <MyProcessComponent> does not contain a reference to a process component from the Enterprise Services Repository
    PCIM <MyModel>: No components assigned to process component <MyProcessComponent>.
    Enterprise Services Builder
    So, I go in the Enterprise Services Builder and try to create <MyProcessComponent> and <MyBusinessObject>. 
    In the u2018Create Objectu2019 pop-up menu,  the objects, Business Object and Process Component,  are u2018deactiveu2019.  When the deactive menu item is chosen (e.g. Process Component), I get the error message, u201CSoftware component version does not support this object type u201C.
    Question
    In another forum thread, a response suggested that SAP does not allow the creation of custom Process Components or custom Business Objects.
    Is this true?  Or is some configuration or authorization missing somewhere in my system?
    Related threads:
    [Error : software component version does not support this object type. |Error : software component version does not support this object type.;
    [Does Model Configurator in ID works for ProComp Interaction model |Does Model Configurator in ID works for ProComp Interaction model;
    Thank you.

    Hi
    We will move this thread to the [Service-Oriented Architecture|Service-Oriented Architecture (SOA) and SAP; forum. I think this is a better forum for what you are attempting to do. Hopefully you will get a better response on that forum.
    Regards
    XI/PI Moderator

  • New objects not visible in report objectpicker

    Hi, I'm new to SCOM so please forgive me if I say something wrong.
    We are using SCOM 2007 R2.
    In Operations Console I've created 2 new Web Applications in Authoring view.
    In Reporting view I open  Availability report from Microsoft Generic Report Library
    Click Add Object
    Search for Web Application I've created and get nothing
    For some reason I see only old objects when search or view all available in report. I tried to use old Management Package and created my own (I thought the problem was in sealed MP, but my new is unsealed). Found similar problem in "Missing Objects
    in Report Objectpicke" question,  but we have less than 100 monitoring agents.
    So I have no idea why objects are not visible, could you please help?

    Verify from Group {contain all computers that you want} that using in Reporting.
    You also check below link, it's similar issue
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/5cb0fb12-73c5-4553-987f-ea415babd876/missing-objects-in-report-objectpicker?forum=operationsmanagerreporting
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • How to pass Array of Java objects to Callable statement

    Hi ,
    I need to know how can I pass an array of objects to PL/SQL stored procedure using callable statement.
    So I am having and array list of some object say xyz which has two attributes string and double type.
    Now I need to pass this to a PL/SQL Procedure as IN parameter.
    Now I have gone through some documentation for the same and found that we can use ArrayDescriptor tp create array (java.sql.ARRAY).
    And we will use a record type from SQL to map this to our array of java objects.
    So my question is how this mapping of java object's two attribute will be done to the TYPE in SQL? can we also pass this array as a package Table?
    Please help
    Thanks

    I seem to remember that that is in one of Oracle's online sample programs.
    http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/index.html

  • ORDVir object type

    First i had a problem with creating tables with image type column.
    For example, when i typed:
    CREATE TABLE stockphotos (photo_id NUMBER, photographer VARCHAR2(64),
    annotation VARCHAR2(255), photo ORDSYS.ORDVir);
    i got the answere invalid datatype for "ordsys.ordvir"
    After that i tryed with ORDImage instead of ORDVir an i succeed. But
    then raised another problem. When i tryed to generate signature for
    image data object:
    declare
    image ordsys.ordimage
    image.analyze
    i got error. Obviously obtaining atributes can happen just to ORDVir
    object . So my Question is do i get this object type (in ORDSYS )
    after the installation of oracle or i had an installation problem?
    I also tried with CREATING ORDvir OBJECT TYPE procedure but i didn't
    succeed. What should i do?

    What version are you running?
    If you are running a newer version, you should look at ORDImageSignature for matching since it is the newer implementation developed in house instead of having to pay royalties, and passing the cost to customers.
    We do support ordvir applications, but you have to install the ordvir compatability kit. See: <ORACLE_HOME>/ord/vir/admin/README.txt
    Larry

  • Skipping security questions and answers

    Since recently, my iPad (but also iTunes on my mac) asks me for security questions and answers when I try to download an app. How can I download apps without providing these questions and answers?

    Thanks Michael, so it is possible without security questions. Unfortunately, I find the 2-stage verification even more worrying. I've accepted the situation as is and have picked three questions and have entered random data as answers to them.
    To clarify my objections to these security questions:
    These questions provide no additional benefit. I can pick a question and answer truthfully, but these are generally things others could find out (especially in targetted attacks, where the attacker tends to already know a bit about the victim - does anyone remember how Paris Hilton's T-Mobile account got accessed by attackers who knew her dog's name? (yes, that is an especially stupid example, but it shows the problem with these kinds of "security measures"))
    Entering random data is already a lot better, however iTunes will simply show your (random) answer on screen instead of the regular dots you see when entering your password. Apple tells us to keep your passwords private and not share them with anyone (including family). If family is sitting next to you while you type your random data, they can easily read along.
    As it stands, these security questions impose another hurdle for the user, not the attacker. Hence my attempt to circumvent this approach. I have a strong password and I have implemented safeguards to prevent forgetting it. The security questions do not improve my situation, they are an attempt at improving the situation of people that take security less seriously. These are the same people that provide all the answers to these security questions on their facebook (or whatnot) for all the world to see. Pointless.
    (Note that the 2-stage verification is a better approach that solves the problems mentioned above. However, it comes with new downsides that I won't detail here as this is already way too long).
    Anyway, thanks to all that responded. I have to say, suggestions of moving to another vendor seem somewhat ridiculous. That also means purchasing new devices when all I want to do is use my device (the device I've grown used to) as I have for quite some time. And there is no guarantee that such a new environment does not have similar stupid security measures in place.

  • How are non-cost center Controlling objects best modeled in PCM?

    I appreciate that ALG developed Profitability and Cost Management, and they apparently were unaware of
    or did not consider that SAP ERP uses more than a single controlling object of a cost center; specifically
    internal order, WBS element, real estate object, etc.
    My question is how are these other controlling objects best treated in PCM?
    For example,
    I have a planned trade show internal order to showcase my companies products
    in Berlin to European retailers.  I have planned travel costs, display costs,
    space rental costs on this internal order.
    Normally, I would settle this internal order to CO-PA to determine the planned
    profitability of my Europen retail customers.  Unless I make this order a faux cost center,
    I don't see how to model it in PCM.
    If I exclude this order, then the profitability resulting in PCM is suspect --
    leaving out a major chunk of customer specific marketing expense.
    Or is the process to settle the planned internal order cost to CO-PA, but
    transfer the planned costs from PCM back into CO-PA, which would have the
    benefit of being mutually exclusive and collectively exhaustive.
    Jeff Holdeman hinted at the restrictions imposed by planning in ECC.  Yet
    without a more comprehensive approach, I am concerned that PCM still
    does not represent a complete profitability planning solution.
    Bob McGaffic

    Hi Deepak.
    You can verify is the cost center was posted on document running tcode SE16N on the FALGFLEXA table, put the document number to do research.
    After you can trying to post the new document through Tcode FB50L choosing or not a legder specific, then verify the document was posted correctly running the Tcodes SKb1 or Se16N with FAGLFLEXA table again.
    Also you can check this link Checking the Allocation of General Ledgers to Cost Centres
    Kind Regards
    Jandoval Nascimento

Maybe you are looking for

  • ITunes not reading iPod Classic?

    Hello, it's me again. This time, I plugged my iPod in. iTunes is working this time. However, it's not reading my iPod. My computer recognizes it, my iPod recognizes my computer but iTunes isn't picking it up. Any ideas?

  • Isuue in IW21 : CLFM_OBJECT_CLASSIFICATION

    Helli, I would like to asaign charecterstics for PM notification in IW21. I am using calss type 'FNT' .Under this type there are two classes(A and B). In IW21, I put two push buttons two assaign charecerstc values for A and B. For this I am using the

  • MySap 2005  with Suse Linux

    hi, We are planning to implement mySap 2005,  I would like to know where Suse Linux desktop  support  SapGui.  or  to stick with microsoft products.

  • Can't see selection edges as I draw them.

    CS4, Mac OS 10.5.6, iMac, 2.33 GHz Core Duo, 3 GB Ram, NVIDIA GeForce 7600 GT When using selection tools (Marquee, lasso, etc.) I cannot see the selection edges as i draw them. After completing a selection "blind," I see the selection using the Marqu

  • Recovering tunes from Ipod shuffle

    Hi, I unfortunately had to reinstall Mac OS X and saved my purchased music from itunes store on my ipod shuffle with a bunch of other stuff. I can't figure out how to get them back to my itunes from my ipod. I am starting to wonder if I can do such a