Dropping the EM repository hangs

Hello,
Im trying to recreate the database control for OEM but it hangs to the point on dropping the EM repository. heres the process goes
$ emca -config dbcontrol db -repos recreate
STARTED EMCA at Apr 24, 2007 8:25:29 PM
EM Configuration Assistant, Version 10.2.0.1.0 Production
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Enter the following information:
Database SID: PRD
Database Control is already configured for the database PRD
You have chosen to configure Database Control for managing the database PRD
This will remove the existing configuration and the default settings and perform a fresh configuration
Do you wish to continue? [yes(Y)/no(N)]: Y
Listener port number: 1521
Password for SYS user:
Password for DBSNMP user:
Password for SYSMAN user:
Email address for notifications (optional):
Outgoing Mail (SMTP) server for notifications (optional):
You have specified the following settings
Database ORACLE_HOME ................ /oracle/oraprd/prddb/10.2.0
Database hostname ................ fmsdbprod.bayan
Listener port number ................ 1521
Database SID ................ PRD
Email address for notifications ...............
Outgoing Mail (SMTP) server for notifications ...............
Do you wish to continue? [yes(Y)/no(N)]: Y
Apr 24, 2007 8:26:04 PM oracle.sysman.emcp.EMConfig perform
INFO: This operation is being logged at /oracle/oraprd/prddb/10.2.0/cfgtoollogs/emca/PRD/emca_2007-04-24_08-25-29-PM.log.
Apr 24, 2007 8:26:07 PM oracle.sysman.emcp.util.PortManager isPortInUse
WARNING: Specified port 5540 is already in use.
Apr 24, 2007 8:26:07 PM oracle.sysman.emcp.util.PortManager isPortInUse
WARNING: Specified port 5520 is already in use.
Apr 24, 2007 8:26:07 PM oracle.sysman.emcp.util.PortManager isPortInUse
WARNING: Specified port 1158 is already in use.
Apr 24, 2007 8:26:07 PM oracle.sysman.emcp.util.DBControlUtil stopOMS
INFO: Stopping Database Control (this may take a while) ...
Apr 24, 2007 8:26:11 PM oracle.sysman.emcp.EMReposConfig dropRepository
INFO: Dropping the EM repository (this may take a while) ...
it stop up to here i leave it for two days but nothing happens.
Background:
Im trying to activate the OEM in a cloned environment. Since this environment is cloned the OEM instance that it gets is still the previous one.
Hope you can help me on these

Heres my procedure in bouncing the database
Shutdown includes the e-business suite application then the database
@appsprod server
su - appprd
adstpall.sh apps/apps
@fdbprod server
su - appprd
adstpall.sh apps/apps
====================================================
su - oraprd
addlnctl.sh stop PRD
addbctl.sh stop
startup FMS Prod including the e-business suite application
@dbprod server
su - oraprd
addbctl.sh start
addlnctl.sh start PRD
su - appprd
adstrtal.sh apps/apps
@appsprod server
su - appprd
adstrtal.sh apps/app
still the same output hangs on
Apr 28, 2007 12:54:38 AM oracle.sysman.emcp.EMReposConfig dropRepository
INFO: Dropping the EM repository (this may take a while) ...
whats next? sorry for the trouble. Thanks

Similar Messages

  • Can i drop the connection user and schema used for Accociate repository

    Hi
    I have created a connection , user and schema and Associated repository to it then migrated a database from diffrent product. to oracle
    using the above mentioned connection, user ,schema and asscociated repositroy.
    11g XE.
    can i delete it after the migration.
    yours sincerely.

    Yes you can !. Permission to drop those artifacts is granted except the target schema where the converted objects are. The migration repository user/connection can be dropped.

  • Unable to descripe the table and unable to drop the table

    Hi,
    I have a temp table that we use like staging table to import the data in to the main table through some scheduled procedures.And that will dropped every day and will be created through the script.
    Some how while I am trying to drop the table manually got hanged, There after I could not find that table in dba_objects, dba_tables or any where.
    But Now I am unable to create that table manually(Keep on running the create command with out giving any error), Even I am not getting any error (keep on running )if I give drop/desc of table.
    Can you please any one help on this ? Is it some where got stored the table in DB or do we any option to repair the table ?
    SQL> select OWNER,OBJECT_NAME,OBJECT_TYPE,STATUS from dba_objects where OBJECT_NAME like 'TEMP%';
    no rows selected
    SQL> desc temp
    Thank in advance.

    Hi,
    if this table drops then it moved DBA_RECYCLEBIN table. and also original name of its changed automatically by oracle.
    For example :
    SQL> create table tst (col varchar2(10), row_chng_dt date);
    Table created.
    SQL> insert into tst values ('Version1', sysdate);
    1 row created.
    SQL> select * from tst ;
    COL        ROW_CHNG
    Version1   16:10:03
    If the RECYCLEBIN initialization parameter is set to ON (the default in 10g), then dropping this table will place it in the recyclebin:
    SQL> drop table tst;
    Table dropped.
    SQL> select object_name, original_name, type, can_undrop as "UND", can_purge as "PUR", droptime
      2  from recyclebin
    SQL> /
    OBJECT_NAME                    ORIGINAL_NAME TYPE  UND PUR DROPTIME
    BIN$HGnc55/7rRPgQPeM/qQoRw==$0 TST           TABLE YES YES 2013-10-08:16:10:12
    All that happened to the table when we dropped it was that it got renamed. The table data is still there and can be queried just like a normal table:
    SQL> alter session set nls_date_format='HH24:MI:SS' ;
    Session altered.
    SQL> select * from "BIN$HGnc55/7rRPgQPeM/qQoRw==$0" ;
    COL        ROW_CHNG
    Version1   16:10:03
    Since the table data is still there, it's very easy to "undrop" the table. This operation is known as a "flashback drop". The command is FLASHBACK TABLE... TO BEFORE DROP, and it simply renames the BIN$... table to its original name:
    SQL> flashback table tst to before drop;
    Flashback complete.
    SQL> select * from tst ;
    COL        ROW_CHNG
    Version1   16:10:03
    SQL> select * from recyclebin ;
    no rows selected
    It's important to know that after you've dropped a table, it has only been renamed; the table segments are still sitting there in your tablespace, unchanged, taking up space. This space still counts against your user tablespace quotas, as well as filling up the tablespace. It will not be reclaimed until you get the table out of the recyclebin. You can remove an object from the recyclebin by restoring it, or by purging it from the recyclebin.
    SQL> select object_name, original_name, type, can_undrop as "UND", can_purge as "PUR", droptime
      2  from recyclebin
    SQL> /
    OBJECT_NAME                    ORIGINAL_NAME TYPE                      UND PUR DROPTIME
    BIN$HGnc55/7rRPgQPeM/qQoRw==$0 TST           TABLE                     YES YES 2006-09-01:16:10:12
    SQL> purge table "BIN$HGnc55/7rRPgQPeM/qQoRw==$0" ;
    Table purged.
    SQL> select * from recyclebin ;
    no rows selected
    Thank you
    And check this link:
    http://www.orafaq.com/node/968
    http://docs.oracle.com/cd/B28359_01/server.111/b28310/tables011.htm
    Thank you

  • The Em Key is not configured properly or is corrupted in the file system and doe s not exist in the Management Repository.

    I'm getting this error and is there any way to resolve this without re-creating the service/s again, etc. Just curious if there are any suggestions/steps I may have missed, if not, I'll drop and recreate the services again
    Anyway, I have a backup of the emkey.ora and put it in the sysman/config directory, but still doesn't work... please see below...
    C:\Documents and Settings\abigail>emctl status emkey
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    Please enter repository password:
    The Em Key is not configured properly or is corrupted in the file system and doe
    s not exist in the Management Repository. To correct the problem:
    1) Copy the emkey.ora file from another OMS or backup machine to the OH/sysman/c
    onfig directory.
    2) Configure the emkey.ora file by running "emctl config emkey -emkeyfile <emkey
    .ora file location>".
    C:\Documents and Settings\abigail>emctl config emkey -emkeyfile E:\app\abigail\p
    roduct\11.2.0\dbhome_1\sysman\config
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    Please enter repository password:
    The Em Key is already configured. To override the current configuration, run "em
    ctl config  emkey <options> -force".
    C:\Documents and Settings\abigail>emctl config emkey -emkeyfile E:\app\abigail\p
    roduct\11.2.0\dbhome_1\sysman\config -force -sysman_pwd ********
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    The Em Key could not be configured. Unable to access file E:\app\abigail\product
    \11.2.0\dbhome_1\sysman\config.
    C:\Documents and Settings\abigail>emctl secure dbconsole -sysman_pwd ********
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    http://ABIGAIL:5501/em/console/aboutApplication
    DBCONSOLE already stopped...   Done.
    Agent is already stopped...   Done.
    Securing dbconsole...   Started.
    Please enter repository schema password:
    Securing dbconsole...   Failed.
    EMKey is misconfigured.

    Sorry but I'll have to ignore your suggestion, and don't worry about how I spend my time
    AND OHMYGODD IT WORKSS!!! For future reference, this is how I solved it based on my searches, actually based on one particular search:
    http://franjv.blogspot.com/2013/08/emkey-problems-in-oracle-rac-11gr2.html
    Thank youuu whoever wrote that and... is it the same "Fran" who helped me the last time?!? Coincidence??
    ANyway, thank youuuu

  • FTP adapter failing sometimes, msg:Error connecting to the OAI Repository

    Hi,
    I have imported a dump due to curropt metadata definition. The import was successful without any warning/error.
    I have recreated the event , but when I am testing the same, getting following error in the FTP adapter, though the adadpter is started successfully, connecting to hub /repository, still trowing below errror when it translates a file:
    Sometimes it works when the adadpter is killed & restarted.
    Ususally happening when a new event is created & run for the first time...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    <A N = "do_no">428997</A>
    <A N = "mdo_no">
    </A>
    </AO>
    </AO>
    </AO>
    </B>
    </MSG>.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    Message linked list has 0 elements.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    FileReceiver.sendResponse() completed.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    FileReceiver.receive() is invoked.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    The message queue is empty.
    Mon Oct 03 17:18:45 SGT 2005: Initializing connection to the Repository...
    Mon Oct 03 17:18:46 SGT 2005: Connected to the Repository.
    Mon Oct 03 17:18:46 SGT 2005: Error connecting to the OAI Repository. Please make sure that the hub database and the OAI Repository are started properly. Once everything is started properly, the connection will be automatically re-established. However, if you have provided incorrect parameters concerning your hub database or the OAI Repository during installation of this Adapter, please stop the Adapter, fix the information and restart.
    oracle.aob.repository.aobRepositoryCartridge.RepositoryException
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    Any pointers on this will be a great help for me.
    Regards,
    MOhit

    In same context, what I observed is that the FTP adapter throws above error if a file is send again for translation...ie; when i try to use the same file for testing putingit in FTO dir , FTP adapter hangs throwing above error.
    Even after few runs of other files.
    Is it something related to the security feature of the product which prohibits sending the contents of message if the same contents are send previously?
    Actullay I had never faced such issue before & use to do the testing with same file itself.
    oai_agent_error has following entry in internalid column:
    MetadataManager_RepositoryConnectionErrorWithoutOID
    When I kill the adapter, the same msg is picked up by the subcribing adadpeter(dbadapter) & puts the data into the table.
    Tough I m fixing the above issue as below:
    1- kill the FTP adapter
    2- remove its entries in componentinfo table.
    3-deleting all rows in oai_hub_queue.
    4- stop other adapters.
    5- Stopping & restarting the repository again.
    Still not sure whether error throwing by adapter is expected functionality in iStudio, or something is missing in the setting done in my setup?
    Regards.
    Mohit

  • Repository Assistant 10.2.0.3 Create Repository hangs 30%, SeedData.xml 0%

    Using Repository Assistant (Windows 32 bit 10.2.0.3) Advanced Setup Install Type to create a (runtime) OWB Repository on a remote server (solaris 64 bit) Oracle Enterprise Edition 9.2.0.6.0 but the installation hangs at 30% when it is about to start Process Element SeedData.xml (0%). I have checked that the JVM has been installed and is valid on the remote server, returned valid object count 9548 which is greater than the 8548 quoted on Metalink. I have looked at the log file and the last file processed was 'C:\oracle\product\10.2.0\db_1\owb\bin\admin\..\..\reposasst\SeedData.xml counted 16587 lines in 140 milliseconds', before lots of class does not exist messages (seems normal as installing Design Repository on local machine also raised these java class does not exists errors). One strange thing was the OWB Repository Assistant did not display the "Oracle Home for the OWB Installation" window/page where I would have checked the "Skip checking of the remote OWB Oracle Home for the Installation"
    I have also tried creating the OWB repository using OMBPlus command OMBINSTALL OWB_REPOSITORY, e.g.
    OMBINSTALL OWB_REPOSITORY OWB_RUN_REP_OWNER/password \
    DATA_TABLESPACE 'REPOSITORY' \
    INDEX_TABLESPACE 'REPOSITORY' \
    TEMPORARY_TABLESPACE 'TEMP' \
    SNAPSHOT_TABLESPACE 'REPOSITORY' \
    BASE_LANGUAGE 'ENGLISH' \
    OWB_SERVER_HOME_CHECK_FLAG FALSE \
    USING CREDENTIAL sys/password@REMOTE_SERVER:1521:SERVICE_NAME
    This also hangs at the SeedData.xml step by checking the log file created.
    Any ideas what might be the problem? I have already been able use OWB Repository Assistant to create a OWB Repository on a remote Windows server.
    Thanks

    Hi,
    Few years ago when i was using OWB 9.0.2 , i had similar problem but dont remember what i did to fix it..
    Check the following links
    Help! Installation of seed data failed.
    Install repository owb 9.0.4
    Error at the time of repository creation
    INS0017: Installation of the seed data failed.oracle.wh.util.parser.ParseEx
    Hope this helps.
    Thanks,
    Sam.

  • Recreate the translation repository

    After a database problem our dba dropped apex and installed apex again. After the new apex installation I imported the apex application for the primary language (=APP_ID "1" is german) and the translated application (=APP_ID "11" is english). Then I wanted to check the tranlation repository and saw, that the translation repository was empty.
    So I used the utility "Seed translatable text to translation repository". When I looked at the apex page "Manually Edit Translation Repository", I can't find my translations. All words in die APP_ID "11" are in "german".
    Is there a possibility to synschonice the "german" and "englisch" application and save the results in the translation repository (=in the table "wwv_flow_translatable_text$") ??????
    Can anyone help me!
    Regards
    Robert

    Hi,
    my question whether i can recreate a central inventory any where by specifying the inventory_loc=$ORACLE_BASE/orainv or $ORACLE_BASE/db/tech_stAs per the note specified will it be enough if we move the orinv to the new location
    Yes you can but under ownership of oracle binary install user.
    Pls read note i mentioned:-
    it says:-
    1) Find the current location of the central inventory
    2) cat /etc/oraInst.loc
    inventory_loc=/u01/app/oracle/oraInventory
    *3. Copy the oraInventory directory to the destination directory* -- you need to copy to new location before making changes in oraInst.loc
    4. Edit the oraInst.loc file to point to the new location
    I hope it clears your doubt.
    Thanks,
    JD
    Edited by: user12001639 on 27-Apr-2011 08:44

  • Dropping non-accessible repository

    Hi, is there any workaround to delete a repository on OracleVM Manager 3.0.3?. Currently we lost a LUN so the repository won't come back to life, OVMM complains about it not being presented to any host when a delete operation is tried.
    Any suggestions?

    Thanks for the reply.
    Why am I dropping the repository? - Our current Oracle installation was performed very recently by a consultant who has never used EM before and was not familiar with it. After doing a little bit of research about how to maintain oracle, I went through a series of events to start and run dbconsole. When I told him about this he shrugged his shoulders. This guy has since gone back to wherever he came from and left me holding the bag.
    When I try to start dbconsole I get an OC4J Configuration Issue Error. The listener is started and ports are assigned in the portlist.ini file. The sysman user exists which leads me to believe that the current EM configuration is not correct.
    After trying to run EMCA, I get an error which tells me that the repository already exists.
    Thank you for your concern and I acknowledge the fact that this could be potentially dangerous.
    Do I need to drop the repository or is there a way to repair/reconfigure the existing EM?
    It is my humble opinion that the dbconsole service is pointing to the wrong server in that all of the relevant parameters like...
    "oracle.sysman.emSDK.svlt.ConsoleServerHost"
    and
    "oracle.sysman.db.isqlplusWebDBAUrl"
    ...all refer to a server which is NOT and does not have the database server.
    Thanks again for your reply and I look foreward to hearing your reply.
    Cheers.

  • Repository hangs while creating repository schema..

    Hi All,
    When i try to create the repository schema from console, the repository hangs and it is not creating schema too.
    the repository comes to normal only when i restart the server.
    Im using MDM 5.5 SP06 Patch 4
    Please help to solve this issue.
    Regards,
    Nimal

    Hello,
    Can you share your code on how yor get the repository schema?
    below is the code,
    GetRepositorySchemaCommand getRepositorySchemaCommand = new GetRepositorySchemaCommand(
                             connectionPool);
                   getRepositorySchemaCommand.setSession(repositorySessionId);
                   getRepositorySchemaCommand.execute();
                   repositorySchema = getRepositorySchemaCommand.getRepositorySchema();
    In general i notcied there is some performance issue with this getRepositorySchema() method,try avoid using it as it consumed almost 2 sec.
    Cheers
    Sabarinathan

  • Moving the EM Repository

    Hi,
    I've seen some posts for this topic but not seen any definate answers regarding if this is possible or has been attempted.
    We have an existing GC environment (70 servers) but there seems to be some corruption in the oms that is/has caused us a lot of pain. Currently running 10.2.0.2 oms on linux x86, db on 10.2.0.2 linux x86
    Here's what we are trying to do:
    We've created a new oms (10.2.0.2), new repository (10.1.0.3) and migrated a few servers into it. It seems much cleaner than the existing enviroment.
    I'd like to move this repository (expdp) into another differently named 10.2.0.2 database. Then update emoms.properties.
    Is this possible?
    Thanks
    Alex

    sure. I've been experiencing problems with my production GC seteup, so on my DR node I reinstalled the OMS and pointed to a temporary oms in an existing dev database. This new install looks good, many of the little issues are gone (primarily problems with the secure locked uploads).
    So, I'd like to slowly roll the environment (dev first) into this new repository then drop the existing production OMS and replace it with this temp OMS via some kind of export. I can't do a backup and restore b/c in the existing OMS DB instance there are other managment applications.
    Let me know if you want more clarification.

  • I unable to drop the procedure created by me

    i have created a procedure using sql workshop. procedure compiled successfully.
    when i am trying to run the procedure i got hanged. then i try to drop that procedure, i am not able to drop. The window is hanging i need to relogin agin. what might be the problem?

    You can't drop a procedure that is in use by another session. You will need to wait for it to finish (if it ever will), or kill the session that is currently running the proc.
    Anton

  • Recreating the Management Repository Failed

    Hi,
    I tried to recreat the Management Repository with no luck.
    Oracle 11g R2 on RHLinux 5
    Dropping the repository finished with no problem using the following command:
    ./RepManager rac1 1521 ron_1 -sys_password **** -action drop -repos_user sysman
    Creating the repository failed:
    ./RepManager rac1 1521 ron_1 -sys_password qwer5 -action create -repos_user sysman
    Following link is the output of executing the script:
    http://www.ahmedbaraka.com/temp/repmgroutput.txt
    Any hint is appreciated.
    I wish I once tried something new in Oracle and it went smoothly without a problem!

    I think you found the solution for your previous post? ORA-12505 after implementing RAC One Node
    However recreating the repository did not work (completely).
    Do you have any info on this in the alert log/xml file?
    Since you are on a one node RAC you may have to consider it as a cluster. See note How to manage DB Control 11.1.0.x for RAC Database with emca [ID 578011.1]
    Eric

  • I am having a problem opening my browser, the broswer is hanging up after slowly opening

    Hello, I have been having trouble with my firefox browser for quite some time now, it just stopped working on me about 5 or 6 months ago. I have switched over to Internet Explorer which has still been working fine. I like using Firefox much more than Explorer these days, but I am unfortunately not good much with fixing computer problems and have pretty much extinguished all my available options for repairing it myself.
    The problem with Firefox is now when I click on the shortcut link on my desktop, it takes a good 5 to 10 minutes to open up the browser now. Once it does finally open, you cannot type or click on anything it is hung up and will not allow you to go to another site(the home page will still load, with current news and other information)
    I cannot remember anything that would have caused it to crash or get hung up like this, but like I said I am not a computer expert by any means. I do know that I am ready to get Mozilla back to running smoothly as before, I had just gotten really used to it(I had been using internet explorer).
    I also uninstalled Firefox completely and reinstalled it, I figured if nothing else I tried worked that usually is the best option...it still did/does the same thing, hangs up everytime you try to run/open it.
    I checked your online solution for what to do on a hanging first page, I saw something about pentium 4's running Windows Vista or XP...my computer runs Windows 7 (was actually purchased running the terribly bug ridden and error-prone Vista, and lucky I was able to obtain a free upgrade to 7). So I was thinking maybe that had something to do with it, I had some problem in the past, with what I cannot remember, but it traced back to something from when Vista was on my computer(even though it was no longer my operating system I'll be darn if it wasn't still causing me headaches! How fitting.)
    My computer in question is a Dell Studio XPS 1640 which I bought new almost two years ago exactly)

    Did you check what I would consider the first place to look:
    * http://kb.mozillazine.org/Problematic_extensions
    If the site is still down (at least 12 hours) when you read this try [http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Problematic_extensions Google's cache]
    Link or url would make it easier to see which page you tried rather than "your online solution for ...".
    * http://kb.mozillazine.org/Firefox_hangs ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_hangs cached version])
    * http://kb.mozillazine.org/Firefox_crashes ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_crashes cached version])
    * [https://support.mozilla.com/kb/Firefox%20hangs#os=mac&amp;browser=fx4 Firefox hangs | Troubleshooting | Firefox Help]

  • Ora-00604,ora-01422 error while dropping the table

    Hi gurus,
    I am using Oracle 10g R2 on windows 2000 platform,while dropping the table the following error occured.
    ORA-00604 : error occurred at recursive sql level 1.
    ORA-01422: exact fetch returns more than requested number of rows.
    Need urgent help.
    Thanks in advance

    Is there an AFTER EVENT trigger defined on this database? Can you check that?
    Secondly, was this database migrated from earlier version? I remember having seen this problem on 9i (it was 9.2.0.1 or 9.2.0.2; I can't recall exactly).

  • Error when starting the Integration Repository/Directory

    When starting the Integration Repository or Directory I get the following error message when the Java Web Start is launched:
    <i>JAR resources in JNLP file are not signed by same certificate</i>
    I am running on XI3.0 SP15
    Any idea?
    Thanks in advance.
    Kind regards,
    Dave Arends

    Solved this issue.
    Go to Administration - Java Web Start Administration.
    Click on 'Re-initialization and force signings' and start the Repository or Directory again.

Maybe you are looking for

  • How to check Hard Drive space?

    Hey... I am new here...bought a MacBook last July and I am loving it. Just one question though...I bought a MacBook with 120 GB RAM but when I check the computer it says that it's capacity is 74.21 GB which I am thinking is actually the 80 GB RAM. Al

  • When I installed Ios 7 I enabled locations services buth they are not working! what do I do?

    What shud I do?

  • TDS ON SERVICE TAX

    Hi We are not using Tax codes for Service tax as we dont have the scenario CENVAT credit set off. We have assigned WHT codes in vendor  master for TDS deduction only. In that case is it possible to post FI entries through FB60 without considering TDS

  • How to install IOS sdk for Xcode 3.1.1 on OS 10.5.8

    Hi I am using 10.5.8 OS. I have just installed XCode 3.1.1 from http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wo/5.1.17.2.1.3.3.1.0 .1.1.0.3.1.3.3.1. The disk image did not have IOS sdk (for iphone/ipad simulations). Is it possible to do

  • Unable to update phone

    Hello, I use an Xperia Z1, open market on O2 UK. Its currently running build v14.2.A.0.290. I have noticed that on the Sony Mobile UK support page, the lasest build is now v14.2.A.1.136. My device is encrpyted, as per my corporate email policy. When