Reusing display objects problem

Hello All,
I have a custom component that I instantiate and add it to a
Canvas. Then I remove all children of the canvas and add a tab.
Then again on a user action I remove the tab and add the already
present custom component (created the first time I added it to the
canvas and this is stored in an ArrayCollection) to the canvas as a
child but now it does not show up on the screen. It shows no
errors.
When I tried to add a newly created object of the custom
component there is no such problem. But this is not possible due to
the nature of my application. Could someone help in this regard?
Thank you.
Regards,
Vivek

Vivek,
For what you are trying to do there is a special container:
ViewStack
Try using it and all your problems will be solved :)

Similar Messages

  • How do I compensate for display objects jumping when screen scaling

    I am building an application that is to run at 2 difference stage sizes. 960x640 and 1024x768 (for those paying attention, you may note that those are the high res settings for the iPhone and iPad2)
    The app was designed and build to run on a stage of 960x640 and when running at this size, there are no problems.
    When the app loads in the 1024x768 window, it "strechs" the stage to fill the window, but keeps the aspect ratio. Everything looks good and the application runs without any problems expect for one thing.
    Sometimes, display objects on the stage "jitter" when moving or animating. I have discovered that this is because the stage is "scaling" the x and y values, and is not pixel snapping the objects on the screen, even though the x and y values of the display object are indeed whole numbers.
    A prime example of this is I have 2 bitmapData images. bmData_s and bmData_h.
    bmData_s is 192x388 in size.
    bmData_h is created from a copy of bmData_s with a glow filter stroke on it, resulting in a image that is 198x394 (6 pixels bigger due to a 3 pixel stroke)
    I place it on the screen using the following code:
    (Background is a bitmap object that is 960x480 and places at 0,0)
    (ObjOffset is a point in my app data to position the object, it's a point set to 53,195)
    MyObj.x = Background.x + ObjOffset.x + (bmData_s.width/2);
    MyObj.y = Background.y + ObjOffset.y + (bmData_s.height/2);
    now, when the mouse rolls over the object, I have an event listener to change MyObj.bitmapData to bmData_h
    MyObj.bitmapData = bmData_h;
    MyObj.x = Background.x + ObjOffset.x + Math.floor(bmData_h.width/2);
    MyObj.y = Background.y + ObjOffset.y + Math.floor(bmData_h.height/2);
    and back to the _s image on mouse out.
    Now, when the app runs on the iPhone which is a 960x640 screen size, or on the PC which is using a window of similiar size, the image doesn't appear to move at all... the "stroke" appears and disappears exactly as it is suppose to
    However, when I run it in a window that is 1024x768, the _h image appears to "jump" one pixel up.
    I have encountered many other similiar things that only occure when the stage is scaled. There is a spot in the app where I am animating a bitmap by manipulating it's scrollrect x and width (have it's do a wipe in from right to left like a peice of paper unrolling on a table) and due to the scaling, the right edge of the image jumps left and right 1 pixel... but on 960x640 screens, it looks perfect.
    Does anyone know how I can compensate for this effect so that this jumping doesn't occur when the stage is stretched to fit the window it's running in?

    Sounds like a x-browser rendering problem
    my guess would be to scale down the inner div's so they add up to less than 100%.
    If you floated div's and gave them a %, give one of the div's a smaller.
    ie: 2 divs floated in a Header, give one 50% and the other 49.5%

  • Is there a way to detect redraw regions or at the very least when a display object is redrawn?

    I have a layered window system that produces Windows 7 Aero Glass effect in Flash.
    It consists of nested display objects, with overlays as so.
    Root [
        GlassWindowTop [
           RenderedEffectBackground
         BackgroundForGlassWindowTop [
             GlassWindowMiddle [
               RenderedEffectBackground
            BackgroundForGlassWindowMiddle [
                 GlassWindowBottom [
                    RenderedEffectBackground
                 BackgroundForGlassWindowBottom (e.g. the DesktopBackground)
    Windows can be raised and lowered by changing their order in the hierarchy and adding new levels.
    Each glass window has a designated background (containing all lower windows) .  It draws to an off-screen Bitmap the region of the background that is under the window, and applies a blur filter, tint, and parallax effects to it, and then displays that as it's own background as RenderedEffectBackground.
    The problem is that "RenderedEffectBackground" is a static rendering of the window background, so in order to update it in real time, I need to detect when it's background display object (e.g. BackgroudnForGlassWindowTop) or any nested display objects are rendered.
    I could simply update all RenderedEffectBackgrounds from the bottom up each frame, but that would be inefficient.   Ideally, I could detect when a particular background changes (e.g. when a textfield cursor is flashing, or a MovieClip changes frames), and then only render from that object up.  The rendering of course always has to take place from back to front, starting with the lowest window that has changed.  If I could detect the redraw regions of the Flash Player (e.g. when a textfield cursor is flashing, or a MovieClip is playing), I could optimize this system even further by checking for layer overlaps and only rendering layers whose windows intersect the redraw regions, but obtaining that level of information would probably not be possible or logical since this this essentially needs to happen during some kind of pre render phase, which Flash may not support.  Such a pre-render phase would itself be causing new redraw regions, but as long as it is processed from the bottom up, it could work.
    Is there any AS3 function of the flash player that allows my code to obtain information about the display list as far as which display objects are due to be rendered, and then intercept some kind of "onRenderComplete" event for them right before rendering takes place so that I can render the higher display objects.
    I originally tried to implement this as a filter, but pixel bender shaders in AS3 don't seem to allow sampling of an underlying object that would allow for blurring (i.e. the shader can access only the current point being rendered, coordinates passed to the sampling methods are ignored (this is documented behavior).
    Any ideas?

    The feature that shows the link you are mousing over hasn't been removed in 29. Maybe the add-on you are using to restore the add-on bar is covering it. I've tested the Classic Theme Restorer and it seems to work correctly in this situation - https://addons.mozilla.org/firefox/addon/classicthemerestorer/

  • Accessing display object on the stage from another class

    I've googled this to no avail, I've only found how to manipulate the stage itself and not a display object on it, and I'm noob enough to not be able to figure it out from there. :/
    I have a movie clip on the main timeline with instance name displayName. I created a button that should change what frame displayName goes to (in order to...did you guess it?! diplay the Name of the button. Awesome. )
    So I am trying to write the code in a reusable fashion and have the buttons all linked to a class called GeoPuzzle. Inside GeoPuzzle I instantiate a touch event and run the code. However, the function has to be able to change displayName in the main part of the timeline and, of course, the compiler says displayName doesn't exist because I'm in a class and I'm talking about the stage.
    Here is the simplified code in the class:
    package  com.freerangeeggheads.puzzleography {
        import flash.display.MovieClip;
        import flash.events.TouchEvent;
        public class GeoPuzzle extends MovieClip {
            //declare variables
            public function setInitial (abbrev:String, fullName:String, isLocked:Boolean):void {
                //set parameters
                this.addEventListener(TouchEvent.TOUCH_BEGIN, geoTouchBeginHandler);
            public function GeoPuzzle (): void {
            public function geoTouchBeginHandler (e:TouchEvent): void {
                   e.target.addEventListener(TouchEvent.TOUCH_END, geoTouchEndHandler);
                   //some other methods
                   nameDisplay.gotoAndStop(e.target.abbrev);
            public function geoTouchEndHandler (e:TouchEvent): void {
                //some other methods
               nameDisplay.gotoAndStop("USA");
    The lines in bold are my problem. Now this code doesn't actually execute as is so if you see an error in it, yeah, I have no idea what the problem is, but it DID execute before and these lines still gave me trouble so I'm trying to troubleshoot on multiple fronts.
    How can I tell displayName to change it's current frame from within display object class?
    Thanks!

    if displayName is a GeoPuzzle instance, use:
    package  com.freerangeeggheads.puzzleography {
        import flash.display.MovieClip;
        import flash.events.TouchEvent;
        public class GeoPuzzle extends MovieClip {
            //declare variables
            public function setInitial (abbrev:String, fullName:String, isLocked:Boolean):void {
                //set parameters
                this.addEventListener(TouchEvent.TOUCH_BEGIN, geoTouchBeginHandler);
            public function GeoPuzzle (): void {
            public function geoTouchBeginHandler (e:TouchEvent): void {
                   e.target.addEventListener(TouchEvent.TOUCH_END, geoTouchEndHandler);
                   //some other methods
                   this.gotoAndStop(this.abbrev);
            public function geoTouchEndHandler (e:TouchEvent): void {
                //some other methods
               this.gotoAndStop("USA");

  • Class display objects visible=false

    Hi there,
    I have an app that displays XML as items. I am taking the createLayout() and trying to create a class that i can call from my custom component rather than having tons of code in the same file. The issue i am having is that when i call it, and run/debug, the display objects (text,links,date..) all have their visible property set to false. This happens even though I set the property to true in my code. Please help!
    package com.ryancanulla.utils
         import flash.display.Sprite;
         import flash.events.MouseEvent;
         import flash.net.URLRequest;
         import flash.net.navigateToURL;
         import flash.text.TextFormat;
         import mx.collections.XMLListCollection;
         import mx.containers.Canvas;
         import mx.containers.HBox;
         import mx.containers.VBox;
         import mx.controls.CheckBox;
         import mx.controls.ComboBox;
         import mx.controls.LinkButton;
         import mx.controls.Text;
         public class CreateLayout extends Sprite {
         //     Display Vars
              private var vBox:VBox;
              private var hBox:HBox;
              private var titleText:LinkButton;
              private var itemInfo:Text;
              private var abstract:Text;
              private var archive:CheckBox;
              private var rateItem:ComboBox;
              private var category:ComboBox;
              private var container:VBox;
              private var clickURL:Text;
              private var canvas:Canvas;
              private var titleFormat:TextFormat;
              public function CreateLayout(listCollection:XMLListCollection)
                   listCollection = listCollection;
                   container = new VBox();
                   var categoryLabels:Array = new Array("Health","Industrial","Emerging Tech","Food & Ag");
                   var rateLabels:Array = new Array("Positive","Neutral","Negative");
                   for(var i:int=0; i<listCollection.length; i++) {
                        canvas = new Canvas();
                        hBox = new HBox();
                        titleText = new LinkButton();
                        titleFormat = new TextFormat();
                        itemInfo = new Text();
                        abstract = new Text();
                        archive = new CheckBox();
                        rateItem = new ComboBox();
                        category = new ComboBox();
                        clickURL = new Text();
                        titleText.label = listCollection.getItemAt(i).title;
                        titleText.addEventListener(MouseEvent.CLICK, getURL);
                        titleText.width = 400;
                        clickURL.text = listCollection.getItemAt(i).clickurl;
                        clickURL.visible = false;
                        clickURL.includeInLayout = false;
                        itemInfo.text = listCollection.getItemAt(i).source + " | " + listCollection.getItemAt(i).date;
                        itemInfo.y = 25;
                        abstract.text = listCollection.getItemAt(i).abstract;
                        abstract.y = 42;
                        abstract.visible = true;
                        abstract.includeInLayout = true;
                        abstract.width = 400;
                        abstract.height= 60;;
                        archive.label = "Archive";
                        category.prompt = "Category";
                        category.dataProvider = categoryLabels;
                        category.rowCount = categoryLabels.length;
                        category.visible = false;
                        category.includeInLayout = false;
                        category.width = 95;
                        category.height = 20;
                        rateItem.prompt = "Rate";
                        rateItem.dataProvider = rateLabels;
                        rateItem.visible = false;
                        rateItem.includeInLayout = false;
                        rateItem.width = 95;
                        rateItem.height = 20;
                        canvas.addChild(titleText);
                        canvas.addChild(clickURL);
                        canvas.addChild(itemInfo);
                        canvas.addChild(abstract);
                        canvas.addChild(hBox);
                        hBox.addChild(archive);    
                        hBox.addChild(category);
                        hBox.addChild(rateItem);
                        hBox.y = abstract.y + 60;
                        hBox.percentWidth = 80;
                        hBox.percentHeight = 80;
                        //archive.addEventListener(Event.CHANGE, toggleArchive);    
                        container.addChild(canvas);         
                   container.x = 10;
                   container.y = 10;
                   container.visible = true;
                   addChild(container);
            // Called when someone clicks on the titleLink. This function pulls the
            // origional website URL up in a seperate browser window
            private function getURL(e:MouseEvent):void {
                      var link:LinkButton = e.currentTarget as LinkButton;
                      var canvas:Canvas = link.parent as Canvas;
                      var clickURL:Text = canvas.getChildAt(1) as Text;
                      var url:URLRequest = new URLRequest(clickURL.text);
                      navigateToURL(url);
                   trace(clickURL.text);
    Where I instantiate the class. List collection is an XMLListCollection which contains XML data.
    private var createLayout:CreateLayout;
    createLayout = new CreateLayout(listCollection);

    container is from the Vbox class so I don't see that here and there might be something in there that is causing some problem.
    But I don't think that is the only problem. I think this seems like the same problem that you have going in your other post.
    I don't see anyplace that you addChild your CreateLayout instance. container has been added to your CreateLayout instance, but where is the CreateLayout instance added to some other display list.
    Also it looks like almost everything you add to canvas is set to be invisible. So without knowing what is in a Canvas instance it is hard to know what would show up anyways.

  • SNRO - Creation of Number range object problem

    Hi Experts,
    i wanted to create a number range object thru SNRO.
    The creation was successful in DEV system.
    when i tried to create the same number range object in QA server, i am getting the following error
    "Changes to Repository or cross-client Customizing are not permitted - Choose 'Display object' or 'Cancel'."
    this is a Znumber range used to generate sequential numbers using FM NUMBER_GET_NEXT
    What could be the problem. how to over come this?
    Is it the missing authorizations? if so what could be the authorization object (SU53 shows nothing)
    Appreciate any help in this regard.
    Thanks
    Simha

    Hi All,
    I am confused with the conflicting answers for my problem. But anyways i could transport the number range object and could create a number range interval in QAS.
    Thanks a lot for all your valuable inputs.
    But i am still not out of this so called misconception - Are number range objects to be transported to QA or to be created afresh in QA/PRD?
    Earlier some one told to be created but now i see they can be transported.
    I was not ready to edit the options in SCC4 for the client to enable object creation.
    Thanks again,
    Simha

  • [svn] 3149: Fix bugs introduced by the display object sharing optimization.

    Revision: 3149
    Author: [email protected]
    Date: 2008-09-08 16:58:35 -0700 (Mon, 08 Sep 2008)
    Log Message:
    Fix bugs introduced by the display object sharing optimization. This checkin should fix ordering problems when dynamically adding/removing graphic elements, and ordering problems when changing graphic element properties that require a display object (rotation, alpha, filters, etc).
    Bugs:
    MXMLG-219: BitmapGraphic component content always rendered from 0, 0 origin.
    MXMLG-220: setting visible property of Rect and Ellipse does nothing.
    MXMLG-222: setting the alpha of a rectangle changes z-order when there are 3 or more rectangles
    SDK-16754: Z-order incorrect when a Group is present
    QA: Yes - the test files from these bugs (or something equivalent) should be added to our standard test suite
    Reviewer: Deepa
    Ticket Links:
    http://bugs.adobe.com/jira/browse/MXMLG-219
    http://bugs.adobe.com/jira/browse/MXMLG-220
    http://bugs.adobe.com/jira/browse/MXMLG-222
    http://bugs.adobe.com/jira/browse/SDK-16754
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/core/Group.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/BitmapGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/graphicsClasses/GraphicElement .as

    This is the great thread ;-)
    My favorite threads are below.
    Munky posted great reply :8}
    SQL Query Help
    order in a connect by

  • Display Object list Button(Shift+F11) in Transaction code SE09

    I am Facing problem Due to version upgradation .
    Problem is
    I can See Display Object list Button(Shift+F11) in Transaction code SE09 of SAP4.6c.
    But i cant found it in Transaction code SE09 of ECC6.0.
    Could any buddy ans me where can i find that Button to display object list .
    Thank you in advance
    Deepak.

    Hi Deepak -
    By chance did you post this message to the wrong discussion forum?  This forum is for Financial Performance Management related products, most of which are not yet even based on SAP NetWeaver technology where transaction SE09 would be relevant.
    Your question seems more suitable to me in the SAP Software Logistics forum.
    <a class="jive_macro jive_macro_community" href="" __jive_macro_name="community" modifiedtitle="true" __default_attr="2149"></a>
    Please try to post there in hope of receiving a satisfactory answer.
    Best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP BusinessObjects
    Enterprise Performance Management
    Regional Implementation Group

  • Working with Portal Display Objects Slowsdown Portal

    Hi,
    I am working with Portal Display Objects. I have to create a theme from an existing standard template.
    But as soon as I start working with Theme Editor,
    the Portal slows down and almost stops responding after
    some time. I had to restart the J2EE services every time
    I used theme editor. Did anyone encountered this problem and got around with it ?
    -Sudheer

    Hi Sudheer,
    Which version of portal you are working?
    did check the cpu usage? is it runnning on 100%?
    did u set Recomended JAVA VM Settings after Installation?
    If not refer Sap Notes - 743207, 799803, 723909, 709140, 742395,
    Hope this helps,
    Thanks,
    Praveen
    PS.Dont forget to reward points for solved/useful answers

  • Query on SQL Developer Connections Tree Does Not Display Objects

    Hi Gurus, Could you please clarify on the below. As per the note ID 1458753.1, SQL Developer Connections Tree Does Not Display Objects to user in order to access database objects outside the owned schema/account. ------------------------- By default, and without granting wide privileges such as DBA, a user will only see his or her own objects in the first level object nodes under their connection.  Objects in other schemas must be accessed via the Other Users node under the connection. This is the intended functionality/display in SQL Developer. ------------------------- Is there any other way we can achieve this? Requirement is very common - user A owns all objects and user B granted read/read-write privileges on user A objects. Now user B wants to Display user A objects in the corresponding objects node of SQL developer. Could any one shed some light here? Thanks Venu

    First off, there is a dedicated SQL Developer forum where lots of the developers hang out. Those folks are way more knowledgable that we are about the tool.
    That said, I have no problem displaying dates. Do you just have a problem with this particular query/ field/ table? Or does it affect all dates? What version of SQL Developer are you using? 1.1 is out now.
    Justin

  • Facing "Display Flickering" problem with my 15" macbook pro(A1286)while swapping the desktops and closing the tabs.....need help...reply soon

    Suggest Solution for this Display Flickering problem ....

    Hi, I read the post about calibration and I probably do that a little too often TBH! As I get so little time out the battery and mainly use my MBP on my lap, usually with the power supply near by, it gets charged to full, run to empty to the point of sleep, or sometimes it even cuts out and then is recharged to full again, so I really think it's new battery time. I've seen non Apple Official ones for between £35 and £65 that have 3 year warranties and state they are around 5200mh but am unsure due to reviews.
    Later...
    Anyway's I have now ordered a non Apple replacement from Amazon for about £35 and it has several good reviews and 4.5 out of 5 stars so I'll see if it works and report back. If it doesn't I'll send it back and get the Official Apple one.
    Message was edited by: Missy Steph

  • Macbook display color problems

    macbook, mac os 10.5.8 updated, display color problem. when i try to fix it by color sync. it says:
    /Library/Application Support/Adobe/Color/Profiles/DCDM_X'Y'Z'.icc
    Tag 'A2B1': Requiredtag is not present.
    Tag 'B2A1': Requiredtag is not present.
    Tag 'A2B2': Requiredtag is not present.
    Tag 'B2A2': Requiredtag is not present.
    Tag 'gamt': Requiredtag is not present.
    The file is locked. could not be fixed.
    /Library/Application Support/Adobe/Color/Profiles/DCI_P3.icc
    Tag 'A2B1': Requiredtag is not present.
    Tag 'B2A1': Requiredtag is not present.
    Tag 'A2B2': Requiredtag is not present.
    Tag 'B2A2': Requiredtag is not present.
    Tag 'gamt': Requiredtag is not present.
    The file is locked. could not be fixed.
    Repair done - 0 out of 2 profiles fixed.
    Kindly assist what to do.

    Welcome to Apple Discussions!
    Pictures would help. A good way to do this is to post them to a free photo sharing site like Flickr and then post a link.
    Also, you are in the original MBP section, and I think you need to post your question in the newer MBP section:
    http://discussions.apple.com/forum.jspa?forumID=1294
    Good luck!

  • [svn:osmf:] 15505: Fix image smoothing, which had been broken as a result of some changes to how the display object of an ImageElement is exposed .

    Revision: 15505
    Revision: 15505
    Author:   [email protected]
    Date:     2010-04-16 09:29:26 -0700 (Fri, 16 Apr 2010)
    Log Message:
    Fix image smoothing, which had been broken as a result of some changes to how the display object of an ImageElement is exposed.  Add integration test.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/elements/TestImageElementIntegration.as

    That's a comment in the file. It has no effect at all.

  • Flex2 CompilerException: Encountered invalid display object Window :

    Hello,
    I'm using VC 7.0 with SPS 14 and the new Flex 2 runtime. When I deploy an existing Flex VC 7.0 model with the new runtime I get the following Flex Compiler exception:
    Flex2Compiler.Compile: FlexCompilerException: Encountered invalid display object Window : null: null
    Does anyone know what I need to do to fix it?
    Kind regards
    Stefan

    Hi Govindu,
    I runs perfectly with Flex.
    Thanks very much for your support.
    Here's the GML:
    <AEA8W0 name="Input" parent="ADA8VZ" role="INPUT" appName="INPUT" spec="DT_OBJ_IN" anchor="L15" pos="0 15" orig_guid="GMfe4e66c2e4a511dc9286000255334790" fields="}"/><AEA8W1 name="I T Immanfnr Imp" parent="ADA8VZ" role="I_T_IMMANFNR_IMP" appName="OUTPUT I_T_IMMANFNR_IMP" spec="DT_SET_OUT" anchor="R15" pos="100 15" capacity="0" orig_guid="GMfe4e66c3e4a511dc853c000255334790" fields=",F_BIC_IM_WIEDMA:,F_BIC_IMANSPRPA:,F_BIC_IMPLNJAHR:,TXTLG:,PROG_POS:,PROG_DEF_S:,F_BIC_PC_DIV:,F_BIC_IMMANFSTA:,APPR_YEAR:,F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMPLANGES:,CURRENCY:,F_BIC_IMKZAR:,F_BIC_IMGESELLS:,F_BIC_IMWEITVER:,F_BIC_IMUSERID:,F_BIC_ERNAM:,F_BIC_IMERFDAT:,F_BIC_AENAM:,AEDAT:,F_BIC_STA_TXTLG:,F_BIC_PROG_POS:,F_BIC_PPOS_TXTLG:}"/></ADA8VZ><AHC8W2 name="start" parent="AAD8VY" pos="70 130" infoshape="#ID[AXB8W4]" orig_guid="GMfe4e66c4e4a511dc9fb8000255334790"><AEA8W3 parent="AHC8W2" role="DATA" spec="PN_START" anchor="R^" pos="40 10" orig_guid="GMfe4e66c5e4a511dcad8b000255334790"/></AHC8W2><AXB8W4 name="IN_PARAMS" parent="AAD8VY" orig_guid="GMfe4e66c6e4a511dcc5d8000255334790" fields="{}"/><AFA8W5 parent="AAD8VY" src="#ID[AEA8W3]" trg="#ID[AEA8W0]" nobc="true" contour="22" controls="0 0 -40 -45" orig_guid="GMfe4e66c7e4a511dcca55000255334790" fields="}"/><ACC8W6 name="Aktuelle Maßnahmen" parent="AAD8VY" pos="375 220" box_style="0" box_features="SEL BTN TTL" box_size="384 576" grid_style="2" box_rows="0" box_pos="16 64" size="120 60" box_zOrder="-1" box_toolbar="Neue Ma%DFnahme:INSERT(FIRST)" orig_guid="GMfe4e66c8e4a511dcc77c000255334790" fields=",F_BIC_IMANSPRPA:,F_BIC_IMPLANGES:,Sichern:,IM_WIEDMA:,PROG_POS:,F_BIC_STA_TXTLG:,F_BIC_IMMANFSTA:,F_BIC_PROG_POS:,TXTLG:,Loeschen:,MANFStatus_Dyn:,Debug:,Gespeichert:,]'}}"><AEA8W7 name="in" parent="ACC8W6" role="IN" spec="UI_SET_IN" anchor="L15" pos="0 15" orig_guid="GMfe4e66c9e4a511dcb8fd000255334790"/><AEA8W8 name="out" parent="ACC8W6" role="OUT" spec="UI_SET_OUT" anchor="R15" pos="120 15" orig_guid="GMfe4e66cae4a511dc92cd000255334790"/></ACC8W6><AXB8W9 name="STORE_PARAMS" parent="AAD8VY" orig_guid="GM30e2db72e4a611dcca06000255334790" fields=",Bestaetitungsmeldung:,sichtbar_fehler:,Fehlermeldung:,UpdKennzeichen:}"/><ADA8WA name="Zihp Manr Upd" parent="AAD8VY" system_type="SAPFactory" sap_system="BW_BAPI" sap_function="ZIHP_MANR_UPD" pos="360 500" size="100 80" orig_guid="GMbb0c9e70e4a711dc9491000255334790"><AEA8WB name="Output" parent="ADA8WA" role="OUTPUT" appName="OUTPUT" spec="DT_OBJ_OUT" anchor="R15" pos="100 15" orig_guid="GMbb0c9e71e4a711dc84cd000255334790" fields=",E_RESULT_CODE:}"/><AEA8WC name="I Immanfnr Imp" parent="ADA8WA" role="I_IMMANFNR_IMP" appName="INPUT I_IMMANFNR_IMP" spec="DT_OBJ_IN" anchor="L25" pos="0 25" orig_guid="GMbb0c9e72e4a711dca0ab000255334790" fields=",F_BIC_IM_WIEDMA:,F_BIC_IMANSPRPA:,F_BIC_IMPLNJAHR:,TXTLG:,PROG_POS:,PROG_DEF_S:,F_BIC_PC_DIV:,F_BIC_IMMANFSTA:,APPR_YEAR:,F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMPLANGES:,CURRENCY:,F_BIC_IMKZAR:,F_BIC_IMGESELLS:,F_BIC_IMWEITVER:,F_BIC_IMUSERID:,F_BIC_ERNAM:,F_BIC_IMERFDAT:,F_BIC_AENAM:,AEDAT:,F_BIC_PROG_POS:}"/><AEA8XG name="Input" parent="ADA8WA" role="INPUT" appName="INPUT" spec="DT_OBJ_IN" anchor="L15" pos="0 15" orig_guid="GMfbcff800e54f11dcc7fc000255334790" fields="}"/></ADA8WA><ACA8WD name="Maßnahme - Detail" parent="AAD8VY" pos="575 230" box_style="2" box_features="EDT TTL" box_size="464 576" form_layout="ABS" labels_align="BEFORE" overflow="EXC" box_pos="408 64" size="110 60" box_scale="AUTO" orig_guid="GMfd9ff8d2e13811dcbb2c000255334790" box_zOrder="-1" fields=",F_BIC_IMANSPRPA:]'},F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMERFDAT:,F_BIC_IMGESELLS:,F_BIC_IMKZAR:,F_BIC_IMMANFNR:]',ctl:'7',useEnum:'#ID[AXD907]'},F_BIC_IMMANFSTA:]'},F_BIC_IMPLANGES:,F_BIC_IMPLNJAHR:,F_BIC_IMUSERID:,F_BIC_IMWEITVER:,F_BIC_IM_WIEDMA:,F_BIC_PC_DIV:]',text:'(*) Sparte'},F_BIC_PROG_POS:]',show:'Y'},TXTLG:]'},Erfasser:,Wiedma:,Erfasstam:,Pflcihtfeld:,Ende:,Sichern:,IM_WIEDMA:,AEDAT:,F_BIC_AENAM:,F_BIC_ERNAM:,Loeschen:,Debug:,Clear:}"><AEA8WE name="in" parent="ACA8WD" role="IN" spec="UI_OBJ_IN" anchor="L15" pos="0 15" orig_guid="GMfd9ff8d3e13811dcafd1000255334790"/><AEA8WF name="out" parent="ACA8WD" role="OUT" spec="UI_OBJ_OUT" anchor="R15" pos="110 15" orig_guid="GMfda01fe0e13811dc82ed000255334790"/><AXD8WG name="ENUM[ACA8NZ:F_BIC_IM_WIEDMA]" parent="ACA8WD" sap_function="ZIHP_MANR_LIS" sap_system="BW_BAPI" system_type="SAPFactory" inputPort="INPUT" inputPortStruct="OBJ" inputPortAppName="INPUT" inputPortFields="}" inputPortMap="I_IMANSPRPA:%27M1-EK*%27" outputPort="I_T_IMMANFNR_IMP" outputPortStruct="SET" outputPortFields=",F_BIC_IM_WIEDMA:,F_BIC_IMANSPRPA:,F_BIC_IMPLNJAHR:,TXTLG:,PROG_POS:,PROG_DEF_S:,F_BIC_PC_DIV:,F_BIC_IMMANFSTA:,APPR_YEAR:,F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMPLANGES:,CURRENCY:,F_BIC_IMKZAR:,F_BIC_IMGESELLS:,F_BIC_IMWEITVER:,F_BIC_IMUSERID:,F_BIC_ERNAM:,F_BIC_IMERFDAT:,F_BIC_AENAM:,AEDAT:,F_BIC_PROG_POS:,F_BIC_PPOS_TXTLG:,F_BIC_STA_TXTLG:}" outputPortAppName="OUTPUT I_T_IMMANFNR_IMP" valueField="@F_BIC_IMMANFNR" textField="@TXTLG" enumFlags="SORT DUPL" orig_guid="GMdb7e1df0e54211dcc6b4000255334790"/><AXD907 name="ENUM[ACA8WD:F_BIC_IMMANFNR]" parent="ACA8WD" sap_function="ZIHP_MANR_FREI_LIST" sap_system="BW_BAPI" system_type="SAPFactory" inputPort="INPUT" inputPortStruct="OBJ" inputPortAppName="INPUT" inputPortFields="}" inputPortMap="I_IMMANFNR_2CHAR:RIGHT%28@F_BIC_IMPLNJAHR%2C2%29" outputPort="IT_IMMANFNR_FREI" outputPortStruct="SET" outputPortFields="}" outputPortAppName="OUTPUT IT_IMMANFNR_FREI" enumFlags="SORT" valueField="@F_BIC_IMMANFNR" textField="@F_BIC_IMMANFNR" orig_guid="GMf75b2cf0e5f811dcc453000255334790"/></ACA8WD><AFC8WH parent="AAD8VY" src="#ID[AEA8W8]" trg="#ID[AEA8WE]" contour="12" orig_guid="GMcdad1d43e4aa11dc859b000255334790"/><AHL8WI name="store" parent="AAD8VY" pos="705 140" infoshape="#ID[AXB8W9]" orig_guid="GM46c9a440e4ac11dcc881000255334790"><AEA8WJ parent="AHL8WI" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GM46c9a441e4ac11dcb4b0000255334790"/></AHL8WI><AFA8WK name="sichern" parent="AAD8VY" src="#ID[AEA8WF]" trg="#ID[AEA8WJ]" nobc="true" contour="22" orig_guid="GM46c9a442e4ac11dccb5a000255334790" fields=",Bestaetitungsmeldung:,UpdKennzeichen:}"/><ACA8WL name="Bestätigung" parent="AAD8VY" box_style="6" box_features="EDT" box_size="544 40" form_layout="ABS" labels_align="BEFORE" overflow="EXC" pos="595 350" box_pos="296 8" box_vis="STORE@sichtbar" orig_guid="GMc0dfea00e4ac11dc9a4a000255334790" fields=",bestaetigung_neine:,Meldung:}"><AEA8WM name="in" parent="ACA8WL" role="IN" spec="UI_OBJ_IN" anchor="L15" pos="0 15" orig_guid="GMc0dfea01e4ac11dca35c000255334790"/><AEA8WN name="out" parent="ACA8WL" role="OUT" spec="UI_OBJ_OUT" anchor="R15" pos="80 15" orig_guid="GMc0dfea02e4ac11dc9b4e000255334790"/></ACA8WL><AHL8WO name="store" parent="AAD8VY" pos="775 310" infoshape="#ID[AXB8W9]" orig_guid="GM1f944c81e4ad11dcb546000255334790"><AEA8WP parent="AHL8WO" role="DATA" spec="PN_STORE" anchor="L^" pos="0 10" orig_guid="GM1f944c82e4ad11dcc3fb000255334790"/></AHL8WO><AFA8WQ name="bestaetigung_ja" parent="AAD8VY" src="#ID[AEA8WN]" trg="#ID[AEA8WP]" nobc="true" contour="22" orig_guid="GM1f944c83e4ad11dcc27e000255334790" fields="}"/><AHL8WR name="store" parent="AAD8VY" pos="870 345" infoshape="#ID[AXB8W9]" orig_guid="GM1f944c84e4ad11dccb79000255334790"><AEA8WS parent="AHL8WR" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GM1f944c85e4ad11dcc4d7000255334790"/></AHL8WR><AFA8WT name="bestaetigung_nein" parent="AAD8VY" src="#ID[AEA8WN]" trg="#ID[AEA8WS]" nobc="true" contour="22" orig_guid="GM1f944c86e4ad11dc8910000255334790" fields="}"/><ACA8WU name="Systemmeldung" parent="AAD8VY" pos="680 445" box_style="6" box_features="EDT" box_size="320 40" form_layout="ABS" labels_align="BEFORE" overflow="EXC" box_pos="16 8" size="100 60" box_vis="STORE@sichtbar_fehler" orig_guid="GM51d968b0e4ad11dcad5e000255334790" fields="}"><AEA8WV name="in" parent="ACA8WU" role="IN" spec="UI_OBJ_IN" anchor="L15" pos="0 15" orig_guid="GM51d968b1e4ad11dc82fe000255334790"/><AEA8WW name="out" parent="ACA8WU" role="OUT" spec="UI_OBJ_OUT" anchor="R15" pos="100 15" orig_guid="GM51d968b2e4ad11dc8459000255334790"/></ACA8WU><AFA8WX name="*bestaetigung_ja" parent="AAD8VY" src="#ID[AEA8W8]" trg="#ID[AEA8WC]" nobc="true" contour="14" orig_guid="GM1deb5010e4b011dcb335000255334790" fields=",F_BIC_IM_WIEDMA:,F_BIC_IMANSPRPA:,F_BIC_IMPLNJAHR:,TXTLG:,PROG_POS:,PROG_DEF_S:,F_BIC_PC_DIV:,F_BIC_IMMANFSTA:,APPR_YEAR:,F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMPLANGES:,CURRENCY:,F_BIC_IMKZAR:,F_BIC_IMGESELLS:,F_BIC_IMWEITVER:,F_BIC_IMUSERID:,F_BIC_ERNAM:,F_BIC_IMERFDAT:,F_BIC_AENAM:,AEDAT:,F_BIC_PROG_POS:}"/><AGB8WY name="Sort1" parent="AAD8VY" pos="245 210" orig_guid="GMc2ff5550e4b111dcb9fe000255334790" fields="}"><AEA8WZ parent="AGB8WY" role="IN" spec="TR_SET_IN" anchor="L" pos="0 15" orig_guid="GMc2ff5551e4b111dc98de000255334790"/><AEA8X0 parent="AGB8WY" role="OUT" spec="TR_SET_OUT" anchor="R" pos="40 15" orig_guid="GMc2ff5552e4b111dcbe1c000255334790"/></AGB8WY><AFB8X1 parent="AAD8VY" src="#ID[AEA8W1]" trg="#ID[AEA8WZ]" contour="14" orig_guid="GMc2ff5553e4b111dccce6000255334790"/><AFB8X2 parent="AAD8VY" src="#ID[AEA8X0]" trg="#ID[AEA8W7]" contour="12" orig_guid="GMc2ff5554e4b111dca801000255334790"/><AHL8X3 name="store" parent="AAD8VY" pos="575 150" infoshape="#ID[AXB8W9]" orig_guid="GMadc85740e52911dcbfb0000255334790"><AEA8X4 parent="AHL8X3" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GMadc85741e52911dc963b000255334790"/></AHL8X3><AHL8X5 name="store" parent="AAD8VY" pos="595 515" infoshape="#ID[AXB8W9]" orig_guid="GMf1daf230e52911dca80d000255334790"><AEA8X6 parent="AHL8X5" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GMf1daf231e52911dcaae5000255334790"/></AHL8X5><AFA8X7 parent="AAD8VY" src="#ID[AEA8WB]" trg="#ID[AEA8X6]" nobc="true" contour="22" orig_guid="GMf1daf232e52911dcb92f000255334790" fields=",sichtbar:,Fehlermeldung:,UpdKennzeichen:}"/><AHK8X8 name="timer1" parent="AAD8VY" guard="true" interval="1" pos="440 125" size="40 30" orig_guid="GM506764e0e52b11dc82a2000255334790" fields=",ELAPSED:}"><AEA8X9 parent="AHK8X8" role="DATA" spec="PN_START" anchor="T^" pos="20 0" orig_guid="GM50678bf0e52b11dcacb8000255334790"/></AHK8X8><AFA8XA parent="AAD8VY" src="#ID[AEA8X9]" trg="#ID[AEA8X4]" nobc="true" contour="12" orig_guid="GM50678bf1e52b11dc94a6000255334790" fields="}"/><AHL8XB name="store" parent="AAD8VY" pos="775 245" infoshape="#ID[AXB8W9]" orig_guid="GM636fe260e53011dc84ee000255334790"><AEA8XC parent="AHL8XB" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GM636fe261e53011dc8753000255334790"/></AHL8XB><AFA8XD name="loeschen" parent="AAD8VY" src="#ID[AEA8WF]" trg="#ID[AEA8XC]" nobc="true" contour="22" orig_guid="GM636fe262e53011dc9fd0000255334790" fields=",sichtbar:,UpdKennzeichen:}"/><AXB8XE name="OUT_PARAMS" parent="AAD8VY" orig_guid="GMce1181f0e53a11dc9ff3000255334790" fields="{}"/><AFA8XQ name="*bestaetigung_ja" parent="AAD8VY" src="#ID[AEA8W8]" trg="#ID[AEA8XG]" nobc="true" contour="14" orig_guid="GMbafb9b50e55311dc853f000255334790" fields="}"/><AHL8YN name="store" parent="AAD8VY" pos="570 185" infoshape="#ID[AXB8W9]" orig_guid="GM3f9a84a0e5d811dc9529000255334790"><AEA8YO parent="AHL8YN" role="DATA" spec="PN_STORE" anchor="L" pos="0 10" orig_guid="GM3f9a84a1e5d811dc8b43000255334790"/></AHL8YN><AFA8YP name="select" parent="AAD8VY" src="#ID[AEA8W8]" trg="#ID[AEA8YO]" nobc="true" contour="22" orig_guid="GM3f9a84a2e5d811dc84ef000255334790" fields="}"/><AHB8YQ name="refresh" parent="AAD8VY" epcm_event="com.sap.vc:epcm" pos="560 580" size="50 20" orig_guid="GMb1a94770e5d811dc8e4b000255334790" fields="{}"><AEA8YR parent="AHB8YQ" role="DATA" spec="PN_SET_IN" anchor="L" pos="0 10" orig_guid="GMb1a96e80e5d811dc977d000255334790"/></AHB8YQ><AEA8YS name="refresh" proto="AEA8YR" parent="AAD8VY" role="OUT" spec="PT_SET_OUT" anchor="R" pos="120 20" orig_guid="GMb1a96e81e5d811dca518000255334790"/><AFA8YT parent="AAD8VY" src="#ID[AEA8WB]" trg="#ID[AEA8YR]" nobc="true" contour="22" guard="@E_RESULT_CODE==0" orig_guid="GMb1a96e82e5d811dc893b000255334790" fields="{}"/><AHA8YU name="refresh" parent="AAD8VY" epcm_event="com.sap.vc:epcm" pos="125 215" size="50 20" orig_guid="GMb1a96e83e5d811dc85d4000255334790" fields="{}"><AEA8YV parent="AHA8YU" role="DATA" spec="PN_SET_OUT" anchor="R" pos="50 10" orig_guid="GMb1a96e84e5d811dcb68a000255334790"/></AHA8YU><AEA8YW name="refresh" proto="AEA8YV" parent="AAD8VY" role="IN" spec="PT_SET_IN" anchor="L" pos="0 20" orig_guid="GMb1a96e85e5d811dc8ace000255334790"/><AFA8YX parent="AAD8VY" src="#ID[AEA8YV]" trg="#ID[AEA8W0]" nobc="true" contour="22" orig_guid="GMb1a96e86e5d811dc906a000255334790" fields="}"/></AAD8VY></GMLUNITS><enums><AXD7M1 name="IMANSPRA" parent="AAA2O" sap_function="ZIHP_IMANSPRPA_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_IMANSPRPA" outputPortStruct="SET" outputPortFields=",TXTMD:}" outputPortAppName="OUTPUT I_T_IMANSPRPA" enumFlags="SORT DUPL" valueField="@F_BIC_IMANSPRPA" textField="@TXTMD" orig_guid="GM46f262a0e39311dca3a8000255334790"/><AXD7M2 name="IMGESELLS" parent="AAA2O" sap_function="ZIHP_IMGESELLS_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_IMGESELLS" outputPortStruct="SET" outputPortFields=",TXTMD:}" outputPortAppName="OUTPUT I_T_IMGESELLS" enumFlags="SORT DUPL" valueField="@F_BIC_IMGESELLS" textField="@TXTMD" orig_guid="GM25e30720e39511dcc05b000255334790"/><AXC782 name="JANEIN" parent="AAA2O" enumMap="J:Ja;N:Nein;A:A;X:X" orig_guid="GM54b80530e15811dc9558000255334790"/><AXD907 name="ENUM[ACA8WD:F_BIC_IMMANFNR]" parent="ACA8WD" sap_function="ZIHP_MANR_FREI_LIST" sap_system="BW_BAPI" system_type="SAPFactory" inputPort="INPUT" inputPortStruct="OBJ" inputPortAppName="INPUT" inputPortFields="}" inputPortMap="I_IMMANFNR_2CHAR:RIGHT%28@F_BIC_IMPLNJAHR%2C2%29" outputPort="IT_IMMANFNR_FREI" outputPortStruct="SET" outputPortFields="}" outputPortAppName="OUTPUT IT_IMMANFNR_FREI" enumFlags="SORT" valueField="@F_BIC_IMMANFNR" textField="@F_BIC_IMMANFNR" orig_guid="GMf75b2cf0e5f811dcc453000255334790"/><AXD3X8 name="ENUM[ACA1ZQ:F_BIC_IMMANFSTA]" parent="AAA2O" sap_function="ZIHP_STATUS_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_STATUS" outputPortStruct="SET" outputPortFields=",TXTLG:}" outputPortAppName="OUTPUT I_T_STATUS" valueField="@F_BIC_IMMANFSTA" textField="@TXTLG" orig_guid="GM696f74a068df11dcb4b0000255334790" enumFlags="DUPL SORT"/><AXD7N0 name="IMWEITERVER" parent="AAA2O" sap_function="ZIHP_IMWEITVER_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_IMWEITVER" outputPortStruct="SET" outputPortFields=",TXTMD:}" outputPortAppName="OUTPUT I_T_IMWEITVER" valueField="@F_BIC_IMWEITVER" textField="@TXTMD" enumFlags="SORT DUPL" orig_guid="GM57d1ec00e3a011dc94f2000255334790"/><AXD8WG name="ENUM[ACA8NZ:F_BIC_IM_WIEDMA]" parent="ACA8WD" sap_function="ZIHP_MANR_LIS" sap_system="BW_BAPI" system_type="SAPFactory" inputPort="INPUT" inputPortStruct="OBJ" inputPortAppName="INPUT" inputPortFields="}" inputPortMap="I_IMANSPRPA:%27M1-EK*%27" outputPort="I_T_IMMANFNR_IMP" outputPortStruct="SET" outputPortFields=",F_BIC_IM_WIEDMA:,F_BIC_IMANSPRPA:,F_BIC_IMPLNJAHR:,TXTLG:,PROG_POS:,PROG_DEF_S:,F_BIC_PC_DIV:,F_BIC_IMMANFSTA:,APPR_YEAR:,F_BIC_IMANTEXT1:,F_BIC_IMANTEXT2:,F_BIC_IMANTEXT3:,F_BIC_IMANTEXT4:,F_BIC_IMPLANGES:,CURRENCY:,F_BIC_IMKZAR:,F_BIC_IMGESELLS:,F_BIC_IMWEITVER:,F_BIC_IMUSERID:,F_BIC_ERNAM:,F_BIC_IMERFDAT:,F_BIC_AENAM:,AEDAT:,F_BIC_PROG_POS:,F_BIC_PPOS_TXTLG:,F_BIC_STA_TXTLG:}" outputPortAppName="OUTPUT I_T_IMMANFNR_IMP" valueField="@F_BIC_IMMANFNR" textField="@TXTLG" enumFlags="SORT DUPL" orig_guid="GMdb7e1df0e54211dcc6b4000255334790"/><AXD7ND name="PV_DIV" parent="AAA2O" sap_function="ZIHP_PC_DIV_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_PC_DIV" outputPortStruct="SET" outputPortFields=",TXTMD:}" outputPortAppName="OUTPUT I_T_PC_DIV" valueField="@F_BIC_PC_DIV" textField="@TXTMD" enumFlags="SORT DUPL" orig_guid="GMf686c720e3a111dc80ea000255334790"/><AXD8VX name="ProgPos" parent="AAA2O" sap_function="ZIHP_BIC_PRPOS_LIST" sap_system="BW_BAPI" system_type="SAPFactory" outputPort="I_T_PRPOS" outputPortStruct="SET" outputPortFields=",LANGU:,TXTLG:}" outputPortAppName="OUTPUT I_T_PRPOS" valueField="@F_BIC_PROG_POS" textField="@TXTLG" enumFlags="SORT DUPL" orig_guid="GMdd5ef540e52911dc9ddf000255334790"/></enums><IMAGES/><TRANSPORTLOG/></GMLPACK>

  • Object ID and Object ID Version fields in Displaying Object Properties - XI

    Hi,
    In displaying Object Properties in XI we can see different fields like Type, Description, SCV, Object ID, Object ID Version, Status, Person Responsible, Changed On, Changed By, Display Language, Original Language.
    But when i refer to the SAP Library documentation for these fields, Object ID and Object ID Version are not included. Here is the link for the documentation
    http://help.sap.com/saphelp_nw04/helpdata/en/f0/fc9a3de2ec0753e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/f0/fc9a3de2ec0753e10000000a114084/frameset.htm
    With that said, i have no information on those two fields, only assumptions i've made that i would like to verify in this forum with the questions below
    1.
    Please correct me if i'm wrong, the Object ID is the unique identifier for the object and the Object ID Version is directly connected with the versioning concept for IR and ID, so the Object ID is generated when you create the object  (e.g. MM) and the Object ID Version changes every time that object is edited and change list activated for it. Is this correct?
    Or does the Object ID change every time the object is edited and change list activated for it?
    What is the behavior of these two fields when transported? e.g. dev to qa...  are they both retained on the target IB's?  (specifically for ID objects because the change list needs to be activated first on the target ID)
    2.
    Does any one know where the Object ID and Object ID Version gets stored?  (saved on a table in the ABAP stack or saved somewhere in the Java stack? e.g. can be viewed in Visual Admin or a URL)  I am thinking of extracting all the XI objects with their corresponding Object ID and Object ID Version (per system) in one step.  I know this is possible only if the Object ID & Object ID Version are stored in an ABAP table...
    Kindly give me some inputs.
    Please answer directly with the questions above. I will reward points for it.
    Thanks in advance.

    HI,
    >Please correct me if i'm wrong, the Object ID is the unique identifier for the object and the Object ID Version is directly connected with the versioning concept for IR and ID, so the Object ID is generated when you create the object (e.g. MM) and the Object ID Version changes every time that object is edited and change list activated for it. Is this correct?
    The Object Id is created the first time you create the object.
    Object Version Id is created the first time you save/activate a object.
    Now suppose if you modify the object a new Object Version Id will be created but the Object ID will remain the same.
    For IR Objects the Object Id & Object Version ID will remain the same across systems.
    For ID Objects the Object Id & Object Version ID is not the same across systems.
    Not sure about the table. Can you try in SE11 and check all tables with SXMS*. Could be also that tables might not be available from GUI i.e you might have to login to DB to find out.
    Regards,
    Sumit

Maybe you are looking for

  • Hp deskjet 1510

    Hello, My HP DeskJet 1510 just ran out of ink so i ask someone to buy an ink so i can refill. it is my first time refilling this as i used this for just a week. The thing is, i refilled the ink just fine and then i receive something saying "Counterfe

  • Item text can't  edit in scheduling agreement.

    Hi ... I have one problem in create scheduling agreement. When I create standard scheduling agreements , I can edit their item text . But if the Item category is K (consignment) , I can't edit item text . The system always show a message -Text change

  • Is boot camp 5 and OS X 10.9 compatible with Windows 8

    I recently bought the new iMac 27" (Late 2013) with following spec:   Intel I7 3.5 GHz   16 Gb RAM   3TB Fusion Drive   GTX 780M GPU (4G) I have been trying to use boot camp 5 and install Windows 8 on it so I can run work programs on the new iMac. Re

  • How to invite someone to MobileMe album?

    I used to use iPhoto for all my photos but have recently converted my entire library to Aperture. I've got some MobileMe albums I've published using Aperture and can't figure out how to invite people to view them. With iPhoto there was a way of invit

  • Survey: Performance Evaluation of ERP-Systems

    Hello, In course of my Bachelor thesis I´m conducting a survey about u201EPerformance evaluation of ERP-Systemsu201D. I would like to ask you to take part in this survey; it will take you only about 10 minutes. The link below will lead you to the sur