5.x.x NFS archiving logic uses GMT???

Does anyone else have a Mars box running 5.x.x code and can they tell
me if the NFS archive raw messages are archived using GMT versus the
local timezone on the Mars box? You can tell by looking at the files
starting with "rm-" in the following directory:
<archivedir>/2007-12-19/ES
The raw messages themselves have local timestamps, but they are zipped
up into files with filenames that utilize GMT. So in our case (GMT
-6), at 6PM localtime the Mars box creates a new directory for the
next day and starts saving raw events into that directory. We have an
external application that allows us to search based on date/time and
this breaks it (in previous versions, these file names reflected the local timezone)

By the looks of things your LPX installation failed and became corrupted. .. possibly because of the 'stall' issue with 10.0.0 whci9h was then fixed in 10.0.1
I would recommend you use somethiing like AppCleaner to fully uninstall LPX
http://www.freemacsoft.net/appcleaner/
and then redownload and install the full version of 10.0.1 from the App Store under your purchased tab...
Once done.. you should be able to redownload all the additional content once more..
If that doesn't fix things let us know please..
Cheers!

Similar Messages

  • MacPro Quad Core 32g Ram running slow Logic using only 9g in Activity Monitor

    Well its taken a while, but this is my first foray into the world of forums! I'm so hacked off with this regular problem and havent been able to find anything anywhere to solve it i thought i'd see if anyone has any similiar issues and maybe even a solve to it.
    So.... im an orchestrator and producer and after my mid 2008 Macbook Pro with 8g ram started freezing up i invested in this 3 years ago -
    Mac Pro 2x 2.4ghz Quad Core intel Xeon and stuck in 32gb of lovely Crucial RAM and 3 seperate internal 1TB drives with one for operating system (10.6.8), one for Audio recording/saving and one for all my sample libraries.
    32gb ram - should be enough i thought!
    So i regularly run at least 30 VI's - Ni The giant, Spitfire Orchestral librabies (say 12 string instruments up to 0.69g per load) LASS strings, plus perc STYLUS, ABBEY road drums, Trillian basses (acoustic/electric), ominisphere etc etc. So pretty hefty sample instruments. But theyre sooo nice!!
    In addition, the 32 bit server will come alive (NOT! So unstable i find) with my Waves plugs etc.
    Looking at ACTIVITY MONITOR however i might be not touching 9 gig (and sometimes even less) of usage for Logic, and only say 800MB for 32 bit server and have NOTHING else open - and what do i find .....
    - Mouse lag and cant really do anything with the mouse whilst playing the track - cant adjust volume - too slow, zooming problems
    - Takes a good 2-3 seconds for track to stop playing
    Dont get System OVERLOADS so much, its just that the system goes REALLLLLY slow.
    What ive tried- - -
    - Running Mountain Lion off another drive (havent had time to install it and wanted to be sure everything worked etc)
    - Tried all audio prefs - large/small buffers/threads etc and yes i am on 1024.
    in a nutshell how come with 32g RAM everything is so slow when barely using 10g of that???????
    I dread getting to the end of a project cos i know im gonna be freezing so much, but with so much editing all the time for the orchestral parts i need everything unfrozen and working.
    Sorry if this is long winded but wanted to describe what im experiencing.
    Any feedback most welcome! Thankyou in advance.
    Mac Pro 2x 2.4ghz Quad Core intel Xeon 32g RAM, 3TB storage
    10.6.8
    Logic Pro 9.1.8

    Hi
    A few thoughts:
    julian6400 wrote:
    In addition, the 32 bit server will come alive (NOT! So unstable i find) with my Waves plugs etc.
    The 32bit server is a pita: Waves v9 are 64bit  compatible (they run fine). 32 bit VI's can be run outside Logic using Vienna Ensemble Pro (see later)
    julian6400 wrote:
    So i regularly run at least 30 VI's - Ni The giant, Spitfire Orchestral librabies (say 12 string instruments up to 0.69g per load) LASS strings, plus perc STYLUS, ABBEY road drums, Trillian basses (acoustic/electric), ominisphere etc etc. So pretty hefty sample instruments. But theyre sooo nice!!
    Some of these VI's are extremely CPU hungry: Abbey Rd drums for example, really do hammer the CPU. What does Logic's Performance meter show in the way of CPU load. What does Activity Monitor show regarding CPU load?
    With 32G of RAM, this should not be the issue, but you might have general CPU problems (see above), and you may also have Sample disk streaming limitations if all the Loibraries you mention are on the same drive. How does Activity Monitor look regarding disk access? You might find it helpful to add a second drive and split the sample libraries across 2 for faster disk access.
    I presume that you have plenty of free space on the System drive?
    Logic can get sluggish if the Undo info gets way too big, and also if there are loads of regions in the Arrange: check Options:Project Information.
    Many are finding some benefits (me included) by running the VI's in Vienna Ensemble Pro:
    Better CPU load distribution than directly in Logic
    "Persistant Samples": they can remain loaded whilst you switch Logic Projects
    Logic is effectively running much less itself, so generally flies.
    32bit Plugs hosted separately in VEP so no 32bit Bridge issues in Logic
    Something to consider,though perhaps not yet, would be setting up a Slave computer using VEP.
    CCT

  • Write an UPdate statement using the logic used in PL/SQL block (oracle 10g)

    Hi All,
    I have written the following PL/SQL block. I want to write an UPDATE statement using the logic used in the following PL/SQL block. can any one please help me out in this regards.
    DECLARE
       v_hoov_fag   gor_gold_post.hoov_flg%TYPE;
       v_b49n          gor_gold_post.b49n%TYPE;
       CURSOR c
       IS
          SELECT bs_id, loyalty_date, loyalty_period, contract_date
            FROM gor_gold_post
           WHERE tariff_code IN (169, 135, 136);
    BEGIN
       FOR rec IN c
       LOOP
          IF    (TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period)
                        - SYSDATE) < 304
             OR (    TRUNC (  ADD_MONTHS (rec.loyalty_date, rec.loyalty_period)
                            - SYSDATE
                           ) IS NULL
                 AND (SYSDATE - TO_DATE (rec.contract_date, 'YYYYMMDD')) > 91.2
          THEN
             v_hoov_flg := 1;
          ELSE
             v_hoover_flag := 99;
          END IF;
          IF    (TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period)
                        - SYSDATE) < 121.6
             OR (    TRUNC (  ADD_MONTHS (rec.loyalty_date, rec.loyalty_period)
                            - SYSDATE
                           ) IS NULL
                 AND (SYSDATE - TO_DATE (rec.contract_date, 'YYYYMMDD')) > 91.2
          THEN
             v_b49n := 1;
          ELSE
             v_b49n := 99;
          END IF;
          UPDATE gor_gold_post
             SET hoov_flg = v_hoov_flg,
                 b49n = v_b49n
           WHERE bs_id = rec.bs_id AND tariff_code IN (169, 135, 136);
          COMMIT;
       END LOOP;
    END;Thank you,

    Using case statement.
    UPDATE gor_gold_post
       SET hoov_flag = CASE WHEN TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period) - SYSDATE) < 304
                                   OR
                                   (TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period) - SYSDATE) IS NULL
                                AND (SYSDATE - TO_DATE (rec.contract_date, 'YYYYMMDD')) > 91.2)
                           THEN 1
                           ELSE 99
                         END,
           b49n      = CASE WHEN TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period) - SYSDATE) < 121.6
                             OR
                             (TRUNC (ADD_MONTHS (rec.loyalty_date, rec.loyalty_period) - SYSDATE) IS NULL
                                AND (SYSDATE - TO_DATE (rec.contract_date, 'YYYYMMDD')) > 91.2)
                           THEN 1
                           ELSE 99
                         END
    WHERE tariff_code IN (169, 135, 136);Note: Code not tested.

  • How do I verify Direct NFS is being used by RMAN

    I have a two node 11.2.0.2 RAC database running on AIX 6.1 TL6. We using NetApp storage for NFS. Direct NFS is configured using the /etc/oranfstab entries and the ODM libraries are loaded on each instance "Oracle instance running with ODM: Oracle Direct NFS ODM Library Version 3.0". Here are the contents of /etc/filesystems
    /export:
    dev = /vol/volnshr001_oraexport/oraexport
    vfs = nfs
    nodename = filer1
    mount = true
    options = rw,bg,hard,rsize=32768,wsize=32768,timeo=600,vers=3,proto=tcp,noac
    account = false
    /archivelogs:
    dev = /vol/volnshr001_oraclearchive
    vfs = nfs
    nodename = filer1
    mount = true
    options = rw,bg,hard,rsize=32768,wsize=32768,timeo=600,vers=3,proto=tcp,noac
    account = false
    /archivelogs2:
    dev = /vol/volnshr002_oraclearchive
    vfs = nfs
    nodename = filer2
    mount = true
    options = rw,bg,hard,rsize=32768,wsize=32768,timeo=600,vers=3,proto=tcp,noac
    account = false
    The oranfstab has the following entries:
    server: filer1
    path: 192.168.2.22
    export: /vol/volnshr001_oraclearchive mount:/archivelogs
    server: filer2
    path: 192.168.2.23
    export: /vol/volnshr002_oraclearchive mount:/archivelogs2
    server: filer1
    path: 192.168.2.22
    export: /vol/volnshr001_oraexport/oraexport mount:/export
    I tested if dNFS is being used by creating a tablespace on the NFS volumes and then querying v$dnfs_servers.
    SQL> create tablespace dnfs_ts datafile '/archivelogs/tiboratst/tibuat/dnfs_ts_01.dbf' size 100M;
    Tablespace created.
    SQL> !
    oracle@tibora30t[tibuat1]-/u01/oracle/11.2.0/dbhome_1/lib >ls -ltr /archivelogs/tiboratst/tibuat
    total 24811120
    -rw-r----- 1 oracle asmadmin 2896360960 Aug 18 17:59 1fmkanau_1_2
    -rw-r----- 1 oracle asmadmin 2896360960 Aug 18 17:59 1fmkanau_1_1
    -rw-r----- 1 oracle asmadmin 3377919488 Aug 18 17:59 1emkanau_1_2
    -rw-r----- 1 oracle asmadmin 3377919488 Aug 18 17:59 1emkanau_1_1
    -rw-r----- 1 oracle asmadmin 104865792 Aug 18 18:01 dnfs_ts_01.dbf
    oracle@tibora30t[tibuat1]-/u01/oracle/11.2.0/dbhome_1/lib >exit
    SQL> select * from v$dnfs_servers;
    ID
    SVRNAME
    DIRNAME
    MNTPORT NFSPORT WTMAX RTMAX
    1
    filer1
    /vol/volnshr001_oraclearchive
    4046 2049 65536 65536
    The alert logs also displayed the following messages:
    Direct NFS: channel id [0] path [192.168.2.22] to filer [filer1] via local [] is UP
    Direct NFS: channel id [1] path [192.168.2.22] to filer [filer1] via local [] is UP log also displayed the following messages:
    However, when I try to do an RMAN backup I'm not seeing any messages which indicate whether or not dNFS is being used. I tried to to a backup using the second mount (/archivelogs2) but the corresponding server (filer2) was not visible in v$dnfs_servers.
    Is there any special configuration necessary for RMAN backups to use dNFS?
    Thanks,
    Leighton

    Tiger install will take up 12gb if you don't go through and do a custom install and remove stuff that you don't need.
    There is a program that you can download that tells you the size of each folder, get it here: http://www.macupdate.com/info.php/id/13006

  • Logic used in Rate App doubt

    Hello Everybody,
    I´m using the Rate Application for currency conversion but i still dont understand the logic applied when we run the FX_trans calc, i have 2 Business Rules one for Average and other for . Does anyone knows whats the logic applied? i need to understand this in order to get the value i want when a charge the different rate types.
    Thanks in Advance
    Nidia

    Thanks for your responses,
    Maybe i need to explain better. I´m using BPC for Microsoft v7.5 SP4 and configured all the dimensions, properties, Business Rules and Fx_trans.lgf as shown : *RUN_STORED_PROCEDURE=SPRUNCONVERSION('%APP%','%VERSION_SET%','USD','GLOBAL','%SCOPETABLE%','%LOGTABLE%').
    Using BPC for Excel, when i load the rate type values, for example in order to convert MXN to USD i load 10 in this CV:
    Flow dim- non flow member
    Currency dim- USD member
    Datasource dim- calculated values
    Rate-account dim- Average
    Then i go back to the Financial Application and run the FX trans package, but the values obtained do not match with the exchange rate of 10 that i have stored in rate application. For example i have 83 392 in one account in MXN, after the calc is runned i'm supposed to get 8 339.2 but instead i get 43 781.
    The MD property in input currency dim is set as "D"
    What value do i have to store inside the rate application in order to get the correct amount? what's the logic (and i mean like mathematical logic) used for currency convertions?
    Thanks a lot

  • Are we change nonarchive mode to archive mode using rman in enterprislinux

    how can i change nonarchive mode to archive mode using Recovery manager in enterprise linux

    Did you read the other post where you asked this same question: {message:id=3868427}

  • What is the logical use of defining Dimension Object Relationships in DBI?

    Hi!
    I am reading the Oracle Daily Business Intelligence Implementation Guide and as I am following the guide on how to extend DBI, I saw a section which discusses how to create dimension object relationships. Until now, I could not fully realize what is the logical use of defining this relationship among dimension objects. I hope someone can enlighten me on this matter...
    Thanks.

    It LIVES ON FOREVER, and starts to take on its own personality, hungrily chasing down other objects in memory and ATTACKING THEM AT WILL. Also it grows over time, in its evil attempt to CONSUME YOUR ENTIRE MACHINE, and comes out and EATS YOU UP TOO! MWAHHHAAAHHHAAAA
    No wait, that was a sci-fi. It just lives until no more references to it exist and thus becomes eligible for garbage collection, and is only a "JAVA" feature not JDBC.

  • Archive Area Used % Testing

    Hello,
    - My Oracle Version 11Gr2 , RAC using ASM and OMF.
    - OS Name: Redhat Linux 5.5
    Issue: To test the SNMP Trap settings on database control (Not Grid Control), I would like to raise the Archive Area Used % alert. This is our test environment but important to not lose it also,
    so, I would like to discuss with you the best way in simulating the Archive Area Used % alert testing with minimum down and less risk.
    Cheers,
    SQL> select dest_id,destination from v$archive_dest where destination is not null;
       DEST_ID               DESTINATION
             1                      USE_DB_RECOVERY_FILE_DEST
    SQL>
    SQL>

    Vijay Tummala wrote:
    DB Home -> All Metrics
    expand 'Archive Area' metrics
    select 'Archive Area Used (%)'
    select 'DB_RECOVERY_FILE_DEST'
    on the bottom left of the window, click on 'Metric and Policy Settings'
    then edit the values.
    hope this helps.
    Thanks,
    -VijayFirst, I didn't found Archive Area' metrics in ALL metrics, Second when I choose for example Recovery Area szie metric and then click on 'Metric and Policy Settings' It will show me an editable list of metrics where the Recovery Area size metric itself is not in the list!

  • Archiving invoice using smartform

    Hi All
    I am trying to archive invoices using smartform.
    In the program I am directly calling the smartform by passing the archiving parameters to the function module of smartform which is determined using CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'.
    I am passing the parameter to the  archive_index and  archive_parameters in CALL FUNCTION lf_fm_name.
    If from the same program I am calling driver program of sap script then the document is getting archived.
    Is there any problem with archiving using smartform.
    Please guide.

    Hello,
    Check this link
    http://sap.ittoolbox.com/groups/technical-functional/sap-abap/archiving-smartforms-in-sap-2653513

  • I try to archive catalog using Catalog Manager but option is disabled

    I try to archive catalogue using catalogue manager but option is disabled even i check rights to archive catalogue. pl suggest, what should i do? i want to archive from one instance and try to unarchive in other server, is it possible to use this remedy?
    Regards,

    Step-1:- create bat like run.bat in that batch file just include below script
    @echo off
    echo Backing up Repository files…
    if not exist “C:\OBIEE_Backup” mkdir “C:\OBIEE_Backup”
    copy /Y C:\OracleBI\server\Repository\samplesales.rpd C:\OBIEE_Backup
    echo Backing up Configuration files…
    copy /Y C:\OracleBI\server\Config\NQSConfig.INI C:\OBIEE_Backup
    copy /Y C:\OracleBI\server\Config\DBFeatures.INI C:\OBIEE_Backup
    copy /Y C:\OracleBIData\web\config\instanceconfig.xml C:\OBIEE_Backup\web_instanceconfig.xml
    copy /Y C:\OracleBIData\web\config\credentialstore.xml C:\OBIEE_Backup
    copy /Y C:\OracleBIData\scheduler\config\instanceconfig.xml C:\OBIEE_Backup\scheduler_instanceconfig.xml
    copy /Y C:\OracleBI\xmlp\XMLP\Admin\Configuration\xmlp-server-config.xml C:\OBIEE_Backup
    copy /Y C:\OracleBI\xmlp\XMLP\Admin\Security\principals.xml C:\OBIEE_Backup
    copy /Y C:\OracleBI\xmlp\XMLP\Admin\Security\security.xml C:\OBIEE_Backup
    copy /Y C:\OracleBI\xmlp\XMLP\Admin\DataSource\datasources.xml C:\OBIEE_Backup
    copy /Y C:\OracleBI\web\msgdb\l_en\messages\logonmessages.xml C:\OBIEE_Backup
    copy /Y C:\OracleBI\web\app\res\s_oracle10\portal\portallogo.gif C:\OBIEE_Backup
    copy /Y C:\OracleBI\web\app\res\s_oracle10\b_mozilla_4\bg_banner.jpg C:\OBIEE_Backup
    copy /Y C:\OracleBI\web\app\res\sk_oracle10\answers\answerslogo.gif C:\OBIEE_Backup
    echo Backing up web catalog.Please wait….
    if not exist “C:\OBIEE_Backup\samplesales” mkdir “C:\OBIEE_Backup\samplesales”
    xcopy /s/Y/Q C:\OracleBIData\web\catalog\samplesales C:\OBIEE_Backup\samplesales
    echo Backup Complete!
    @pause
    Step-2:- Execute run.bat via Windows Command Prompt
    Mark if helps.
    Thanks,

  • Execute script logic using data manager

    Hi all,
    Could anyone explain me how to run a script logic using the data manager?
    The only way I get it working is adding the script logic into the defaul.lgl file and running the default formulas package via data manager.
    How can I run an specific script logic without using the default.lgf file?
    Thanks and regards,
    Ana

    HI Ana,
    You will have to create a SSIS package that will run the logic for you. A good example of this is the ICELIM package that comes standard with AppShell. The easiest is way for me is to copy the package and renaming it to what you want to call it in the following folder: C:\BPC\Data\Webfolders\<AppSet>\<Application>\DataManager\PackageFiles\System Files
    You will then have to organize the package list and add the package and modify the advanced properties of the package and point it to the correct logic file. I always use the lgf file rather than the lgx file, but it is up to you.
    Lemme know if you need more info.
    Regards,
    Andries

  • Enabling archive log using init.ora file

    Hi
    I want to convert my database in archive mode using init.ora file.
    so what entries i need to do in it.
    Plz send me some samples .
    thanks

    Please review the contents below;
    When the communication between the client and the server goes awry, this can
    result in ORA-1041 and ORA-3113 errors.
    Oracle Metalink Document: What Does ORA-1041 Mean? :Doc ID: Note:1011305.102
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:1180317337103985812::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,1011305.102,1,1,1,helvetica
    Oracle Metalink Document: ORA-1041 When Trying to Connect as Sysdba to
    Startup Database: Doc ID: Note:552218.1
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:1180317337103985812::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,552218.1,1,1,1,helvetica
    Hope this is useful.
    Adith

  • Batch Export Trick for Logic using Markers and XLD

    I've always wanted apple to implement batch export of multiple audio files from logic using markers as delimiters. So you can mix a concert and export it in one go without having to hang around and re-start bouncing for each track.
    Now you can do this (albeit in a two step process) using Logic 9.1 and the free and wonderful XLD!
    Just place markers in your project and bounce as AIFF (this is the only format that seems to work with this, so you are out of luck if your bounce file is going to be larger than 2GB). I suggest placing a marker at the very beginning of the project too so you first file is not called "Timestamp_0" or some such thing. You can even name the markers with the name you want each file to have, though keep in mind files will sort alphabetically of course once they are split if you have a specific order - so maybe preface them with 01, 02, 03, etc etc.
    OK - now go get XLD (the GUI version):
    http://tmkk.hp.infoseek.co.jp/xld/index_e.html
    download, install and run it. No window will appear at first. Open the preferences and choose your desired output format and options, directory, etc
    drop the AIFF file onto XLD (I've put XLD into my Finder window toolbar for easy access). When it asks you to open the embedded cue sheet, say "OK" and your markers should appear as a list of CD tracks that you can play double click to play with a player interface and preview.
    Then press "Decode" and voila! All your markers as separate audio files with the marker name, in whatever format (including the multiple formats option) you set XLD for.
    You can even edit metadata at this stage (but first consider whether your output format supports it)
    Some of the formats XLD can produce are
    AIFF
    WAV
    Apple Lossless (saves some space!)
    FLAC
    AAC
    MP3
    OGG
    etc etc
    Personally I think this is an absolutely fantastic trick and am happy to have discovered it. Hope it helps you too.

    Also, if you have gaps in the original session, put a marker at the end of the previous section and call it something like "end". Then you can uncheck all the "end" 'tracks' in the cue sheet and they wont be exported in XLD.
    Oh and it also seems XLD will preface your marker delimited files with their 'CD track' number. Useful to keep them in order, but they will probably want to be changed if you have gaps you took out with extra "end" markers.

  • Search Engine Logic using beans & JSP's design needed.

    I am developing a web app (using JSP, tags, beans, and SQL) that stores Electric utility customers info / data (like Account, meter read info & payments etc.) for retrieval based on search criteria input by the user(by acct, meter , meter location etc..). I need some kind of search engine to search the Customer information(data nearly 3 million records) that takes less than a minute.
    Right now I have developed the search engine using JSP's, The JSP's will get the info from resultset query of beans and formatting stuff is done in JSP's. But its very slow....some times it takes 5 to 10 minutes to fetch the results. So, now we have planned to move the "search logic" from JSP's to beans, hoping this will speed up the search engine performance.
    Does anyone know where I can get search engine logic using JSP, JavaBeans? , Please let me know is there discussion on this topic / sample code / links / books anywhere ?.
    I will really appreciate the help.
    Thanks,
    Donthy

    Hi,
    I think to export the logic to the beans will not help a lot, because the .jsp and the beans are compiled together to a servlet anyway. And so, it doesn`t really matter, where the logic has been befor, after compilation it will be in the servlet.. But to have java code logic in the bean and not in the jsp is a good idea anyway. It is always nice to have as few scriptlet code as possible, makes the application more readable..
    I think you should better have a closer look to the search logic, and the database. For such huge data amount, the Oracle database would be the best. And then let the database do as many of the search work as possible, because java is a little slow, and the database will be allways faster for this things of work..
    lexip

  • Have a MacMini that is dropping NFS Share connections, Using cifs://servername/path however the NFS Share is dropped everyday without fail.

    Have a MacMini that is dropping NFS Share connections, Using cifs://servername/path however the NFS Share is dropped everyday without fail.  Is there a better way to setup this share?  I've got 5 other Macs that use the same NFS Share and none of them are dropping the shared connection.  This is on OSX 10.9.x Maverick.

    cifs:// is not NFS cifs:// is effectively SMB i.e. Windows filesharing, NFS is Unix filesharing, furthermore cifs:// is a way of forcing Mavericks to use SMB version 1 protocol. Normally you would use smb:// which will default to trying to use SMB version 2 protocol.
    Saying all that, SMB version 1, SMB version 2, and NFS should all normally work fine. It is possible that the server may be configured to disconnect idle users although one would expect this to happen with other users as well. It is perhaps more likely that your problem Mavericks Mac maybe going to sleep periodically, while asleep the connection to the server maybe being lost. Apple's own server software has specific cleverness to allow clients to sleep and resume their connection when they wake.
    Therefore it might be worth checking your Energy Saver settings on this Mac and disabling computer sleep.

Maybe you are looking for

  • UDM_SUPERVISOR: Adding fields and data at customer item level

    Hi I am having the same issue with newbie82_c; I need to populate the added fields in transaction UDM_SUPERVISOR. I know that the previous thread was tagged as answered already but the solution to the issue was not indicated in the thread. Here are t

  • Connecting my 550 Powerbook with Linksys 354G Gateway Kit

    Hello and help! I've just set up my iMac with the Linksys modem router and ethernet connection and all works OK. I now want to use the Linksys WPC54G V.5 PMCIA card that came with kit with my 2nd computer, a 550 PB.. I plugged the card into the PB an

  • Upgrade CCM 4.1.2 to 4.1.3

    How I can upgrade the Cisco CallManager version 4.1.2 to Cisco CallManager Version 4.1(3), Service Release 1?

  • Jheadstart 10.1.2. used witj jdev 10.1.3

    Hello All, Can I use jheadstart 10.2.3 in combination with jdev 10.1.3? Regards, Menk Slot

  • Unstack/Sort Question

    When editing a shoot, I like to temporarily group similar photos into stacks for organizational purposes. Then I like to rearrange the stacks in an order I like. Next is where the problem comes in. I would like to unstack the stacks and have the phot