How to verify that trust relationship has been set up successfully at client machine ?

Hello,
There is trust set up with domain group.Would you please let me know how can I verify that trust relationship has been set up correctly in such a way that i can see the users of trusted group on client machine ?
Any idea?
Note :I do not have access on Domain Controller.
Thanks and Regards,
Dipti
Dipti Chhatrapati

Hi
As far as I know, trust certificates that have been exchanged between the SharePoint farm and external systems should be visible by going to  the Central Admin->Security->Manage Trusts page.
Kind Regards
Bjoern
http://www.sharepointviking.com
Twitter: Follow @bjoern_rapp

Similar Messages

  • How to verify that the request has been moved to Quality System

    Hi friends,
    I a new abaper and i need ur help in solving this issue.
    I have developed an object and released( as per the suggestions given already in this forum). Its working well and i can see the request in released status in se09.
    No what i really want is , How can i verify that the request has been moved to Quality System by the basis people, assuming that i have only access to dev system.

    Yes, once u release the request, if it is successfullly released will make the request avaialble under released requests
    As an ABAP'er this is enof
    <b>wht abt me Sravanan :-(</b>
    Regards
    - Gopi
    Message was edited by: Gopi Narendra

  • Verify that this class has been marked with the @Entity annotation

    Hi,
    We have a App level shared lib which does all the JPA related query for an app. And each app can utilize the share lib to get the JPA related query to be done.
    For scoping the JPA between App . We have created EMF for each app.
    When one app run and does any JPA related action it works fine , but when we try to run second app we are seeing the following error when trying to do JPA specific action .
    the @Entity annotation.
    [2012-05-23T04:08:16.839-07:00] [WC_Spaces] [ERROR] [] [oracle.webcenter.spaces] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 5825b814-2931-4ad5-8dc3-3e18f66992b7-00000004,0] [APP: webcenterCustom] [[
    java.lang.IllegalArgumentException: Unknown entity bean class: class oracle.webcenter.spaces.internal.repository.WcSpaceHeader, please verify that this class has been marked with the @Entity annotation.
    at org.eclipse.persistence.internal.jpa.EntityManagerImpl.find(EntityManagerImpl.java:648)
    at org.eclipse.persistence.internal.jpa.EntityManagerImpl.find(EntityManagerImpl.java:532)
    at oracle.webcenter.spaces.internal.repository.SpaceRepositoryUtils.refreshSpaceRows(SpaceRepositoryUtils.java:1791)
    Where WcSpaceHeader is an Entity.
    For creating emf per App this is the code
    private static EntityManagerFactory getEntityManagerFactory()
    String appName=Utility.getApplicationName();
    EntityManagerFactory emf=sEntityMgrFactory.get(appName);
    if(emf==null)
    emf=Persistence.createEntityManagerFactory("SpacesReposPUnit");
    sEntityMgrFactory.put(appName,emf);
    SpacesConstants.LOGGER.info("Caching" +
    "EMF for " +appName);  
    return emf;
    My persistence.xml
    <?xml version="1.0" encoding="US-ASCII" ?>
    <persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="SpacesReposPUnit" transaction-type="RESOURCE_LOCAL">
    <provider>
    org.eclipse.persistence.jpa.PersistenceProvider
    </provider>
    <class>oracle.webcenter.spaces.internal.repository.WcSpaceHeader</class>
    <class>oracle.webcenter.spaces.internal.repository.WcSpaceUsrDetail</class>
    <class>oracle.webcenter.framework.service.jpa.WcCommonXlationEntity</class>
    <class>oracle.webcenter.spaces.internal.repository.WCNavigationActivity</class>
    <properties>
    <property name="eclipselink.session.customizer"
    value="oracle.webcenter.spaces.internal.repository.SpacesEclipselinkSessionCustomizer"/>
    </properties>
    </persistence-unit>
    </persistence>
    One more problem i am seeing in this is that . When i create an EM from EMF (which is diff for diff app) and doing some query i am getting a class cast Exception.
    (self-tuning)'] [ecid: 5825b814-2931-4ad5-8dc3-3e18f66992b7-00000004,0] [APP: webcenterCustom] [[
    java.lang.IllegalArgumentException: Unknown entity bean class: class oracle.webcenter.spaces.internal.repository.WcSpaceHeader, please verify that this class has been marked with the @Entity annotation.
    at org.eclipse.persistence.internal.jpa.EntityManagerImpl.find(EntityManagerImpl.java:648)
    at org.eclipse.persistence.internal.jpa.EntityManagerImpl.find(EntityManagerImpl.java:532)

    This is a class loader issue, somehow you have deployed the same classes in two places, so have two different versions of the classes.
    How, exactly have you deployed things, where are your domain classes?
    The issues is most likely that,
    Persistence.createEntityManagerFactory("SpacesReposPUnit");
    will always return the same factory once it has been deployed.
    If you pass a properties map to createEntityManagerFactory and set the property "eclipselink.session-name" to a unique value, then you should get a new factory.

  • HOW TO VERIFY A DEFERRED TRANSACTION HAS BEEN PUSHED IN ORACLE8(MASTER REPL

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    HOW TO VERIFY A DEFERRED TRANSACTION HAS BEEN PUSHED IN ORACLE8
    (MASTER REPLICATION)
    ================================================================
    본 자료에서는 어느 시점에서, Deferred transaction이 PUSH 되었는지를
    확인하는 방법을 제시한다(In symmetric replication).
    단, Advanced Replication Feature는 8~10g Standard Edition에서는
    지원하지 않는다.
    개 념
    =====
    V7.x 에서는 deferred transaction 이 PUSH 됨과 동시에 삭제 되었으나, V8.x
    부터는 일정시간(interval) 이후에 PURGE 되는 절차를 따른다.
    임의의 transaction은 아래와 같은 조건을 만족할때 PUSH 된 것으로 확인될
    수 있다.
    즉, SCN-based integer 값을 기초로 transaction ordering 을 유지한다는
    기본개념을 적용한 것이다.
    - system.DEF$_DESTINATION.last_delivered > system.DEF$_AQCALL.cscn
    * DEF$_DESTINATION.last_delivered : the last transaction applied
    at the destination
    예 제
    =====
    이 예제는 REP1.ORACLE.COM site 에서 REP2.ORACLE.COM site 로 transaction 이 PUSH 되는 결과를 보여준다.
    SQL> insert into scott.dept values (80,'MARKETING','ORLANDO');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from deftran;
    DEFERRED_TRAN_ID DELIVERY_ORDER
    4.49.495 479001
    3.0.494 478972
    OR
    SQL> select enq_tid, cscn from system.def$_aqcall;
    ENQ_TID CSCN
    4.49.495 479001
    3.0.494 478972
    DEF$_DESTINATION table을 통하여 마지막으로 propagation 된 정보를 확인할
    수 있다
    SQL> select dblink, last_delivered from system.def$_destination;
    DBLINK LAST_DELIVERED
    REP2.ORACLE.COM 478992
    REP1.ORACLE.COM 478878
    이 시점에서 DEFERRED_TRAN_ID or ENQ_TID 4.49.495 transaction 이 PUSH 되지
    않았음을 알 수 있는것이다. 이는 DELIVERY_ORDER or CSCN 479001 transaction이 REP2.ORACLE.COM 에 대해 마지막으로 전이된 478992 보다 큰 값을 가지고 있기
    때문이다.
    즉, DEF$_AQCALL.CSCN > DEF$_DESTINATION.LAST_DELIVERED 을 만족한다면 해당 transaction 은 아직 PUSH 되지 않았음을 뜻한다.
    그럼 PUSH scheduling 을 적용 함으로써, 이러한 값들이 어떻게 변하는지 알아
    보도록 하자.
    SQL> exec dbms_defer_sys.schedule_push('rep2.oracle.com',
    'sysdate+1/(60*24)', sysdate+1/(60*24));
    PL/SQL procedure successfully completed.
    SQL> select * from deftran;
    DEFERRED_TRAN_ID DELIVERY_ORDER
    4.49.495 479001
    3.0.494 478972
    SQL> select enq_tid, cscn from system.def$_aqcall;
    ENQ_TID CSCN
    4.49.495 479001
    3.0.494 478972
    위 값들은 전혀 변하지 않았으나, 이는 Deferred transaction mechanism 관점에서
    정상적인 정보를 나타내고 있다(아직 PURGE 되지 않았기 때문)
    SQL> Select dblink, last_delivered from system.def$_destination;
    DBLINK LAST_DELIVERED
    REP2.ORACLE.COM 479017
    REP1.ORACLE.COM 478878
    그러나, DEF$_DESTINATION table 의 LAST_DELIVERED column 값을 확인해 보면, REP2.ORACLE.COM site 에 대한 값이 증가했음을 볼 수 있다.
    그런 이유로 DEFTRAN 에 기록되었던 transaction 중 DEF$_AQCALL.CSCN < DEF$_DESTINATION.LAST_DELIVERED 을 만족하는 모든 transaction 은 PUSH
    되었음을 확인할 수 있는것이다.
    특정 SITE 에 대해 PUSH 된 transaction 수를 구하는 방법
    ====================================================
    SQL> connect system/manager
    Connected.
    SQL> select count(*)
    from def$_aqcall
    where cscn < (select last_delivered
    from def$_destination
    where dblink ='REP2.ORACLE.COM');
    COUNT(*)
    2
    Reference
    =========
    Multimaster replication
    How to rectify the replication environment
    Parallel propagation

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    HOW TO VERIFY A DEFERRED TRANSACTION HAS BEEN PUSHED IN ORACLE8
    (MASTER REPLICATION)
    ================================================================
    본 자료에서는 어느 시점에서, Deferred transaction이 PUSH 되었는지를
    확인하는 방법을 제시한다(In symmetric replication).
    단, Advanced Replication Feature는 8~10g Standard Edition에서는
    지원하지 않는다.
    개 념
    =====
    V7.x 에서는 deferred transaction 이 PUSH 됨과 동시에 삭제 되었으나, V8.x
    부터는 일정시간(interval) 이후에 PURGE 되는 절차를 따른다.
    임의의 transaction은 아래와 같은 조건을 만족할때 PUSH 된 것으로 확인될
    수 있다.
    즉, SCN-based integer 값을 기초로 transaction ordering 을 유지한다는
    기본개념을 적용한 것이다.
    - system.DEF$_DESTINATION.last_delivered > system.DEF$_AQCALL.cscn
    * DEF$_DESTINATION.last_delivered : the last transaction applied
    at the destination
    예 제
    =====
    이 예제는 REP1.ORACLE.COM site 에서 REP2.ORACLE.COM site 로 transaction 이 PUSH 되는 결과를 보여준다.
    SQL> insert into scott.dept values (80,'MARKETING','ORLANDO');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from deftran;
    DEFERRED_TRAN_ID DELIVERY_ORDER
    4.49.495 479001
    3.0.494 478972
    OR
    SQL> select enq_tid, cscn from system.def$_aqcall;
    ENQ_TID CSCN
    4.49.495 479001
    3.0.494 478972
    DEF$_DESTINATION table을 통하여 마지막으로 propagation 된 정보를 확인할
    수 있다
    SQL> select dblink, last_delivered from system.def$_destination;
    DBLINK LAST_DELIVERED
    REP2.ORACLE.COM 478992
    REP1.ORACLE.COM 478878
    이 시점에서 DEFERRED_TRAN_ID or ENQ_TID 4.49.495 transaction 이 PUSH 되지
    않았음을 알 수 있는것이다. 이는 DELIVERY_ORDER or CSCN 479001 transaction이 REP2.ORACLE.COM 에 대해 마지막으로 전이된 478992 보다 큰 값을 가지고 있기
    때문이다.
    즉, DEF$_AQCALL.CSCN > DEF$_DESTINATION.LAST_DELIVERED 을 만족한다면 해당 transaction 은 아직 PUSH 되지 않았음을 뜻한다.
    그럼 PUSH scheduling 을 적용 함으로써, 이러한 값들이 어떻게 변하는지 알아
    보도록 하자.
    SQL> exec dbms_defer_sys.schedule_push('rep2.oracle.com',
    'sysdate+1/(60*24)', sysdate+1/(60*24));
    PL/SQL procedure successfully completed.
    SQL> select * from deftran;
    DEFERRED_TRAN_ID DELIVERY_ORDER
    4.49.495 479001
    3.0.494 478972
    SQL> select enq_tid, cscn from system.def$_aqcall;
    ENQ_TID CSCN
    4.49.495 479001
    3.0.494 478972
    위 값들은 전혀 변하지 않았으나, 이는 Deferred transaction mechanism 관점에서
    정상적인 정보를 나타내고 있다(아직 PURGE 되지 않았기 때문)
    SQL> Select dblink, last_delivered from system.def$_destination;
    DBLINK LAST_DELIVERED
    REP2.ORACLE.COM 479017
    REP1.ORACLE.COM 478878
    그러나, DEF$_DESTINATION table 의 LAST_DELIVERED column 값을 확인해 보면, REP2.ORACLE.COM site 에 대한 값이 증가했음을 볼 수 있다.
    그런 이유로 DEFTRAN 에 기록되었던 transaction 중 DEF$_AQCALL.CSCN < DEF$_DESTINATION.LAST_DELIVERED 을 만족하는 모든 transaction 은 PUSH
    되었음을 확인할 수 있는것이다.
    특정 SITE 에 대해 PUSH 된 transaction 수를 구하는 방법
    ====================================================
    SQL> connect system/manager
    Connected.
    SQL> select count(*)
    from def$_aqcall
    where cscn < (select last_delivered
    from def$_destination
    where dblink ='REP2.ORACLE.COM');
    COUNT(*)
    2
    Reference
    =========
    Multimaster replication
    How to rectify the replication environment
    Parallel propagation

  • I need to add a secondary hard drive to my time capsule. Can something that has been set up for a windows machine work without re-formatting?

    I need to add a secondary hard drive to my time capsule. Can something that has been set up for a windows machine work without re-formatting?

    In addition to Niel's comments, if you plan to use Time Machine to backup a Mac to the secondary drive.....that application needs a drive that has been specifically formattted for Mac.  That would be Mac OS Extended (Journaled).
    PCs can also read and write to the Mac formatted drive.

  • Getting error message that states itunesexe has been set to run in compatibilty mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it .How do i turn off compatibility mode?

    recieved error message that states" itunes exe has been set to run in compatibility mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it. How do i access compatibility mode and turn it off ? Believe i have Windows 7.

    Try the following document, only be sure that none of the boxes in the compatibility tab are checked (not just the compatibility mode box itself): 
    iTunes for Windows: How to turn off Compatibility Mode

  • How to get that the invoice has been printed or not?

    Hi Experts,
    I have a issue in Printing Invoice. I have to make 2 copies of an invoice. One is Original and another is Duplicate. I have made that with copy windows. But the requirement is that when the original copy of a selected invoice has been printed then from the second time only the duplicate copy will be printed. How to do that in ABAP? How to get the information that the invoice has been printed or not?
    Regards,
    SURYA

    Hi Surya,
    Try the below approach, i think this is better than the previous approach and takes care of the print from "text menu" as well
    select from z table.
    if sy-subrc eq 0.
      call "SMARTFORM_COPY"
    else.
    While calling the smartform, make sure you import the "JOB_OUTPUT_INFO" parameter,
    and after you call the smartform,
    call "SMARTFORM_ORIG"
    exporting...
    Importing...
    job_output_info = w_job_output_info
    exceptions...
    If sy-subrc eq 0.
      if w_job_output_info EQ 'X'.
        update the Z table.
      else.
        do not update the z table
      endif.
    endif. 
    endif.
    Regards,
    Chen

  • How to know that a method has been called and returning value of a method

    Hi, everyone! I have two questions. One is about making judgment about whether a method has been called or not; another one is about how to return "String value+newline character+String value" with a return statement.
    Here are the two original problems that I tried to solve.
    Write a class definition of a class named 'Value' with the following:
    a boolean instance variable named 'modified', initialized to false
    an integer instance variable named 'val'
    a constructor accepting a single paramter whose value is assigned to the instance variable 'val'
    a method 'getVal' that returns the current value of the instance variable 'val'
    a method 'setVal' that accepts a single parameter, assigns its value to 'val', and sets the 'modified' instance variable to true, and
    a boolean method, 'wasModified' that returns true if setVal was ever called.
    And I wrote my code this way:
    public class Value
    boolean modified=false;
    int val;
    public Value(int x)
    {val=x;}
      public int getVal()
      {return val;}
       public void setVal(int y)
        val = y;
        modified = true;
         public boolean wasModified()
          if(val==y&&modified==true)
          return true;
    }I tried to let the "wasModified" method know that the "setVal" has been called by writing:
    if(val==y&&modified==true)
    or
    if(x.setVal(y))
    I supposed that only when the "setVal" is called, the "modified" variable will be true(it's false by default) and val=y, don't either of this two conditions can prove that the method "setVal" has been called?
    I also have some questions about the feedback I got
    class Value is public, should be declared in a file named Value.java
    public class Value
    cannot find symbol
    symbol  : variable y
    location: class Value
    if(val==y&&modified==true)
    *^*
    *2 errors*
    I gave the class a name Value, doesn't that mean the class has been declared in a file named Value.java*?
    I have declared the variable y, why the compiler cann't find it? is it because y has been out of scale?
    The other problem is:
    Write a class named  Book containing:
    Two instance variables named  title and  author of type String.
    A constructor that accepts two String parameters. The value of the first is used to initialize the value of  title and the value of the second is used to initialize  author .
    A method named  toString that accepts no parameters.  toString returns a String consisting of the value of  title , followed by a newline character, followed by the value of  author .
    And this is my response:
    public class Book
    String title;
    String author;
      public Book(String x, String y)
       { title=x; author=y; }
       public String toString()
       {return title;
        return author;
    }I want to know that is it ok to have two return statements in a single method? Because when I add the return author; to the method toString, the compiler returns a complain which says it's an unreachable statement.
    Thank you very much!

    Lets take this slow and easy. First of all, you need to learn how to format your code for readability. Read and take to heart
    {color:0000ff}http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html{color}
    Now as to your first exercise, most of it is OK but not this:   public boolean wasModified()
          if (val == y && modified == true)
                return true;
    y being a parmeter to the setValue method exists only within the scope of that method. And why would you want to test that anyways? If modified evaluates to true, that's all you need to know that the value has been modified. So you could have   public boolean wasModified()
          if (modified == true)
                return true;
       }But even that is unnecessarily verbose, as the if condition evaluates to true, and the same is returned. So in the final analysis, all you need is   public boolean wasModified()
          return modified;
       }And a public class has to be declared in a file named for the class, yes.
    As for your second assignment, NO you cannot "return" two variables fom a method. return means just that: when the return statement is encountered, control returns to the calling routine. That's why the compiler is complaining that the statement following the (first) return statement is unreachable.
    Do you know how to string Strings together? (it's called concatenation.) And how to represent a newline in a String literal?
    db

  • Has anyone else discovered that their MacBookPro has been set up for 'no available users' and so cannot use any new applications?

    I've had my MacBook Pro for several months. Sadly I've not been able to use it for my work (I'm a  writer) as I couldn't open my software, Final Draft. I installed it several times, uninstalling it each time to avoid glitches, but every time I tried to open it I had an error message, that the permissions had to be reset. I went onto disk utilities and did everything I could to reset/repair. I spent days and weeks on the phone both to Apple and to Final Draft, but no one could help.
    Apple were adamant that it was a software error and so today I bought yet another version of Final Draft (£140), this time from the net, and downloaded that. Same old same old. Once again, over and over,  I followed the  'trouble shooting permissions' advice on the Apple website, still no luck. Finally, finally, tonight, a technician was able to take me through an obscure routine which ended up with the message that my laptop had been set up with 'No Available Users'.
    In effect it's a useless piece of metal and has been from day one.
    Thanks, Apple.
    Anyone else had a laptop set up for no available user?

    I'm not sure that I followed everything, but you got a replacement phone and continue to experience problems? It sounds like a logical move would be to have AT&T replace your SIM card. I would doubt that the size/fit is an issue, these things are a standard size, but replacing the SIM will have an impact on the network set-up that might be the root cause.

  • How to verify that the user has changed table row data before db update

    Hi all,
    Iam using Oracle ADF with EJBs.
    I have a single selection table that displays rows of data returned from a function of my data control.
    The columns of my table are editable so that the user can change the data. The user selects a row, changes the data in one or more columns of the row and saves the data by means of a submit button. The code in the submit button, identifies the row of the corresponding iterator that the user clicked on and updates the data in the database (using the 'mergeEntity' function of the EntityManager)
    Before saving the data, I want to put some logic to check whether the user has actually changed some data to avoid unnecessary updates in the database . But for this I need a technique to detect that the user has indeed changed some data in the table row.
    One technique I have been using so far was to isolate the iterator row of the table and then query the corresponding row in the database table and compare their values.
    Except from dummy, this technique is not efficient if the table contains many rows.
    Moreover, in my case I have observed that on successive updates on the same row , the query on the database returns the new values (user changed values) and not the actual values contained in the database table. This means that when the user updates an iterator row the cached data affect also the results of the SELECT statement from the actual database table!!! Isn't this strange ?
    Can somebody propose me a neat method to detect when the user has changed the the data of an iterator row ?

    Hey Alan,
    The below solution seems overly complicated to me and can not be implemented without a custom screen and/or the use of JavaScript. Also, if your main concern is that a user may accidentally loose all their data because they closed the browser window or the session times out before they hit the save button then this solution does not help you.
    There are a couple of simpler approaches you can take here:
    # If the use of JavaScript is permissible you can hook into the windows 'onUnload' event, and pop-up a message box which gives the user the opportunity to cancel closing the window and save their case if they haven't already.
    # Implement an autosave feature by hooking into one of events provided by web determinations. A simple (but rather naive) way of doing this would be to hook into the OnRenderScreenEvent and call save on the interview session every time the event fires. This guarantees that all the data the user has submitted will aways automatically be saved, thereby removing the need to make sure the user manually saves their data before closing the browser.
    Automatically making Web Determinations close a browser window has to be done using JavaScript. However, doing so means that a) it won't work for people who turn off JavaScript, which is commonly done for accessibility reasons b) you'll likely run afoul of the browser's security mechanism (they generally won't let you close a window that you didn't open and some really don't like you doing that at all).
    Thanks,
    Kristy

  • I keep getting error messages on the calendar since downloading the new software on my IPAD2. It either says "cannont save event. That event does not belong to that event store" or I get an error message that says that no calendar "has been set".

    I keep getting error messages on the calendar since I downloaded the new software on my IPAD2.  When I try to add a new event it either says "That event does not belong to that event store" or it says "the calendar has not been set".  Does anyone know what these messages mean or how to address this?

    I'm getting the same issue on my ipad2...I set up a new calender and now I keep getting this error message....how do I fix this?

  • Determine all objects that a group has been assigned to

    I am trying to determine all objects that a group has been assigned to. For example, I would like to know what communities and portletes a group has been assigned to.
    I can retrieve the information directly from the plumtree database, however, I have not been able to determine how to accomplish this via the api.
    I have tried the following
    IPTObjectManager ptObjMng = ptSession.GetCommunities();
    for(inti = 0; i<3;i++)
    filter[i] = newObject[1];
    filter[0][0] = PT_PROPIDS.PT_PROPID_USERGROUP_GROUPID;
    filter[1][0] = PT_FILTEROPS.PT_FILTEROP_EQ;
    filter[2][0] = 1634; //group id for my group
    IPTQueryResult ptResult = ptObjMng.Query(PT_PROPIDS.PT_PROPID_ALL,-1,PT_PROPIDS.PT_PROPID_NAME,0,-1,filter);
    I have verified that the group has been assigned to the community, however, this query returns no records.
    How can I retrieve all communities or group that a specific group has been assigned too?
    thanks in advance

    This sure would be a handy feature! iTunes has it so that you can easily tell which playlists a song is in. It would be convenient for iPhoto as well.

  • How to repair my macbook pro when i had delete the app store file and know it telling that appstore file has been damage or incomplete and i had the version 10.6.8

    how to repair my macbook pro when i had delete the app store file and know it telling that appstore file has been damage or incomplete and i had the version 10.6.8

    so is their is any way that i can solve this matter

  • How can we change an old apple id in icloud that has been set in iphone and we don't have password of it?

    hi
    a friend of mine has bought a second hand iphone 5s . in icloud setting an old apple id has been set.he'd like to change it with his own , he isn't able to change it because the password of old apple id is required , and every 10 sec a message is appeared that needs a password ( find my iphone ). he has set his own apple id in itunes  store , but in i cloud he couldn't find a person that he has bought it from .how can we fix this problem .
    i'm looking forward to hearing from you .
    thank you
    sincerely

    That is "activation lock". You won't be able to use the iPhone unless this is cleared by the original owner.

  • How can I see that a file has been sent for workflow?

    How can I see that a file has been sent for workflow?
    During the workflow phase, the file is locked for workflow. But when the file has been approved (or denied) it will have the same status as it did before the workflow process (unless you trigger the workflow by changing its location).
    You can see the workflow history in the "My Request" view, but this way of determining whether a file has been approved seems complicated.
    Best regards
    Magnus

    Hi,
    Thanks for the transaction code, but my question is not answered yet.
    For example, I use STMS_IMPORT in the Development environement to see the list of the transport that has been made in that environement.
    I now have a list of these transports, with a status. But I wanna know if that transport that has been created in the Development environement has been moved to the Sandbox environement.
    STMS_IMPORT shows me only the list of transports that has been created in that environement. It doesn't tell me if a transport in DVL has been moved in the QAS, SANDBOX or PRODUCTION environment.
    Thanks again,
    Julien

Maybe you are looking for