How to install client

Hi i downloaded BW Trail version but it is not allowing me create anything .Presently am using client 000.
It is saying  " you can work only client 001" but how to create this client. and
Am not able to access RSA1 transaction ...Etc
Thanks in Advance,
Sheethal.

1. do not use client 000 for customizing, you should do the post-processing steps in the installtion guide and coopy client 001 to another number (such as 100).
then, change your SAP profile. change this parameter:
ogin/system_client = 100

Similar Messages

  • How to install client certificate in Jdeveloper 10.1.3.41.57

    Hi,
    We need to connect to another website by presenting client certificate. This certifficate is provided by this website and password is required. Though I tried to tried to launch the JSP that redirects the page to the URL to connec to that website, and I imported the certifcate to the browser, I am still asked credential to connect.
    I was told by other people I need to install the client certificate on the server.
    My question is that how I install this client certificate on Jdeveloper 10.1.3.41.57 and launch JSP to connect to that website?
    the certificate is like xxx2_x.509Cert.pfx.
    Please help
    Thank you.
    jfu

    First, thank you so much for your reply. Yes, it works. I did converted pfx to JKS successfully.
    i use keytool -list to view this JKS file. I can see the content. The chain length is 2.
    However, I got error same error message when I tried to use above command to import JKS to cacerts under jdk/jre/lib/security/; if I add -storetype pKCS12, I got another error keytool error: java.io.IOException: DerInputStream.getLength(): lengthTAg=109, too big.
    Please help.
    Thanks,
    Jfu
    Edited by: 872272 on Sep 20, 2011 8:58 AM

  • How to install client frame work on PDA

    Hi All,
    We have purchased a PDA to develop custom mobile application on it. Could you please tell me what are the procedure's and precautions to follow to install mobile client frame work on new PDA.How can we find suitable version of client frame work. We are using SAP NetWeaver 2004s with SP09.
    Regards,
    Ameer Baba.

    Dear Sivakumar,
    I must appreciate you patience and qucik replies. I am very sorry to still I am getting the same error:
    Your thirty-day evaluation license has expired.
    For license information
    please contact:
    Email:
    [email protected]
    phone: +972 (9) 763-2320
    Copyright © 1999-2009
    NSIcom Ltd.
    In spite of the fact that I have mobile license.I have downloaded the file from which you mentioned link by providing all the details.I have downloaded the version of CrEme327b_AX_CE50_PPC_minimal.CAB and installed. But still I am getting error when I checked to jscpout.txt file. Could you please through me some light on this?
    Best Regards,
    Ameer Baba.

  • How to install and use certificates on client?

    Hello everyone, and first of all sorry for my poor, italian-accented english.
    I have some questions about SSL and certificates. I'm developing a java desktop application, which should connect to a https server, authenticate with a previously downloaded certificate and then gain access. Some specs: I work on a Windows Xp Pro machine with Netbeans 6.1 and jdk 1.6.0_07.
    Now, I'm using HttpUnit libraries to connect the first time, login with basic authentication and download the certificate, but after i get it I'm not sure how to install the certificate (using java, it has to be an automated procedure) on the client machine and then how to use it to connect to the server. I've tried to use the code I've found here and after using it I can see the certificate inside Control Panel > Java > Securiy > Certificates > System, but I'm not sure I'm installing it in the correct way and/or in the correct path.
    Everytime I try to connect to the server I get back a HTTP 403 forbidden exception. Does someone know any tutorials/howtos/example codes to suggest to me? Or could tell me what's the right installation procedure using java? Any help would be very appreciated.
    Thanks in advance
    K.

    After banging my head on my keyboard for a lot of hours, I've got it!
    I was trying to install a *.pfx certificate, and that was bad. I tried to convert it in *.p12 or *.cer but that workaround didn't work. Finally I've found a small code to use a *.pfx certificate without installing it and... it works! No more 403 errors now, I can get that damn page. :)
    Here is the class I've used (I've found it somewhere googling around but I've lost the link, sorry. Anyway, I've modified it a little)
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
    import java.net.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    public class ConnectWithPfx {
       static final int HTTPS_PORT = 443;
       public static void main(String argv[]) throws Exception {
          // Get a Socket factory
          SocketFactory factory = SSLSocketFactory.getDefault();
          SSLSocketFactory socketFactory = null;
          try {
                KeyStore keyStoreKeys;
                KeyManagerFactory keyMgrFactory;
                SSLContext sslContext;
                keyStoreKeys = KeyStore.getInstance("PKCS12");               
                keyStoreKeys.load(new FileInputStream("mycertificate.pfx"),"certpassword".toCharArray());
                keyMgrFactory = KeyManagerFactory.getInstance("SunX509");
                keyMgrFactory.init(keyStoreKeys, "certpassword".toCharArray());
                sslContext = SSLContext.getInstance("SSL");
                sslContext.init(keyMgrFactory.getKeyManagers(), null, null);
                socketFactory = sslContext.getSocketFactory();
                Socket socket2 = factory.createSocket("www.my.host", HTTPS_PORT);
          } catch (Exception e) {
                e.printStackTrace();
            URL url = new URL("https://www.my.host/mypage");      
            // Open a HTTP connection to the URL assigning the SocketFactory we created before
            HttpsURLConnection conn = null;
            conn.setDefaultSSLSocketFactory(socketFactory);
            conn = (HttpsURLConnection) url.openConnection();              
            // Allow Inputs
            conn.setDoInput(true);
            // Allow Outputs
            conn.setDoOutput(true);
            // Don't use a cached copy.
            conn.setUseCaches(false);
            conn.setRequestProperty("Connection", "Keep-Alive");
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            String response = "";
            while ((line = in.readLine()) != null) {
                response += line+"\n";
            System.out.println(response);
    }Hope this could be useful for someone else. Thanks to everyone who read or replied to my thread. :)

  • How to install oracle client on pentium 4

    please can someone tell me how to install oracle client 8i on pentium 4 system. the installation is not going automaticlly , and if i explore the cd and press on the setup file the installing didnt start.

    8i definitely has problems with Pentium IV processors. The fix is to copy the entire CD to the hard drive and then rename each copy of symcjit.dll to symcjit.old.

  • How to install and use a client certificate for use with https sites on Android?

    I need to be able to install a .p12 client side certificate to be sent to the admin section of my company's site to authenticate me as an employee. In FireFox for PC there is the ability to install this client certificate. In the mobile I cannot figure out how to get this to work.
    I just bought an Asus Transformer Android Tablet running Honeycomb. I have tried the following method below:
    http://support.mozilla.com/en-US/questions/786035
    I get to the screen where I am able to present and choose a certificate but I still get the (Error code: ssl_error_handshake_failure_alert).
    Now that Android is really picking up steam, there needs to be a way to install client side certificates to present to sites requesting them.
    Is there another way to hack the system to allow or install a client side certificate in .p12 format?

    Sorry, there's not a good way to install client certificates in Firefox 4 for Android. A bug has been filed, and any work that we do on adding this feature will be tracked here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=478938

  • How to Install VPN and how to connect client Application server

    Hi All,
    Could any one tell me. How to connect Client's Application server and How to Install VPN. Thanks in advance.......
    Thanks  & regards
    Vardhan

    where r u working?
    ask your help desk to give the URL link to down load vpn
    after downloading install it, its just like a wizard
    you need to give your userid and password , and secureid number
    secureid is a small device which displays a number(say a 6 digit number ) this number is keeps on changing for every one minitue.
    you need to enter the number which is displaing while you are trying to connect to vpn.
    in the middle of connecting to vpn if your secureid number changed , you need to login once again by the same procedure

  • How to Install SSIS COM Component on Client side

    Hi,
    I am new to BPC.
    I can't install SSIS COM Component on Client side.
    and i guess,  it lead BPC Excel , Data Manager is not working.
    Because all the user are local user on server side, no domain
    I have run OSoftSetup.exe,  but the result is
    Error (Login failed for user ". The user is not associated with a trusted SQL Server connection.)
    i have tried to change the OutlookSoft.config in OSoftSSIS_Client\Bin Folder
    and the config doesn't take any effect.
    How to How to Install SSIS COM Component on Client side?
    thx
    It is client side PC_MS\Logging\Log
    #ERROR#CustomXMLClt##EPM-BPC-MS##e17c2022-c7d4-4a0b-8515-b719441e3dbf###XMLParser : GetTagValue#hostname
    user########Plain##[LOG ID:22]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    thx
    John

    But the problem is...in client side
    When opening Office 2007 Excel -> eTool -> Data Manager
    There have no option showed.
    and in C:\Documents and Settings\<user>\My Documents\PC_MS\Logging\Log
    it has following error.
    2010 08 21 17:15:35:875#+8:00#ERROR#CustomXMLClt##EPM-BPC-MS##51cea66a-13cd-49fc-afdd-7b492566bd12###XMLParser : GetTagValue#<HOSTNAME>
    BPCADM########Plain##[LOG ID:346]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##7aec1fbe-5fda-4c91-9c4a-1eec5e59911b###DMTools::ErrCheck#<HOSTNAME>
    BPCADM########Plain##[LOG ID:347]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##48f5a612-a046-4ef9-a56c-db565ef489d2###DMTools::GetServerInfo#<HOSTNAME>
    BPCADM########Plain##[LOG ID:348]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.GetServerInfo(String strContext, String strFilter, String strSecurity)#
    2010 08 21 17:15:35:890#+8:00#ERROR#DMConsole##EPM-BPC-MS##af7f7343-1cb2-4802-a667-2adbb1b8e2fd###basClientTools::ChangeClientSiteList#<HOSTNAME>
    BPCADM########Plain##[LOG ID:349]Subscript out of range#

  • How to install only catalog manager in obiee 11g client

    hi,
    i have obiee 11.1.1.5 sever on linux & client on windows.
    since obiee 11g client does not comes with catalog manager.
    how to install only catalog manager on windows machine.
    Just to access catalog manager, Do i need to install fresh DB & OBIEE on windows?
    thanks,

    Hi,
    Download Client tool below link and also via BI Presentation Administration home page
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
    Note: catalog manager is present in obiee11.1.1.6.0
    Thanks
    Deva
    Edited by: Devarasu on Oct 24, 2012 3:41 PM

  • How to install Hyperion Essbase 11.1.2.2 Client

    HI Experts,
    I need to import metadata from essbase cube into OBIEE 11.1.1.6 from Essbase 11.1.2.2 remote server ,
    I got suggestions that I should have installed hyperion essbase 11.1.2.2 client , so can anyone guide me how to install essbase client 11.1.2.2.
    I did the same with OBIEE 11.1.13 and 11.1.1.5 with Hyperion essbase 11.1.2 and easily made its access. but with these new realease everything is got changed.

    Raj M wrote:
    OS IS WIN 7 ULTIMATE, AND MIN LEVEL OF THE USER ACCOUNT CONTROL IS SET
    I CAN RUN THE INSTALLED WITHOUT ERROR,
    WELL I HAVE THIS EPM System Release 11.1.2.2.0 Client Installers for Microsoft Windows V32789-01* ABOUT 1.6 GB
    IS THAT CORRECT ONE,Yes extract the package and you will see the essbase client standalone installer.
    or just extract the "EssbaseClient" folder from the package.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to install 11g ODBC client drivers to access OBIEE 11g server?

    I have a user running Microsoft Excel on Wondows XP that wants to use ODBC to access an OBIEE 11g server running on Linux. The OBIEE 11g installation documentation indicates that a full install of OBIEE is required to install OBI client tools (including ODBC drivers). OBIEE version 10 had a separate client installation kit that made it very easy to install ODBC drivers. Does 11g have a client only installation kit like version 10? OR do I really have to perform a full OBIEE install on each client machine just to get the ODBC driver installed?
    Any recommendations on how to install the OBIEE 11g ODBC driver, that DOES NOT require a full OBIEE installation, would be greatly appreciated.
    Thanks,
    Richard Brooks

    Does 11g have a client only installation kit like version 10? No
    do I really have to perform a full OBIEE install on each client machine just to get the ODBC driver installed?Yes
    Any recommendations on how to install the OBIEE 11g ODBC driver, that DOES NOT require a full OBIEE installation, would be greatly appreciated.Wait for the next 11g patch release, it should be fixed.

  • How to install IPSec Client Certificate for Apple products (iPad,iPhoe and Mac)

    We need  Ipsec vpn client authentication with certificate (instead of pre-shared key). We tested the same with Windows client and its works fine. However when we used the same certificates with Apple products (iPad, iPhoe and Mac) it doesnt work.
    We have two types of certificates installed on the client from the CA server.
    One is the root certificate with the extenstion .cer
    and the other one is client certificate with the extension of .pfx (personal informaiton exchange)
    We can not find a proper document to install certificates and client configuration for iPad,iPhoe and Mac. We need to know what type of certificates needed, what are the certificate formats and how to install etc.
    Appreciate if someone has implemented this and share any documents.
    thanks

    This will be helpful for you :-
    http://images.apple.com/iphone/business/docs/iOS_Certificates_Mar12.pdf
    Manish

  • How to Install microsoft lync 2010 client on 9800

    How to Install microsoft lync 2010 client on 9800?
    I have tried all possible links to download the files. but how can i integrate it???
    Consultant

    There is a step by step guide on how to download and install the Lync Client at the technology website, ITProportal
    http://www.itproportal.com/2012/06/07/lync-2010-bl​ackberry-client/

  • How To: Install a Client Agent link broken

    I wanted to know if there was a new version of the agent and found the link broken
    [Quote]
    When you select an agent from the table of sync groups and sync agents on the SQL Data Sync landing page, you go to the sync agent page.
    SQL Data Sync Client Agent
    When you select a client agent from the SQL Data Sync landing page, three buttons appear at the bottom of the page.
    REFRESH
    MANAGE KEY
    Create a new agent key. After you create an agent key, launch the agent and submit the new key value.
    DELETE
    Delete the selected client agent.
    For more information on Client Agents, see the topics
    How To: Install a Client Agent,
    How To: Register a SQL Server database with a Client Agent, and
    How To: Change an Agent's Key on MSDN.
    [/Quote]
    I keep getting redirected to http://www.microsoft.com/fr-fr/default.aspx

    Hi,
    Thank you for the feedback. I will have the relevant team notified.
    You can have a check on the below link for SQL Data Sync (Preview) Client Agent.
    http://msdn.microsoft.com/en-us/library/azure/jj823137.aspx
    Regards,
    Mekh.

  • How to Install or Use Perl in 11g client?

    Hi all,
    I read this doc:
    Perl 5.10.0 is included in the Oracle 11.2.0.1 client.
    Execute the following command to ensure that the correct version of Perl is in the user
    profile PATH.
    perl -V
    'perl' is not recognized as an internal or external command,
    operable program or batch file.But if i use the full path exe:
    C:\Documents and Settings\dev>C:\oracle\product\11.2.0\client_1\perl\bin\perl.exe -v
    This is perl, v5.10.0 built for MSWin32-x86-multi-thread
    Copyright 1987-2007, Larry Wall
    Perl may be copied only under the terms of either the Artistic License or the
    GNU General Public License, which may be found in the Perl 5 source kit.
    Complete documentation for Perl, including FAQ lists, should be found on
    this system using "man perl" or "perldoc perl".  If you have access to the
    Internet, point your browser at http://www.perl.org/, the Perl Home Page.Thanks a lot,

    yes, it is there. when you installed client it is automatically added

Maybe you are looking for

  • How can i format an external drive so as to read and write from both windows and mac side

    i recently bought a macbook pro and used bootcamp so as to be able to run win7 and mac. I now wish to have an external drive so as to backup and tranfer files between the two os's. Specifically to read and write form either windows or mac. How can I

  • HP Officejet Pro 8500 A909g Crashes My Internet

    I have an HP Officejet Pro 8500 A909g printer connected through a Netgear WNDR3400v2 router which is then shared through 3 computers all running Windows 7 Home Premium, in fact they are all identical. Now for the problem it seems that every time I tu

  • App wish list - black box recorder

    This might have to wait for the multitasking OS 4.0 but it would be very useful to set my iPhone up on the dash of the car and record video (in say a 1 minute loop) along with GPS co-ordinates and accelerometer readings for the entire trip. The video

  • Need code for PR and me49

    hi all i need the z program code for printing pr that is ME51n and also the code for the z prorgram for price comparision list me49

  • Creating RFC dest'n for Registered Server Program

    Hi, I want to create a create a RFC destination for RFC Sender adapter. I am consulting this weblog:           /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step However, i dont know what will be the Program ID