Comparing objects from system other  system

Hi,
I need to compare the multiprovider from development system to production system.Is there is any program  avilable to compare objects. Please share.
Thanks,
vikk

Hi Vikk,
The important thing for multiprovider is characteristics and key figures identification.
Use table RSDICMULTIIOBJ for getting the complete list of infoobjects having identification in multiprovider. Now you can either download the complete mapping in two excel sheet and then do the comparison using some vlookup technique.
Or You can simply do the online comparison over development and production system.
Regards,
Durgesh.

Similar Messages

  • Copy all the objects from the one system that start with (ZANK)

    hi to all,
    I have installed the name space /ank/ in the US system, we need to copy all the objects from the India system that start with (Zank) and re-create them as /ank/. problem is how can i copy objects and re-create.
    thanks

    Hi Ankal,
    I guess this is your second thread on the same question. Ok provide these information
    >>I have installed the name space /ank/ in the US system,
    Are you saying that you have a machine (US System) and i has a namespace /ank/ ? What all objects are there in this namespace?
    >>we need to copy all the objects from the India system that start with (Zank) and re-create them as /ank/.
    Is the India system on the same US system?
    Also tell me whether you have opened the home page of SAP XI/PI?  If yes , are you able to open Integration Repository? If yes then how these US and India systems are referred in Integration Repository? Are they referred as separate software components?
    Regards
    Suraj

  • LSMW How to compare projects from 2 diffrent systeme ?

    Hello all,
    I need to know how to compare all the lsmw object from one systeme to another systeme,
    ex : form D01 (4.6) to DC1 ECC
    more information :
    this is the table which contain all information about lsmw :
    /SAPDMC/LSOINP
    thanks

    we know that LSMW will generate abapcode in step generate conversion program by using display conversion program notedown the program name: like that second one also and go for se39.
    and follow the steps to compare the program from one system to another system how just normal report we do.
    just have a try.
    All the best

  • Compare object version between BW system

    Hi,
    I want to check object version between DEV system and Quality System.
    Is there any program to do that in BI7?
    Regards,

    Hi Kobul,
      For that you should write an ABAP coding using
    BAPI_IOBJ_GETDETAIL to compare the object version of the two systems.
    Regards,
    Yokesh.

  • How can i get data from the other system?

    hi,
    i want get some data from the other r3 system in my r3 system? now this two r3 system are installed two server.

    Hi,
    U can achieve this by RFC function module...
    create a function module and make it as REMOTE ENEBLED IN ATTRIBUTES TAB..
    for example i have to r/3 systems as A and B.
    I want to get data from B system..
    so create the FM in B system and then in A SYSTEM u have to call that one ,like this....
    DESTINATION NAME IS FOR SYSTEM B.
    CALL FUNCTION 'ZRFC' DESTINATION <DESTINATION NAME>
    EXPORTING
    IMPORTING
    TABLES..
    Regards,
    Nagaraj

  • How to create a new user without any sample objects from any other user?

    Question as the title.
    I had the example dababase installed when I installed the Oracle database.
    Every time, when I create a new user, there will be some example objects coming
    with the new user.
    How can I remove these objects from the new user?
    Or, how can I create a new user without the example objects?
    Thanks in advance.

    I think the easiest way for you would be to use OEM.
    Just locate each object that you want to remove and right click->remove. Don't bother doing this for any indexes as these will be removed when you drop the corresponding tables.
    If you want to try command line through sqlplus then identify the objects you want to remove by selecting from the user_objects view while logged in as this user. This will give you the name and type of object. Then issue the relevant drop command.
    It's probably worth making sure you have a valid backup first, just in case things go wrong!

  • Problem in moving object from one SAP system to another....

    Hi,
    I have created a transport request in System A client 800.
    I am trying to move the Transport request to System B client 900.
    (Note: A and B are different SAP systems)
    I first release the object going in system A client 800 using transaction se09.
    Now I go to System B client 900 and then to transaction STMS. After this I click on display import queue for System A inside transaction STMS in System B. Then I go to EXTRAS ->Other Requests Add. The import queue name is defaulted by System A and then I add the Transport Request number. Then the system asks me to login in Sytem A client 800. I login successfully. But I get an error message:
    "Transport control program tp ended with error code 0247
    Errors: addtobuffer has problems with data- and/or cofile"
    Can someone tell me how to solve this error ? What is the issue ?
    Regards,
    Rajesh.

    Hi Rajesh,
    Check this link:
    tp ended with error code 0247
    http://www-1.ibm.com/support/docview.wss?rs=2366&context=SSZ8F3&dc=DB520&uid=swg21243429&loc=en_US&cs=UTF-8&lang=en&rss=ct2366tivoli
    Solar_migration to different sid
    http://www.sapfans.com/forums/viewtopic.php?p=790715&sid=3528f52126b6764d5cb28acb67f752fe
    http://www.sapfans.com/forums/viewtopic.php?t=221340&view=next&sid=0e5e06508287d3f738bc97ce7aea8426
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/transport-request-to-import-queue-with-error-740676
    Hope any of this link helps you out.
    Regards,
    Vivek

  • How can I get the Doc object from any other object?

    Dear colleagues,
    in FrameScript it is dead-simple to get to the document part of any object, just add .Doc to the variable.
    How can I achieve the same with ExtendScript? I amtired of passing the document object next to AFrames or Pgfs along into subroutines, because those objects already contain the information about their document. But how do I access this?
    Thanks for pointers,
    - Michael
    PS: Almost the same is true for the page an object lives on. With FrameScript we use .Page, with ExtendScript you have to move up the object tree until you reach the UnanchoredFrame.PageFramePage…
    PPS: It would be great to see some convenience properties like .Doc and .Page implemented natively.

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • Compare object from arraylist?

    This is my code
    public int joinedInMonth(int month)
            int members = 0;
            if (month < 1 || month > 12)
                System.out.println(month + "  Is an invalid month");
            }else{
                int index = 0;
                while (index < memberList.size()){
                    if (memberList.get(index) == month) {
                       members+=1;
                index++;
            return members;
        }I get the error operator == cannot be applied to java.lang.object,int
    How can i rectify this?

    Ok I think I am getting there but I have another error.
    public int joinedInMonth(int month)
            int members = 0;
            if (month < 1 || month > 12)
                System.out.println(month + "  Is an invalid month");
            }else{
                int index = 0;
                Membership member;
                while (index < memberList.size()){
                    member = (Membership)memberList.get(index);
                    if (member.getMonth().equals(month)) {
                       members+=1;
                index++;
            return members;
        }

  • Cross-tab - Comparing values from resultset (other than CurrentFieldValue

    Hi guys, I'm using CRXI Standard (eclipse plugin) and I have some trouble to customize my crosstab.
    Here is a example of what I'd like to do
    if ({MY_TABLE.FIELD_FLAG}="Y") then
         "FLAG SETTED"
    else
         ToText(CurrentFieldValue)
    I read some topics on this site that were discussing about that issue but none of them seems to have been resolved.
    References:
    http://diamond.businessobjects.com/node/568
    http://diamond.businessobjects.com/node/580
    So I would just like to know if one of you guys found a solution or a workaround to that problem
    Thanks
    Phil

    Hi guys,
    After reading your suggestion we tried coalesce however we did not see any improvement whatsoever.  Also thanks for the tips Lars.  What we did find was that if we used input parameters the performance was greatly improved.  Strangely the original case statement OR the coalesce both performed well when we restarted our server (we have seen strange issues with 68 like this) but only when running the entire raw SQL script inside SQL editor.  ie: if our calculation view contains 100 lines of code and we paste it into SQL editor it works great.  Alternatively if we reference the view directly like this;
    select * from "SYS_BIC"."CalcViewName" where condition = 'abc'
    This performance is bad.  If we parameterize the calculation view and change the way we reference the view like this it is now flying;
    select * from "SYS_BIC"."CalcViewName"
    ('PLACEHOLDER' = ('$$CONDITION$$', ''abc'''))
    This makes sense to me as it seems to be pushing the filter to the beginning of the query.  What does not make sense to us is why running the entire SQL directly in SQL editor (without parameters) works very fast as well.  It's only when calling the view directly via SYS_BIC that it becomes slow and then requires the input parameters.  You might then ask why we care, just put the input parameters in the view and call it done!  Well the issue is with Microstrategy tool that we are using which has limitation around multiple values in a single parameter.
    -Patrick

  • Displaying sales order from other system

    Hi Experts,
    I have a requirement of displaying sales order from other system. I will be fetching sales orders through a RFC call and displaying it in an ALV. on clicking of the sales order displayed from the ALV, I need to display it from the other system.
    How can I go about this?
    Please help.
    Regards,
    Rohan

    rohan,
    you already have answered most part of your question.
    - displaying SO from other system through RFC:
    create a remote enabled function in that target system. call this FM from your current system. (for RFC calls check this: [RFC help|http://help.sap.com/saphelp_nw04/helpdata/en/22/0425f2488911d189490000e829fbbd/content.htm]
    displaying SO by double clicking in ALV:
    --ALV's comes with a event USER_COMMAND. in this event you can pass your subroutine and in your subroutine you can do your coding... take help from sdn searches like :About FM ALV user_command Event
    hope these helps
    Somu

  • Calling smartform from other system in ECC.

    Hi friends,
    I have a smart form in other system....In Ecc there is an alv report  where in when i click on any line item,it should fetch the information in terms of smart form from the other system.that is a smart form present in other system should be displayed in ECC.I have not to create any smart form in ECC...Only call smart form from the other system....
    Has somebody done this before or have any ideas how to do it.
    I ll be highly thankful l to you
    kanishak

    Builld a RFC enabled FM () that wrap the call of Smartforms (*) in the other system.
    Regards,
    Raymond
    (*) [Writing Remote Function Modules in ABAP|http://help.sap.com/saphelp_nw04/helpdata/en/22/0425f2488911d189490000e829fbbd/content.htm]
    (**) [Integrating the Smart Form into the Application|http://help.sap.com/saphelp_nw70/helpdata/en/1c/f40c5bddf311d3b574006094192fe3/frameset.htm]

  • How to call WDA Application from an other SAP System

    hello all,
    I have a WDA Application and if the user click on a Button in this Application,  i need to call an other WDA Application from an other SAP System.
    example:  SYStem  X01 has a WDA Application and there is a Button in this Application, if the User click on this Button, a WDA Application from an Other System X09 shoud be displayed in the same window, same WDA IFRAME .
    can any one tell me how can I do this?
    Thank you all

    Hi,
    As mentioned earlier, you need to pass the host name and port of the second system. If the application name is same, pass the same application name.
    DATA: lv_url TYPE string,
           lv_host TYPE string,
            lv_port TYPE string,
            lv_protocol TYPE string.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = 'ZWD_APPL_NAME'
          in_host          = lv_host   " host name of second system (X09)
          in_port          = lv_port    " port of second system
          in_protocol      = lv_protocol  " protocol of second system
    *      in_parameters    = lt_parameters
          namespace        = 'sap'
        IMPORTING
          out_absolute_url = lv_url.
    To get the Host, Port and Protocol of second system, wrap the below code in a Function Module(RFC) in X09 and call this in X01 and then pass them to the cl_wd_utilities=>construct_wd_url as mentioned above
    CALL METHOD cl_http_server=>if_http_server~get_location
        IMPORTING
          host         = host
          port         = port
          out_protocol = out_protocol.
    hope this helps,
    Regards,
    Kiran

  • Relocating bespoke development objects to a converged system

    Hi
    We are converging multiple SAP systems into a single system. In doing so we are 're-locating' the bespoke (z/y) objects from these seperate systems into the single system.
    - Has anyone experience of doing this before?
       + Used programs to extract <u>all</u> the bespoke objects  
         (i.e. programs, dictionary objects etc.) linked to a transaction code?
       + Used re-location transports and created them from a bespoke program once all the objects are known?
       + Any hints/tips for this task?
    Alan

    Hi Alan!
    I had this problem only with two systems, not many.
    To move the objects, transport requests can be used - import them 'as original' in your single system.
    To get ALL objects, add development class ( / package) into a new request - then all depending objects should be included.
    Don't forget the customizing - here consolidation might be fastest manual.
    When you have all Z/Y in one system, you might (will!) face double naming - here manual renaming might take some time.
    Modifications can be searched with last SPAU / SPDD, but should be done manually again (past and copy of source code is of course OK).
    Depending on how much overlap (both 'old' use SD) different system had, how much slightly different process they used, this can be a hell lot of work.
    Just think about order types with different attributes, but identical key name.
    Question of completness might look big in the beginning, but you might soon discover, question of consistence is more critical.
    Regards,
    Christian

  • Problem opening projects on other systems

    I have a Mac Pro at work and an iMac at home...
    When I open a project from either box onto the other one, my timelines instances are not visually there on the timeline but if you scroll through it the footage is still there, it's almost like a blank sequence.
    The timeline/sequence turns black and then sometimes an instance will appear randomly, it is really annoying. Only the timeline panel has the issue, all other panels seem fine.
    My only fix is to start a new project and then drag in the project from the other system. I have to do this every time I go from one system to another.
    Anyone having the same issues???
    Cheers

    Sorry but ... from the PP manual... if you have ever read it???
    Clip instance
    A dependent reference to a source clip, used in a sequence. Each time you add a clip to a sequence, you create another instance of the clip. A clip instance uses the name and source file reference used by its source clip. While clip instances are not listed in the Project panel, they are differentiated in the Source Monitor menu if you open instances there. The Source Monitor menu lists instances by name, sequence name, and In point.
    Hope that helps you understand the correct terminology.
    Anyway, I was wondering if anyone can try to duplicate my issue??

Maybe you are looking for

  • Can't get java applet to run on IE 6.0

    I have just installed j2sdk1.4.0 and I am trying to get the HelloWorld example to run. I can get it to run on appletviewer but when I run in on IE 6.0, I get the error message Error loading class: HelloWorld java.lang.ClassFormatError java.lang.Class

  • Is PLSQL support multi thread mechanism?

    hi i am tring to simulate my problem here. just go thru and bestow a good solution. consider, i have table called "table_a" which contains around 10 records. for each record having 100 'levels of status infromation' which stored in another table call

  • My iPhone 4 no longer takes new entries from iCal

    My iPhone syncs with my MacBook Pro in all respects except it will not sync with iCal.

  • EXT3 to RAW file system

    hi all, i have RHEL as 4 and i have 3 partitions on 200gb hard disk d01 d02 d03 with ext3 file system now i want to change the d01 ext3 file system to raw partition for implementing ASM can some one help me out that would be great help thanks very mu

  • Premiere CC 2014.2 se cierra mientras codifico mi vídeo

    Desde que hice la actualización a Premiere Pro CC 2014.2 tengo problemas al codificar mi vídeo final, he pasado varios años haciendo lo mismo cada semana y es hasta ahora que tengo este problema. He intentado hacerlo directo desde premiere y usando M