Has an IDML Object an z index? To identify exactly the Object position / arrangement on a layer?

Hi,
let me tell you about my problem.
I'm programming a converter from IDML to a special internal XML format.
For example I have one Layer with three objekts.
- On the bottom of the layer I've got a rectangle.          (z-index: 3)
- Above this rectangle, there is a text object.               (z-index: 2)
- And on top a line.                                                    (z-index: 1)
I've to take over these objects into my internal XML. And it's very important to maintain the order of the objects.
Is there any attribute in the IDML XML structure like a (html) z-index, which defines the object arrangement?
Thanks for your help! :-)

UPDATE:
In order to guard against misunderstandings, the converter is written in Perl. It's no IDML scripting with java and so on.
I found out that the arrangement of the objects depends on the XML Tag order.
I think at least ...

Similar Messages

  • Query machine 'server' has been taken out of rotation due to this error: The object is not initialzed?

    Hi, in my MOSS 2007 farm getting below Search errors frequently:
    1.“EventID: 0x00002736 (10038) - Query machine 'server xyz' has been taken out of rotation due to this error: The object is not initialized. 0x8004180b. It will be retried in 15 seconds”
    2. Retry of query machine 'server abc' has failed with error: The content index is corrupt.  
    In this Farm, one Application server works as an index server and two WFE servers work as Query servers.
    So currently resolving the issue resetting the crawl content and running full crawl. I also changed the Index file location frequently on both the WFE servers but frequently error is coming.
    Please tell me what to do.

    Hi Prakash,
    It seems like your existing index partition is corrupted, please remove initial index partition and create new.
    Please refer below article, this will give you some idea to troubleshot this issue further:
    http://daxdilip.blogspot.in/2012/06/troubleshooting-sharepoint-search.html
    If my contribution helps you, please click Mark As Answer on that post and
    Vote as Helpful
    Thanks, ShankarSingh(MCP)

  • [svn:fx-trunk] 7073: When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

  • I can't move exactly the objects

    I have Indesign CS5, I have turned off all the snap guides, but i still have the problem, that the program snap the objects in one place to another, so i cant put exactly each other rectangles. Here is a pic demonstrating the problem.
    Here i wanted to place the yellow rectanlge exactly on the red, but this is the two closest position, a little bit under and a little bit upper than the target.
    Can somebody help, why this happens?

    Your objects are snapping to the document's pixel grid. You can precisely align objects to each other by changing their X and Y coordinates, however if you are going to be outputting to screen it makes more sense to have all your objects be aligned to this pixel grid, as it is the smallest unit you can have.

  • Lifetime of Object in the Object Cache on selects

    On inserting an object (corresponding to user-defined SQL type), I can use a stack-allocated struct for the object and its indicator structure, and pass these addresses to OCIBindObject.
    But on selecting an object (by value, not ref), the doc says one must let the OCI runtime allocate the object struct and its indicator struct in the Object Cache, and call OCIObjectFree when done with the object. But it's unclear whether one needs to free the object for each row of the result set processed, or only once all rows have been processed.
    By looking at the cache-allocated addresses of the object/indicator structs, it looks like the same "instance" in the cache is re-used for every row (addresses remain the same for every row). This tends to indicate the same object is reused, as opposed to a new one being allocated. I added a single OCIObjectFree after processing all rows, and things look OK... (read no crash, no complain/error from OCI).
    But I feel a little uneasy about this, because unlike in my case, when the object has secondary allocations associated to it (because the type contains strings, collections, or other objects members), if somehow I need to OCIObjectFree for each row, and I don't, then I'm leaking all the secondary storage from previous instances of the object.
    Can someone please shed some light on the subject? I find the OCI doc often a little sketchy on these very important lifetime issues. I'd appreciate some advice from someone with Object-Relational aspects of OCI.
    Thanks, --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    when I have to select objects by value :
    * I let oci allocate objects in the object fetch arrayI don't think we have a choice here in fact. At least the way I interpret the doc.
    * I have different addresses for every entry in the array after the fetchBut even an array fetch is done is a loop. You fetch 10 rows at a time, and you get say 25, so you have 3 iterations / fetches.
    Of course the 10 object entries of a given fetch are different, but is the address of the 6th object the same in the first, second, and third fetch?
    * I call OCIObjectFree() for every entry of the
    array.If I have retreived object based attributes
    from the object, i call OCIObjectFree() on the
    object attributes recursively.To made it easier to understand my question, please find below the pseudo-code of what I'm doing (all error checking and most boiler plate arguments OCI requires are omitted, to concentrate on the control flow and the calls made)
    create type point_typ as object (
      x binary_float, y binary_float, z binary_float
    create table point_typ_tab (
      id number, point point_typ
    struct point_typ { // C-struct matching SQL User Type
        float x, y, z;
    struct point_ind { // indicator structure for point_typ
        OCIInd self, x, y, z;
    static void select_objects() {
        Environment env(OCI_OBJECT);
        env.connect(zusername, zpassword, zdatabase);
        OCIHandleAlloc(OCI_HTYPE_STMT);
        OCIStmtPrepare("SELECT id, point FROM point_typ_tab");
        ub4 id = 0; OCIDefine* define_id = 0;
        OCIDefineByPos(&define_id, 1, &id, sizeof(id), SQLT_UIN);
        OCIDefine* define_pt = 0;
        OCIDefineByPos(&define_pt, 2, 0, sizeof(point_typ), SQLT_NTY)
        OCIType* point_typ_tdo = 0;
        OCITypeByName("POINT_TYP", OCI_DURATION_SESSION,
            OCI_TYPEGET_ALL, &point_typ_tdo);
        point_typ* p_pt = 0;     ub4 pt_size = 0;
        point_ind* p_pt_ind = 0; ub4 pt_ind_size = (ub4)sizeof(point_ind);
        OCIDefineObject(define_pt, point_typ_tdo,
            (void**)&p_pt, &pt_size, (void**)&p_pt_ind, &pt_ind_size);
        sword rc = OCIStmtExecute(0/*row*/);
        while (OCIStmtFetch2((ub4)1/*row*/, OCI_FETCH_NEXT) has data) {
            if (p_pt_ind->self == OCI_IND_NOTNULL) {
                // Use p_pt. Value of p_pt same for all iteration
        OCIObjectFree(p_pt);
        OCIHandleFree(OCI_HTYPE_STMT);
    }As you can see, I do a single OCIObjectFree after the loop, and as mentioned previously, p_pt's value (a point_typ address) remains identical during the iteration, but the values in that memory chunk do change to reflect the various point instances (so each point instance overlays the previous one).
    Are you saying I should be calling OCIObjectFree(p_pt); inside the loop itself?
    And if so, should I call OCIObjectFree(p_pt); even if the indicator tells me the point is atomically null?
    That what I do in OCILIB, and it doesn't seem to leak.Reading your post, I'm unsure you free of points in the array after the loop, or inside the loop. I hope the pseudo-code I posted above help to clarify my question.
    BTW, OCCI is just a wrapper around OCI. Because OCCI
    first releases were buggy (it's getting better) and
    just few compilers (and compilers versions) are
    supported, OCI remains a portable and workable
    solution for dealing with Oracle ObjectsAs I wrote in a separate reply in this thread, I also agree OCI is the way to go, for various reasons.
    Thanks for the post. I'd appreciate if you could confirm or not whether what I'm doing is consistent with what you are doing in OCILIB, now that I'm hopefully made my question clearer.
    Thanks, --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Actual Mechanism of Object class as Parent Class to all the classes

    Hi All,
    We know that all the classes in the java platform are descendants of Object class. Even if we are writing a new class also, in the absence of any other explicit superclass, every class is implicitly a subclass of Object. As we are not extending the Object class directly, then how come the methods in the Object are inheriting to the Sub class what we have written? How the java maintain this heirarchy?
    Can you please explain this elaborately?
    Thanks in Advance,
    Uday

    Udaya Shankara Gandhi wrote:
    Hi All,
    We know that all the classes in the java platform are descendants of Object class. Even if we are writing a new class also, in the absence of any other explicit superclass, every class is implicitly a subclass of Object. As we are not extending the Object class directly, then how come the methods in the Object are inheriting to the Sub class what we have written? How the java maintain this heirarchy? Because the language is defined that way. Compilers implement the language according to the rules of the JLS. Exactly how they do that is undefined. It's up to each compiler. As long as it follows the rules defined in the JLS for parsing the code and generating the .class file, that's all that matters. However, somewhere in the compiler is code that does approximately this:
    if (class has an extends clause) {
      generate corresponding bytes for extends in .class file
    else {
      generate bytes for extends java.lang.Object in .class file
    }No great mystery, nor philosophical question.

  • To find out the object which called a method

    Hi all,
    Is there any way to findout the object which called a class method.
    The object name is required inside the method.
    Thanks in advance,
    Sreekanth

    Hi Sreekanth,
    You can do it by reading the CALL STACK.
    At the beginning of your method put the following code:
    data:
        begin of stackItem,
          program        type SYREPID,
          include        type SYREPID,
          line           type i,
          eventtype(12)  type c,
          event(70)      type c,
          flag_system(1) type c,
        end of stackItem,
        stack like standard table of StackItem.
      call 'ABAP_CALLSTACK' id 'DEPTH' field 2 id 'CALLSTACK' field stack.
      read table stack into stackitem index 2.
      MEssage i002(sy) with stackitem-program.
    Here stackitem-program is the calling program.
    Cheers,
    Aditya

  • How to compare the object's properties

    Hi ,
    I have a requirement like to compare two objects data. But the object will have different types of parameters and it will have some other classes as properties. My utility has to compare for all the properties of the object including other classes properties which are included as properties in the main object also.
    Can we achieve using java reflection this requirement.
    If any one has idea reg this , plz help me.
    thanks
    Prakash

    hari_honey wrote:
    No , actually i have to generate the change log of object data.
    If any property of the object is changed and that has to go to the change log table with the
    property name and old and new value.Sounds expensive and complex.
    Presumably you can't change the code.
    Presumably you can't provide a proxy layer.
    Have you consider code injection?

  • Can not call a static function with-in a instance of the object.

    Another FYI.
    I wanted to keep all of the "option" input parameters values for a new object that
    i am creating in one place. I thought that the easiest way would be to use a
    static function that returns a value; one function for each option value.
    I was looking for a way to define "constants" that are not stored in
    the persistent data of the object, but could be reference each time
    the object is used.
    After creating the static functions in both the "type" and "body" components,
    I created the method that acutally receives the option input values.
    In this method I used a "case" statement. I tested the input parameter
    value, which should be one of the option values.
    I used a set of "WHEN conditions" that called the same
    static functions to get the exact same values that the user should
    pass in.
    When I try to store this new version, I get the error:
    "PLS-00587: a static method cannot be invoked on an instance value"
    It points to the first "when statifc_function()" of the case function.
    This seems weird!
    If I can call the static method from the "type object" without creating
    and instance of an object, then why can't I call it within the body
    of a method of an instance of the object type?
    This doesn't seem appropriate,
    unless this implementation of objects is trying to avoid some type
    of "recursion"?
    If there is some other reason, I can not think of it.
    Any ideas?

    Sorry for the confusion. Here is the simplest example of what
    I want to accomplish.
    The anonymous block is a testing of the object type, which definition follows.
    declare
    test audit_info;
    begin
    test := audit_info(...);
    test.testcall( audit_info.t_EMPLOYER() );
    end;
    -- * ========================================== * --
    create or replace type audit_info as object
    ( seq_key integer
    , static function t_EMPLOYER return varchar2
    , member procedure test_call(input_type varchar2)
    instantiable
    final;
    create or replace type body audit_info
    as
    ( id audit_info
    static function t_EMPLOYER return varchar2
    as
    begin
    return 'EMPLOYER';
    end;
    member procedure test_call(input_type varchar2)
    as
    begin
    CASE input_type
    WHEN t_EMPLOYER()
    select * from dual;
    WHEN ...
    end case;
    end;
    end;
    The error occurs on the "WHEN t_EMPLOYER()" line. This code is only
    an example.
    Thanks.

  • "Hacking" the Object streams...

    Hello everyone,
    Here's what I'm trying to do:
    I have to transmit Object graphs over a message oriented networking framework at a rate of about 100 messages per second. Since i can't maintain constant data streams between the peers the first thing that comes in mind is to create an ObjectOutputStream to "fill in" each message and on the far side an ObjectInputStream to read the contents of each message. This aproach however seems to be too coastly for the goals I have to meet. So the first questin I have is:
    How coastly realy it is to create 200 Object streams per second?
    And the second question I got is:
    Is there a way to safely reuse only a single pair of Object streams?
    I tried to run the object streams over my custom implenentations of OutputStream and InputStream that allow me to write the object, flush the object stream, obtain the byte[] block that was produced, fill it in a message and transmit it. On the far side I respectively "slip" this byte[] block "beneath" the ObjectInputStream and reconstruct the Object. This aproach worked for simple data structures and yelded the desired high throughput. With complex structured however this yelds horrific StreamCorruptedExceptions :(

    I think creating 200 streams per second can't be fast. But a stream can send as much data as you want to push thru it (underlying connection mechanism restrictions apply... e.g. TCP over the internet is not as fast as TCP over a LAN or within the same PC).
    If you're large objects are not containing all serializable contents, that could cause problems, I think. Sticking a non-serializable object inside a serializable one doesn't make the non-serializable one serializable.

  • Object Visualization and accessing the object's attributes

    Hi all,
    I am trying to configure SWFVISU to allow us to call an ABAP Web Dynpro which displays an adhoc object attached to a workflow in the UWL.
    I've had success with a business object of a task which is not an adhoc object by binding an attribute to the task container and creating a custom attribute in the UWL.  However this is not possible with Adhoc Objects as there could be 0..n objects at runtime.
    I've seen plenty of threads that refer to using ${item.externalObjectId} as part of the visualization parameters, ie in Visualization Parameters:
    APPLICATION     FMCA_WDY_FPF
    DYNPARAM                          WDCONFIGURATIONID=FMCA_WDY_FPF_CONF&RETURN_ID=${item.externalObjectId}
    NAMESPACE                          sap
    SYSTEM_ALIAS     SAP_ERP_Public_Sector
    however in this case the attribute we need access to is an attribute to the Object Class, not the Work Item.
    Is there any other variable substitution we can use in the Object Visualization to reference an attribute of the Object Class itself?
    Thanks in advance
    Alex

    Hi,
    Please visit the below link. This might help you.
    http://weblogs.sdn.sap.com/cs/blank/view/wlg/20379
    Thanks and regards,
    SNJY

  • Workitem ID wise to get the Object value

    Hi All,
    is it possible to get the object value form Workitem id wise.
    for example workitem id '446085' based on that workitem id i want to retrieve the object value.
    Please clarify.,
    Thanks & Regards
    K.Gunasekar.

    Hi
    I want to update the object Reference.
    for example i am getting the object value from SAP_WAPI_GET_OBJECTS. (F.M)
    based on the workitem_id.
    i want to update the objects reference from the original one.
    if is it possible means please let me know.
    Thanks & Regards
    K.Gunasekar.

  • Noob Question  Guides/Anchors are not "on" the object I create

    I know this is probably a setting I am not getting the right way... but here is my problem.
    When I create an object... the path/guide/anchor is not "ON" the object I create... it "floats" outside of that object... INSTEAD of on the object like everyone else's that I see in tutorials etc.
    Take a look
    all of the objects I create seem to have this... so when I try to move the two parts of the flag together... they have a buffer area between them... and I can't move them together to overlap.
    Thanks for any help...
    I am usiing Illustrator CS6 by the way....

    Scott is right. Your Appearance Panel shows that somes effect is applied to the stroke. Click the triangle to the left of Stroke to reveal. I suspect you'll find something like this:
    Peter

  • When I try to move an object in Illustrator CS3 only part of it moves, so the object "stretches".

    This doesnt always happen, but I cant figure out what I do differently when I  am able to move the object successfully. Obviously these are multipart objects.  My workaround is to copy the object an paste it...then most times it moves correctly.

    mridude wrote:
    Yes. I usually select the group of objects with the white arrow by dragging around them. Then change to the black arrow to move them.
    Obviously you're not 'capturing' all the anchor points... so, you're getting only part and not the entire object. Use the black arrow to select.... you'll get the whole object... then drag or use the Transform tool to move it.

  • Toplink does not return the object sometimes - VeryHigh Volume application

    Hi All,
    Toplink version: 10.1.3.4, OAS 10.1.3.4, Oracle 10g, RedHat linux 4.0
    We have a high volume application where toplink issues one of our queries like 25K times/hour.Query is a simple one querying the table based on the primary key(Id) that should return 1 object.
    This query is not returning the object sometimes I should say like 200 times/hour. What bothers me is that the same query on the same Id(primary-key) returns the object another time.
    I did enable the toplink logging level to FINE where I could see the SQL query getting issued to the DB, I was unsuccessful in changing the logging level to ALL to check if the object is getting returned by the toplink layer and being registered in the cache kind of details.
    This is not easily re-producable as this only occurs in our Pre-Prod environment where we can simulate high volume. This completely baffles me and I am running out of ideas.
    Thanks in advance.
    -Ram
    Edited by: Raam on Jun 4, 2009 7:41 PM

    If you are configured for an isolated cache then there should be no concurrency issues. Each thread will query the database directly and load the object into the UnitOfWork. Is there an Exception handler configured on TopLink? Are you getting a timeout exception or some other exception that is being ignored?
    --Gordon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • On iPod Touch, how can I view calendars but not sync them?

    I have thirteen years of calendar events in iCal on my desktop Mac, dating back to year 2000, divided between three calendars. A quite large amount of calendar data, admittedly. I sync to my iPod Touch via iCloud.  Problem is that, if I select "Sync

  • JPA and JSF - Problem persisting object

    Hi all. I'm having some trouble with JPA, persisting an object to a MySQL table. Let's say I have a simple bean, Message: package my.package import java.io.Serializable; import javax.persistence.Id; import javax.persistence.Entity; import javax.persi

  • CFUPDATE problem with field name beginning with a number

    I have a form (actually several) that is gathering data for a survey. I tried to use cfupdate to update the data elements and got a string index out of range error. I tested again without the form fields that began with numbers and it worked just fin

  • How to default business place & section code

    Hi guru How can we default the business place & section code in FI posting.This is require for TDS deductioin & e-filing of return Thanks Shivaji

  • Service order confirmation in status "Completed To be Distributed"

    All, I have created a service order confirmation based on service order and it is in status "Completed To be Distributed" for a long time. It is not being distributed to ECC system also. Could you please let me know how to make it "successfully distr