Compare rules in different Clients

Hi Experts,
We are trying to compare rules over different clients to see the differences.
How can we do this? Does SAP allow this? Please help.
thanks,
Ana

Ana:
Does it at least do whole table comparison between two systems (as I don't have 46C to look at) ? If it does, try to create a new comparison; this time, after you key in the table name, it will lead you to 'Selection by / Manual input' screen. Click on object overview button. On the following screen, check mark on the table, and click 'Comparison' button. A logon screen (for remote system) will pop up for you to key in uname / pwd (if you don't already have uid/pwd set up on RFC between the two systems). Once you key it in, it will ask if you want to restrict the comparison (for ECC 60 anyway). This is where you would have the opportunity to key in the rule name.
Again, 46C may act differently  ...
Rgds.

Similar Messages

  • To check the difference between 2 programs from 2 different clients

    standard program which you can use to compare difference between sources codes of 2 different programs

    Hi,
    use remote comparision to compare the program with two different clients..or use TCODE-SE39
    Regards,
    Nagaraj

  • Comapring the smartform in two different clients!!

    Hi Experts,
                    I have a situation, where I need to compare a same smartform in two different clients. As we can do the Remote comparison for the program, similarly how can we do it for smartform?
    Thanks in advance.

    Hi Ganesh,
    Actually Smartforms are client-independent. So there is no question of same smartform being different in  different clients.
    Just check your SF once again.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • Different Clients

    On the R/3 side on Dev box we have two clients 100 and 101
                            on Q    box we have two clients 200 and 201
    Now the Scenario we have is  File to IDOC. We are using XI as the middleware
    Now in the XI dev box, I have configured the scenario in such a way to deliver the file content to the clients 100 and 101. Its working fine and all the testings are OK in Dev Box.
    Now my scenario from Dev needs to be moved to QA Box. But since the R/3 clients are different compared to Dev, I am little confused.
    Any suggestion or any input.
    Thanks.

    Hey Jenni,
    Don't worry!
    What you need to do is:
    1. First of all export your objects from Dev and it will be saved as .tpz file. Now go to QA system and imort this .tpz file. By doing this your Integration Repository part is done. I mean your data type, message type, message mapping & interface mapping complete.
    2. Now here in Integration Directory you need to create new configuration scenario, new communication channel etc. in short you have to do full configuration.
    So here in ID when you are doing new configuration of everthing then there is no question of different clients. Both (client 200 & 201) will work fine as they were working in your Dev system.
    Regards,
    Sarvesh

  • So close but need help comparing strings in different subforms with for loop - Livecycle ES

    For some reason I was not able to post this in the Livecycle ES forum, even though I've posted there often in the past.
    I have created a form that I almost have working and I'm hoping someone can help me.
    We have eight billing teams in our company and each team works anywhere from 1 - 4 different clients. The form is used to track, per Billing Rep, the number of items of mail that each billing r5ep works each day. What I'm needing to add at the bottom is a subform that tracks the totals by client. So I'm trying to get the form to loop through all of the existing subforms (and the subforms within them) and compare a cell int he bottom subform to a cell in the other subforms, which are dynamically added, and then total ONLY those items. My script however is not working.
    What I have now is:
    var repCount = form1.P1._rep.count
    var itemCount = form1.P1.rep._ItemSet.count
    for (x=0; x<repCount; x++)
         for (i=0; i<itemCount; i++)
              if(clientName.rawValue == P1.rep[x].ItemSet[i].client.rawValue)
              this.rawValue = this.rawValue + P1.rep[x].ItemSet[i].corresp.rawValue;
    It seems like this should work but I'm getting the following error:
    P1.rep[x] is undefined
    So what it looks like is I'm missing is the proper way to reference the objects in these subforms.
    The form is here: https://acrobat.com/#d=20gWXZ4sBm4OPV6oO76zSg
    If someone could take a look at it I would be so grateful.
    Thanks,
    Jo

    I don't know that anyone else will ever have a similar problem as what I was having, but I figured I would go ahead and post the solution, just in case....
    The error I was getting (P1.resolveNode("rep[" + j + "].ItemSet[" + i + "]") is null) was occuring because the variable itemCount needed to be referenced within the repCount For Loop. I also needed to resolve the node for the itemCount, which I wasn't doing.
    So...my old code was this:
    var repCount = P1._rep.count;
    var itemCount = P1.rep._ItemSet.count;   //this part was throwing the error. Needed to use resolveNode...and needed to not declare the variable until inside the first For Loop.
    var nTotal = 0;
    for (var j=0; j<repCount; j++) {
        for (var i=0; i<itemCount; i++)    {
            if (P1.resolveNode("rep["+ j +"].ItemSet["+ i +"]").client.rawValue == clientName.rawValue) {
                nTotal = nTotal + P1.resolveNode("rep["+ j +"].ItemSet["+ i +"]").corresp.rawValue;
    this.rawValue = nTotal;
    ...which wasn't working because it was trying to reference the count of the ItemSet right up front...but it needed to wait until it got inside the first iteration of the repCount subfields...AND it needed to have resolveNode used.
    The corrected code is:
    var repCount = P1._rep.count;
    this.rawValue = 0;
    for (var j=0; j<repCount; j++) {
        var itemCount = P1.resolveNode("rep["+j+"]")._ItemSet.count;  //corrected code...node is resolved and variable is declared within the first subform repCount.
        for (var i=0; i<itemCount; i++)    {
            if (P1.resolveNode("rep["+ j +"].ItemSet["+ i +"]").client.rawValue == clientName.rawValue) {
                this.rawValue = this.rawValue + P1.resolveNode("rep["+ j +"].ItemSet["+ i +"]").corresp.rawValue;
    ...which now works perfectly...and I'm throwing a party to celebrate! LOL
    Jo

  • [SOLVED] how to use diffrent iptables rules for different ppp account?

    x86 plantform run arch linux system , have two network interface etn1 eth0 .eth1 connect to internet. eth0 connect to other terminals through switch. want use different iptables rules for different pppoe account .also want to know how to forbidden more than one terminals established pppoe link use same account at the same time .
    Last edited by linuxsir (2013-09-26 06:48:01)

    (You establish PPPoE sessions over the local network to the Arch machine? Which then routes the traffic?)
    first question ,yes that is exactly what i am done. second question i also have a small  scripts on windows pc to solve routes traffic problem
    route -p delete 0.0.0.0
    route -p add 192.168.9.0 mask 255.255.255.0 192.168.9.1
    route -p add 0.0.0.0 mask 0.0.0.0 192.168.22.0
    but after a while i found scripts is not necessary because windows always attempt to use PPPoE sessions as default internet connection local connection is also ok
    and use  -i pppX in my iptables rules dose not  solve my problem , because same account start PPPoE session could be marked as ppp0 or ppp1. it is hard to identified which account start session.

  • Leave Quota generation with diifferent rules for different countries

    Hi,
    I have the following requirement need help in achieving this.
    Employers must grant 10 days paid leave to employees that worked for six consecutive months from the time of hiring and who worked on not less than 80 per cent of all schedule work days. This paid leave may be taken consecutively or separately. Where an employee's application to take paid leave will hinder the normal business operations, the employer may require the employee to take such paid leave at a different time.
    The number of days of paid leave available to employees increases in proportion to employees' length of service as set forth in the below table.
    Years of Service  0.5  1.5  2.5  3.5   4.5   5.5   6.5+
    Paid Holidays         10    11  12   14    16    18    20
    The right to annual paid leave expires after two years. In other words, annual paid leave left over from one year may be carried over and taken the next year only. For example, if an employee is awarded 10 days paid leave after their first 6 months of employment; those paid holidays will become invalid after 2.5 years of employment. Use them or lose them.
    Simply put, holidays from one year can be carried over to the next year, but not to the third year. So, if you don't take your leave from one particular year within 12 months of that year ending, you will lose that first year's allowance.
    Employee can take leave encashment of holiday leave only when leaving their employer. It is not legal for companies to buy up the holiday leave of those still working for the firm.
    In my organization one PSG grouping has been used for all countries, it wont be possible to change the grouping now. In such a case how can we provide different rule for different country without customizing the Leave module.
    Do we have to use any PCR for this, if yes which??
    Regards,
    Jailakshmi
    Edited by: Jailakshmi on Aug 3, 2011 7:16 AM

    Hi,
    Use QUOMO Feature to give different entitilement to employees.
    Leave entitlement as per seniority can be configured in base entitlement.
    Keep validity and deduction period for 2 years by using :Relative postion" option in validity and deduction period table.
    Rgds,
    Lata
    Rgds,

  • How to connect different clients of same SAP Instance

    Hi,
    I have a question abour CPS 7, Basic- / Free of Charge  Version
    I know that this version is restricted to have only  one SAP Instance per Isolation Goup, but how about different clients of the same Instance ?
    Is it necessary to create an  Isolation Group for each client of the same instance ?
    We actually have 1 isolation group with 1 Instance and 1client .
    Trying to create a second XBP Connection to another client fails then saving the changes with error:
    "JCS-102120: SAP System DI1.DI1_045 should be isolated but is not. Show error details"
    I didnt find a concrete statement in the Installation - and in the Admin Guide.
    Regards
    Frank

    Hi Frank,
    This is correct, there is one client per isolation group. The free version works similar in this respect to SM36/SM37: jobs are defined in each client individually and independently.
    Regards,
    Anton.

  • ERROR WHILE testing WEBSERVICE IN TWO DIFFERENT CLIENTS

    hi all
    i have developed a proxy and try to test  <b>web service in wsadmin tcode</b> through <b>two</b> DIFFERENT CLIENTS.
    FROM <b>CLIENT  1</b> IT IS SHOWING THE SUCCESSFULL RESPONSE
    BUT FROM <b>CLIENT 2</b> IT IS SHOWING THE FOLLOWNG <b>ERROR</b>.
    <b>No implementing class registered for the interface (ABAP interface, request message , request message, namespace )</b>
    THANKS 
    praveen kalwa

    hi marten
    can u describe in brief what i should do in the sxmb_adm in the both client ..
    why because i could not find any thing
    <b>PLS DO THE NEED FULL</b>
    thanks in advance
    PRAVEEN KALWA

  • Different Service Desks in different clients in the same Solution Manager?

    Hi
    Is it possible to place different Service Desks in different clients in the same Solution Manager?
    Concrete we plan the following  scenario:
    - Division 1
      -- System 1,2,3, etc.
      -- Service Desk  in client 100
      -- Monitoring for the whole trust in client 050 (still exists)
    - Division 2
      -- System 4,5,6, etc.
      -- Service Desk in client 200
      -- Monitoring for the whole trust in client 050 (still exists)
    Is it possible to realize this scenario or are there any restrictions?
    Thanks & Regards
    Andreas
    Edited by: Andreas Städler on Mar 19, 2008 5:52 PM
    Edited by: Andreas Städler on Mar 19, 2008 5:54 PM

    hi Neil
           did u solve the problem still Struck  let me know
         we can access the same iview  n no of  clients. let me know any do u have any queries and other infomation
    bvr
    Edited by: bvr on Dec 2, 2008 6:32 AM

  • Enhancements are not visible in different clients

    Hello Experts,
    I am facing a strange issue in my compoenent enhancements for IUICMD.
    I have created an enhancement set ZCRM_IUICMD and assigned it to different clients  thorugh BSPWDV_EHSET_ASG.
    All my enhancements to componenet are attached to the above enhancement. Suddenly i can see that my enhancements
    behave differently in two different clients.
    I have verified the repository objects like classes & methods and also UI configuration. It remains same in both clients.
    Let me know if you have faced similar problem and your solution to that.
    Thanks in advance................
    Best Regards,
    Prabahar

    Hi Saumya,
    I am enhancing the component view IUICMD/DetailAccount. Here i have created a new context node for BuilheaderSearch.
    I am using using context node attribute ID_TYPE in IUICMD/DetailAccount & Provided F4 help for that. Now i can see Input help in client 200 & not able to see that in client 210.
    I have assigned my enhancements to both the clients 200 &210. In both the clients UI Configuration remains the same.
    Hope it gives you the details that you are expecting.
    Best regards,
    Prabahar
    Edited by: Prabahar N.R on Sep 10, 2009 1:10 PM

  • Different Client Versions in OWB 9i and 10g

    Hi,
    Our client is using 9i OWB Client Software, and we are planning to use OWB10g Client Software on Windows Platform.
    Will there be any compatability issues while moving from 9i OWB Client Software to 10g Client software.
    And what are other parameters we need to consider, if possible please mention any documents links available.
    Kindly let me know the pros/cons in this model .
    Here my main question is will there be backward compatibility, i.e repository in 9i database need to connect by using the OWB 10g client?
    With Regards,
    Kranth...
    Edited by: user8536050 on Jan 18, 2010 1:44 AM

    Hi,
    you cannot use different client versions on the same repository. If you want to use owb 10g, then you have to upgrade the repository to 10g. Then you can only use 10g clients, owb 9i clients cannot connect to that repository.
    Regards,
    Carsten.

  • Error When Run ABAP Query in Different Client

    Hi ABAPers,
    Currently I develop ABAP Query using SQ01 / SQ02 / SQ03.
    Everything goes well, and I have already test that the query work well. The query can be execute and show the result correctly.
    My peer in same SAP system, but different client, run the same query. As I know that query is same with ABAP program which is client independent, can be execute across client. But then the runtime error show up.
    The error said that
        Exception condition "NO_POSITION_FOUND" raised.
    Can anybody told me what's happened here, and how can I resolve this problem?
    Thank you in advance
    Regards
    Hadi

    Hi,
    Since you are testing it in other client,i think due to data inconsistency you are getting that error.
    Try to  check the corresponding tables in both clients and can verify.
    Cheers,
    KK.

  • Livecache on different clients

    Hi,
    I am using APO for two different clients. It is working fine for the original one, but I am having different issues (see below) when I CIF the transtactional data.
    What should I consider for Livecache being shared on different clients?
    Issues
    - Multi-level error propagation carried out
    - Error when reading ATP delta records: Error calling function module /sapapo/cif_help_object_show in system AAQCLNT500 : Exception condition "CNTL_ERROR" raised. Message no. XC016
    - Message no. SR053
    - LC error;
    Considerations already done:
    - Logical systems
    - RFC connections
    - Same Business system group.
    Any recommendation will be very valuable for me.
    Thanks a lot.

    Muhammad,
    the installation is done in client 000.
    You then do post-installation and configuration for each client - AC needs to do a connection to each client individually in order to separate the results (risk analysis, provisioning).
    Frank.

  • Create a new branch On same OR different Client

    Dear Experts,
    Can anyone tell me the advantages and disadvantages of same vs different client, from FI & CO view, as we are having a new foreign branch in another country, should we use the same client or a different client?
    For e.g.:
    Client 100 Company A - present
    Client 100 Company B - new
    OR
    Client 100 Company A - present
    Client 200 Company B - new
    Regrads,
    Mohammad

    Hi Mohammed,
    It would be better to choose the first option ie, choosing the same client. Please refer the attachment which deals with this topic.
    Same or different client
    two different organization on one system
    more than one company code
    Warm regards,
    Murukan Arunachalam

Maybe you are looking for

  • How to restrict the alternate modes in PP/DS???

    Hi all, I have 2 levels of production, 1st is semifinished and 2nd is finished (which uses the 1st as an input) I want to relate the activities of these 2 orders such that for example, if 1st order is from resource A, then 2nd order can be restricted

  • A white smudge in the center of my macbook pro monitor

    Im starting to notice a white smudge in the center of my screen, and its only noticable on a black background its definitely inside the screen because if I turn it off or dim the brightness it cannot be seen.  If it is a defect in my screen, does my

  • Conditional validation?

    Hi folks, is it possible using Spry to specify that either a text field should be filled in OR a checkbox be checked? The real-world example is either requiring the price of a car to be filled in or the user has to check a checkbox "POA" which indica

  • Workflow cancel notification

    I have created a workflow with OR split. One branch publishes the page whereas other branch cancels the publish action. Irrespective of which branch I select, workflow is completed. So even if next step picked is 'cancel publish', its the publish act

  • No result line for hierarchy on Profit Center in query

    Dear Colleagues! Question regarding BW 3.5! I want to have an overall result line for a hierarchy based on profit center in my report, but I can't make it work. The Profit Center infoobject is in the rows. I use the setting for the infoobject Profit