More modified versions of one object in BW

Hello,
is it possible to save more modified versions of any object in BW(InfoObject, InfoCube,...) and then activate one of them? I know it is possible by ABAP programs, but in BW?
Example: I want to try some settings. But if they are wrong, I have to change it back manually. If I could save the old version and restore later it would be very helpful.
Thanks for your answer!
Regards,
Radek

Ahoj Radek,
BW has no such a sophisticated version-ing system as common ABAP/DDIC objects are having.
This is still area for improvement. Hope people in SAP AG are aware of that.
Also I'm not aware of any 3rd party custom tool that would allow that.
Field RSOBJVERS used mostly in all BW tables for identifying version of objects can have only following values, so this is a limit as well:
A     Active
M     Revised
N     New
D     Content
H     Historic
T     Transport
BR
m./

Similar Messages

  • More inactive versions of one program

    Hello,
    is it possible to have more inactive versions of one program/dictionary object? How to save them and work with them?
    Example: I develop something and do not know which solution is the best. I consider 2 solutions and need to do some test for comparison. I have solved it with a new programm with a different name till now.
    Thanks for your hints,
    Radek

    Hi
    The system can create a version of abap object only if it's assigned to package, i.e. it's not a local object.
    The system inserts the object in a change request as soon as it'll be changed.
    The version will be created as soon as the request is released.
    So only one version can be used, if it needs a old one it has to restore it.
    Max

  • Re: How to create More two class with one object

    haii,
             i have small information How to create More two class with one object,
    bye
    bye
    babu

    Hello
    I assume you want to create multiple instance of your class.
    Assuming that you class is NOT a singleton then simply repeat the CREATE OBJECT statement as many times as you need.
    TYPES: begin of ty_s_class.
    TYPES: instance   TYPE REF TO zcl_myclass.
    TYPES: end of ty_s_class.
    DATA:
      lt_itab      TYPE STANDARD TABLE OF ty_s_class
                     WITH DEFAULT KEY,
      ls_record  TYPE ty_s_class.
      DO 10 TIMES.
        CLEAR: ls_record-instance.
        CREATE OBJECT ls_record-instance.
        APPEND ls_record TO lt_itab.
      ENDDO.
    Regards
      Uwe

  • More Headstart versions in one database

    Is it possible to install two different versions of headstart in the same database.
    We have 212 installed and also want to install a version up to patch 12_4 in the same database for development of another application.
    If possible what needs to be done extra or different from standard installation?

    Geert,
    Yes, it is possible to install two different versions of Headstart in the same database. If you use private synonyms or set current schema, the database poses no problems (see also the information on Alter Session Set Current Schema in the CDM RuleFrame User Guide, chapter Runtime Environment).
    If you want to run the Headstart-generated forms of these two versions on the same Client PC, or in Webforms on the same Application server, you have to take care that they reference the right Forms libraries. Patch 12.4 contains a new version of qmslib50.pll and qmsevh50.pll (amongst others).
    In a Client/Server environment there are two ways to achieve this:
    1. You can collect the right libraries of a specific Headstart version in one folder, and run the forms from this folder (Forms looks in the start folder before it looks in the FORMS60_PATH)
    2. Run a command script to start Forms (ifrun60.exe), and in the same script, just before the Forms startup, override the default FORMS60_PATH.
    In a Webforms environment, you can only use the second method. Run each Forms Server instance on a different port.
    regards,
    Sandra

  • Selecting more than one object at a time

    Hi guys and girls
    I am trying to select more than one object on my artboard and Shift+clicking on the next one isn't working...
    I am creating an interactive form in Indesign and realised that I have everything on one layer... I have radio buttons for yes/no questions and I wanted to move them to a new layer for ease of selection and editing...
    I have tried selecting one and then Shift+Click on the next but it just moves which one is selected...?
    I even tried creating a new layer and dragging them up to the new layer...no Dice?
    Has anyone any ideas....Please!
    bookie56
    P.S. Just realised that the radio buttons are part of the text? Could this be the reason why I can't move them. Doesn't solve the question about selection though

    Hi AnshulJain19
    OK! sort of guessed that....thanks for coming by.
    I am still on this form and have created multiline text boxes for two of my text boxes.... have checked the positioning of the boxes - but when I write in the box in Adobe Acrobat the text is quite a long way above the line...this is only happening with the multiline boxes.
    Is there a way to export a font colour for the boxes or does this need to be done in Acrobat Reader...?
    I have a standard dark background for my page and that needs a White font...when I fill the form in it is black...
    bookie56

  • When I open itunes, I have the following message : a more recent version of this app already exists in your itunes library. Do you really want to replace it by the one you move ?

    When I open itunes, I have the following message : a more recent version of this app already exists in your itunes library. Do you really want to replace it by the one you are moving ? How can I get rid of this message which appears for at least 20 app out of 90 ?

    When I open itunes, I have the following message : a more recent version of this app already exists in your itunes library. Do you really want to replace it by the one you are moving ? How can I get rid of this message which appears for at least 20 app out of 90 ?

  • Methods that return more than one object.

    Hello everyone,
    I don't know if this has ever been proposed or if there's an actual solution to this in any programming language. I just think it would be very interesting and would like to see it someday.
    This is the thing: why isn't it possible for a method to return more than one object. They can receive as many parameters as wanted (I don't know if there's a limit), but they can return only 1 object. So, if you need to return more than one, you have to use an auxiliary class...
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String getName() {
           return name;
       public String getLastName() {
           return lastName;
    }So if you want to get the name of somebody you have to do this, assuming "person" is an instance of the object Person:
    String name = person.getName();And you need a whole new method (getLastName) for getting the person's last name:
    String lastName = person.getLastName();Anyway, what if we were able to have just one method that would return both. My idea is as follows:
    public class Person {
       private String name;
       private String lastName;
       public Person(String name, String lastName) {
          this.name = name;
          this.lastName= lastName;
       public String name, String lastName getName() {
           return this.name as name;
           return this.lastName as lastName;
    }And you would be able to do something like:
    String name = person.getName().name;and for the last name you would use the same method:
    String lastName = person.getName().lastName;It may not seem like a big deal in this example, but as things get more complicated simplicity becomes very useful.
    Imagine for example that you were trying to get information from a database with a very complex query. If you only need to return 1 column you have no problem, since your object can be an array of Strings (or whatever type is necessary). But if you need to retrieve all columns, you have three options:
    - Create 1 method per column --> Not so good idea since you're duplicating code (the query).
    - Create and auxiliary object to store the information --> Maybe you won't ever use that class again. So, too much code.
    - Concatenate the results and then parse them where you get them. --> Too much work.
    What do you think of my idea? Very simple, very straight-forward.
    I think it should be native to the language and Java seems like a great option to implement it in the future.
    Please leave your comments.
    Juan Carlos García Naranjo

    It's pretty simple. In OO, a method should do one thing. If that thing is to produce an object that contains multiple values as part of its state, and that object makes sense as an entity in its own right in the problem domain--as opposed to just being a way to wrap up multiple values that the programmer finds it convenient to return together--then great, define the class as such and return an instance. But if you're returning multiple values that have nothing to do with each other outside of the fact that it's convenient to return them together, then your method is probably doing too much and should be refactored.
    As for the "if it increases productivity, why not add it?" argument, there are lots of things that would "increase productivity" or have some benefit or other, but it's not worth having them in the language because the value they add is so small as to no be worth the increase in complexity, risk, etc. MI of implementation is one great example of something that a lot of people want because it's convenient, but that has real, valid utility only in very rare cases. This feature is another one--at least in the domain that Java is targetting, AFAICT.

  • I have a new Mac and I migrated mi old one to this. I can not open iTunes because a message stating "iTunes Library.itl" can not be opened because it was created in more recent version of iTunes. There is not a new version to download.

    I have a new Mac and I migrated mi old one to this. I can not open iTunes because a message stating "iTunes Library.itl" can not be opened because it was created in more recent version of iTunes. There is not a new version to download. How can I fix this?                             

    Go to iTunes > about iTunes.  What version are you running?  If necessary, hold down the option key while starting iTunes and create a new, test library so it will start.

  • If possible, one SoftReference refer to more than one object?

    Hello,
    I want design a cache to keep huge number objects.
    If create a new SoftReference intance for each object,
    will take a lot of space and time.
    So, one SoftReference refer to more than one object, if possible?

    or arrange your objects into buckets somehow and have
    soft references to the bucketsEn, It's a good idea. but I think it doesn't work.
    My problem is:
    There are many caches(cache1, cache2.......), they may cache a lot of same object instance.
    then, I want to keep a object pool, and try to get the equal object from pool before put a object into a cache, if there is an equal object, put the equal object into cache, if there is no equal object, put the target object into pool and cache. the object pool may very huge because there is lot of objects. So it's necessary to release the object in the pool if no cache referes to the object(the caches contain the object may removed). Then SoftReference come into my mind. I try to create a SoftReference for each object in the pool, but soonly, I find there are two problems:
    1, A lot SoftReference instances take much memory.
    2, Need some time to new and reclaim the SoftReference intances.
    I think SoftReference may work fine to cache the object frequently used,
    but the object number can't be too large.
    Now, I don't use object pool. replace starting a thread to scan those cache s and combine the same objects intervally. It can scan about 2000,000 objects one second in my pc. It's ok for my project. But I am looking for some better way still.

  • [Q] Can Vision track more than one object in a same area - objects that might cross?

    Hi,
    Sorry for that long title, but that's my question.
    Can Vision track more than one object in a same area - objects that might cross?
    Because I'm able to do it, extracting XY, but it looks like "IMAQ Count Objects" doesn't track object frame after but frame, but extract the XY coordinates always in the same way, like example starting from top and everytime he sees an object, he extracts the XY, but if the objects cross (then he will extract XY without caring which objects was the previous one but just based on "scan from top to bottom").
    This is why I opened this topic in the non Vision forum part : http://forums.ni.com/t5/LabVIEW/Sort-XY-by-closest/td-p/2440428
    Thank you,
    Sébastien
    Solved!
    Go to Solution.

    Hi,
    In fact, IMAQ count object order the object regarding their top most and left most pixel, but not regarding their gravity center point.
    Axis origin of an image is situated on the left top corner.
    You need to refer to other caracteristics such as shape or color to identify your objects.
    Regards

  • Retreiving more than one object from an object stream using serialization.

    I have written a number of object into a file using the object Output stream. Each object was added separately with a button event. Now when I retrieve it only one object is being displayed. the others are not displayed The code for retrieval and inserting is given below. Please do help me.
    code for inserting is as follows
    Vehicle veh1 and vehicle class implements serializable
    veh1.vehNum=tf1.getText();
              veh1.vehMake=tf2.getText();
              veh1.vehModel=tf3.getText();
              veh1.driveClass=tf4.getText();
              veh1.vehCapacity=tf5.getText();          
              FileOutputStream out = new FileOutputStream("vehicle.txt",true);
              ObjectOutputStream s = new ObjectOutputStream(out);
              s.writeObject(veh1);
    retrieval
    FileInputStream out = new FileInputStream("vehicle.txt");
              String str1,str2;
              str1=str2=" ";
              Vehicle veh=new Vehicle();
              ObjectInputStream s = new ObjectInputStream(out);
              try
              Vehicle veh1=(Vehicle)s.readObject();
              s.close();
              int i=0;
              str1=veh1.vehNum;
              str2+=str1+"\t";
              str1=veh1.vehMake;
              str2+=str1+"\t";
              str1=veh1.vehModel;
              str2+=str1+"\t";
              str1=veh1.driveClass;
              str2+=str1+"\t";
              str1=veh1.vehCapacity;
              str2+=str1+"\t\n";
              ta1.append(str2);
              catch(Exception e)
              e.printStackTrace();
    Pleas give me the code for moving through the object until it reaches the end of file

    You can read objects from the stream one by one. So, what you need is an endless loop like this:
    // Suppose you have an ObjectInputStream called objIn
    // So here is the loop which reads objects from the stream:
    Object inObj;
    while (1) {
        try {
            inObj=objIn.readObject();
            // Do something with the object we got
            parse_the_object(inObj);
        } catch (EOFException ex) {
            // The EOFException will be thrown when
            // we reached the end of the file, so here we break out
            // of our lovely infinite cycle
            break;
        } catch (Exception ex) {
            ex.printStackTrace();
            // Here you may decide what to do...
            // Probably the processing will end here, too. For now,
            // we moving on, hoping there is still something to read
    objIn.close();
    // ...

  • Is it possible to change iWork files on your iMac without having to upload the modified version to iCloud and downloading it again for the next use ?

    Recently I am getting more and more familiar with Numbers, Pages, KeyNote and I have to acknowledge they look smart in many aspects compared to Office for Mac programs ( ..only a bit of time to learn some minor things..). But what really surprises me is that while shifting from MobileMe to ICloud, Apple is not providing a real , full-service, cloud-computing platform for those who , like me, makes use of it mostly for work or business purposes.. I mean, you can do whatever from your Ipad or Iphone ( besides clearly ignoring the necessity one may build up folders with any kind of file in it, not just one categoory..) and every file you manage from these mobile devices, get saved and stored in the new modified version.. But try doing the same form your Imac or McBook Air and you wil have to download from Icloud your file, work on it and having to re-upload onto Icloud back again ==> syncing is not authomatic as it used to be by Idisk in MobileMe  !!.. A real nightmare for those who work with Apple, in my opinion.
    One last thing.. I am having trouble at dragging and dropping PDF files onto Icloud, doesn't accept its format.. Although PDF files are mentioned as acceptable at Pages , for example...
    I can't see the reasons for all this.. At first I thought this was all being done in order to move more and more users from Windows office to IWork programs, if it were for this, I'd be keen on changing, also because I love Iworks programs.. But I found out it's not !.. Unless people at Apple think that all business driven users of former MobileMe should quit their Imac and start working 8-10 hrs a day with the Ipad   :-) !!
    No fear, I know there are plenty of cloud-computing services doing the same as IDisk, but I can't understand why Apple has given so little attention to such needs, that , I guess, are probably the same by many other Mac users..
    Thankful for any help-support-opinion on this,
    Maurizio

    m,
    You can submit Feedback to Apple from the Numbers menu. That's the official channel for comments about the app and suggestions for improvement. The Apple officials don't visit these discussions except to maintain the decorum.
    Jerry

  • Saving original and modified versions

    Hey all,
    Can someone tell me how to stop iphoto from saving both an original and modified version of my photos? It's very confusing when I try to access the photos to upload onto flickr, or to burn dvds etc.
    I can't believe how much time I've wasted on this program--and now have had to start all over from scratch.
    LH

    Hello.
    You do have a choice. Use a file browser. There are many available. They let you simply store the photos on your hard drive, in your folders, how you want them. Easy.
    Why does iPhoto behave as it does? Because it offers much more complex features than any file browser. iPhoto is not a file browser. It is a database application with non-destructive editing. You import a photo. iPhoto creates a thumbnail version, linked to your original, for efficient presentation of your library on screen. You edit, and it creates a full-sized copy, which you then modify. It keeps track of the edited version, linked to your original. Your thumbnail is also located and updated to match the edited version. If you ever wish to go back, you can always Revert to Original. The edited version will be deleted, and your thumbnail will again reflect the change. All before you can blink your eyes.
    So, yes, the way to get your files for uploading or burning to DVD is to select from iPhoto, then export. Because iPhoto will be sure to export the full-sized, most recent version of your photos. You never need to root around its library folders to find them yourself. Exporting gives you the additional ability to rename the copies. And, even better, to resize the copies, since smaller files work better for viewing on most websites. After you finish with the upload you can trash the exported copies.
    Then consider the Albums and Folders in your Source Pane. With a file browser, you'd have to duplicate your files to display them in more than one album (because album = folder). With iPhoto's database, albums never create duplication; they are virtual arrangements which have no presence in your folder structure. The benefit - you can have a photo in 100 albums, with very little increase to the size of your library.
    Play with other search features, and iPhoto becomes very powerful indeed. Smart Albums can be created to compile photos based on many criteria, and they stay current with your library. With the calendar tool you can pull up photos from any year, month, and/or date with just a few clicks. Keywords can be used to include or eliminate (Option-click a keyword) groups of photos until you have just the grouping you want. [Ex: I can find all photos of my daughter, with my in laws, at a festival, NOT at Christmas, with animals....]
    It is a shift in thinking to leave the iPhoto Library alone and let iPhoto deal with the file management. As long as it works, why does it matter how it's done? You have all of its tools at your disposal.

  • LR HTML Web Gallery -- modified version with great features is available

    For anyone using the default Lightroom HTML Web Gallery, one of our associates here has offered a modified version with some great added features.
    John Beardsworth's site -- Lightroom Solutions - http://lightroomsolutions.com/ -- is a wonderful resource for LR tips, plug-ins, information, etc. 
    The default HTML gallery is fine, but I always found it lacked features.  I mentioned this to Ian Lyons (http://www.computer-darkroom.com/) a couple of years ago, and he sent me a modified version with the ability to specify up to 100 rows by using sliders instead of the grid.  When I tried John's modified version, it had some other good features.  I thought.... what if the two modified versions could be combined?  So, I shot John an email, and low and behold, he uploaded a new version of the gallery to his site.  Thank you, Ian and John!
    Here is the link:
    http://lightroomsolutions.com/my-tweaked-built-in-html-gallery/
    Here are the added features that I find most useful:
    Number of rows (up to 100) and columns can be specified using sliders rather than the grid
    Thumbnail images can be sized to your specification
    Filename can be placed on each thumbnail, and you specify size of text
    Clicking the large image advances to the next image rather than returning to the top of the thumbnail page (no need to use the 'next' link)
    See the site for other added features.  (If you already have John's version, the newer version has the same file name and went online April 17, 2013.)
    PLEASE NOTE:  John Beardsworth's HTML gallery is NOT supported by John or Adobe, and is offered "as-is."
    I hope others will find this as useful and I have.
    John

    I've done a version of this where the large file links to the medium and it works no problem. code is based on tutorial code I've already written..
    I'd need to see more code to see where the issue might be..
    Here's what I have:
    (I opted not to put the files in "content", also ignore margin-top, it's not relevent to this)
    AddGridPages {
    template='grid.html',
    rows=model.nonCSS.numRows,
    columns=model.nonCSS.numCols,
    AddCustomCSS {
    filename='resources/css/custom.css',
    AddResources {
    source='resources',
    destination='resources',
    AddPhotoPages {
    template='detail.html',
    variant='_large',
    destination="",
    AddPhotoPages {
        template='medium.html',
        variant='_medium',
        destination="",
    In medium.html
    <div id="detailContainer">
    <div style="margin-top:<%= margintop %>px;">
    <img src="bin/images/med/<%= image.exportFilename %>.jpg" alt="$image.metadata.description"/></div>
    </div>
    in detail.html
    <div id="detailContainer">
    <div style="margin-top:<%= margintop %>px;">
    <a href="<%= image.exportFilename %>_medium.html"><img src="bin/images/photo/<%= image.exportFilename %>.jpg" alt="$image.metadata.description"/></a></div>
    </div>

  • Modified version of the GL2DW extension

    Hi everyone (and especially MenuMachine users),
    After looking at the problems on this forum I have looked at the code of the GL2DW extension and have modified/fixed it in a couple of ways in order to address some issues:
    1) the extension is now tolerant of any errors copying components or templates. If these errors occur, you will still see an error message but the conversion process will not abort. The extension will also use the Library folder if it can't find the Snippets folder.
    2) the extension will no longer modify any MenuMachine code. This is important if you are still using MenuMachine to manage your menus in the converted site.
    I have posted the patched extension here:
    http://menumachine.com/download/GL2DW.zip
    Hopefully this helps many of you.
    As far as I can tell there is no official license or copyright notice for the GL2DW software so I think it's OK for me to post a modified version. If anyone at Adobe objects please contact me directly at [email protected] and hopefully we can work something out.

    I was giving the GL2DW extension a try while trying to write up a step-by-step tutorial, and ran into a problem. Does the extension (this one, or the original from Adobe) not allow for editable template content in the head section? I know DW assumes the whole head section is locked unless an editable region is defined, but GoLive assumes the head section is editable, with head locked regions defined instead.
    If I export a site from GL to DW, then make a change to a template file, the page-specific head content is lost. Is that the case for others too? Page-specific head content isn't supported?
    If that's the case, the best solution I've come up with involves a relatively complex find and replace that gets rid of the head lock comments and wraps head editable comments around any head content above and below the template's head content. Seems like a pretty big problem though that could result in losing a good bit of site code if you weren't looking for it.

Maybe you are looking for

  • 802.1X Auto-Login

    Everytime I restart my Macbook Pro, I have to retype my 802.1x connection's password. Is there any way to avoid this? A script maybe?

  • Time Machine and File Vault question

    I just completed a clean install of OS x mavericks and then used my time machine back up to restore the mac. The whole process was confusing for many reasons and I just want to get some clarification/verification on my next actions. When I enter time

  • Is it possible to downsize a large image on the server side (before serving it to the user)?

    One of the banes of my existence is resizing the same image several times because of the various contexts it appears in. For example, the main image in an article will appear bigger than it will on the index page, where many article teasers are place

  • How to publish news on a portal page of Oracle CS

    Hi everybody! Please help, how to publish news on a portal page of Oracle Collaboration Suite Thanks a lot for your helps.

  • The requested query does not exist on the current server

    Hy, i created an workbook an QAs with a query that i have trasported from DEV. The query exist on QAs system but when open the workbook i receive this error message:<i>'The requested query does not exist on the current server'</i>. When i select ok,