DRM Export creation issue

Hi all, I'm facing issue with POC at the customer site.
I cannot create any type of export.
DRM 11.1.2.1.000 has been installed on Win 2008 server 64 bit machine - polish locale.
I applied straight away after installtion 105 patch. Repositor has been created. We needed later to change server locale to english US.
I imported customer's hierarchies fine and when I tried to create any type of export I'm getting following message:
There was an error proressing your request
The server returned an error: The added or subtracted value results in an un-representable DateTime. Parameter name: value
I tried to google the issue - not successful - only one thread on OTN but not with resolution.
I applied 106 patchset and still getting the same issue.
Other things work slick in DRM in range I needed so far.
Could you please forward to somebody that faced that issue if you're not familiar with
Edited by: jastrzab on 2012-05-30 09:01

Hi,
We encountered the same problem running DRM exports in Ireland.
Subsequently discovered the following SR opened by Oracle :
SR: 3-5740964101 opened for the issue are having with running exports from DRM.
Problem Description: Trying to run or save an export in DRM gives the following error message:
+"The added or subtracted value results in an unrepresentable DateTime. Paramater name: value"+
This error only occurs for non-US (in Ireland) where the DRM instance is hosted in the US; this error does not occur for US based users.
We resolved this by installing patch Hyperion Data Relationship Management 11.1.2.1.107 Patch Set Update

Similar Messages

  • DRM Export Duplicates Issue

    Dear All,
    i'm facing some issue in performing a hierarchy export from Drm. (Version 11.1.2.1)
    Basically i need to export my hierarchy into a Database table, by using the "Remove Duplicates Based on Key" function, but it looks like the export is not working as it's not removing any duplicated row.
    I'm using the "Node Id" as unique key, and i have set it as primary key into the "Column Options" tab.
    I tested the same behavior, by using the client file option as target, and it's working fine.
    Thanks in advance for your help.

    It's a bug in that version, it's fixed with the new release as per Oracle ( I still have to test it:-))
    Please go through Release 11.1.2.3.000 documentation,
    14580505 -- The Remove Duplicates Based on Key option does not work when exporting a
    hierarchy to a database.
    -Murali

  • KIMYONG : basic  Export / Attachment issues  가이드

    Purpose
    ======
    이 문서는 Support Analayst / DBA에게 Export /Attachments issues 발생시
    조치할수 있는 기본적인 Troubleshooting Guide를 소개하고자 합니다.
    Explanations
    ======
    Export Analysis
    Turn on export debug,
    Go to Help -> Diagnostics -> Examine
    Set Block = GLOBAL
    Set Field = FND_EXPORT_DEBUG
    Set Value = TRUE
    Then export and observe the messages that are generated during the export process
    Important Parameters.
    set serveroutput on
    declare
    plsql_agent varchar2(200);
    web_server varchar2(200);
    dad varchar2(200);
    gfm_agent varchar2(200);
    protocol varchar2(200);
    database_id varchar2(200);
    jsp_agent varchar2(200);
    check_enabled varchar2(200) ;
    begin
    plsql_agent := fnd_web_config.plsql_agent ;
    dbms_output.put_line('PL SQL Agent ->'||plsql_agent);
    web_server :=fnd_web_config.web_server ;
    dbms_output.put_line('Web Server ->'||web_server);
    dad := fnd_web_config.dad ;
    dbms_output.put_line('DAD ->'||dad);
    gfm_agent := fnd_web_config.gfm_agent ;
    dbms_output.put_line('GFM Agent ->'||gfm_agent);
    protocol := fnd_web_config.protocol ;
    dbms_output.put_line('Protocol ->'||protocol);
    database_id := fnd_web_config.database_id ;
    dbms_output.put_line('Database Id ->'||database_id);
    jsp_agent := fnd_web_config.jsp_agent ;
    dbms_output.put_line('JSP Agent ->'||jsp_agent);
    check_enabled := fnd_web_config.check_enabled('FND_GFM.GET') ;
    dbms_output.put_line('FND_GFM.GET ->'||check_enabled);
    end ;
    Examining SQL Trace for the sequence of events that happen in the Export process
    SQL >alter session set events '10046 trace name context forever, level 12';
    Then run the following block of pl/sql code
    set serveroutput on
    declare
    db_file number;
    mime_type varchar2(255) :='text/plain' ;
    out_string varchar2(32767) :='Just some plain text that is stored' ;
    web_server_prefix varchar2(500);
    url varchar2(500);
    begin
    db_file :=fnd_gfm.file_create(content_type =>mime_type,program_name=>'export');
    fnd_gfm.file_write_line(db_file,out_string);
    db_file :=fnd_gfm.file_close(db_file);
    url:=fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,db_file,TRUE);
    dbms_output.put_line(url);
    end;
    Exit the sql plus session and study the sql trace file as being there in USER_DUMP_DEST
    $ ls -lrt
    Refer to Note # 282806.1 Performance Tuning Approach for Oracle(8.1.6 - 9.2.0.5) on
    UNIX for more information on how to obtain sql tracing .
    Example of download URL :-
    http://finance.sriratu:8001/pls/SR/fndgfm/fnd_gfm.get/776537528/202595/fnd_gfm.tsv
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/820067633/298941/Screen_shots.doc
    Example of Upload Attachment URL:
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A1548EC73FFCF6EADB4F7826B217EDCE92719B62BDA9FF0AF193DC7BC64A2C60AFC5123B50C8C78F9E6807695ED9A7FE7AE87F8E49E80807223756706B3FC777F645FA5A07C7A467B
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A5525987DB9C8D9785657497306AAE1FD25D1CC352ADF38DFD69C21355096CBC38D285B083D24F261701F5F278E199044D603A5A8B1D588292099782AC4AF3D97E23B95936809D280
    To check the row being created in the table FND_LOBS during Export or Attachment
    SQL>create table fnd_lobs_bak as
    select file_id,file_name from fnd_lobs ;
    SQL>select * from fnd_lobs
    where file_id not in
    (select file_id from fnd_lobs_bak );
    SQL>select * from fnd_lobs
    where to_char(upload_date,'DD/MM/YYYY')=to_char(sysdate,'DD/MM/YYYY')
    Analysis on an Attachment
    Help -> Diagnostics -> Examine
    Block : DOCUMENT_HEADER
    Field : ATTACHED_DOCUMENT_ID
    Note down <Value>
    SQL>select document_id
    from fnd_attached_documents
    where attached_document_id=<Value>;
    SQL>select media_id
    from fnd_documents_tl
    where document_id=<document_id>;
    SQL>select *
    from fnd_lobs
    where file_id=<media_id>;
    SQL>select *
    from fnd_documents_short_text
    where media_id=<media_id>;
    from fnd_documents_long_text
    where media_id=<media_id>;
    SQL>select *
    from fnd_documents_long_raw
    where media_id=<media_id>;
    FND_LOBS stores information about all LOBs managed by the Generic File Manager (GFM).
    Each row includes the file identifier, name, content-type, and actual data. Each row also
    includes the dates the file was uploaded and will expire, the associated program name and
    tag, and the language and Oracle characterset.
    The file data, which is a binary LOB, is stored exactly as it is uploaded from a client browser,
    which means that no translation work is required during a download to make it HTTP compliant.
    Therefore uploads from non-browser sources will have to prepare the contents
    appropriately (for instance, separating lines with CRLF).
    The program_name and program_tag may be used by clients of the GFM for any purpose,
    such as striping, partitioning, or purging the table if the program is de-installed.
    They are otherwise strictly informative.
    These columns and the expiration date are properly set when the
    procedure FND_GFM.CONFIRM_UPLOAD is called. If not called, the column
    expiration_date remains set, and will eventually be purged by the procedure
    FND_GFM.PURGE_EXPIRED.
    FND_DOCUMENTS_LONG_RAW stores images and OLE
    Objects, such as Word Documents and Excel
    spreadsheets, in the database. If the user elects
    to link an OLE Object to the document, this table
    stores the information necessary for Oracle Forms
    to activate the OLE server, and it saves a
    bit-mapped image of the OLE server's contents.
    If the user does not elect to link an OLE Object,
    the entire document will be stored in this table.
    FND_DOCUMENTS_LONG_TEXT stores information about
    long text documents.
    FND_DOCUMENTS_SHORT_TEXT stores information about
    short text documents.
    To know which Forms provide Attachment feature
    SQL>select *
    from fnd_attachment_functions
    where function_name like '%FND_%';
    Examining FND_LOBS tablespace
    SQL>select tablespace_name
    from dba_tables
    where table_name='FND_LOBS';
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE';
    SQL>select a.tablespace_name TABLESPACE_NAME , a.bytes TOTAL_BYTES,
    sum(b.bytes) FREE_BYTES , count(*) EXTENTS
    from dba_data_files a, dba_free_space b
    where a.file_id = b.file_id AND A.TABLESPACE_NAME=<TABLESPACE_NAME>
    group by a.tablespace_name, a.bytes
    order by a.tablespace_name ;
    Examing Profile Option value
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE' ;
    SQL>select b.profile_option_name,level_id,profile_option_value
    from fnd_profile_option_values a, fnd_profile_options b
    where a.application_id=b.application_id
    and a.profile_option_id=b.profile_option_id
    and b.profile_option_name in ('FND_EXPORT_MIME_TYPE') ;
    Procedure FND_GFM.GET ANALYSIS
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/560074272/298951/fnd_gfm.doc
    access
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',1)+1,instr('/560074272/298951/fnd_gfm.doc','/',2)-2) access from dual ;
    560074272
    file_id
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',2)+1,(instr('/560074272/298951/fnd_gfm.doc','/',-1)-instr('/560074272/298951/fnd_gfm.doc','/',2)-1)) from dual ;
    298951
    Profile Options being referenced in the package FND_GFM
    FND_EXPORT_MIME_TYPE
    FND_NATIVE_CLIENT_ENCODING
    Lookup Type Being used in the package FND_GFM
    SQL>select tag,lookup_code,meaning
    from fnd_lookup_values_vl
    where lookup_type='FND_ISO_CHARACTER_SET_MAP';
    Reference
    ========
    Note 338651.1

  • 10.6.7 - general pdf creation issues?

    I wondered whether anyone else had run into this issue after updating to 10.6.7 when using pdfs created by Preview - perhaps related to the pdf/font issue.
    If it is generally happening, then the 10.6.7 pdf-font issue has an even larger
    impact than previously described:
    1. Open a pdf document in Preview
    2. Select a region and save to clipboard
    3. Save as a new pdf file
    4. Then try importing it as a "Picture" into any of the new Office 2011 apps: Word, PPT, etc.
    This crashes my office 2011 apps (latest version, 14.02) But NOT any earlier version of Office (2008. etc.), which may not do as much pdf checking.
    Before the 10.6.7 upgrade (ie, 10.6.6), this never happened with Office 2011.
    Acrobat complains when opening the Preview-created pdfs about 'missing fonts', so I suspect some sort of pdf creation issue.
    Any fixes (besides the previously suggested one of downgrading to 10.6.6)
    If it's a real bug (not just local to my system), then it's a more far-reaching one than previously described.

    rcberwick wrote:
    So, 3 different Apple tech support people say they know this problem affects
    "multiple applications, including any that deal with pdf files" but that "no fix is
    currently in the works"
    That is wrong because it only involves OpenType Postscript fonts.
    The only solution offered so far is to "downgrade by doing Archive & Install" and
    then re-applying each Combo Upgrade, starting with 10.6.3 up to 10.6.6.
    You wouldn't have to do that either. That is the point of a Combo update. You only need to apply the one you want. It includes all of the previous updates.

  • Calling stored procedure from DRM export

    Hi All,
    I am new to drm .I have a question.Is it possible to run stored procedure automatically when drm export ran.
    I Have a DRM HUb where i am actually downloading all the tables.I have a requirement to run stored procedure when drm exports ran.
    Is it Possible?

    Hi,
    I have these exports from drm.Do we have batch commands in DRM
    When these DRM exports ran, Is there a way that i can trigger my stored procedure

  • Export license issue-URGENT

    We need to cancel Outbound Delivery 1234566 due to a GTS Export License issue.
    This delivery was created before the GTS license was complete.
    This delivery is for a Military Sales Order 123456 to ABCD for Thales shipped from XYZ
    2 Proforma Invoices were created, 123456on 9/18 and 9301154276 and 9/24. 
    GTS License 100000000000000011 was updated on 9/24.  However, the delivery needs to be canceled in order for GTS to assign a Proforma to a license.
    The accounting document, F2 Invoice 123456 has been issued but not cleared.
    Thanks
    Sitanshu

    Use Transaction code /SAPSLL/CL_CP_CUS_EX to display the custom declaration in Customs management. Select the dcoument in change mode. In the menu path, there is an option for 'Cancel' or 'Request Cancellation'. Request cancellation option is used when the declaration has been sent out to authorities for permission and in the meatime, the user decided to cancel..
    For assigning the license, use transaction /SAPSLL/LCD_CHANGE in License determination of Compliance..

  • Session creation issues with DS3.2

    We are using BODS 3.2 for development. We are aware that a newer version of DS has been released quite a long time ago but due to some reasons we are still using DS 3.2.
    We are facing some session creation issues. We are using Teradata and Oracle as source and extracting\updating data using some SQLs in script tasks. SQLs are targeting huge amount of data. We executed a job and checked on the servers, sessions were created on the databases. Job kept on executing for long time and was not getting completed, there was no error also. After waiting so long, I checked on Database server and found that session was lost for these SQLs on Database servers. We are able to create a successful connection using Data Stores.
    Please suggest something, Why the sessions are not getting lost on the database servers?.
    Thanks & Regards,
    Gaurav Bansal

    ginger_11 wrote:
    Hi...I'm new to the forum.
    2 of the same phones in my household having similar issues since OS upgrade. 
    -Text automatically going to MMS when sending pics and the pics won't send.  1 phone freezes, the other acts like its sent but not sent-this phone won't load emailed pics either.
    -Keep getting notifications that passwords need updated for email accounts.
    -Facebook app won't load on 1 phone-tried deleting, pulling battery and re-installing.  Still getting "session re log-in required" but there is nowhere to load the log-in info under accounts. Getting the same message on the other phone but the app is still listed under accounts so am able to log in.
    -Both phones are randomly re-starting. Multiple times over past 3 days. 
    Any known issues like these?
    There must be some common factor why both phones are having the same problem.
    With the 10.2.1.537, the only problem I had was a few contacts merged and surnames were repeated.
    I haven't noticed any difference with the latest upgrade.
    Maybe a security wipe and restore contacts and email then one app at a time.

  • DRM Export to Database Table Error

    Hi,
    We were testing the DRM export functionality with target as a database table.
    The connection was extablished successfully and few tables were selected.
    Account hierarchy's parent and child were mapped with the parent and child columns of the table.
    On running the export the following error came:
    "1: Error during Export. Export was unable to run. Error: Invalid parameter binding Parameter name: P6"
    If anyone has worked with this functionality before or understands this error, please let us know.
    Any help would be appreciated.
    thanks,
    Mayank

    Make sure the Datatype you have specified mataches with that of the table,
    Thanks!

  • Site Creation Issue.

    We had a user report a site creation issue with their site. They had been able to create sites with no problem up to this point. But now, when attempting to crate a site they get an error "User can't be found". But if they create a blank site
    I or a blank team workspace. The site creates without incident. Any idea? The permissions appear to be correct but they can't create anything but blank sites without receiving the error. Maybe check permissions to webparts and templates (Do you know where
    I could do that)? 

    Hi,
    Did you mean create site collections in the CA?
    Did the users have admin permission or other permission? You can use the admin account to check whether it works.
    To narrow down the issue, you can use other web application to check whether it works.
    Maybe the web application had been corrupted.
    You can also check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer” in the Search box.
    For SharePoint 2010, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • DRM Hierarchy creation

    Hello,
    I wanted to know how to create DRM hierarchies. I have the DRM document but unable to exactly figure it out.
    Also, what are the key Blender, Import and Export profile settings/configs.
    I understand this is a broad question but I am looking for a few key points. I am especially interested in understanding the creation of DRM hierarchies. Can anyone tell me where I can find the info in the DRM document?
    Thanks.
    - A

    Hi there,
    My advice is to use the 124 paged PDF DRM Workbook guide which has exercises and answers at the bottom of the doc. That will make sure you knw where to find all the buttons you need when working with DRM. But to implement a successfull repository you will need someone who has worked with the software already who will guide you on why you're building things the way you're building them.
    The blender is used to blend new imported hierarchies with the already existing hierachies in your system
    e.g Income Statement (already existing)
    Income statement - updating accounts (new import) then you blend the new one with the old one to make one hierarchy.
    Imports and exports have no settings, you must have a data file with your hierarchies (Parent - Child kind of a structure) in order to run an import. Once you have data in your system then you can perform Exports. Its a straight forward NEXT NEXT NEXT type of a process.
    I hope this helps otherwise feel free to e-mail me @ [email protected]
    deep

  • Export import issue from higher version to lower version

    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.
    Regards,
    Faiz

    mafaiz wrote:
    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.This has nothing to do with APEX. Post on the {forum:id=61} forum.

  • Custom infotype creation issue

    Hi Experts,
    I have a requirement to create a custom infotype based on certain conditions. But there is a problem while saving data in the infotype. The infotype is populated from another infotype automatically through dynamic actions.
    But while saving the data for the first time it happens as per the requirements and data gets saved properly.
    But when the data is saved for the second time for the same pernr , the previous data is over written even though the new record starts with a different begin data.Also i have created the infotype with time constraint '1'.
    can you please let me know if i am missing anything while creating or is this a logic issue .? all the logic has been coded in the flow logic part of the screen.
    also if i dont save the data in the infotype it does not pop up any message like 'data not saved' which usually happens with every infotype. Please clarify me on this as well...
    Thanks,
    Raj Thilak.

    Hi,
    Check the logic how it is updating the custom infotype . I think it is nothing to do with creation of custom info type
    Regards
    Krishna

  • Intercompany PO Creation issue ??

    hii
    While doing Po i getting below error
    " Goods receipt date cannot be in the past "
    How to rectify this ?? and why its occuring ??
    Thanks

    Jürgen L. wrote:
    > compare the goods receipt date with the goods issue date in the delivery. I guess the delivery has a GI date bigger than the date that you use for GR.
    sorry, I thought you get this error when doing goods receipt, but just realized you said at PO creation.
    can you please give the message number,as I cannot find a message like written by you in my SAP.
    (all messages are stored in table T100)
    doubleclick the message or click the question mark next to the message

  • Customer sales return - excise inv creation issue

    Dear expert,
            We are testing the "Customer sales Return" scenario for one of our client. Our process is,
    1. Create sales return order (VA01) with ref or without reference
    2. Create return delivery (VL01N)
    3. Perform Post goods Receipt (VL02N)
    4. Create Credit Note (VF01) - Here in this case we are differ. We are creating the "Credit Note" with reference to return delivery not with ref to sales return order
                   Since we planned to create the credit note with reference to "Return delivery", we have defined the CIN related customizing as "Assign Billing Types to Delivery Types".
               Then we tried to create the excise Invoice using Transaction J1IIN. But we are getting the error message as
                                  Billing document 3134000001 does not exist
                                  Message no. 8I422
    Kindly give your suggestion to overcome this issue.
    Warm Regards,
    Nag

    Dear Experts,
             Thanks for your quick response.
    Yes, already we maintained the billing relevance field in item category maintained as "A" & Copy contorl in VTFL also. Due to this we can able to create the "credit Note" in Transaction VF01. But during excise Invoice creation only we are facing the above mentioned issue.
    Feedback for the response from SDL:-
                     Yes, we came to know that, for customer sales return process we need to raise a JV only not the excise invoice creation in J1IIN. But we are in the assumption that, this scenario is applicable of we are creating the "Credit Note" with reference to return sales order.
                 But in our case, we are creating the "Credit Note" with reference to "Return delivery". Since delivery is involved in the process we are in the assumption that we can able to create the excise invoice using J1IIN after maintaining the configuration in the "Assign Billing Types to Delivery Types" area.
    Please give your valuable feedback on this.
    Warm Regards,
    Nag

  • Company code creation issue

    Hi All,
    When I am creating company code I am getting an error as below.
    "you may not change the currency since documents exist with this currency"
    Above issue is coming while new co code creation or copying of existing co code also.
    Please advice on the above issue.
    Regards,
    Riyaz

    Hi,
    I hope you are creating new company code by copying from the exiting company code. If you copy one company code to another company code then you will get few pop- up message like do you want to use same chart of account or do you want to use same currecny like that. So may be you have selected different currecny. Sap has come up with country template for each country. So you can use country template to create the new company code.
    Thanks & Regards
    R.K

Maybe you are looking for

  • LSMW -Specify files -No logical path specified

    HI, While i specify a file in lsmw in specify files from pc front end in legacy data and i try to save. It says " no logical path specified " in the message bar. kindly help me in this issue. i am unable to go further as I cant specify files. Thank i

  • PLEASE HELP! TRIED RESETING STILL DOESN'T WORK!

    Heyy.. I tied reseting my ipod (pressing menu+middle button) but it still won't turn on at all.. i tied moving the hold button and i tried setting it on a flat surface and reseting it. Nothing worked. I am sure that it ran out of batteries but I don'

  • Phone under wrong name? Email problems?

    Hello, really weird problem with my phone. It's verified to my email and I pay my bill but apple referees to it as "Gareth's iPhone" which is my dad's name? Also picture messages that are meant to be sent to his phone (my dad) are coming through on m

  • Powerbook Titanium 1.0 Ghz - Operating System Options ?

    Hey, question for anybody who can help me in the right direction. I have a Powerbook G4 Titanium 1.0 Ghz that currently has 10.4.11 installed on it. I alos have 1 gig worth of ram installed in it (2x512MB cards). I believe from the research I have do

  • Transfer photo images from laptop

    Hi, I have just bought a 15-inch Powerbook and was wondering what is the easiest way to transfer photos taken on a shoot (and loaded/edited on the Powerbook) onto my G5 iMac. As a keen photographer, I will need to do this regularly. I want to be able