Is there any way to figure out what this transport error is about?

HI,
I am getting the following transport error from the log:                      
u201C R3TRROUT4BHOQZTDNV4U6BLY12MUXO6C6 not found; object also deleted in target Systemu201D                                                                   
Following the information on this site, I looked through all the tables listed under RSUPD* but could not locate R3TRROUT4BHOQZTDNV4U6BLY12MUXO6C6
Also, following the help to see RSA1 -> Update rules -> Extras -> Object Data Directory, it shows the update rules was no local.
The only unique thing about this particular Update Routine, is that the rule source fields include one new field zfield which was an enhancement to 2lis-02_scl. When the Update Rule was transported to Quality, the three fields from the 2LIS, including the zfield (which were mapped in Dev) do not how up in test and hence the transformation becomes u201CXu201D
The model is:     Infosource (from R3) --> Transformation  ODS
The transport of the Transformation to Quality ends with warning but when you go to Quality to check, all the 4 Update Rules in the Transformation were ok, except that the 4th update rule, which automatically becomes u201CXu2019 (No Transformation).
Thanks

Hi,
When i try to collect the transformation in Transport connection, I get the following:
Object '4BHOQZTDNV4U6BLY12MUXO6C6' (ROUT) of type 'Routine' is not availab
in version 'A'
     Message no. RSO252
Diagnosis
     You wanted to generate an object with the name
     '4BHOQZTDNV4U6BLY12MUXO6C6' (in transport request ROUT) of type
     'Routine' (TLOGO). This is, however, not available in the BW Repositor
     database. It does not exist in the requested version A. If the version
     is 'D' then it is possible that an error arose during the delivery or
     installation. If the version is 'A' then the Object was either not
     created or not activated.
System Response
     The object was not taken into account in the next stage of processing.
But I Can't find it to remove or activate.
Any more hints?

Similar Messages

  • My hard drive suddenly went from 52 gigs free to 22 gigs- is there any way to figure out what happened?

    my hard drive suddenly went from 52 gigs free to 22 gigs- is there any way to figure out what happened?

    Perhaps this may be of help...
    Where did my Disk Space go?

  • Is there any way to find out what brush is applied to a path?

    I'm trying to write a script: select some paths, run the script, then each path that has a brush applied to it is changed to use a random brush whose name is sufficiently similar to its current brush. The application is pretty obvious - draw a bunch of lines in, say, 'ragged marker 1', then give it some extra liveliness by having five or six 'ragged marker' brushes that get randomly chosen.
    The problem I'm running against is that as far as I can tell, Illustrator only lets Javascript set what brush an object is using with brush.applyTo (artItem), but I can't seem to find any way to find out what path a brush is currently using via JS.
    Am I just not looking in the right place of the Javascript reference, or is this really a thing that only has a setter, with no corresponding getter?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

  • Is there any way to find out what a specific line of data usage was for?

    There is a line on my bill for 97 MB of usage while I was bowling?  I was not using my phone.  How can I find out what it was doing for that specific charge?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

  • Is there a way to figure out what takes up a lot of memory using Spotlight?

    My 80 GB iMac apparently has 70 of the gigabytes used by various things on the computer, but I am at a loss as to what. My pictures take up about 15 GB and my music about the same, but even with that amount, I can't figure out where the other 50 have gone. I'm thinking there might be something like a large movie I created long ago hidden somewhere but it's not in any obvious place. I was wondering if anyone knows of a way to search for files by size using a method that would perhaps list what is the biggest and therefore taking up all this space because I am almost out of disk... Thanks.
    iMac   Mac OS X (10.4.6)  

    You can use WhatSize to tell you what is using up the space on your hard disk.
    (11787)

  • Is there a way to figure out what the current thread is?

    I've got the following snippet of code:
    // create a new thread. If the current thread is not this new thread, return
    Thread CountDownThread = new Thread("CountDownThread");
    CountDownThread.start();
    if (/*CURRENT THREAD*/.getName() != CountDownThread.getName()) {
         System.out.println ("I'm not CountDownThread. I'm leaving.");
         return;
    // current thread should be new thread. Therefore start the countdown
    CurrTime = InitTime;
    while(CurrTime.charAt(0) != '-') {      // go until current time is negative
         CurrTime = C.countDown();       // returns the current time based on the difference between the initial and elapsed time
         setText(CurrTime);                   // display current time in JLabel
    C.reset();
    setText(C.getCurrTime());What I'm trying to do is get a clock (C) to count down and display the time remaining in a JLabel (this snippet is taken from a method within that very JLabel which I'm extending from javax.swing.JLabel). While it's counting down, I'd like for the program to go off and do other things. Therefore, I'm trying to create a new thread that carries out the task of counting down while the original/main thread moves on to do other things.
    Please have a look at the above code and tell me if I'm on the right track. The one thing I don't know how to do is figure out how to tell which thread the current thread is. I'm assuming that both the new thread and original/main one will execute the if statement, the new one after it returns from start() (which I haven't defined). The original/main one will detect that it is not the new thread and return, whereas the new thread will and go on to the while loop. In the while loop, it will count down the clock until it reaches 0, after which point it will reset it and die.
    If I'm on the right track, all I need to know is how to detect which thread is currently executing. If I'm not on the right track, what would be the best way to do this?

    What? No! No Thread terminates on the return of start(). Those two events are unrelated!Uh... I think you misunderstood what I said.
    I didn't say that CountDownThread terminates upon returning from start() (which is what it sounds like you interpreted from me); I said that the thread that CountDownThread creates terminates once CountDownThread returns from start() (i.e. like any other local variable/object). This, of course, assumes that CountDownThread has a Runnable object on which to call its run() method (am I right?), in which case my code above doesn't create a new thread at all (i.e. CountDownThread.start() is executed within the main/original thread) - am I right?
    No, run() doesn't call start()! That would be stupid.Again, you misunderstood. I shouldn't need to explain this one. A simple reference to an ordinary dictionary on the words 'former' and 'latter' should suffice :)
    Anyway, all joking aside, I have now improved my code and it works! Here's what it looks like:
    ClockJLabel.java
    package MazeMania.clock;
    public class ClockJLabel extends javax.swing.JLabel {
    private Clock C;
    private ClockJLabelsRunnable CJLR;
    public ClockJLabel() {
      C = new Clock();
      CJLR = new ClockJLabelsRunnable();
      setText(C.getCurrTime()); // should be 00:00:00:00
      setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
      // need to figure out how to set the size so that it sticks
      setForeground(new java.awt.Color(255, 0, 0));
      setBackground(new java.awt.Color(0, 0, 0));
      setOpaque(true);
    // starts the clock counting up indefinitely from 0
    public void start() {
      (new Thread(new Runnable() {
        public void run() {
         while(true) setText(C.getElapsedTime());
       })).start();
      //System.out.println("Started clock...");
    // starts the clock counting down from an initial time and runs this count down in a separate thread
    public void countDown(String InitTime) {
      // initialize the clock
      try {C.initClock(InitTime);}
      catch(java.text.ParseException PE) {
       System.out.println(PE.getMessage());
      // initialize JLabel's display
      setText(C.getCurrTime());
      // prepare Runnable and give it to new Thread. New Thread starts count down.
      CJLR.task = CJLR.COUNTDOWN;
      CJLR.CJL = this;
      Thread CountDownThread = new Thread(CJLR);
      CountDownThread.start();
    public Clock getClock() {
      return C;
    }ClockJLabelsRunnable
    package MazeMania.clock;
    import java.lang.Runnable;
    class ClockJLabelsRunnable implements Runnable {
    public static int COUNTDOWN = 1;
    public static int COUNTUP = 2;
    // NOTE: this Runnable doesn't test for the proper setting of these variables
    public int task = 0;
    public ClockJLabel CJL = null;
    public void run() {
      Clock C = CJL.getClock();
      while(C.countDown().charAt(0) != '-') {CJL.setText(C.getCurrTime());}
      C.reset();
      CJL.setText(C.getCurrTime());

  • My  daughter got an itunes gift card and scratched off the redeem code.  Is there any way to find out what the code was?, my  caughter got an itunes gift card and scratched off the redeem code.  Is there any way to find out what the code was?

    Ny daughter got an itunes gift card.  She scrathed off the entire redeem code, so now she can not redeem it.  Is there any other way to find out the redeem code?

    Try Here  >  http://support.apple.com/kb/TS1292
    If no joy...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    And there is this...
    http://www.apple.com/hk/en/support/itunes/store/giftcard/

  • Is there any way to find out what the Ext Id is that is assigned to CRM records

    Whilst there is a lot of confusion as to when and where you use this field and what is the unique record key for some, I have understood that however what I am wanting to find is excatly what is the external ID that was assigned to the CRM record when it was first imported. I can't find any report or other means for getting this info and without it I can't re-import record updates.
    A method for resolving the issues with CRM updates would simply be if the CRM module provided the following
    An export facility as in the Web Apps and Products to simply export the full record with all fields in the same order as required for import
    The ability to attach to that export a slected extended CRM layout
    That he export record also included as the first field the BC CRM ID (this is the one thing we know to be unique no matter what)
    With the above and changes to the import to reference the CRM ID (for existing records) we would indeed be able to apply email address updates to existing records via batch import.
    This seems to be a rather obviuous and simple solution unless I am overlooking something. At present the CRM export / import functions are a serious weakness for large database updates and not having the ability to also import bulk deletes is a major drawback on our ability to maintain and manage the CRM integrity. As it stands, if you have been hit by spammers and have hundreds or thousands of delinquent entries in yoru CRM then you have no choice but to leave them in place and if you used a form that by default subscribes them to your mail list - I gave up on that.
    My last comment relates to the data pass that is done as part of the import - is it not possible to report on all records that will fail to be imported instead of one at a time?  If you want to reduce the load on teh system having a single pass to list all errors and list this so you can read it before the error message fades before your eyes would not be an unreasoonable request. I loath facing imports for this very reason.
    Please BC - when are you going to get around to correcting this major shortcoming in a critical aspect of the solutions we deliver.
    Greg

    Condolences. You can't retrieve the existing password, but you can reset it. See the section on "Resetting the original administrator account password" in this support article:
    http://support.apple.com/kb/HT1274
    Regards.

  • Is there any way to find out what caused Push Services to generate 22 MEGAbytes of data traffic in less than 20 minutes?

    Fortunately I was on Wifi when that happened, but my 500 MB data could run out quickly that way. According to Dataman it happened only once and I used only one other application at that time. Testing the same app with comparable usage didn't yield the same excessive data traffic. Normally Push Services comes to about 4MB per day (which in my opinion is already a lot). Though I use Wifi whereever I can, I am now really reluctant to have cellular data enabled and that's completely NOT the point of having a smartphone, or is it?
    I hope someone can shed some light on this.

    Sorry no, there isn't a way to turn off those reminders.
    You can send Apple a feedback here  http://www.apple.com/feedback/

  • Suddenly "lost mode" enabled in my iphone. I forgot my 4 digit password. Is there any way to get out of this problem? What should i do now? How can i disable it?

    Please help!! I forgot my password and now i can't access to my iphone. How can i disable the "lost mode" and how can i fix this problem?

    You will need to restore your iPhone from the same computer that you most recently synced to.
    Read this: http://support.apple.com/kb/ht1212
    If you can't do the restore then you will need to try recovery mode.
    Read this: http://support.apple.com/kb/ht4097

  • My dad died and I never got his password to update his computer.  Is there any way to find out what the PW is or to change it?

    I need to retrieve the password to my Dads computer, how can I do it? I need to be able to update it.

    Condolences. You can't retrieve the existing password, but you can reset it. See the section on "Resetting the original administrator account password" in this support article:
    http://support.apple.com/kb/HT1274
    Regards.

  • Please help me figure out what this kernel panic is about

    Computer keeps crashing. Went to genius bar, said it was sticky windows, deleted that, came home, still an issue. I can't decipher what all the Console gibberish means.
    Thu Apr 14 00:53:30 2011
    panic(cpu 1 caller 0x55db30): "!pageList phys_addr"@/SourceCache/xnu/xnu-1504.9.37/iokit/Kernel/IOMemoryDescriptor.cpp:1 409
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x31e93a38 : 0x21b510 (0x5d9514 0x31e93a6c 0x223978 0x0)
    0x31e93a88 : 0x55db30 (0x5e2be4 0x6b7a834 0x6b7a000 0x31e93c28)
    0x31e93b08 : 0x555878 (0x5a85b00 0x3 0x5788a00 0x80)
    0x31e93bf8 : 0x555e2d (0x5787680 0x80 0x5554a0 0x555590)
    0x31e93c28 : 0x114692d (0x5787680 0x31e93c68 0x31e93c7c 0x31e93c8c)
    0x31e93ca8 : 0x114a57f (0x5760200 0x5787680 0x5a85b00 0x1000)
    0x31e93d18 : 0x113f364 (0x5760200 0x5787680 0xf4240 0x5825b80)
    0x31e93d58 : 0x113f825 (0x5760200 0x5787680 0x0 0x15dc321)
    0x31e93d98 : 0x15d5511 (0x57abe00 0x5825b80 0x0 0x2a94be)
    0x31e93dd8 : 0x15d1800 (0x5803f00 0x581e14c 0x31e93e08 0x11d9a56)
    0x31e93e28 : 0x15d2089 (0x5819e00 0x581e14c 0x0 0x0)
    0x31e93e88 : 0x15d7b10 (0x5819e00 0x581e2fc 0x31e93eb8 0x15d5151)
    0x31e93ed8 : 0x15d7c44 (0x5803f00 0x219b6bd2 0x31e93f58 0x57323d4)
    0x31e93f78 : 0x22fd0d (0x5803f00 0x0 0x31e93fc8 0x550788)
    0x31e93fc8 : 0x2a06dc (0x863ea0 0x0 0x2a06eb 0x609e9a4)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.iokit.IOAHCIBlockStorage(1.6.3)@0x15cf000->0x15e1fff
    dependency: com.apple.iokit.IOAHCIFamily(2.0.4)@0x113d000
    dependency: com.apple.iokit.IOStorageFamily(1.6.2)@0x11d1000
    com.apple.driver.AppleAHCIPort(2.1.5)@0x1143000->0x1156fff
    dependency: com.apple.iokit.IOAHCIFamily(2.0.4)@0x113d000
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x927000
    com.apple.iokit.IOAHCIFamily(2.0.4)@0x113d000->0x1142fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10J869
    Kernel version:
    Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
    System model name: MacBookPro5,5 (Mac-F2268AC8)
    System uptime in nanoseconds: 139771855532
    unloaded kexts:
    (none)
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.3d0 - last loaded 97911686668
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AGPM 100.12.19
    com.apple.driver.InternalModemSupport 2.6.2
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleMikeyDriver 1.9.9f12
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AppleUpstreamUserClient 3.5.4
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.driver.AudioAUUC 1.54
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.filesystems.autofs 2.1.0
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.driver.AppleIntelYonahProfile 14
    com.apple.driver.AppleIntelPenrynProfile 17
    com.apple.driver.AppleIntelNehalemProfile 11
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.68
    com.apple.driver.AppleBacklight 170.0.34
    com.apple.GeForce 6.2.6
    com.apple.driver.AppleUSBTCButtons 200.3.2
    com.apple.driver.AppleUSBTCKeyEventDriver 200.3.2
    com.apple.driver.AppleUSBTCKeyboard 200.3.2
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.AppleUSBCardReader 2.5.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43xx 423.91.27
    com.apple.driver.AirPortBrcm43224 427.36.9
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.nvenet 2.0.15
    com.apple.driver.AppleUSBEHCI 4.1.8
    com.apple.driver.AppleUSBOHCI 4.1.5
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.driver.AppleHDAPlatformDriver 1.9.9f12
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleHDAHardwareConfigDriver 1.9.9f12
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.4.0f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.NVDAResman 6.2.6
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.4.0f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.4.0f1
    com.apple.iokit.IOBluetoothFamily 2.4.0f1
    com.apple.driver.AppleUSBMultitouch 206.6
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.5
    com.apple.driver.AppleUSBMergeNub 4.1.8
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.driver.AppleFileSystemDriver 2.0
    com.apple.iokit.IOAHCISerialATAPI 1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 314.1.1
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IONetworkingFamily 1.10
    com.apple.iokit.IOUSBFamily 4.1.8
    com.apple.driver.NVSMU 2.2.7
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Message was edited by: mfreda

    In looking at the crash dump, it appeared that the dependant extensions refer to the Hard drive.  That would also explain sluggishness at times. 
    My suggestion would be to run a disk utility.  Repair permissions and also boot to your CD and run a disk utility to check on the volume.
    Looking at the logs would be a great idea -- system log to see what was going on at the time.
    A couple of other troubleshooting techniques that shouldn't hurt are resetting you PRAM and resetting the SMC. 

  • Does anyone know if there's any way to find out what files in my Library

         Does anyone know if there's any way to find out what files in my Library I can delete? I just cleaned off my HD onto a media drive as a back up so all my movies documents and photos are gone but my Library seems to be a huge space hog eating sixty gigs of space and I do have alot of apps but they don't take up a third of that space... Any ideas how I can figure out what is wasting all this space? I had Spring Cleaning once but found it to be rather confusing as to what was essential to the OS and what not...
    Thanks,
    Matt

    Get free OmniDisk Sweeper. I can't imagine how you could have sixty GB in that folder. My entire ~Library isn't even 1GB. Are you sure you're not talking about your entire Home folder?
    Can you post a screenshot of the contents of that folder.
    Check again. Are you sure you moved all the Movies etc. out? Could have left duplicates of everything behind when you did this.
    Message was edited by: WZZZ

  • Is there a way of finding out what has been accessed on my MacBook Pro whilst in the possession of an apple authorised service centre?

    Hi Guys,
    I'm a bit new to this discussion group thing although I've been using Macintosh computers for many years (showing my age).
    I handed my MacBook Pro to be repaired at an authorised apple service centre. When I handed it in they said they needed to keep hold of it to run some diagnostics and requested my password. I've owned various models of mac for the the past 17 years and this is the first hardware problem I have encountered, hence I have never bothered to set up user accounts. 
    As I live in quite a remote part of Sweden I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks) or share some of my personal information (scanned copies of my birth certificate, passport, certificates, photos, etc.) on the web. Is there a way of finding out what activity has taken place whilst they've had it in their possession?
    I appreciate any advice you guys can offer.
    Thanks!
    PS: I've already thought about the 'recently opened' menu and The machine in question is a MacBook Pro 17" (2011) running OS X 10.6.8 (need Rosetta).

    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks) or share some of my personal information (scanned copies of my birth certificate, passport, certificates, photos, etc.) on the web.
    If you put your info into the computer and hand it to another, you have to assume they will copy everything.
    Why are you putting scanned copies of valuable identity information into a computer than can be hacked, stolen, lost or compromised by a dirty tech?
    Have you lost your mind?
    Is there a way of finding out what activity has taken place whilst they've had it in their possession?
    No. The tech would just deny it if he did, or tell the truth which the answer would be "NO" in either case.
    The employer won't ask that sort of questions without solid proof, less they make a enemy of the employee and/or risk being sued for defamation of character.
    It's not like they bother to have a team of people watching over his shoulder that he doesn't stick a USB thumb drive of your data into his pocket to take home.
    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks)
    If it's iTunes music, it has your personal ID embedded into the song files. Most IT techs know this though.
    I appreciate any advice you guys can offer.
    Too late now, all you can do is not worry about it.
    Take your personal info out of the machine and if you need it, burn cd/dvd copies, a few USB thumb drives, Iron Keys or self encrypting external storage drives with key and/or keypad.

  • Is there a way of finding out what lists in sharepoint are being looked up for document templates etc

    Hi,
    I am currently in the middle of setting up SharePoint sites and have come across many lists that have not been updated for a while. I am wondering is there a way of finding out what lists are being used and what lists aren't being used for example I would
    like to find out if a list is being used for a look up.
    Josh
    J Burns

    I don't think there any such option available OOTB, however you can use PowerShell to get such information e.g.
    $web = Get-SPWeb http://localhost
    $f = $web.Lists["Contact"].Fields["Customer"]
    $f.ListsFieldUsedIn()
    $web.Dispose()
    Check this link: http://sharepoint.stackexchange.com/questions/45574/is-a-list-being-used-as-a-lookup-for-some-web-part-in-the-site-collection
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

Maybe you are looking for