How to remove modules after installation

Hi;
Picture this please, u are making r11 installation and while u are making installation on Lisence Produts step you click Finance,Logistic etc.. modules and then you complite your installation wihtout any problem.
After installation functional person comes and start to make their setup on EBS for all modules which is installed... After sometimes they notice The client doesnt need Logistic module, client side give wrong information about modules and person who made installation of EBS click Logistic wiht client wrong information.
The question is:
1. We can remove modules after installation?
2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)
3. If we can remove it can affect other module setups?
Thanks for advice
Regards
Helios

Hi,
1. We can remove modules after installation?No.
2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)It would be making a fresh installation or restoring from a backup to a point before this module was licensed.
3. If we can remove it can affect other module setups?There is no direct and supported way to achieve this. However, you may log a SR and see if Oracle can help about this.
Regards,
Hussein

Similar Messages

  • How to remove space after paragrph in pages on ipad

    Can't figure out how to remove space after each paragraph in Pages for Ipad

    Settings > General > International > Region Format
    Set it to your country to format numbers and dates in the way your country does.

  • How to run executable after installation?

    Hi everyone,
    I created an installer from one labview program with the application builder
    of Labview7.1 for my customer, and this installer will be burned
    on a CD. There are several configuration files which should be always
    modified, so I want to give the customer a possibility that he can
    change them by himself without creation of a new installer , I think the
    "run executable after installation" is the way to do it, but I don't know
    how to implement such an executable command to copy some files from CD to
    the destination directory which the program should be installed, could
    anyone give me some tips? Thans a lot!
    Le

    When you setup your build file, add the files using SourceFile Tab>>add support files, then click on custom destination, here you can add support files during installation. Hope this is what you are looking for.
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • How to config VIPs after installation

    Dear All,
    Could you show me how to config virtual ip and virtual host after installation.
    Thanks for your help

    At the end of the Oracle Clusterware software install a number of Configuration
    assistants are run automatically. In that Virtual IP configuration assistant configures the VIPS for you.
    To run it manually, To re run vipca run the vipca.bat (root.sh in linux) file from the Oracle clusterware bin directory.Follow the prompts for VIPCA to select the appropriate interface for the public network, and assign the VIPs for each node when prompted. Manually running VIPCA with the same IPs should complete successfully.
    Hope this helps.

  • How to remove errors after running sapf190

    Hi everyone
    Can anyone please guide me what procedure do i have to follow if i found differences in one of the gls after running the report sapf190. The report shows me difference in one of the Gls with debit index, debit master not matching credit index and credit total master not matching. But the programme dont tells me how to remove this error. Your kind help will be really appreciated.
    Regards

    RESOLVED

  • How to remove zero after decimal point.

    hi friends
    how to remove the zero after decimal points.
    example :
    123.450 -- if print only 123.45
    45.600  - 45.6
    any body help me.
    thanks
    pauldhama

    go through this example
    it may help u
    DATA: T(14) VALUE ' abcdefghij',
    STRING LIKE T,
    STR(6) VALUE 'ghijkl'.
    STRING = T.
    WRITE STRING.
    SHIFT STRING LEFT DELETING LEADING SPACE (or use 0 to detete 0).
    WRITE / STRING.
    STRING = T.
    SHIFT STRING RIGHT DELETING TRAILING STR or 0.
    WRITE / STRING.
    Output:
        abcdefghij
    abcdefghij
            abcdef

  • How call Forms servlet after installation

    I have ORacle EE 8.1.7.1 and Forms 6i Patch 6 installed on the same computer. So after installation and some custom setting. I try with this link and I see the test page: http://server/servlet/oracle.forms.servlet.ListenerServlet?config=servlet
    All work fine. But my question is what is the url I need to enter to run my forms (in servlet).
    Tanks you.
    Francois

    I think what you are looking for is: http://your_server/servlet/f60servlet?config=blah
    Have you read the whitepaper on the Forms Listener Servlet? It may help with other questions you come across. http://technet.oracle.com/doc.pdf/forms/p5_listenerservlet.pdf
    Regards,
    Candace Stover
    Forms Product Management

  • How to remove padding after RSA decryption??

    Hello,
    I am testing my host apps ability to read public key that was saved in file after being exported from smart card where it was generated.
    I have successfully used the private key on card to encrypt a small piece of data and the cryptogram is returned to the host.
    On host side I retrieve public key from file and decrypt ciphertext
    The on-card alg for Cipher is declared as follows-
    RSAcipher = Cipher.getInstance(Cipher.ALG_RSA_PKCS1, true);and in the host app
    Cipher rsaCipher = Cipher.getInstance("RSA","BC");I can see from what is returned from
    byte[] decrypted = rsaCipher.doFinal(this.encryptedData);that the correct data is being returned, but is is padded by
    01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
    FFFFFFFFFFFFFFFFFFFFFFFFFFFF00How do I know where the padding ends and the plaintext begins?
    Can anyone help me with this?
    Thanks in advance,
    Ann

    Hi!
    I have the same problem like you.
    But my problem is that i don,t know how to move the key across. I manege to create a pair of keys public and private using RSA Algorithm.
    privateKey = KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_PRIVATE,KeyBuilder.LENGTH_RSA_512,false);
            publicKey = KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_PUBLIC,KeyBuilder.LENGTH_RSA_512,true);
                        // KeyPair creation
                        if(keyPair == null){
                            keyPair = new KeyPair(KeyPair.ALG_RSA, (short)publicKey.getSize());
                        // starts key generation process
                        keyPair.genKeyPair();
                      publicKey = keyPair.getPublic();
                        privateKey = keyPair.getPrivate();
                         cipher = Cipher.getInstance(ALG_RSA_NO_PAD, false );then i send the modulus and exponent part of the public key to host
                 byte    keyElement = (byte)(apduBuffer[ISO7816.OFFSET_P2] & 0xFF);
                     // check correct type (modulus or exponent)
                     if((keyElement != 0x00) && (keyElement != 0x01))
                         ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);
                     // check elements request
                     if(keyElement == 0) {
                         // retrieve modulus
                         apduBuffer[0] = (byte)((RSAPublicKey)publicKey).getModulus(apduBuffer, (short)1);
                     } else
                         // retrieve exponent
                        apduBuffer[0] = (byte)((RSAPublicKey)publicKey).getExponent(apduBuffer, (short)1);
                     // send the key element
                     apdu.setOutgoingAndSend((short)0, (short)((apduBuffer[0] & 0xFF) + 1));I decrypt the data as follow in the card
          byte[] apduBuffer = apdu.getBuffer();
          if(!privateKey.isInitialized())
                            ISOException.throwIt(ISO7816.SW_CONDITIONS_NOT_SATISFIED);
          cipher.init(privateKey,Cipher.MODE_DECRYPT);
          apdu.setIncomingAndReceive();
         cipher.doFinal(apduBuffer, (short)ISO7816.OFFSET_CDATA, (short)(apduBuffer[ISO7816.OFFSET_LC] & 0xFF), apduBuffer, (short)0);
        apdu.setOutgoingAndSend((short)0, (short)(KeyBuilder.LENGTH_RSA_512/8));
       in host i encrypt data as follow
    // Note modulus and exponent are arrays of bytes from the card
        BigInteger modulus = new BigInteger(1,modulus);
        BigInteger exponent =new BigInteger(1,exponent);
        cipher = Cipher.getInstance("RSA");
    RSAPublicKeySpec pubKeySpec = new RSAPublicKeySpec(modulus,exponent);
    keyFactory = KeyFactory.getInstance("RSA");
    pubKey = keyFactory.generatePublic(pubKeySpec);
    cipher.init(Cipher.ENCRYPT_MODE,pubKey);
    byte[] p = cipher.doFinal(data);

  • Dv7-1464nr How to remove keyboard after a spill ?

    A friend had a spill all over the keyboard. Now the laptop won't boot. How do I remove the keyboard? in the bottom there are like 6 m2.5x12 screws one of marked keyboard, about 18 m2.5x3. 3 of are under dvd ?? 

    Stabilize, not warp stabilize the shot, make your corrections on a separate layer, then re-introduce the motion to the shot and add it to the new layer. Here's the basic technique on a completely different type of shot.
    If there is a big parallax shift in your shot then this technique may not work. If it doesn't work then show is the shot and we can make some other suggestions.

  • How connect as SYSDBA after installation

    Hello,
    i have oracle 10g, windows xp both fresh installation.
    After i installed oracle i want use the iSQL*Plus DBA url and Enterprise Manager Database Control URL to connect as SYSDBA, my instllation was basic= i set pass for all sys user. Sysem user works fine but sysdba doesnt work: Your username and/or password are invalid.
    I am member of ora_dba group. If it is not possible connect as sysdba using iSQL*Plus DBA what is the best way connect as sysdba?
    Thnx.
    Message was edited by:
    user503518

    To set up iSQLPlus for SYSDBA capability, you want to read Chapter 2 & 3 of the SQLPlus Reference manual. It provides step by step instructions. http://www.oracle.com/pls/db102/portal.portal_db?selected=3
    Note - the SQLPlus manual, not the SQL manual

  • How to remove CS3 after upgrade to CS4

    What is the best way to remove all my CS3 suite after I upgraded to CS4 Suite? Thanks.

    As I no longer require CS3 on my Mac after upgrading to CS4 and waiting for the required plugins to be available I have successfully uninstalled CS3 using the Adobe CS3 Creative Suite uninstaller.
    NOTE: please make a copy of the 'Adobe Unit Types.osax' found Macintosh HD/Library/ScriptingAdditions/Adobe Unit Types.osax
    At home did this without making a backup of the 'Adobe Unit Types.osax', so when I launched Photoshop CS4 it suffered from the "Error: "One or more files in the Adobe Application Support folder.."
    At work I did this with making a copy of 'Adobe Unit Types.osax', place it back after the uninstall of CS3... and presto so far so good.
    for the 'Error: "One or more files in the Adobe Application Support folder... are missing' when you start Photoshop CS4 (Mac OS)" read here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407726
    sorry if this has already been posted, I could not see this anywhere.

  • How to remove app after upgrade to os 6 on iphone 4s

    I cannot get the apps to show the removal x to get rid of an app after upgradeing to the new os 6 on my iphone 4s

    DELETING APPS
    Touch the app and hold your finger down until all the apps start to jiggle. You will see a circled "x" in the upper left corner. Tap it to delete an app. When done press the Home button.
    You cannot delete any pre-installed iOS app.
    If there is No 'X' on any apps you have Downloaded... then check in Restrictions... Settings > General > Restrictions > Deleting Apps  =  Off / On
    If the app is in iTunes, then you delete the app in iTunes (Select the App and Press Delete on your Keyboard). If you then sync with your iDevice, the app will also be deleted from your iDevice.

  • How to Change language after installation?

    Hello,
    Kindly I need to know how to change language of adobe photoshop extended cs6 v.13.0 from English to English support Arabic?
    Your prompt reply will be so highly appreciated...
    Thank you
    Rehab

    You can run the Photoshop CS6 Installer again, and choose English (Arabic) as the language instead of English (North America)
    Then in Photoshop Preferences > Interface, select English Arabic as your "UI language". Restart Photoshop.
    If you use the Creative Cloud desktop application manager, click on the gear symbol,and select Preferences. This will install the English Arabic versions of all trial apps.
    Gene

  • How to remove spaces after description.

    hi all,
    i need to supress spaces after writing material description and i want to keep comma after description.
    but it displays comma after field length (i e after  40 chars).But i need to keep comma after description it self.
    example like this.
    GR Number- 4900000400,
    Batch Number-            ,
    Material number- P0001016,
    Material description- Returnable Pallet,
    Vendor:            ,
    GR Date: 16.02.2010 ;
    Not Like this...
    GR Number- 4900000400 ,
    Batch Number-            ,
    Material number- P0001016           ,
    Material description- Returnable Pallet                        ,
    Vendor:            ,
    GR Date: 16.02.2010 ;
    after  posting message the comma comes after desc in both the cases...but it wont in SAP
    Appriciate your help.

    Hi,
       Use condense statement.
    Regards,
    Srini.

  • How to change language after installation? (CS4)

    Hi,
    I'm writing on behalf of one of our students. Our (German) university provides colleagues and students with a legit disc of Adobe CS4 Design Premium, provided by a central IT department.
    Unfortunately at setup time, using this DVD, no language choice is available except German, which proves problematic for most foreign students (either from other European countries, e.g. France, or farther, e.g. China).
    Activation and registration of this German-only version succeeds with the provided serial, however this very serial number does not allow any later "on top" installation of another language, for instance from international ESD versions of CS4 (LS1 or LS3). We expected to add some Chinese or at least English language.
    Browsing the various forums does not give very clear answer as to the language-switching ability of these various Creative Suites setup files. It is not even clear to us if our installation medias are language-locked, country-specific or such.
    To the questions:
    • are (legit) serial numbers language-specific? is there any restriction as to which languages a serial number allows to install?
    • is there any way to "unlock" additional languages from our CS4 installation DVD? or are there any language packs to install, for Photoshop, Acrobat and Illustrator?
    • in case our license is language-restricted, what pricing options are there? (upgrade discount, separate language disc?)
    I'm asking on these forums hoping to get some enlightenment, but will gladly contact the customer service if things prove more complicated than expected.

    • are (legit) serial numbers language-specific? is there any restriction as to which languages a serial number allows to install?
    Yes. You only get the language you paid for - German.
    • is there any way to "unlock" additional languages from our CS4 installation DVD? or are there any language packs to install, for Photoshop, Acrobat and Illustrator?
    No and no.
    • in case our license is language-restricted, what pricing options are there? (upgrade discount, separate language disc?)
    Your only option is to upgrade to CS5.5 and make the language switch to European/ International English.
    Mylenium

Maybe you are looking for