Need help intalling Classic in 10.4

I have an old version of Photoshop and am trying to run in classic mode. When I go to the Apple support page it gives me directions on how to download from my Tiger CD, but guess what - no where on the CD is classic mentioned.
I have the Mac OS X Tiger CD and have upgraded to version 10.4.8. I do not have my previous copy of Panther.
Thanks!

Hi cman7,
first of all: WELCOME TO THE DISCUSSIONS!
The only way to reinstall Classic is from the install CDs that originally came with your computer. Your Mac cannot boot into OS 9 natively, therefore you cannot use retail disks. And the retail version of MacOS X does not contain Classic. Here are the instructions how to do that, depending on the original system version you had:
Using Restore Discs with Mac OS X 10.2 through 10.3.3
Mac OS X 10.4: Restoring applications from a Mac OS X 10.2 Software Restore disc
Using Restore discs with computers that ship with Mac OS X 10.3.4 through 10.3.7
Using Restore discs with computers that ship with Mac OS X 10.3.7 or later
Mac OS X: Reinstalling Mac OS 9 or recovering from a software restore
Mac OS X 10.2, 10.3: How to perform Mac OS 9 clean installation with Restore CDs
If you still cannot find your disks you have to buy a set of hardware specific install disks (regardless from what model since you cannot use them to reinstall MacOS X anyway, you can just use them for Classic) and extract just Classic using Pacifist.
If this answered your question please consider granting some stars: Why reward points?

Similar Messages

  • Need help on classical report

    hi friends i need help on classical reports,
    sold-party,
    material
    sales and distrubitutation channel ,division,
    incoming orders,order number,invoice ,credit,
    i need sub totals and final total of invoice and each customer should display in new page .

    Hi
    Use the Tables KNA1,VBAk,VBAP,VBRK and VBRP and design the report
    see the sample report using KNA1,VBAK and VBAP.
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Reward points for useful Answers
    Regards
    Anji

  • I need help putting Classical Music CDs into iTunes

    I need help - this question has lots of subquestions, sorry.
    I have found just a few discussions that deal with this but I am still confused. Forgive me if I get wordy and misuse technical terms - I am trying to learn this thing...
    I'm an iPod newbie and haven't a clue on the best way to organize my many, many classical CDs that I'd like to put onto my iPod Classic 160G. I'd also like to do this with as little fussing around as possible since there are lots of CDs I've got to deal with.
    If each CD is a separate entry [album?] in the playlist and titled with composer name first [ex Bach, Brandenburg Concertos, Titov conductor] I'll have several playlist entries with the same titles, but different contents. No problem really.
    But, should I separate it further, by having each concerto [say] be a separate entry in the playlist - without having to download the CD again. [I've just practiced on a few CDs but I imagine it being a problem if I had to download each CD several times - once for each work] Does it make sense to leave gaps between movements? [I'm not finding a way to remove gaps, though I have seen that suggested somewhere]
    And when I come to play the pieces, if I start playing a work in a playlist, will the iPod keep going from one movement to the next as it makes its way through the playlist - or will it stop at each movement and wait for me to tell it what to do next?
    Advanced Settings - are these the best? I'll be listening to music on an airplane using noise cancelling headphones and at destination attaching iPod to portable speakers to listen to music in hotel rooms.
    General: Keep iTunes Music folder organized - unchecked? [not sure what this means or does or doesn't do]
    Copy files to iTunes Music folder when adding to library - checked?
    Importing: AAC encoder? High quality -128 kbps?
    Thanks for all your help - I know this is a multiple set of questions and perhaps should have been broken up...
    Mrs H
    Message was edited by: Mrs H to fix typos
    Message was edited by: Mrs H

    Thank you so much for your help. You have sorted out a lot of problems for me. I've tried to go through what you wrote, add some more info and I have asked a few more questions below-
    I re-ripped at 256. I too have the 160GB classic so it's good to know that it will take 10,000 tracks as lossless - now I have to re-rip again! I actually hadn't anticipated using the iPod with anything other than our high quality noise canceling airplane headphones, our cheap, portable travel speakers for hotel rooms and our Cambridge sound speakers for our cabin. It's that last set of speakers that makes me think I should follow you advice and go with lossless.
    QUESTION #1 - When I re-rip and do an automatic sync, will the tracks at 256 automatically be replaced by the bigger lossless ones with the same name or should I delete everything from the iPod and begin anew?
    "I create a playlist for each work, using a systematic naming convention..." What I did on my test was create a playlist for each composer breaking it down - ex- Bach:concertos, Bach:sonatas, etc. I have the Album column highlighted and it appears as if the movements stay together in the correct order. I fear that the task might be too large to create a playlist for each work, though that certainly is appealing.
    QUESTION #2 If the Album column is highlighted and the movements are in the correct order in iTunes in the playlist, will they stay that way in the iPod?
    "I tend to use just surnames for composers for example, or at least "surname, firstname"." I finally found in settings on the iPod the way to change sort by composer to last name, first name. In iTunes, the composer column which is imported from the internet search for info on the CDs gives composer with first name first and I can't find a place in iTunes to reverse this. Typing it or erasing the first name will be a huge chore.
    QUESTION #3 Is there a place in iTunes to change the order of the composers' name in the composer column?
    "For compilations etc I still create one for the whole CD or box set"
    I figured this out on my own before you corroborated my idea - I think I'm getting the hang of this...
    "The option iTunes has to "organise your music" is a good one"
    QUESTION #4 - are you referring to the preferences > advanced check box "Keep iTunes Music Folder Organized" ? If not, what are you referring to?
    "I have my library in its own dedicated disk. Wherever you put it, its important to then never change it or doing anything else with it: leave it for iTunes."
    QUESTION #5 "dedicated disk"? as in hard drive? I have been using SuperDuper to back up my Mac to an external HD; I plan to put a copy of the iTunes folder onto yet another HD where I keep copies of all our photos as well.
    "never change it"? I noticed a misspelling "Haendel" from the on-line CD/track info - no problem in fixing that - right? Since you later say you do change info, what is it you are never changing?
    QUESTION #6 - "Disk N of M capability" - what? Where do I find this option? And when you say "for multiple CD albums, don't include the cd number in the album name." Where? when you put the CD into a playlist entry? or just in the list of music in the album column - do you change the listing?
    ONE FINAL QUESTION - when I turn on the iPod when it's not attached to headphones or speakers, and I'm just looking at the screen to see settings or how the syncing worked, the iPod appears to begin playing something as soon as I turn it on. THIS IS A STUPID QUESTION, but I can't find the answer, how to I get it to stop playing without turning the iPod itself off???
    "I hope that helps a little. " A little?? It helps a lot - and I'll award those points as soon as I get it all resolved.
    Thanks again,
    Mrs H

  • Need help with Classic and OS 9.

    I have searched on this issue and while I found a lot of posts I am still unsure what to do.
    I just purchased some software that says it can be used on OS 8, 9 or X.
    I have a G5 iMac running 10.4.3 and my wife has a G4 iBook running 10.3.9. Neither of us have ever used anything that has needed Classic before.
    When we try to install the software we get a message that says:
    "Classic cannot find a Mac OS 9 system folder on the startup disk to use."
    I am confued that I get this message since the software package says OS X.
    I assume this means that I need to install classic on our machines. Since she has Panther I believe there is Classic on her start-up disks but I have no idea how to use them or where to start. Some of the things I read says that I need to uninstall Panther or Tiger to install Classic.
    For me (using Tiger) I don't think I have Classic on my disks. Can I use her disks to load Classic on my machine? Also, in looking at some Apple documents I found something called Software Restore.dmg that I downloaded to my machine but again, I don't know what to do with it. Does this contain Classic?
    I have an external drive attached to my network via Ethernet and mounted on our desktops. I can't boot from it but can I load Classic onto that drive and just run it like an application?
    Does classic take up a lot of space on the hard drive?
    As you may have guessed, I am not that familiar with how to handle this and would appreciate any and all direction. If I have left out any critical information please let me know and I will post additional info. as needed.
    Thanks.
    David

    Joe:
    Thanks for the prompt reply. In looking at my install Disc 2 I found that I could install the OS 9 package and I got the software to run. Thanks.
    As it turns out, all the software that I purchased did was install a bunch of Word and Excel templates onto my computer via Classic. I don't actually need the application any longer to use these templates going forward so my next question is;
    How do I uninstall OS9 from my computer?
    It appears I have several new folders in my Mac HD in Finder. They are:
    Application (Mac OS9)
    Desktop Folder (this is empty)
    System Folder (the contents are about Classic and Classic Support etc.)
    Would I just drag them to the trash to uninstall OS9? Are there any preference files I should delete?
    Or am I best to just leave this in my system for possible future use? Having recently converted from Windows I am still of the mindset that I need to get off anything I don't really need or use.
    Thanks again,
    David

  • Need help installing classic/OS X (10.4) on PowerMac G4

    I'm hoping someone can help me, my brother bought himself a new computer and gave me his Powermac G4 http://support.apple.com/specs/powermac/PowerMac_G4_Quicksilver2002.html the M8666LL/A model. Now this computer is a mess so I want to completely reformat the drive and install what I need.
    Here's my problem, he cannot find his original disk that came with the computer. I want to install OS X and also have Classic run, I need classic for all the games my kids have that only run with OS 9.
    Where should I start, I would like to have 10.4 on, can I install 10.4 and classic with retail copies. This is what I have:
    Mac OS X v10.1 Retail (Mac OS 9.2 CD included)
    Mac OS X v10.2 Retail
    Mac OS X v10.3 Retail
    Mac OS X v10.4 Retail
    Any help would be greatly appreciated.

    Sorry, got real busy with work I have not had the chance to follow up. I will be trying this over the weekend, so lets see if I got this right.
    Boot from the 10.4 Retail disc, reformat the drive, install 10.4 and then I assume I have to boot from the 9.2 disc to install OS 9 and after when I reboot into 10.4 classicc should work?

  • I need help in classical report

    Dear all,
              I want develop a classical report which provides custom format for reporting and audit the chromatography results based on the selection criteria specified for inspection   lot number, material number, batch and etc.. 
               Please can any one help me to develop this report.
    Thanks & regards,
    sujith
    Moderator message : Spec dumping not allowed. Thread locked.
    Edited by: Vinod Kumar on Aug 10, 2011 1:47 PM

    My question is in the output.It suppose to be printed as a list but it just gave me one line , i mean how can i loop it .
    i tried loop at <table> into <s.table> but it is not coming because the l y_ count is local.
    Thanks.

  • Need expert help - iPod Classics will not play recently downloaded songs

    Sparknotes version of this question, so you don't need waste your time if you aren't interested:
    -iPod Classic skipping over songs
    -problem with iTunes transferring the files
    -need help ASAP, we DJ with these iPods most weekends
    Multiple iPod Classics are skipping over songs and will not play them.  This is a recent issue and these ipods are not new - we have been using them for several years now.  The playlist and the Macbook from which the playlist came are also not new.  The playlist copies onto the ipod so that i can see it on the device, but after unplugging the ipod and trying to play a song the screen just gets stuck for a few seconds, with the play symbol showing in the toolbar, but then skips to another song until it can find a song it can play. 
    After some investigating i found that my itunes must not be properly copying the playlist - it shows up on the ipod, but when i view the ipod contents in itunes, that playlist is not there.  Upon a second attempt at copying the playlist to one ipod, i found that all files still show up in the song list, some files are now playable, but not all.  My husband and I are DJs and one can understand that this is quite a predicament, when all of our ipods suddenly only play certain songs.
    Restarting the ipod does not solve issue.  Again this is an issue with multiple iPods, so i am thinking that maybe it is an iTunes problem but i don't know where to begin trying to fix it.  One thing i did notice was that when i plugged the ipods, iTunes sat in the "verifying iPod" stage for quite a while.  I found some past forums that touched on this but it seems to usually be connected to updating the version of iTunes, and i have the most current version (10.6.3).  This playlist was made years ago and the files should not be corrupt, at least they have worked fine in the past.

    I find this concept worth considering. http://en.wikipedia.org/wiki/Bathtub_curve
    The one year limited warranty ought to see you through "early failures". I have a sneaky suspicion that extended warranties are intented to cover "random failures" before "wear out" failure becomes likely which is why such cover is often limited to 3 years, the period when it is least likely to be needed.
    In your case, assuming there is no obvious physical cause that has been overlooked, it would seem to be a random failure in years 2/3. Not common, but they will happen to someone.
    tt2

  • I POD classic won't turn on, won't sync, screen is black. Need help getting it to work again.

    Need help getting I Pod Classic to turn on and run, I Tunes shows error 1601.

    Troubleshooting: My computer won't turn on
    BTW, this is the Mac Pro desktop forum

  • Need help on playing videos on 80 Gb I Pod Classic

    Hi,
    I need help!!!!!!!!!!!
    My I Pod Classic 80 GB jus wont play any video files.
    I have set it to manually sync songs and videos using iTunes.
    I dont have a problem with any of the music files.
    The video files just would'nt play.
    The video files are in the .mov format and play both in my quick time player and in i tunes.
    However, when I try to add the videos to the iPod, it displays the following error message
    "MC_1 was not copied to the iPod 'ar iPod' because it cannot be played on this iPod"
    This ipod is new and since i brought it it this is the first time am adding videos to the iPod.
    Any suggestions?
    P.S. I have also tried automatic sync from itunes and also reset iPod to the factory settings.
    Message was edited by: ar_08

    Hi Ar_08. It is probably a problem with video format. Make sure you are using a compatable format. What extension does the filehave on it. Check this link - http://support.apple.com/specs/ipod/iPod_classic.html . It will give you information about video and audio format. Good luck.

  • Need Help ASAP!! with iPod Classic 80GB

    This is my first apple product and it is not giving a good impression. I need help eargently!
    I Sync 2969 songs onto my ipod for first time 2 days ago using latest Itunes it worked great and i was happy just my ipod didnt have all the album art, so the next day i plugged it in and put all the album art to the correct albums which went fine, then i wanted to add another album. I clicked sync to update the library on my ipod and it started transfering at a sluggish speed simular to this 1....2....3....4....5....6 etc it eventually got to 196 out of 1248 and stopped and 2 mins later itunes crashed. so the only way i could remove my ipod was to pull it out without ejecting it i then tried to look for the songs and what do you know it said on my Ipod 0 Music..... I was gob smacked i put it back in, in hope for it to sync again but ever since then it continues to do that, but i can manually transfer max 4 albums by drag and drop, at a time before itunes crashes. I am seriously going to throw it in the bin soon if i cant get it working and i will never ever buy an apple product again, i love the idea of the iPod but there to faffy! compared to a standard MP3 player..
    PLEASE HELP ME i have tried restoring it many times, ive tried resetting it holding menu button and select button. and i have also tried another way were you restard the ipod and during the apple logo you quickly hold play which formats it..
    please help me!! apples help lines are useless!

    You do understand that this is a user-to-user forum? That we're all volunteers? And this is a weekend? You may need to be a bit more patient.
    If I had an answer I would be happy to try to help. When you say you've tried "restoring" it, do you mean that you've hooked it up to your computer and pressed the "Restore" button in iTunes? If not, that's the next thing you should try.
    I know you've tried a few things but it wouldn't hurt to go through the standard trouble shooting steps:
    http://www.apple.com/support/ipod/five_rs/
    Best of luck.

  • Need help with Nokia 6120 Classic

    Hi Everybody,
    I need help on how to delete or hide the detailed log on the phone. I can delete numbers from the recent calls list such as received, dialled and missed calls but the number still will appear on the detailed log. The only option I have on the detailed is to clear all logs which means all the numbers will be deleted.
    I need help either to delete certain numbers from detailed log or how to hide it.
    Hope to get some ideas.
    Appreciate the response

    cant be hidden unfortunatly only way for people that are no phone savy is delete call register if your worried about somebody going so far through your phone
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Need help with Desktop Office Integration (DOI)

    Hi all,
    i need help to read an Excelsheet into an int. table.
    Its the first time, that i use the SAP DOI. I copy different coding into my Report to get connection to an existing Excelsheet.
    Here is my Coding:
    * first get the SAP DOI i_oi_container_control interface
      CALL METHOD c_oi_container_control_creator=>get_container_control
                        IMPORTING control = gr_control
                                  error   = gr_errors.
      APPEND gr_errors.
    * create a control container as defined in dynpro 100
      CREATE OBJECT gr_container
                EXPORTING container_name = 'CONTAINER'.
    * initialize the SAP DOI Container, tell it to run in the container
    * specified above and tell it to run Excel in-place
      CALL METHOD gr_control->init_control
        EXPORTING
          r3_application_name      =    'Data'
          inplace_enabled          = ' '
          inplace_scroll_documents = 'X'
          parent                   = gr_container
          register_on_close_event  = 'X'
          register_on_custom_event = 'X'
          no_flush                 = 'X'
        IMPORTING
          error                    = gr_errors.
    * save error object in collection
      APPEND gr_errors.
    * ask the SAP DOI container for a i_oi_document_proxy for Excel
      CALL METHOD gr_control->get_document_proxy
                           EXPORTING document_type = 'Excel.Sheet'
    *                       EXPORTING document_type = 'Word.Document'
                                    no_flush = 'X'
    *                                REGISTER_CONTAINER = 'X'
                          IMPORTING document_proxy = gr_document
                                    error          = gr_errors.
      APPEND gr_errors.
    Then i open the Document from lokal PC.
    CALL METHOD gr_document->open_document
          EXPORTING
    *      document_title   = ld_filenc
            document_url     = ld_verzc
    *      NO_FLUSH         = ' '
    *      OPEN_INPLACE     = ' '
    *      open_readonly    = ' '
    *      PROTECT_DOCUMENT = ' '
    *      STARTUP_MACRO    = ''
    *      USER_INFO        =
    *      ONSAVE_MACRO     =
          IMPORTING
            error            = gr_errors
    *      RETCODE          =
      APPEND gr_errors.
    Now i start the spreadsheet interface:
    *...check if our document proxy can serve a spreadsheet interface  data:
      DATA: pd_has TYPE i.
      CALL METHOD gr_document->has_spreadsheet_interface
                        EXPORTING no_flush = 'X'
                        IMPORTING is_available = pd_has
                                  error = gr_errors.
      APPEND gr_errors.
      CALL METHOD gr_document->get_spreadsheet_interface
                        EXPORTING no_flush = ' '
                        IMPORTING
                                  sheet_interface = gr_spreadsheet
                                  error = gr_errors.
      APPEND gr_errors.
    * now loop through error collection because
    * Get_spreadsheet_interface flushed and synchronized
    * the automation queue !
      LOOP AT gr_errors.
        CALL METHOD gr_errors->raise_message
                        EXPORTING  type     = 'I'
                        EXCEPTIONS message_raised = 1
                                   OTHERS         = 2.
        IF sy-subrc = 1.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          pd_kz_fehler = 'X'.
          EXIT.
        ENDIF.
      ENDLOOP.
      FREE gr_errors.
    Ok, now i can open a Excelsheet, and i can mark a range in the sheet
    rows is a constant.
    CALL METHOD gr_spreadsheet->set_selection
          EXPORTING
            left     = 1
            top      = 2
            rows     = rows
            columns  = 18
    *    NO_FLUSH = ' '
    *    UPDATING = -1
        IMPORTING
          error    = gr_errors
    *    RETCODE  =
    my first problem: Excel is really open, and the user can see the sheet. I dont want, that excel is visible...is there a way to start excel in no_visible mode?
    second problem: The sheet have makro aktiv...at start from excel, there is a popup, which ask 'makros activate' oder not activate...  i dont want this popup... is there a way, to say it from abap, that makros always active?
    third problem: i see, that the content Table have this components:
    TYPES: BEGIN OF SOI_GENERIC_ITEM,
             ROW(4) TYPE C,
             COLUMN(4) TYPE C,
             VALUE(256) TYPE C,
           END OF SOI_GENERIC_ITEM.
    But my excelsheet have more then 10000 lines....
    forth (and biggest) problem: i need the selected data into an int. tabelle. The table have the components:
    ROW
    COL
    VALUE
    i dont know, how can i do this...
    please help me
    Sorry for my bad english.
    Greetings
    Markus

    Hi,
    May be this link is useful
    /people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework
    Also Check out report SAPRDEMOEXCELINTEGRATION2.
    check the links
    http://www.esnips.com/doc/741a848e-f49a-4436-bec4-e21950f6c94c/desktop-office-integration.pdf
    http://www.esnips.com/doc/2080a9ec-64f9-49c4-bd03-d9f56bc2437c/MSWord--Excel-with-ABAP.pdf
    Regards,
    Raj.

  • TS3694 I need help to fix error message -69

    I am having problem with syncing my ipod classic (160gb). I have this error message -69, that I need help with. I have already restored my ipod, but cannot add my anything (audiobooks-my music) to my ipod.

    see if you have any friend have a Mac computer, do a restore there before syncing with your PC

  • IPhoto got videos my phone doesn't and that i need. when i synchronize my photos including videos they are still not getting on my phone. i need help...

    iPhoto got videos my phone doesn't and that i need. when i synchronize my photos including videos they are still not getting on my phone. i need help...

    You aren't running iOS if you are using iPhoto, or a Classic operating system.  Go to Apple menu -> About This Mac and find out what you really are running, and then use this link to post in the right place:
    http://discussions.apple.com/docs/DOC-2463

  • Help with Classic OS

    I had my computer taken in for some repairs, and when they installed my OS back on using my G5 install discs, I am thinking they didn't install the Classic driver. Is there a way for me to just install OS 9 onto my computer without having to do the complete install?
    I have a few games I had with my Performa from back in the day, and I need 9 or classic so my son can play them.
    Any help? Thanks,
    Jordan

    I popped in disc 2, and it shows 'installing Mac OS X
    and applications'
    'installing mac os 9 for classic support'
    This is the OS 9 operating system.
    'install mac os 9 system support'
    This is the part of OSX needed to use OS 9 as Classic.
    That just seems like support. Or is that the OS?
    I don't see an extras folder. Or do i have to boot up
    from the disc?
    Don't boot from the disk. You install it from OSX.

Maybe you are looking for

  • Need to save the image saved in the System Clipboard in using JDK 1.3.1

    Does anyone know how to use JDK 1.3.1 to take an image saved in the System clipboard and save it to a file using the JPG format? I know how it is done in JDK 1.4 using the following code. Unfortunately, the same code does not recognize the image in t

  • Access Denied Using REST in SharePoint 2013 and InfoPath 2013 environment

    So here is the story. I developed a simple application in InfoPath 2013 (saving as InfoPath 2010) and published to a SharePoint 2010 server.  A major component to my form is the use of REST to query a SharePoint list. Everything works fine and dandy

  • ICloud emails disappear

    I deleted my emails and when I went into trash they'd disappeared

  • Cloning DB to single instance ASM issue 11.2.0.3

    Hi All, Having trouble cloning a DB via OEM to a new server I just built up which utilizes a single instance ASM. Creating a new DB via dbca onto ASM works no problems. When doing the clone it fails on the source server during the duplicate database

  • HT5766 problems with download

    Im trying to install a newer version of itunes onto my computer, Ive tried 10.6.3 and 11.0.3 and it keeps giving me and error code 2749 I think ad will not finish the downloa