How much effort for object migration from CPS Basic to Full version?

Dear all,
I've got 2 questions concerning using SAP CPS Basic version first and migrating later to full version, looking for answer(s):
1. Is it possible to start using the free CPS and then with some tool migrate from many isolation group as to one global ?
2. Is there any limitation in the number of isolation groups in the free version ?
If someone have experience, would be great to get feedback.
Look forward reading from you.
Best Regards
Ferry

Hello,
1) the product comes with a job to 'De-Isolate' the system when you install a full license. Note that you can only deisolate, it is not possible to go back from full to free.
2) there is no limitation.
Regards Gerben

Similar Messages

  • I have CRM, now for PC-UI...how much effort?

    I've got CRM 5.0 (Netweaver 2004s) working via SAP GUI, with activity, sales and marketing. I would now like to enable portal access to this funcionalities (especially activity and sales).
    How much effort is envolved in configuring the PC-UI assuming all the processes are already configured. All I know, is that I can logon to the portal in the CRM server.

    Hi Jao.
    If you have portal administration skills it would be as easy as to assign the corresponding roles to the user / user groups. Accessing PCUI from the portals is done by single sign on.
    Please, If you need more details in a particular process please be more detailed then specify it in the thread.
    Regards.
    Armando.

  • How much memory an object consumed?

    Via making an internet lookup and writing some code, i made an implementation of
    how to calculate how much memory an object consumes. This is a tricky way.
    However, how can i achieve a better and direct way? Is there a tool for attaching
    to JVM and viewing the memory locations and contents of objects in memory?
    I wrote the tricky way to Javalobby and pasting the same explanation to here too.
    I must say that this tricky way does not belong to me, and i noted where i took
    the main inspiration etc. at the end.
    Because of the underlying structure Java does not let
    users to access and directly change the content of
    instances in memory. Users could not know how
    much memory is used for an object, like in C.
    However this tricky method lets them to know in an
    indirect way.
    To achieve how much memory is used for an object we must
    calculate the used memory before and after the object is
    created.
    MemoryUsage.java
    * User: Pinkman - Fuat Geleri
    * Date: Mar 20, 2005
    * Time: 11:13:50 AM
    * The class which makes the calculation job.
    * Calculating the difference of used memory
    * between calls
    * "start()", and "end()".
    * So if you initiate an object between those
    * calls you can get how much memory the object
    * consumed.
    * Initial inspration from
    * http://javaspecialists.co.za/archive/Issue029.html
    public class MemoryUsage {
         long usage;
         public void start(){
              garbageCollect();
              Runtime r=Runtime.getRuntime();
              usage=r.totalMemory()-r.freeMemory();
         public long end(){
              garbageCollect();
              Runtime r=Runtime.getRuntime();
              return (r.totalMemory()-r.freeMemory())-usage;
         public String memorySizeToString(long l){
              int MB=(int) (l/1048576);
              l=l-1048576*MB;
              int KB=(int) (l/1024);
              l=l-1024*KB;
              return new String(MB+"MB "+KB+"KB "+l+"BYTES");
         private void garbageCollect() {
              Runtime r=Runtime.getRuntime();
              r.gc();r.gc();r.gc();r.gc();r.gc();
              r.gc();r.gc();r.gc();r.gc();r.gc();
              r.gc();r.gc();r.gc();r.gc();r.gc();
    Therefore the first file MemoryUsage.java is coded.
    It simply calculates and stores the used memory when
    start() method is called. After generating some objects,
    the end() method is called to get the
    difference between memory usages, between the start()
    and end() method calls.
    SizeOf.java
    import javax.swing.tree.DefaultMutableTreeNode;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Random;
    * User: Pinkman - Fuat Geleri
    * Date: Mar 20, 2005
    * Time: 6:02:54 PM
    * Arbitrarily size of objects in JAVA..
    * An example of getting how much an
    * object consumed in memory.
    * Like
    *  primitives -> does not consume any
    *  arrays  -> consumes 16 bytes when empty
    *   ex: byte []a=new byte[0];
    *  list    -> consumes 80 byte when empty..
    *  references -> when did not initiated does
    * not consume any memory!.
    * Initial inspration from
    * http://javaspecialists.co.za/archive/Issue029.html
    public class SizeOf {
         MemoryUsage mu=new MemoryUsage();
         public static void main(String []args){
            SizeOf s=new SizeOf();
              s.sizeOfExample();
         //remove the comments in order to make the same checking by yourself..
         private void sizeOfExample() {
              mu.start();
              //byte []b=new byte[0];//<-byte array 16byte,each byte addition equals 1 byte!!
              //String s="How much memory is used?";//string consumes no byte!!
              //byte c=20; //<-consumes no memory!!
                    //Object o=new Object();//object consumes 8 bytes..
              //Object []oa=new Object[100];//<-object array consumes 16 byte! and each addition object 4 bytes!
                    //List list;//non initialized object consumes no memory!!..
              //Integer i=new Integer(1);//an integer object consumes 16 bytes!
              //List list=new ArrayList();//An array list consumes 80 bytes!.
              /*for(int i=0;i<10;i++){ //An array list + 10 integer consumes 240 bytes  :)
                   list.add(new Integer(i));
              Random r=new Random();
              byte []rand=new byte[1];
              int count=100000;
              List list=new ArrayList(count);
              for(int i=0;i<count;i++){
                   r.nextBytes(rand);
                   list.add(new String(rand));//empty string occupies no memory??
              DefaultMutableTreeNode root=new DefaultMutableTreeNode();//8 byte when single!.
              Random r=new Random();
              byte []rand=new byte[10];//when this is one and count is 1 million memory gets overfilled!..
              int count=500000;
              for(int i=0;i<count;i++){
                   r.nextBytes(rand);
                   root.add(new DefaultMutableTreeNode(new String(rand)));
              long l=mu.end();
              System.out.println(""+mu.memorySizeToString(l));
    An example usage can be found in the second file
    SizeOf.java. Simply remove the comments,"//", and execute
    to see how much memory used.
    For example:
    % Primitives does not consume any memory.
    % Non-initialized object references does not consume
    any memory.
    % Empty string and most of the small strings does not consume any memory.
    % Empty byte[] consumes 16 bytes.
    % Empty ArrayList consume 80 bytes.
    % An Integer object consumes 16 bytes.
    % Empty DefaultMutableTreeNode consumes 8 bytes..
    and so on.
    You can find the mentioned files in the attachments.
    I heard the idea of -how much memory is used- from
    Prof. Akif Eyler, and i got the main inspration from
    the site http://javaspecialists.co.za/archive/Issue029.html
    //sorry about my mistakes, and everything :)
    Thanks for your answers beforehand.

    Any good profiler will tell you.
    You can also code your own using jvmpi or jvmti.
    Also note that calling System.gc is a hint to the jvm it may or may not respect your wish.
    Test it with a few different gc algorithms and see what happens.
    /robo

  • How much cost for changing new battery of 3GS?

    How much cost for changing new battery of 3GS?

    http://support.apple.com/kb/index?page=servicefaq&geo=United_Kingdom&product=iph one
    Pick your country from drop down menu and your options will be there

  • How much cost for changing new battery of MacBook Air?

    How much cost for changing new battery of MacBook Air??

    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=Macn otebooks
    Choose 'Battery Replacement' on the left and then "How much does battery replacement cost?"
    If you are outside the US just choose the appropriate country in the drop-down menu.

  • HT1444 how to migrate from yosemite beta to full vesion

    Hi
    how to migrate from yosemite beta to full vesion

    When I look in "about this mac" - it says Yosemite 10.10. Do I really need to download it again?
    I found on a blog that someone contacted the Apple service:
    “simply install the final version of the software you are testing when it appears in Software Update” – that means the final version of the beta software you are given to test is what will be made public. So we’re on the same build as what is now in the App Store.
    My compute OSX is 10.10 but build is (14A388b) while some say that app store version is (build 14A389).
    Does it really make a difference? If I don't download it will it continue to update?

  • "how much price for unlocked iphone 5 ?"

    "how much price for unlocked iphone 5 ?"

    Depends on the country.
    They do not sell them, nor have they announced that they are going to sell them, in the U.S

  • How much cost for gsm iphone 5 black replacement sim card tray?

    How much cost for gsm iphone 5 black replacement  sim card tray?

    Ask Apple. We are but simple users here, and have no control over prices charged in whatever country you are in.

  • How to pay for forms central from serbia

    how to pay for forms central from serbia

    Hi Uma,
    One way of doing it is by incorporating this computation in the formula which calculates your basic salary.
    If your employee's hire date (EMP_HIRE_DATE - database item) is after your Payroll period start date (PAY_PROC_PERIOD_START_DATE), then currently the pro-ration calculation is performed.
    You'll have to insert another piece of control in this part which will check if the days between the Payroll period start date and emp hire date are holidays (I assume you have your holidays stored somewhere in the system) or not and adjust the "start date" used for the pro-ration with every holiday found between EMP_HIRE_DATE and PAY_PROC_PERIOD_START_DATE.
    HTH.
    Rajen.

  • I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?

    I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?
    My computer is really old.
    It is running out of memory.
    I haven't done a firefox update since 24.0 because I think it will explode my computer.
    I see that v28.0 takes 200MB.
    How much more is this than what is already loaded for my v24.0?
    Will it just add the extra pieces, or will it require a free block of 200MB (which my computer does not have)?
    I don't want to crash and lockup my computer because I try to install something that is too big for the remaining memory.
    Thanks.

    You should updated to Firefox 28, Firefox updates don't take any new space they just replace the existing files.
    There are some things you can do to clean up your hard drive to free up space however, http://arstechnica.com/civis/viewtopic.php?p=21178060 and http://support.microsoft.com/kb/956324, also uninstall programs you don't use anymore and delete files you don't need anymore.
    You should also start saving up for a new machine, Windows XP is being dropped from support by Microsoft in a few days, which means it will no longer be safe to use on the internet.

  • How do I transfer my contracts from a basic phone to a iphone ?

    How do I transfer my contracts from a basic phone to a iphone ?

        Thanks for your reply, russell97! Now that you've backed up your existing contacts, please use this tool http://vz.to/1kRZkEq for all available step-by-step directions on getting them loaded to your new device.
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • How do I transfer a project from someone else's FCPX, version 10.0.9, which I can no longer open, to my FCPX, version 10.1.4?

    How do I transfer a project from someone else's FCPX, version 10.0.9, which I can no longer open, to my FCPX, version 10.1.4?

    You need all the project and event folders associated with the production. They need to be in explicit locations or they will not be seen my the application.
    Start reading here
    http://www.fcpxbook.com/updates/101/
    You use the Upgrade Project and Events function in the File menu when you have the correct folders in the correct location to update the volume you want.

  • I've been using Adobe Acrobat 7 for many years. I updated my full version of Acrobat 5 to get to 7. My hard drive crashed and I've been trying to reinstall Acrobat and it will not install. Adobe will not help because 7 is no longer supported. Does anyone

    I've been using Adobe Acrobat 7 for many years. I updated my full version of Acrobat 5 to get to 7. My hard drive crashed and I've been trying to reinstall Acrobat and it will not install. Adobe will not help because 7 is no longer supported. Does anyone know where I can go for help?

    You won't be able to install your original Acrobat 7 at all, or use your original serial number. The server which used to allow this was switched off.
    But assuming you have a compatible system, like Mac OS 5 or Windows XP, licensed users of Acrobat 7 can download a replacement and get a replacement serial number.
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • How to find out import & export path for object migration between D Q & P?

    Hi guys!
    Is there a way, how to find out export and import path for object transport on XI?
    Thanx!
    Olian

    Hi,
    Have a look at these links.
    When we do an export of the IR or the ID Oblects, a typical path at which it gets exported in the XI Server is as follow:
    For IR Objects:
    “C:\usr\sap\PI1\SYS\global\xi\repository_server\export “
    For ID Objects:
    "C:\usr\sap\PI1\SYS\global\xi\directory_server\export"
    Now in case you need to import the ".tpz" that you have.... You need to place it in the path mentioned below and u will be able to do import it from IR or ID...
    For IR Objects:
    “C:\usr\sap\PI1\SYS\global\xi\repository_server\import “
    For ID Objects:
    "C:\usr\sap\PI1\SYS\global\xi\directory_server\import"
    File Level transport in sap xi
    Every SLD related transport details are explained here
    Regarding transport of SLD objects
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    Regarding transport of XI objects
    http://help.sap.com/saphelp_nw04/helpdata/en/93/a3a74046033913e10000000a155106/content.htm
    Regards,
    Akshay Jamgaonkar.
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar
    Message was edited by:
            Akshay Jamgaonkar

  • How much space should I dedicate from my hard drive for Windows?

    So I am going to buy a Macbook Pro w/768 GB Flash Storage. I need to run windows on it for Autodesk products for school. Should I install Windows 7 or 8? And how much of my hard drive should I dedicate to it? I will need Revit, Autocad, & Autocad 3D Civil. I would like to have extra space as well for antivirus and any other possible software I may have to install.
    This will be my first Mac so I'm kind of lost.

    If that turns out not to be sufficient space then you can use CampTune to add more space non-destructively.
    I base it on experience. Windows plus your software will likely take up nearly 40 or 50 GBs altogether. Allow another 20 or 30 GBs for data and miscellaneous. This leaves about 20 GBs of extra space.

Maybe you are looking for

  • Firewire/target disk mode

    ok so long story... bear with me... i have 2 macs and 1 sorta died so i connected the 2 and transferred all the documents i wanted to keep onto the good one via firewire and it all worked perfectly with the target disk mode and the hard drive came up

  • Change font style

    Hi, I want to change properties of text (style) depending on values of other database item. In post-query:      if :c.m!='S' then           set_item_property(:c.p,enabled,property_false);           set_item_property(:c.p,font_style,font_italic);     

  • Can you send slideshows as an email attachment?

    can you send slideshows as an email attachment? Please provide the steps if it is possible, thank you

  • Linqpad Help - Using CRM

    Hi, I am new to using Linqpad.  I have got the CRM assemblies loaded correctly and able to create the Connection/CrmService etc. I am trying the following code and getting the below error in both Error Line 1 and 2. Invalid token '=' in class, struct

  • Disconnect after 5-10 minutes

    After 5-10 minutes of use my application disconnnects  all users....does anybody know some general causes of this or how do i fix it...........in the server logs i get code 600 normal disconnect.........I don't know how to go about addressing this in