Cannot create MOLAP dimension - already exists

Hi, I am trying to deploy a dimension but OWB seems to think it still exists.
I get the following error :-
"Cannot create dimension STOCK_CODE.DIMENSION. AW dimension with logical name STOCK_CODE alredy exists in schema DW."
If I try to drop the dimension using Control Centre it says it doesnt exist.
The dimension did exist a while back but has been deleted.
How can I fix the metadata in OWB as it seems to have it's knickers in a twist at the moment.
Thanks
Paul

It may not be OWB that is causing the problem. The OLAP option will only allow a dimension name to be used once within a schema. What you might find is that the OLAP catalog thinks there is already a dimension with this name deployed somewhere.
You will need to check the view ALL$_OLAPDIMENSIONS to see if you have any relational dimensions that have the same name within your schema. Use the CWM2_OLAP_DIMENSION.DROP_DIMENSION to remove the dimension.
Then check the view ALL$OLAP2_AWS to see if the schema contains any AWs you were not expecting or thought were delete. If there are any rogue AWs within your schema then delete them.
I suspect you may have changed the name of your AW during the deployment and, therefore, the old AW actually still exists and this AW contains a copy of the dimension.
Hope this helps
Keith Laker
Data Warehouse Solution Architect
Oracle EMEA Consulting
BI Blog : http://oraclebi.blogspot.com
DM Blog : http://oracledmt.blogspot.com

Similar Messages

  • Why my itunes cannot create aac.. already right click.. same.. unistall all file.. install back.. also same...

    why my itunes cannot create aac.. already right click.. same.. unistall all file.. install back.. also same...

    Manmira,
    Have you gone to Edit > Preferences > General > Import Settings to make sure that "Import Using" is set to "AAC Encoder"?

  • Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?

    Hi All,
    When I use the BAPI_HU_CREATE  to create HU, the system give me a HU and it inserts a line in Table VEKP, however when I search in table VEKP  with field HU EXIDV, I find  two entries with the same HU, one of them has VPOBJ 01 and the other has VPOBJ 12, So when I execute  transaction LM46  the system shows “The system could not find transfer order for execution” because the system search in table VEKP it find the first line with VPOBJKEY = delivery  and STATUS = 0020, however those delivery is not assigned to transfer order that I want to confirm transfer order.
    Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?
    Thank you!
    Best regards

    Do you want to say that you got 2 HU from BAPI_HU_CREATE?
    I think you only got the one which has VPOBJ = 12 Non-Assigned Handling Unit
    which is exact what the BAPI is used for, see the docu in SE37. Didn't you yourself add this EXIDV in the IDoc?
    VPOBJ = 01 Outbound Delivery
    If you want to pack the Outbound delivery then you should use BAPI_HU_PACK.

  • Cannot create p12 certificate using existing distribution certificate

    Hi,
    I published apps before using my employers apple developer account which is pretty straight forward if you follow the directions. I have been asked to create an app for distribution with the apple store using the clients developer account. I need to create the final .zip of the app and pass it to the client who will submit the actual app themselves.
    My problem is that I cannot create a p12 certificate to attach to the app in DPS App Builder. The client has three distribution certificates in their account but had third parties create them on their behalf. To my knowledge the best way to handle this would be to revoke the oldest of the three distribution certificates in their apple developer account and create a new one that is linked to my machine which would allow me to create all the needed certificates. It seems that 3 distribution certificates is the limit they can have at one time.
    My questions are:
    1. Is my solution the right one?
    2. If so, would revoking a distribution certificate cause problems for any of their other apps that are published or in progress?
    The only other option I could see was for the creator of one of the distribution certificates to create a p12 certificate which I would attach to the app in DPS App Builder.
    Any help, advice or pointing me in the right direction would be greatly appreciated. I have never had a problem publishing while following the directions so this is a new issue for me.
    Regards,
    C

    If you have access to your clients Apple dev account, you can create certs on your machine but if they have existing certs in their account, might be confusing and don't want to mess with their existing certs.
    Would advise to ask your client to create and pass you the certs, create the app with their certs and pass them back the zip for them to upload

  • Cannot check if user already exists in Shared Service (9.3.1)

    Hi,
    I wrote some code based on the sample from 9.3.1 CSS documentation for adding users for shared services.
    Thing is that I need this script to determine if a user exists or not so it won't go through the creation code again.
    So, from the code:
    public class UserFunctionsSample extends Sample {
    public CSSNativeUserIF createUser() throws CSSException
              CSSNativeUserIF user = null;
              HashMap context = new HashMap();
         user = cssDMAPI.getNativeUserInstance(context, principal);
         user.setLoginName("testuser" );
         user.setDescription("Created for test");
         user.setFirstName("First");
         user.setLastName("Last");
         cssDMAPI.addNativeUser(context, principal, user);
         cssDMAPI.setPassword(context, principal, user.getIdentity(),"testuser" );
         return user;
    public static void main (String [] args) throws CSSException{
                   /* Create a native user */
                   UserFunctionsSample cu = new UserFunctionsSample();
                   CSSNativeUserIF user = cu.createUser();
    I have Sample.java and ApplicationContract.java set up.
    What I tried to do is to use the following code (also taken from the same sample) just before calling createUser()
    CSSNativeUserIF user = cu.createUser();
    to determine if user exist.
    /*lookup the user just created by identity */
    CSSNativeUserIF u = cu.lookupUser(user.getIdentity());
    cu.dumpUsers(System.out, "Found user", new CSSNativeUserIF[]);
    For some hidden reason, I keep getting:
    Exception in thread "main"
    Error Code: 4
    com.hyperion.css.CSSInvalidUserException: User not found with identity: native://DN=cn=32687d765b75fb16:13778f33:12684aee8f5:-8000,ou=People,dc=css,dc=hyperion,dc=com?USER     Error Code: 4
         at com.hyperion.css.spi.impl.nv.NativeProviderDirMgmt.getNativeUserByIdentity(Unknown Source)
         at UserFunctionsSample.lookupUser(UserFunctionsSample.java:101)
         at UserFunctionsSample.main(UserFunctionsSample.java:123)
    User was created successfully at the previous run. Why can't I find it now? What am I missing here?
    Thanks, Assaf

    Hmm, tried that and now have more build errors in the finally section.
    init:
    deps-jar:
    Compiling 1 source file to C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\build\classes
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:57: cannot resolve symbol
    symbol  : variable rst
    location: class foo.FormBean
                if (rst != null) rst.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:57: cannot resolve symbol
    symbol  : variable rst
    location: class foo.FormBean
                if (rst != null) rst.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:58: cannot resolve symbol
    symbol  : variable stat
    location: class foo.FormBean
                if (stat != null) stat.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:58: cannot resolve symbol
    symbol  : variable stat
    location: class foo.FormBean
                if (stat != null) stat.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:59: cannot resolve symbol
    symbol  : variable conn
    location: class foo.FormBean
                if (conn != null)  conn.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:59: cannot resolve symbol
    symbol  : variable conn
    location: class foo.FormBean
                if (con != null)  conn.close();
    6 errors
    BUILD FAILED (total time: 1 second)Just for a quick test, I deleted the sql exception and finally code and replaced it with a regular exception just to see what happened and got no build errors, however when I run the form I am getting an sql exception from the prepared statement, parameter out of range (1 > 0). I tried reading into prepared statements, and although I now understand their basics, I still have no idea why I'm getting this error?

  • Message : Event package cannot be changed; bookings already

    When i tried to offering event using i got following message  : T-code :  PIQACADOFFER0   
    "Event package cannot be changed; bookings already exist"  Message no. HRPIQ00OFFER109
    Event is not created for this event package and i wander this is new function in EP3 that i have to override
    or just program error.
    regards,
    jin dal

    Jin dal,
        System is using view table V_PIQMODBOOKED to check no of booking.
    Check is there any active booking record exists for that event package? Which make sense because first you build event plan (event and event package) then you allow students to book.
    Prabhat Singh

  • I cannot create a file

    Hi. In my application I'm trying hard to create a file storing accounts information "accounts.dat", but I am not able to do so, after trying many things. This is the final code that I have, but I don't see a new file created. Any suggestion?
              try
                   File file = new File( accountsFile ); // accountsFile = "accounts.dat"
                   // Create file if it does not exist
                   boolean success = file.createNewFile();
                   if ( success )
                        // File did not exist and was created
                   else
                        // File already exists
                   writer = new PrintWriter( new FileOutputStream( file ) );
                   reader = new BufferedReader( new InputStreamReader( new FileInputStream( file ) ) );
              catch ( IOException e )
                   e.printStackTrace();
              }

    The file may initially exist or not, if not I'm trying to create it.
    import java.io.*;
    import java.net.*;
    import java.util.Vector;
    import javax.swing.JOptionPane;
    public class AccountsManager
         private Vector accounts;
         private String accountsFile;
         private PrintWriter writer;
         private BufferedReader reader;
         public AccountsManager( String accFile )
              accounts = new Vector();
              accountsFile = accFile;
              initializeFileStreams();
              loadAccounts();
         public void initializeFileStreams()
              try
                   File file = new File( accountsFile );
                   // Create file if it does not exist
                   boolean success = file.createNewFile();
                   if ( success )
                        // File did not exist and was created
                   else
                        // File already exists
                   writer = new PrintWriter( new FileOutputStream( file ) );
                   reader = new BufferedReader( new InputStreamReader( new FileInputStream( file ) ) );
              catch ( IOException e )
                   e.printStackTrace();
         public void loadAccounts()
              Account a;
              String userName, password;
              try
                   while ( ( userName = reader.readLine() ) != null
                                  && ( password = reader.readLine() ) != null )
                        addAccount( userName, password );
              catch ( EOFException eofe )
                   // do nothing; simply return
              catch ( IOException ioe )
                   ioe.printStackTrace();
         public void saveAccounts()
              Account a;
              for ( int i = 0; i < accounts.size(); i++ )
                   a = ( Account ) accounts.elementAt( i );
                   writer.println( a.getUserName() );
                   writer.println( a.getPassword() );
              writer.flush();
              writer.close();
         }

  • Note 947091 - Persistance Exception on Client-"Entity key already exists."

    Persistance Exception on Client-"Entity key already exists."
    I am using SP18.
    Tell me what is the <b>correction steps</b> for this PROGRAM ERROR.
    did SP19 already solve this problem??
    Message was edited by:
            yzme yzme
    Message was edited by:
            yzme yzme

    <b>step 1) when i sync the application , i will get this </b>
    Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    <b>step 2)i modify on the values 1st time, and sync</b>
    Persistance Exception on Client-"Entity key already exists."
    <b>step 3)after that i modify same row with different values</b>
    Creation on Field cZFLIGHT2_010_PAYMENTSUM with value 1600 is not allowed because SyncBo of Row 0001213668 is CHANGED_GLOBAL_INSYNC and CreateInputQualifyType is FORBIDDEN
    b)step 4) try to check the merep_mon, consequtive row with action "M" and no "D"</b>
    try to check the worklist with seq no 8
    msg: No download data from R/3 found in downloader
    <b>step 5) try to sync again</b>
    • Synchronization started 
    • Connection set up (without proxy) to: http://emi-sap:50100/meSync/servlet/meSync?~sysid=N01& 
    • Successfully connected with server. 
    • Processing of inbound data began. 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.IllegalStateException: No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E : No Context available for ConversationId 47AF7ABD0FEF894BBF49E61E6732223E 
    • Exception while proccessing method SMARTSYNC : java.lang.RuntimeException: Inbound processing of container with index 7 failed: Cannot insert as entity already exists for IClassDescriptor/Key: sZFLIGHT2_010/1213683 : r0001213682 : Inbound processing of container with index 7 failed: Cannot insert as entity already exists for IClassDescriptor/Key: sZFLIGHT2_010/1213683 : r0001213682
    anyone can pls tell me if my coding got problem, i just have to modify the row values, and upload it, or do i need to do anything on the uploader/or SyncBoDelta
    my code for modifying values,
    i have change the values of "STREET" to <b>"ANG MO KIO"</b>
    http://i192.photobucket.com/albums/z231/yzme/d1.gif
    but the data in server still <b>"HEAVEN ST"</b>
    http://i192.photobucket.com/albums/z231/yzme/d1.gif
    public String modifyRecordAmt(String eventName,boolean didNavigate){
                             String syncBoName="ZFLIGHT2";
                             String syncKey="0001213682";
                             tableViewBean.setString(syncBoName +" "+syncKey);
                             System.out.println("SyncBoName: " +syncBoName + " syncKey: " +syncKey);
                             tcp = TableContentProvider.instance(syncBoName);
                             tcp.modifyTable(syncBoName,syncKey);                                   return JSP_DETAIL_SYNCBOINSTANCE;
    public void modifyRecordAmt(String syncBoName,String syncKey){
                System.out.println("modifyRecordAmt");
                SyncBoDescriptor sbd=null;
                sbd=descriptorFacade.getSyncBoDescriptor(syncBoName);
                System.out.println("bp 1");
                SyncBo sb=null;
                SyncBo sb2=null;
                try{
                   System.out.println("bp 2");
                     sb=dataFacade.getSyncBo(sbd,syncKey);
                     //sb2=dataFacade.getSyncBo(sbd,"010");
                   System.out.println("bp 3");
                }catch(PersistenceException pex){
                     System.out.println("Exception in modifyRecordLoc:" +pex.getMessage());
                SmartSyncTransactionManager transactionManager;
                try{
                   System.out.println("bp 4");
                     transactionManager=dataFacade.getSmartSyncTransactionManager();
                   System.out.println("bp 5");
                     if(!transactionManager.isTransactionStarted()){
                        System.out.println("bp 6");
                          transactionManager.beginTransaction();
                        System.out.println("bp 7");
                          boolean b1,b2,b3,b4,b5,b6,b7,b8;
                          //b1=setHeaderFieldValue2(sb,"CARRID","AA");
                         //b2=setHeaderFieldValue2(sb,"CONNID","0017");
                          //b3=setHeaderFieldValue2(sb2,"FLDATE","2005-10-10");
                          //b4=setHeaderFieldValue2(sb2,"COUNTRYFR","US");
                          //b5=setHeaderFieldValue2(sb2,"CITYFROM","NEW YORK");
                         // b6=setHeaderFieldValue2(sb2,"AIRPFROM","JFK");
                         // b7=setHeaderFieldValue2(sb2,"SEATSOCC","375");
                         b8=setHeaderFieldValue2(sb,"PAYMENTSUM","1600");
                         //b8=setHeaderFieldValue2(sb,"CITYTO","YORK");
                        System.out.println("bp 8");
                        System.out.println("b8=" +b8);
                        //System.out.println(b3 +" " +" "+b4 +" "+b5 +" " +b6 +" "+b7 +" " +b8);
                          transactionManager.commit();
                        System.out.println("bp 9");
                }catch(Exception e){
                     System.out.println("Exception in modifyRecordAmt2:" +e.getMessage());
         public boolean setHeaderFieldValue2(
              SyncBo sb,
              String headerFieldName,
              Object value) {
              SyncBoDescriptor sbd = sb.getSyncBoDescriptor();
              //RowDescriptor trd = sbd.getTopRowDescriptor();
              System.out.println("bp 10");
              RowDescriptor trd=sbd.getRowDescriptor("010");
              System.out.println("bp 11");
              FieldDescriptor fd = trd.getFieldDescriptor(headerFieldName);
              System.out.println("fd:" +fd.getFieldName());
              if (fd != null) {
              BasisFieldType bft = fd.getFieldType();
              //Row header = sb.getTopRow();
              System.out.println("bp 12");
              //Row header = null;
              Row[] header=null;
              //try {
                   //header = sb.getRow("0001211181");
                   //header=sb.getTopRow();
                   header=getItemInstances(sb,"010");
                   if(header==null){
                        System.out.println("is null");
                   }else{
                        System.out.println("not null");
              //} catch (PersistenceException e1) {
                   // TODO Auto-generated catch block
              //     System.out.println("Exception getRow:" +e1.getMessage());
              //     e1.printStackTrace();
              System.out.println("bp 13");
              try {
    //             Integer operator
              if (bft == BasisFieldType.N) {
                   System.out.println("Numeric");
              NumericField nf = header[0].getNumericField(fd);
              if (nf != null) {
              BigInteger ii = new BigInteger(value.toString());
              nf.setValue(ii);
              return true;
              } else {
              return false;
    //             Character operator
              if (bft == BasisFieldType.C) {
                   System.out.println("Character");
              CharacterField cf = header[0].getCharacterField(fd);
              if (cf != null) {
              cf.setValue(value.toString());
              return true;
              } else {
              return false;
    //             Decimal operator
              if (bft == BasisFieldType.P) {
                   System.out.println("Decimal");
              DecimalField df = header[0].getDecimalField(fd);
              System.out.println("bp 1.1");
              if (df != null) {
                   System.out.println("bp 1.2");
              BigDecimal bd = new BigDecimal(value.toString());
              System.out.println("bp 1.3");
              df.setValue(bd);
              System.out.println("bp 1.4");
              return true;
              } else {
                   System.out.println("bp 1.5");
              return false;
    //             Similar operation for time and date operator fields
              if (bft == BasisFieldType.D) {
                   System.out.println("Date");
              DateField df = header[0].getDateField(fd);
              if (df != null) {
              if (value.toString().equals("0")) {
              Date dat = Date.valueOf("0000-00-00");
              df.setValue(dat);
              } else if (!value.toString().equals("")) {
              Date dat = Date.valueOf(value.toString());
              df.setValue(dat);
              } else {
              Calendar cal = Calendar.getInstance();
              java.sql.Date bd =
              new java.sql.Date(cal.getTime().getTime());
              df.setValue(bd);
              return true;
              } else {
              return false;
    //             Similar operation for time and date operator fields
              } catch (SmartSyncException ex) {
              System.out.println(ex.getMessage());
              } catch (PersistenceException e) {
              System.out.println(e.getMessage());
              return false;
    how to check in the table if the data is uploaded to the Middleware RDB ??
    anyone

  • Cannot create a file when that file already exists, but should overwrite

    Hi,
    I need the same file name which is at Sender side and when it reaches to Receiver directory without timestamp.
    for eg., Sender side : Yeswanth.txt
    and also receiver side   :  Yeswanth.txt
    but, here it should overwrite the existing file (because, the sender side file name is always constant) at receiver directory when the job schedules for each time.
    Processing parameters i has given on Receiver side:
    File Construction Mode  :  Create
    put file  : Use Temporary File
    and I enabled the Adapter Specific Message Attributes at Sender side and Receiver side.
    Error getting receiver side at communication channel :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException:
    Yeswanth.txt: Cannot create a file when that file already exists. : com.sap.aii.adapter.file.ftp.FTPEx: 550
    Yeswanth.txt: Cannot create a file when that file already exists.
    Reward points for useful answers.
    Regards,
    Yeswanth.
    Edited by: YeswanthRaj Kumar on May 23, 2008 8:20 AM

    Hi Yeswanth
    Then you can try with a "Add Counter". This will create new file each time with the same name but a counter will be added to the file name at the end specifying the number of times it is created.
    You can also the specify the format to create the counter once select this option u can correspondingly fill the Format and step fields.
    Will this be fine.
    Regards
    Ashmi

  • FTPEx: 550  : Cannot create a file when that file already exists.

    Hi experts,
    I am working on idoc to file scenario and PI 7.1. The idoc is split into 3 files.
    In sxmb_moni , the message is successful , but in rwb( Message montoring) i am geeting the fllowing  Error message.
    ' Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: An error occurred while connecting to the FTP server '172.19.125.190:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 /Storedata/Outbound/0000001802: Cannot create a file when that file already exists. '. For details, contact your FTP server vendor..'
    and this error message is not displayed for all the target files , some files are getting created succesfully.
    After some times , the file in error status , gets created automatically.
    What may be the reason.?
    Thanks in advance .
    Best Regards,
    Anil

    There seem to be already some files in your Target Directory with the same name as your new files (which the CC is trying to place) and the CC is not able to overwrite the existing files and hence the error...check this.
    Check: http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/69d7cfa4b633eae10000000a1553f6/content.htm
    14.      Select the File Construction Mode.
    u25CB       Create
    The file is created. The document received last is saved in each case.
    If you want the created file to be overwritten, select Overwrite Existing File. If you do not set the indicator, processing is stopped until the created file is processed.
    You can only set the indicator if you select Use Temporary File under Put File below.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Jul 28, 2009 6:59 PM

  • Cannot rename DC, "Cannot create a file when that file already exists."

    Hi,
    A long time ago we used a domain controller named jacob.mydomain.lan.  It was removed, possibly in a 'dirty' way, and now we cannot re-use that name for another domain controller.  In the meantime we have upgraded to Win 2012 domain controllers
    now, and when I enter this to rename:
    netdom computername ourdc.mydomain.lan /add:jacob.mydomain.lan
    I get the error:  "Unable to add jacob.mydomain.lan as an alternate name for the computer.  The error is:  Cannot create a file when that file already exists."
    If I enter: 
    netdom computername ourdc.mydomain.lan /remove:jacob.mydomain.lan
    I get: "The command completed successfully", but it still refuses to add jacob.mydomain.lan
    After each attempt to add a forward zone dns record 'jacob.ourdomain.lan' has been created.  I always erase this manually afterwards.
    What is the problem? How can I search to find the offending 'file' named 'jacob'?
    Thanks a lot for help on this.
    regards Tor

    Kevin,
    I suggest you wait 30 days instead of 3 days before you enthusiastically close threads. Some people might think you are being a jerk if you don't.
    "K_evin Zhu" wrote in message
    news:[email protected]...
    Hi,
    As this thread has been quiet for a while, we will mark it as �??Answered�?? as the information provided should be helpful. If you need further help, please feel free to reply this post directly so we will be notified to follow it up. You can also choose to
    unmark the answer as you wish.
    BTW, we�??d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems. Thanks for your understanding and efforts.
    Best Regards
    Kevin
    Tomás Mason

  • HT4872 I have not been able to import contacts from google or my android to my new I-phone 5. This article helps to a point until error message "cannot create account" already exist is received. Please help.

    I have not been able to import contacts from google or my android to my new I-phone 5. This article helps to a point until error message "cannot create account ... already exist" is received. Please help.

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

  • The cluster service terminated, error 7024, cannot create a file when that file already exists

    I have a test 2-node Failover cluster using Server 2012 R2
    As of last night the cluster service on one of the 2 nodes is down with this error:
    The Cluster Service service terminated with the following service-specific error: 
    Cannot create a file when that file already exists.
    EventID 7024
    The Cluster service waits 60 sec, tries to start, and the same error occurs again. 
    Any idea where to look to identify which file this error is referring to, or how to go about identifying root cause and getting a solution?
    thank you.
    samb

    Hi Yeswanth
    Then you can try with a "Add Counter". This will create new file each time with the same name but a counter will be added to the file name at the end specifying the number of times it is created.
    You can also the specify the format to create the counter once select this option u can correspondingly fill the Format and step fields.
    Will this be fine.
    Regards
    Ashmi

  • Cannot create a file when that file already exists

    When i try to use Photoshop filters: Adaptive Wide Angle, Shake Reduction and Liquify. An error pop up saying "Cannot create a file when that file already exists".
    Just one detail: The liquify filter doen't pop up the error right away, the error occurs just after i press the "ok" button to accept the changes.
    I have already tryed to Reset the preferences, tryed to reinstall the PS, Update the PS, download (and install) the latests drivers to my pc.
    My Pc fit in all the requirements, have the openGL version: 3.0
    I also have Photoshop CS5 installed, in which the liquify filter works perfectly.
    Here i have two Print Screen, how it looks:
    The first image is just right before a click the "Adaptive Wide Angle"
    The second one is right after i clicked it
    If you could help me, i already thank you for wasting you time reading this!

    Resetting the Photoshop preferences does not reset the preferences for the plugins.
    There should be a Plugins folder. If the folder cannot be created it would cause the error you are seeing.
    Can you check the permissions on the ‘Adobe’ folder at: C:\Users\jworthin\AppData\Roaming\Adobe.
    Can you manually create a Plugins folder in that location or do you get an error?

  • File to be created must already exist

    The problem I am struggling with is that when creating an Excel file, the user is prompted for the file name. They can browse for the file by clicking on the folder icon, but once they get to the directory they want, if they type in a file that does not exist, LabVIEW says that the file cannot be found. So the user has to click on a file that already exists and then change just the very end of the filename to what they want, which is more work than I want the user to do. Any suggestions?
    Thanks,
    gj
    Solved!
    Go to Solution.

    Sorry for not asking that, I had assumed the problem was more complicated. My fault for not thinking about the basics!
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

Maybe you are looking for