Archiving Object SOBL - New Object Links Package

Any one has experience on this archiving object?
Is it necessary to run this archive object? or the object relationship is archived when the object is archived.
if we do need to archive this object, how can we sure it does not cause data lose. I tried to run this archive object it selects records which linked objects are still active!

Alberto,
Can you explain what you are trying to do. Are you trying to archive data from a BI object or are you trying to export data out of a BI object using open hub.

Similar Messages

  • Dragging object to NEW Object library...why does it not do it?

    Very basic this..From Forms Developer 6i cannot drag/copy form objects to form a new Object library object on a tab. Very frustrating..what is wrong..or what am I doing wrong? IT simply displays the STOP symbol nad does not copy a new object. DO not think it is anything to do with permissions/paths etc...
    Help
    Phil

    Dear Phil,
    Can you explain further about the error message you are getting and more about your action.
    Regards,
    Senthil .A. Perumal.

  • Powershell New-object Command not reconized am i missing a module?

    I want to configure high trusted app for app dev in SharePoint, end to do so i need first to insert some commands in the powershell editor like :
        $publicCertPath = "C:\Certs\HighTrustSampleCert.cer" 
        $certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2($publicCertPath)
    I am using windows PowerShell on Windows Server 2012 R2 which includes Windows PowerShell 4 that includes by default the new-object cmd-let... I don't understand though, why doesn't my system recognize that command .... Each time i am getting the following
    error : New-Object : The term 'New-Object' is not recognized as the name of a cmdlet.
    Every time i open power shell it displays me the following error :
    *select : The term 'Select-Object' is not recognized as the name of a cmdlet,
    function, script file, or operable program. Check the spelling of the name, or
    if a path was included, verify that the path is correct and try again.
    At C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\15\CONFIG\POWERSHELL\Registration\SharePoint.ps1:1 char:16
    + $ver = $host | select version
    +                ~~~~~~
        + CategoryInfo          : ObjectNotFound: (Select-Object:String) [], Comma
       ndNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    Set-location : The term 'Set-location' is not recognized as the name of a
    cmdlet, function, script file, or operable program. Check the spelling of the
    name, or if a path was included, verify that the path is correct and try again
    At C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\15\CONFIG\POWERSHELL\Registration\SharePoint.ps1:4 char:1
    + Set-location $home
    + ~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Set-location:String) [], Comman
       dNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException*
    I thought that was normal until today... does it have any relation with the error?
    And here is the hole (new-object) exception stack:
    *New-Object : The term 'New-Object' is not recognized as the name of a cmdlet,
    function, script file, or operable program. Check the spelling of the name, or
    if a path was included, verify that the path is correct and try again.
    At line:1 char:16
    + $certificate = New-Object
    System.Security.Cryptography.X509Certificates.X509Cert ...
    +                ~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (New-Object:String) [], CommandN
       otFoundException
        + FullyQualifiedErrorId : CommandNotFoundException*
    Can anyone help me please?

    the new-object cmdlet is not defined in a module.
    Try this:
    reboot your computer
    start the powershell console
    type a new-object command without parameter
    this is what happens when I do that:
    PS C:\Users\Al> new-object
    cmdlet New-Object at command pipeline position 1
    Supply values for the following parameters:
    TypeName:
    what happens on your system?
    Al Dunbar 
    Aren't you able to see a simple semantic error?
    I told you almost never post any technical text, just vague and imprecise generalities.
    When you try to post something technical, you post a rubbishellian text like this one, typical of a decrepit old vb scripter 101% PowerShell ignorant.
    Certainly, you are the worst rubbishellian I met in this forum.
    @admins: will you please, inhibit the reply button for this rubbishellian forum member? He should just ask questions; never answer any of them.
    Your post above is off-topic in this thread, as it is a personal attack on me that contains no information likely to actually help the OP with his problem.
    I was not aware that you are the arbiter here of what is appropriate to post, especially given your collection of abusive posts and banned accounts.
    Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.

  • Why create "new Object()"

    Why would anyone want to create a Object?
    Object obj = new Object();
    I've seen people use it during synchronization locks but why create a new object instead of any other alternatives?
    synchronized(obj) {
    Are there any other uses for Object?

    This is one of the most usual use for new Object() that I've come across - it's used to provide something to lock against that can be shared between various instances. An Object instance is considered lightweight (ie, the minimal thing you can lock against) and it doesn't imply that it will be used in your code for anything else (since it doesn't do much else).
    You're right that there are other alternatives (often overlooked), such as synchronising on a Class instance (this.getClass() or MyClass.class) - this is at least guaranteed to exist and therefore its being lightweight doesn't really matter. But it's not always appropriate, especially if you've got various levels of locking going on. As usual, you've got to choose what best suits your own situation and your own personal style.
    Another use for an Object instance is to provide an enumeration of constants whose value isn't important:
    public class MyLayoutManager implements LayoutManager
      public static final Object NORTH = new Object();
      public static final Object SOUTH = new Object();
    }I'm not suggesting that my example is ideal (personally I'd choose a constant whose toString at least made sense for debugging) but it does demonstrate how you can use an Object to provide constants for use by other bits of code (or even internally, say as keys into a Map) - they simply do something like MyLayoutManager.NORTH to indicate something to my code.
    Clearly there are other uses for Object (such as being the base class for everything) and providing default implementations of hashCode, equals and all the locking stuff. But I can't think of any other uses of an Object instance that I've had before. No doubt other people have come across some...
    Hope this helps.

  • 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

  • Using null for parameterized "newInstance(Object [])" method in Object[].

    I have a really serious problem. I am creating instances of specific classes by using reflection techniques. I am reading a flat file, finding class from its name and creating it by using its parameterized constructor. Example:
    line 1: Dummy("A",Dummy2("B"),12,,"C");
    I create an instance of Dummy with parameters "A", an instance of Dummy2 object with value "B", 12 (I use here Integer as wrapper), null (There is no wrapper for null :( ) and "C".
    I find constructor by using findConstructors() and looking their parameter counts, creating an object array with given values and calling:
    constructorIFoundBefore.newInstance(objectArrayIPrepared);
    But!!!
    Because I use null directly, I got this message:
    java.lang.IllegalArgumentException: argument type mismatch
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at reader.parser.ObjectCreator.createObjectFromObjectItem(ObjectCreator.java:192)
         at reader.parser.ObjectCreator.createObjectFromParseItem(ObjectCreator.java:112)
         at reader.parser.ObjectCreator.createObject(ObjectCreator.java:78)
         at reader.analyzer.FileAnalyzer.analyzeAndCreateObjects(FileAnalyzer.java:95)
         at reader.ReverseReader.main(ReverseReader.java:43)
    I will be very glad if you help me.
    Thanks a lot!
    Gokcer

    I said something wrong. Sorry. While invoking a method (or a constructor) we need an object array which are equivalent to parameters. For example to call a method or constructor for class A;
    class A {
    int age;
    String name;
    public A(int age, String name){
    this.age = age;
    this.name = name;
    public set(int age, String name){
    this.age = age;
    this.name = name;
    we use in any place
    A a1 = new A(12,"Gokcer");
    A a2 = new A(15,null);
    To achieve this by using reflection techniques, we must find constructor with two parameters of class A. At this point "BetterMethodFinder" will give great help.
    After finding right constructor, we must create an object array to tell the constructor parameters (age and name). At this point we need an object array which stores our parameters. Code must be like this.
    Object []params = new Object[2]; // we have two parameters.
    params[0] = new Integer(12); // we can't use params[0]=12
    // because 12 is not an object. (It is a
    // primitive type)
    params[1] = "Gokcer";
    Now create the new object.
    A a1;
    a1 = constructorWeFound.newInstance(params);
    While creating param[], we could also use:
    Object []params = new Object[2] {new Integer(12),"Gokcer"};
    While creating a2, we can use "null" directly for second parameter.
    params = new Object[2] = {new Integer(15), null};
    or
    Object []params = new Object[2];
    params[0] = new Integer(15);params[1] = null;
    Thanks again everyone who replied me.
    My sincerely...

  • Maintain Screen for Object Link - New Object

    Hi
    We want to create new object link  ( not standard SAP) in our company.
    I try to add new screen for link other SAP object  : SE80 ---> Package : CV --->
    Function Group : CV130 , add new screen . It seems as REPAIR , Ask me for access key .
    Is it OK?
    Help Activities:
    f the screen entry contains errors or you want to add a new entry you
    an check the existing screen sas follows:
       Start a second mode and execute the following steps:
       -   Start the Object Navigator.
       -   Display the objects for development class CV
       -   Expand the function group 130
           The structure notes screens lists all screens that can be used
           for an object link
       -   Find the screen for the object link (such as 1201 for material
           link).
       Process the activity Maintain screen for object link in the first
       mode.
       -   Correct the entry or add an entry for the the object you want to
           add to the document link.
    Thanks, Meira.

    Hi Dave,
    First of all you didn't mention which version you are using and Which Real Estate you are on. there are 2 RE
    1. Classic Real Estate (Real Estate)
    2. Flexible Real Estate Management
    Now coming to Question
    for Flexible Real Estate Mangement the path is
    SPRO---->Flexible Real Estate Mangement (RE-FLX) -
    >General Setting for Master and contract -
    >
    Document Mangement -
    >Document Mangement System -
    >Maintain Screen for Object Link
    The above path is for ECC 6.0
    Thanks
    Veman.

  • Creation of new object link for DMS

    i have searched a lot  about Creation of new object link for DMS on internet .
    and all replies  focus on that documentation :
    1.     Program two screens for the following module pools for the SAP object that is to be linked additionally:
    u2013 SAPLCV00
    u2013 SAPLCVIN
    The process logic must be according to that of screen 0204 in program SAPLCV00 and must not be changed.
    2.     Create the function module OBJECT_CHECK_XXXX (XXXX = name of the SAP object).
    i need  to know how to implement that  in more detailed step by step
    as  i know DMS and  abap also.

    Hi Reda,
    Hope the below URL will help to understand how the Process of adding a object link works.
    Enhancement Without Modification of the Object Links - Engineering Change Management (LO-ECH) - SAP Library
    Thanks & Regards,
    Seshadri.

  • To add new object link in DMS

    Hi Sir/Madam,
    Currently we are implementing DMS(Document Management System) and
    our main requirement is to add document to the delivery and billing
    document.In t-code dc10 in "define object link" lips and vbrp object is
    not present in the default list so how we can add these new object in
    order to attach new document to delivery as well as billing document.
    Is it possible to attach document at header level because we have to
    attach lorry number at delivery header which will be common for all the
    items.
    The function module object_check_lips already exist in se37 but we
    have to create new function module for object vbrp.How to create this
    function module? How we have to create screens for these objects? If we
    have to create it by copying some function module like
    object_check_equithan what will be the funtion group.
    IN delivery document (vl03n) in menu bar in "extras" document
    option is not there than how we will see the attached document, do we
    have to create this option with help of abaper or this option will
    automatically reflect after all the cofiguration?
    Thanks and Regards
    Abhilash Nayak

    Hi Abhilash,
    You need to gofor z-development for this. The Abap'r will add the new required object in object link field. Also the DMS screen will appear in the required t-code.
    Meantime you need to add this object in SPRO , "maintain key fields".
    I hope this will resolve the query.
    Regards,
    Ravindra

  • New Object Types for Object Links

    Need to create new Object type to object link Product hierarchy from ECC to RPM Item. Field is PRDHA.
    Do we need to create new structure to have the Key linking PRDHA.
    Any suggestions?

    Hi,
    For this, you need to create Key, Proxy class and search field.
    Logically if you use same Proxy class and key as that of PO then the system will search for PO number rather than PR.
    I hope you are clear now.
    Take help of an ABAPer
    Niranjan
    Let me know if it helps !!!

  • Add New Object in a DMS Object Link

    Hi everybody,
    i am trying to create an object link to Service Entry Sheet.  (tcode: ML81N, ESSR-LBLNI)
    by sap instructions i did this step:
    "You must create two new screens with the same number for the module pools SAPLCV130 and SAPLCV140 .
    The processing logic must follow that of screen 1204 in program SAPLVC130."
    and this step:
    Create function module OBJECT_CHECK_XXXX (XXXX = ESSR ) which i have copied from OBJECT_CHECK_EQUI .
    I have done above step .
    I created Screen For SAPLCV130 and SAPLCV140 with screen No 1272. give same flow logic of screen 1204.
    I created Function Module OBJECT_CHECK_ESSR.
    After this What I have to do for displaying  ESSR object in DMS as Object Link. 
    Please Guide me as soon as possible.
    Thanks
    Pranesh

    Hi,
    Since I think you already followed the below steps :
    1. In the standard system, there are already two special screens for the module pools SAPLCV130 and SAPLCV140 for the linked SAP object.
    You must create two new screens with the same number for the module pools SAPLCV130 and SAPLCV140. The processing logic must follow that of screen 1204 in program SAPLVC130.
    2. Create function module OBJECT_CHECK_XXXX (XXXX = object name) If the object can be classified, this function module already exists .
    Otherwise copy the function module for linking equipment DOCUMENT_CHECK_EQUI and change it as required for the new object.
    Kindly go through the below once :
    Link :[http://help.sap.com/erp2005_ehp_02/helpdata/en/2c/3fe93bad3ce333e10000000a114084/frameset.htm].
    you define the object link in DMS customizing
    e.g.For EBAN maintain screen number 247 in "Maintain view for screens to DMS object links" Then link EBAN to your document type
    Hope it helps you.
    Thanks
    Arbind
    Edited by: Arbind Prasad on Feb 24, 2011 5:46 PM

  • New object link in dms (audit)

    Hello,
    i have to open new object link for AUDIT for DMS.
    any information ?
    thanks,
    avi.

    Hi Avi,
    Define the Object link types for the object links which you want to maintain. Please check whether the Audit type is available in the Object link types or not.
    Regards,
    Nishit Jani

  • How to use methods when objects stored in a linked list?

    Hi friend:
    I stored a series of objects of certain class inside a linked list. When I get one of them out of the list, I want to use the instance method associated with this object. However, the complier only allow me to treat this object as general object, ( of Object Class), as a result I can't use instance methods which are associated with this object. Can someone tell me how to use the methods associated with the objects which are stored inside a linked list?
    Here is my code:
    import java.util.*;
    public class QueueW
         LinkedList qList;
         public QueueW(Collection s) //Constructor of QuequW Class
              qList = new LinkedList(s); //Declare an object linked list
         public void addWaiting(WaitingList w)
         boolean result = qList.isEmpty(); //true if list contains no elements
              if (result)
              qList.addFirst(w);
              else
              qList.add(w);
         public int printCid()
         Object d = qList.getFirst(); // the complier doesn't allow me to treat d as a object of waitingList class
              int n = d.getCid(); // so I use "Object d"
         return n; // yet object can't use getCid() method, so I got error in "int n = d.getCid()"
         public void removeWaiting(WaitingList w)
         qList.removeFirst();
    class WaitingList
    int cusmNo;
    String cusmName;
    int cid;
    private static int id_count = 0;
         /* constructor */
         public WaitingList(int c, String cN)
         cusmNo = c;
         cusmName = cN;
         cid = ++id_count;
         public int getCid() //this is the method I want to use
         return cid;

    Use casting. In other words, cat the object taken from the collection to the correct type and call your method.
       HashMap map = /* ... */;
       map.put(someKey, myObject);
       ((MyClass)(map.get(someKey)).myMethod();Chuck

  • Creating a new object at runtime

    What I want to do is dynamically change the name of a object
    everytime I create a new one, what I mean excatly is like make it
    so that I can some how increment a value of a variable and apply it
    to an object anme... so I get something like this
    objectName0, objectName1, objectName2, objectName3 and so on.
    I basically want to make it so that I always have a new object to
    use... how would I go about doing this?

    You don't need exec, the api provides this functionality for you. Look at the java.util.jar package.

  • Unable to create New objects in SE37 & SE38

    Hi Experts,
    I am ABAPer and facing belowing mentioned problem.
    I am unable to create any custom objects like executable programs/BAPI/FM due to performance.
    I am able to open required transactions like SE37/SE38, after that If I try to create or test object, the system is not responding, again we need to go to task bar to close the session.
    I tried to debug SE38 to know what happening internally, it is closing automatically.
    I tied the below mentioned steps .
    1).  I am able to Creating/ Deleting Tables in SE11.
          Unable to create executable program.
           Open SE38 àEnter z----- object name à Click on Create à in new window  Provide Description àSelect program type u201CExecutableu201D à in new dialogue select package &  
           click to save the object. (Here is the problem , we need to restart session, unable to save object properly)
    2).  Function module and BAPI  I am trying to test in SE37.
           However I am able to open se37 transaction with in few seconds,
          After entering FM/BAPI name in SE37, if we click on Display or try to execute  that FM/BAPI system is not responding.
           Open SE37 à Enter existed object name example RFC_READ_TABLE à click on Display   (System will not respond, no content will be displayed)
    As per my knowledge, when ever interacting with SAP Database  system is going to struct,
    However a basis Consultant can understand better then me.
    Please suggest and let me know what need to be done further.
    Thanks & Regards,
    SAI

    Hi,
    I had that also, the window war frozen.
    The problem was the editor mode.
    => go to poperties.
    => change to mode to "old editor". don't use the first option (Now, I don't know the description). "Editor (new)"
    (a bug of the frontend or the backend)
    Sven

Maybe you are looking for

  • Server Crashes Randomly

    One Windows server 2012 r2 Data Center Server has rebooted  randomly .Below are the error detail. The computer has rebooted from a bugcheck.  The bugcheck was: 0x00000139 (0x0000000000000003, 0xffffd0014c19b1b0, 0xffffd0014c19b108, 0x0000000000000000

  • FF7: wrong website at top of address bar dropdown

    I have a problem with the drop-down list that shows my most frequently visited websites. When I upgraded to Firefox 7, one of the sites jumped from the middle of the list to the top, and remains there, even though I don't visit it as often as others.

  • I modified graphics colors and can't get back to a normal display

    It does not help to try and delete Foxfire and re-download it. If I start Foxfire and then start Internet Explore, the bad color scheme is applied to Internet Explorer so the problem has to do with Foxfire load parameters.

  • Limit a Windows 7 machine to 1 user login at a time

    I've searched everywhere for a solution to this but have not found anything outside of restarting the machine. I need to limit a Windows 7 computer to only allow one user logged in at a time. This machine has applications only allow one user to run t

  • Conversion utf-16 unicode - ASCII

    Hello, i read a utf-16 file. The read text is diplayed like this string: yp<#?#x#m#l# #v#e#r#s#i#o#n#=#"#1#.#0#" How can I convert the text? I haven't found functions to do that.