XMII version dependency

Hi Gurus,
                   I have some confusion regarding xMII - SAP connectivity.
If xMII is version dependent? e.g if xMII v12. can be accessible through a particular version of SAP(say 6.4).
Do we need any special connectivity(connectors, BADI etc.) between xMII server and SAP or just installing the GUI for both will be enough?
Thanks in Advance
Message was edited by:
        Musarrat Husain

I think the question should be more like - what version of SAP R/3 is accessible via xMII and not the other way round.
In my personal experience I have connected xMII (ver 11.5) to SAP R/3 4.6 b/ 4.6c and more recently ECC 6.0.
No special connectors are required as xMII uses JCO for connecting to R/3 systems and these classes are installed alongwith so many others when you install xMII, although from 12.0 there is JRA as well. Check up the xMII 12.0 help documentation for more information on that.
Does this lessen your confusion to some extent?

Similar Messages

  • Create a new user in xMII version 11.5

    I want to create a new user in xMII version 11.5 that has rights to view everything and create queries.  So far the user is part of the EVERYONE role and can view most of the items that the Admin can see.  My question what do I have to do in order to allow this user to create queries?  When I log in as this user and I click the query tab, it said that I do not have sufficient rights.

    I figured it was that simple.
    I haven't seen you on here in awhile.

  • Hierarchies Version Dependent

    Dear Experts,
    I am new to Bi, so please do explain in Laymans language.
    I have already gone through Help (experienced in ABAP) and SAP PDF Documents.
    In Info Object we have "Hierarchies Version Dependent" in Hierarchy Tab.
    1. What is the use of it?
    What i undertsood about it is we can maintain different versions and these different versions can be used in BEX Query.
    Instead why cant we maintain different heirarchy names and use them in Bex Query?
    2. How do we create different versions?
    Create different heirachy name and specify version and create hierrachy nodes. Then again create with same hierachy name and specify different version and create different  hierrachy nodes.
    Am i correct?
    Please clear my Doubts clearly and I shall assign Full Points.
    Regards
    BI Learner

    1. Yes, of course you can create hierarchy with different name if you like to.
    The advantage of version is, you have the same hierarchy name,  then in query you can choose same name, but specify version with variable so that it is dynamic.
    2. Yes, you can specify different version and create a different hierarchy as per steps you said.

  • SAP BW Web 3.5 template on RIM Blackberry - Software version dependency

    Hello
    I have created a simple Web 3.5 template to be displayed on RIM Blackberry 83xx devices.
    It works fine, but there is a Blackberry sofware version dependency.
    E.g. if Blackberry device has sofware version 4.2.xxxx, then it always wraps last column. There is enough space on the screen though.
    If it is 4.5.xxxx version, then it does wrapping better, but still not perfect.
    Did anybody come accross the same issue?
    Any suggestions how to fix it w/o sofware upgrade?
    Regards, Kayrat

    Hi Roman,
    From Service.sap.com: https://websmp110.sap-ag.de/bifaq
    I am planning to use SAP BW 3.5. Which BEx frontend and SAP GUI should I use?
    SAP BW 3.5 requires the SAP BW 3.5 BEx Frontend. The SAP BW 3.5 Frontend is compatible with SAP GUI 6.20 and SAP GUI 6.40. SAP GUI 6.20 is upward-compatible with SAP Web AS 6.40 based systems.
    How can I get the new SAP BW 3.5 Frontend?
    The SAP BW 3.5 Frontend is shipped automatically with the SAP NetWeaver '04 software shipments.
    Additionally customers can order and install the SAP BW 3.5 Frontend from the following CDs (can be ordered or downloaded from the SAP Service Marketplace):
    SAP GUI 6.20 Compilation 6 (includes both the SAP GUI 6.20 and SAP BW 3.50 Frontend)
    SAP GUI 6.40 Compilation 1 or greater (includes both the SAP GUI 6.40 and SAP BW 3.50 Frontend)
    What options are available to upgrade my SAP NetWeaver BI BEx Frontend to SAP BW 3.5?
    There are 3 options available for upgrading an existing SAP NetWeaver BI BEx Frontend to SAP BW 3.5 (assuming you have an existing SAP BW 3.x BEx frontend):
    Apply the latest SAPGUI 6.20 SETUP patches, latest SAPGUI 6.20 patch, and the SAP BW 3.5 Frontend patch directly to your existing BEx Frontend.
    Delete and re-install SAPGUI 6.20 and SAP BW 3.5 BEx Frontend from the SAP GUI 6.20 Compilation 6 CD. Apply the latest SAPGUI and SAP BW 3.5 BEx Frontend patches.
    Delete and re-install SAPGUI 6.40 and SAP BW 3.5 BEx Frontend from the SAP GUI 6.40 Compilation 1 CD. Apply the latest SAPGUI and SAP BW 3.5 BEx Frontend patches.
    How long is SAP GUI 6.20 and 6.40 supported?
    Please see SAP note 147519 for details.
    Hope this helps...

  • Select userinfo in xMII version 12

    Hi.
    Is it possible to get / select user information in xMII version 12? E.g. username, email and so on for users created within NW user management?
    BR.
    Poul.

    Poul,
    The Admin and SystemInfo services will still provide you with the user/role namespace browsing capabilities that were in 11.5, such as:
    /XMII/Illuminator?Service=SystemInfo&Mode=RoleList
    /XMII/Illuminator?Service=SystemInfo&Mode=UserList&Group=XMII%20Administrators
    /XMII/Illuminator?Service=Admin&Mode=UserAttribList&Group=UserName
    See the help docs for some of the modes associated to these services.
    Regards,
    Jeremy

  • DES, Java version dependency?

    Hi,
    this is my first posting so please be patient :)
    i've written a module that writes DES-Encrypted email-addresses into my MySQL-database. Everything works fine, decription is working too.
    The problem is, after I've changed the Java - Version (from 1.4.2_05 to _06) and
    recompiled all classes, the addresses can't be decripted.
    Where exactly is the problem?
    Is it the recompilation itself, or java version dependency ?
    Please help me
    Thx

    The only thing that is suspect is that you don't explicitly define the block mode and the padding. Though I don't like your exception handling and I don't like the way you keep generating new byte arrays and then never using them I don't think these features cause the problem.
    Also, you should look at the SUN coding standards for method names.
    I have taken the liberty of simplifying your code. Please feel free to ignore my changes if you want.
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import java.io.*;
    public class DEScoder
        static public class EncryptionException extends Exception
            private EncryptionException(String text, Exception chain)
                super(text, chain);
        private static final String algoName = "DESede";          // triple-DES
        private SecretKey secretKey;
        private final byte[] tripleDesKeyData;
        private Cipher cipher;
        private Cipher getCipher()
            return this.cipher;
        private SecretKey getSecretKey()
            return this.secretKey;
        private Cipher CreateCipher(String password) throws EncryptionException
            try
                secretKey = new SecretKeySpec(tripleDesKeyData, algoName);
                // /ECB/PKCS5Padding should be the default block mode and padding but just in case
                return Cipher.getInstance(algoName + "/ECB/PKCS5Padding");
            catch (Exception e)
                throw new EncryptionException("Cannot create Cipher", e);
        public synchronized String EncodeString( String originalText ) throws EncryptionException
            try
                getCipher().init( Cipher.ENCRYPT_MODE, secretKey );
                byte[] utf8 = originalText.getBytes("UTF8");
                byte[] enc = getCipher().doFinal(utf8);
                return new sun.misc.BASE64Encoder().encode(enc);
            catch (Exception e)
                throw new EncryptionException("Problem encrypting", e);
        public synchronized String DecodeString(String encryptedText) throws EncryptionException
            try
                getCipher().init(Cipher.DECRYPT_MODE, secretKey);
                byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(encryptedText);
                byte[] utf8 = getCipher().doFinal(dec);
                return new String(utf8, "UTF8");
            catch (Exception e)
                throw new EncryptionException("Problem decrypting", e);
        public DEScoder() throws EncryptionException
            try
                tripleDesKeyData = "A_key_24_characters_long".getBytes("ASCII");
                this.cipher=this.CreateCipher("allemalache");
            catch (EncryptionException e)
                throw e;
            catch (Exception e)
                throw new EncryptionException("Problem creating DESencoder", e);
        }//coder
        public static void main(String[] args)
            try
                // Make sure SUN are a valid provider
                Security.addProvider(new com.sun.crypto.provider.SunJCE());
                DEScoder dataStringEncryptAgent = new DEScoder();
                // Get the data string to encrypt from the command line
                String dataString = (args.length == 0)? "The quick brown fox jumps over the lazy dog." : args[0];
                System.out.println("Data string ....................[" + dataString + "]");
                String encodedEncryptedDataString = dataStringEncryptAgent.EncodeString(dataString);
                System.out.println("Encoded encrypted data string ..[" + encodedEncryptedDataString + "]");
                String recoveredDataString = dataStringEncryptAgent.DecodeString(encodedEncryptedDataString);
                System.out.println("Recovered data string ..........[" + recoveredDataString + "]");
            catch (Exception e)
                e.printStackTrace(System.out);
    }//classMore simplifications are possible.

  • XMII version 12 and NW SPS compatibility

    Hi.
    I have been trying to find anything regarding xMII version 12 and compatibility with Netweaver SPS's. In the xMII installation guide it says SPS10 or later. Is this for real and can I upgrade Netweaver to the latest SPS ??
    I have from Jeremy that I should use SPS10 to SPS14.
    And finally, where to find the information, so I does not have to disturb all of you another time
    PS. I have been via the PAM page, but it does not say anything. Installation guide (as I remember) says SPS10 or later.
    BR
    Poul.

    Poul,
    Per the installation guide:  http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000683969&_SCENARIO=01100035870000000202&_OBJECT=011000358700000202932007E
    "SAP xMII 12.0 runs on the SAP NetWeaver Application Server (SAP NetWeaver AS)
    component of SAP NetWeaver 7.0 (2004s) SPS 14 or higher."
    A nice thing about the PAM ( https://service.sap.com/~form/handler?_APP=00200682500000002212&_EVENT=DISPLAY ) is that it has some convenient links for s/w download and the guides too.
    Regards,
    Jeremy

  • XMII version 12 installation

    Hi.
    I have just started looking at xMII version 12, and have been searching around for some information. I have xMII installation guide and have been looking at Netweaver installation but......
    I need to install a local, disconnected version of xMII and just need to install the basis.
    I does not know anything about Netweaver. What does I need for xMII installation ?? I have been looking and trying Netweaver Rapid installer SP11, is this the right direction ??

    Hi.
    Thanks for this, but my problem is a more clear link to which version / option pack / Rapid install file I need for installing AS Web ??
    Does I download the dev. network or from service.sap.com -> download ?? and in the case of this, what is the exact name ??
    BR.
    Poul.

  • XMII Login from Html page under xMII Version 12

    Hi,
    I found this thread
    xMII Login from Html page
    but I'm not sure this will also work under xMII  Version 12.
    I have now this question:
    Is it possible to use a url login with loginname and password under xMII V12 similar this example for Version 11.5:
    http://server/Lighthammer/Login.jsp?IllumLoginName=accountname&IllumLoginPassword=accountpassword&session=true&target=/Test/report.irpt
    Many thanks in advance

    Hi,
    Has anyone had any luck with this - displaying a v12 MII screen without requiring login?
    We need to be able to do this as well in order to display read-only screens on large screen monitors on the manufacturing floor without requiring login to MII.
    Under v11.5 it worked with no issues.  Under v12, we haven't figured out how to do it yet.
    I've waded through the NetWeaver UME documentation, have searched through the NetWeaver forums, etc. but to this point have had no luck in making it work.
    We've tried enabling the UME Guest account, assigning Guest to the anonymous group and guest role (and xMII Users role), creating a Navigation for the Guest user, but still the NetWeaver login screen is displayed.
    MII experts - if you are aware of how to do this can you please give detailed instructions instead of just referencing the NetWeaver / UME documentation?
    Thank you for your help!

  • [svn:bz-4.0.0_fixes] 19745: Comment out sdk. version dependent main target to fix build.

    Revision: 19745
    Revision: 19745
    Author:   [email protected]
    Date:     2011-01-13 12:12:29 -0800 (Thu, 13 Jan 2011)
    Log Message:
    Comment out sdk.version dependent main target to fix build. Using main that omits ds-console build.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/build.xml

    Before compiling the architecture must be adjusted in the FFdecsa/Makefile (defaults to athlon-xp).
    The readme file in the src directory provides more details.

  • Version dependent Hierarchies

    Hi,
    I have a requirement where I have already created some Queries on a version independent Hierarchy of Profit Center.
    Now i need to change it to Version dependent.
    Wht difference will it make??
    Will it affect the Queries already made??

    Hi guys,
    definitely! Hierarchies should always be version-dependend.
    Makes sense, btw, if you consolidate forecast in version 200,  for example, and budget in 300, because you might plan to takeover another unit ; )
    Or sell one...
    The other reason is to seperate management consolidation and legal consolidation + maybe consolidation in different GAAPs.
    BR

  • Basic data what is the difference between Version Dependent task and indep

    In basic data settings what is the difference between Version Dependent task and version independent task. please give detailed explanation

    Hope this link gives you the answer.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c5/e4b7aa453d11d189430000e829fbbd/frameset.htm
    Best regards,
    Sudhi

  • Is language installation version dependent ?

    Is the language installation depends on the SAP version ie. if there is CD for installation of language into 4.6c system will it work on ECC 6.0 or for XI or 4.0. ?

    Hey,
    Every version of SAP system has it own localization language installation. for example, ECC6 might have some texts that
    4.6c doesn't have.
    Installation of ecc 6.0 will not work on XI 3.0 (sap will not release XI 4.0, instead they would release PI 7.0) due to the fact that most
    of the translation in ECC are not relavant in XI (for example, material number is not  an entity in XI).

  • Version dependency

    Hi All,
    I have a 3.5 box (dev) where I want to deploy a program. we dont have the developer access to this box, so we thought of creating this program in sandbox system and then release the TR so that we can use the control/data files from the TR and deploy it on the dev box.
    My question is that is there any dependency on the version of the dev box and the sand box in this scenario; do these systems neccessarily need to be of same version?
    Thanks,
    Manish

    resolved

  • IPods OS-version-dependent?

    A friend of mine just got a used iPod Nano and she tells me that when she plugs it in, an alert appears telling her she needs MacOS 10.4.8. She installed iTunes 7.6 (which is what I thought she needed)
    I'm not very iPod-hip, but this doesn't sound right. Is it? Are iPods dependent on the current-at-the-time OS version?
    Just to be annoying, I'm not sure which edition Nano she got.
    Here's a thought. I saw that a 3G Nano s/w update came out today. Would the iPod automatically try to install the update, and might that update require 10.4, thus generating the alert (this assumes she got a 3G)? If so, is it at all hazardous to ignore the update -- and how do you do that? (Tell me there's a cancel button.)
    tnx,
    Jeff

    The current version of iTunes is OS dependent, and not much can be done with the iPod aside from use as an external flash drive without updating or upgrading Mac OS X.
    (32353)

Maybe you are looking for

  • Multiline container --how to assign agents in subworkflow

    Hello Friends,   I have mutiline element with 3 agents type wfsyst-sgent. I am triggering a subworkflow and assigned this multiline element in others. Now what is the agent name in the subworkflow. Because it is triggering 3 times the same task to on

  • Mac and export converted Doc files.. invalid

    I have just signed up for the adobe convert pdf files service.  I have a mac.  I tried to covert a file to export .doc but when trying to open it it said invalid.  I have pages for my mac.  Is there a way  I will be able to open the file another way?

  • Voting disk issue in Windows 2003 server

    I installed oracle RAC 10g with ASM on windows server 2003 R2. I was able to successfully install clusterware as well as ASM with database. Prior to the install, I ran diskpart and then set automount enable. I was able to configure the ocr, ocrmirror

  • Pod not appearing in i-tunes

    I've just brought a 5th Gen Nano. I previously had a 4th gen one which worked fine with i-tunes. However having rigged it all up today and making sure I have newest version of tunes nothing is happening. When I connect my pod to the PC it comes up wi

  • What about parameter weblogic.PosixSocketReaders in WLS 8.1

    Hi, I would want to know what is the effect of the parameter weblogic.PosixSocketReaders in wls 8.1? The only doc i can read on this subject is http://e-docs.bea.com/wls/docs70/perform/appb_tunetips.html and concerne wls 7. Which is the effect if I p