Problem with obsolete sentence.

Hi.
I have applied extended verify code to my program. Into Obsolete Sentences, show me a sentence as obsolete:
form recupera_concepto tables it_in_par structure itcsy
                       it_out_par structure itcsy.
Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary
types, not "LIKE" or "STRUCTURE".
If I modify my code like this:
form recupera_concepto tables it_in_par type standar table itcsy
                       it_out_par type standar table itcsy.
Show me an error: "itcsy" has already been declared.
What can I do to solve this problem?. If I use first code, program works fine, but exist an error with extended verify code.
Any suggestion will be welcome.
Thanks a lot, regards.

Hi Jorge.
The problem is on TABLES alternative of command FORM. You can still use this form. If you want you can try the following:
FORM routine USING it_table_in TYPE TABLE.
*- here you define a wa of the type of it_table
DATA: wa_line TYPE ty_table.
*- here you process internal table as usual
LOOP AT it_table_in INTO wa_line.
ENDLOOP.
ENDFORM.
Do not forget close your posts.
Regards.
Rafael Rojas.

Similar Messages

  • Problems with import sentences

    I have this project which is composed by 5 packages. I use Eclipse to do my coding and testing, so I have ran the program before, and I'm pretty sure the package/directory structure is fine.
    Now the problem I have is when I'm trying to compile the program from the command prompt using "javac.exe". All packages have import sentences, either to one of my other packages or to some third party libraries, and I can't find the way to make the compiler find all the classes. It gives me this message "package packagename doesn't exists".
    I'm using this command "C:\...\src\java>javac -classpath directory1;directory2;directory3;directory4;../lib/somelibrary1;../lib/somelibrary2;../lib/somelibrary3 directory\*.java
    * The directory-n have .java files inside, and the ../lib/somelibrary1 have .jar files
    What am I doing wrong? I hoped I made myself clear, I think that's a little confusing but I don't know how to express myself better. I'll really appretiate some help.

    I'm on another computer and I don't have Ecplise here, that's the reason why I'm doing this. Besides, it's a good excuse to learn a thing or two about .CLASSPATH
    I'm trying this
    javac -classpath ..\..\lib\lib1.jar;..\..\lib\lib2.jar;..\..\lib\lib3.jar;..\..\lib\lib4.jar dir1\dir2\*.javaLocated in the directory inmediately on top of dir1
    The import senteces are like this:
    import dir1.dir2.dir4.SomeClass
    import dir1.dir2.dir3.SomeClass
    Still doesn't work. What do you mean by top level directory?

  • Help!! problems with "if sentences"

    I have a <c:if test="${!empty UCD346 } "> sentences, but I having problems to handle just take a look to the code below
    <c:if test="${!empty  UCD346 } ">
    <c:set var="ScanedBarcode" value="${'Barcode has been Scaned'}" scope="application" />
                                </c:if>    I don't know what happen, just this validation never get in to set my variable ="ScanedBarcode"
    Probably there is sintaxis erro...
    Message was edited by:
    RIMA33

    Try this
    <c:if test="${UCD346 ne '')}">
    <c:set var="ScanedBarcode" value="${'Barcode has been Scaned'}" scope="application" />
    </c:if>assuming UCD346 is some String object and is in the page scope.
    jag

  • Problems with the las version of jre 1.6.0_11

    Hi
    I have an applet developed in java 5 years ago. Every year we have run it without big deals since this time.
    The applet works without problems if it's running in a computer with jre 1.6.0_7 but if the computer has the jre 1.6.0_11 it doesn't work.
    These last days I have tried to debug it and find the problem.
    The error that take me is:
    java.lang.SecurityException
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkConnect(Unknown Source)
         at sun.plugin2.applet.Applet2SecurityManager.checkConnect(Unknown Source)
         at sun.awt.image.URLImageSource.checkSecurity(Unknown Source)
         at sun.awt.image.InputStreamImageSource.addConsumer(Unknown Source)
         at sun.awt.image.InputStreamImageSource.startProduction(Unknown Source)
         at java.awt.image.FilteredImageSource.startProduction(Unknown Source)
         at java.awt.image.FilteredImageSource.startProduction(Unknown Source)
         at sun.awt.image.ImageRepresentation.startProduction(Unknown Source)
         at sun.awt.image.ImageRepresentation.prepare(Unknown Source)
         at sun.awt.SunToolkit.prepareImage(Unknown Source)
         at java.awt.Component.prepareImage(Unknown Source)
         at java.awt.ImageMediaEntry.startLoad(Unknown Source)
         at java.awt.MediaEntry.getStatus(Unknown Source)
         at java.awt.ImageMediaEntry.getStatus(Unknown Source)
         at java.awt.MediaTracker.statusID(Unknown Source)
         at java.awt.MediaTracker.waitForID(Unknown Source)
         at javax.swing.ImageIcon.loadImage(Unknown Source)
         at javax.swing.ImageIcon.setImage(Unknown Source)
         at ImagePanel.OmpleImagePanel(ImagePanel.java:258)
         at AppletArbol.init(AppletArbol.java:167)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepcin: java.lang.SecurityException
    The reference to the classe Imagepanel.java line 258 has: icones[c].setImage(imatgesR[c]);
    where icones is an array of ImageIcon: in the previous code it has :
    ImageIcon [] icones;
    and the magic sentence:
    for(int c=0;c<=icono.size()/*-1*/;c++){                         
                   icones[c]= new ImageIcon();
                   icones[c].setImage(imatgesR[c]);                         
    And imatgesR is an array of Image
    Image [] imatgesR;
    What is trying to do the program is convert an array of Image to an array of ImageIcon which will be insert in a JLabel.
    What's the problem with this sentence now?? There is some other way to do the same??
    I've tried to convert all the array in Vectors and the problem persist, the setImage doesn't work!!
    Thanks

    I'm experiencing a similar problem with an applet programmed (not by me) between 2004 and 2006. The applet works during testing with all JRE versions before 1.6.0_11 but fails with 6.0_11 and 6.0_12, at least on my machine w/ Win XP. (But the error does not occur for the developer when using Scientific Linux.) The error thrown is:
    INFO           Trying server: 9877
    java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:9877 connect,resolve)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at sun.plugin2.applet.Applet2SecurityManager.checkConnect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at client.ServerConnection.<init>(Unknown Source)
    at client.ExperimentClient.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:9877 connect,resolve
    Attempting to use a different port--6789 instead of 9877--results in the same error.
    Thanks in advance to anyone who can help! -svs

  • Friends,  i  have a problem with safari . Whenever i am typing in the safari main bar , so in the halfway through the typing my sentence/words are shifting to another main google search and in the end i have to type again in google

    Friends, 
    i  have a problem with safari . Whenever i am typing in the safari main bar , so in the halfway through the typing my sentence/words are shifting to another main google search and in the end i have to type again in google. I have attached a sample screenshot of the safari problem which i am facing. In this particular example i wanted to write Print Screen, however halfway,my typing automatically shifted to google bar?? can you guys help me.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Upgraded to iOS 6 and now I can't open anything in the kindle app? I have to say that I have had my ipad3 for 6 months and intensely dislike the problems with using it. Also is there any way of opening more than one screen as it is hopeless otherwise?

    I Have had my iPad for 6 months as I cannot access my work emails using windows. I have to say that it is the most unhelpful device I have ever used and although it looks like there isn't an answer for some of the questions I have asked below, I thought I would try!
    1) I have upgraded to ios6 and the kindle app will open but crashes and disappears when I try to access a book?
    2) is there any way I can open more than one page at a time, as opening one at a time is hopeless?
    3) Is there any way you can replicate the right click function on word? As pasting and copying on the iPad is irritating to say the least!
    4) why can't my Samsung 11 phone connect to my iPad via Bluetooth? A they can't seem to 'see' each other? I may have turned a setting off when I was recently abroad and didn't want huge roaming charges.
    5) Why do the submit buttons on some websites not work and how can I get them to? I never have a problem with windows, but it is often a problem with the iPad.
    6) I have several websites which I have built and usually upgrade on the windows desktop, usually through Internet explorer, but I can't access the sites properly on the iPad (I can see them but can't alter them) and when sending emails through the websites they won't show the page and I can't navigate the page (the size of the email page is bigger than the iPad screen, but I can't either shrink the page to size or move the page around as you normally would on the pad, any ideas?
    7) finally, when roaming abroad recently, I had no problems using the wifi, but when trying to use the cellular data (using the roaming function) I could not get it to work? The ipad seemed to be connected to the network with no problems, but wouldn't actually update the emails? I tried turning it on and off, but that didn't make a difference. My kindle and mobile phone (both also on 3G ) worked great, it was just (as usual) the ipad playing up.
    8) when wanting to alter part of a sentence, I can't always get the cursor in the right place? Sometimes it is simple the wrong line, but often it will only go at the end or start of a word and not where I want it. Is there any way of making it more exact? Again I never have a problem with moving the cursor on windows, either by mouse or on the touch screen function on windows 7. Any ideas? As after pressing the screen multiple times I just want to throw it out of the window!
    IT might just be that I don't have the correct settings (I am a technophobe) but I absolutely hate the iPad and only have it for work emails, it is so annoying that I can get my mobile phone and kindle3g to work fine, but always have problems with the iPad. I am sure it could be good (and for reading emails on the go in the uk it is great, as I like the key board) but it just seems to make everything else difficult.
    i Hope you can help and sorry for asking questions others have, but I am just hoping that something new might have been developed!
    thanks,
    K
    Message was edited by: K Paton

    1) I have upgraded to ios6 and the kindle app will open but crashes and disappears when I try to access a book?
    Try rebooting your iPad, that should fix he issue. I that doesn't work, delete the app and re-download it.  The Kindle books should all be in he Kindle cloud services and you can get them again. I have an iPad2 w/ Kindle app and it works just fine - no issues.
    2) is there any way I can open more than one page at a time, as opening one at a time is hopeless?
    Page as in a kindle book way? turn iPad to landscape position from portrait position. If, however, you mean open more than one application at a time, then no. And not hopeless, as it takes a bit of time to get used to, going from a desktop/laptop format to tablet format.
    3) Is there any way you can replicate the right click function on word? As pasting and copying on the iPad is irritating to say the least!
    It's actually fairly easy. Press down on the word, then you can expand by drawing your finger to cover word/sentence/paragraph/page, hit select or select all then it gives you the option to cut, copy, paste, define. If you want to use a word processing app on the iPad, Pages is a good application.
    4) why can't my Samsung 11 phone connect to my iPad via Bluetooth? A they can't seem to 'see' each other? I may have turned a setting off when I was recently abroad and didn't want huge roaming charges.
    It's the connection on your phone. Samsung Galaxy SII? Android software?  What you have to do is go to the phone's settings and connect via wireless, not Bluetooth. Go to System Settings (on phone) and under Wireless and Networks click 'more' and go to the Tethering and Portable Hotspot option. Set up your mobile wifi hotspot,  name it though it will probably come up with 'AndroidAP', choose a WPA2 security level and put in a password. Go back to previous screen and turn on 'Portable Wi-Fi Hotspot' box. Then on your iPad in the Settings - Wi-Fi section, it should then recognize your phone for tethering. If it's a Windows Phone 7,  I don't know the layout of that software, but presumeably similar.
    5) Why do the submit buttons on some websites not work and how can I get them to? I never have a problem with windows, but it is often a problem with the iPad.
    Sometimes the issue is with the website design, not all websites are optimized for mobile devices - not just iPad but also Android devices. It happens. They're getting there, but occasionally the page might need a refresh.
    6) I have several websites which I have built and usually upgrade on the windows desktop, usually through Internet explorer, but I can't access the sites properly on the iPad (I can see them but can't alter them) and when sending emails through the websites they won't show the page and I can't navigate the page (the size of the email page is bigger than the iPad screen, but I can't either shrink the page to size or move the page around as you normally would on the pad, any ideas?
    It depends on what you use to build the websites on the computer. Recommend a free program on the computer called CoffeeCup Free HTML Editor. I don't recommend using IE period; Firefox or Chrome are my choices on Windows machines. I have two websites that I manage, both using this program. I'm assuming that when you mean you can't access the sites on the iPad you mean to update them? Ostensible there are apps to let you do this. What format are the sites? Without seeing what exactly you mean and what you want to do, it's hard to explain.
    As for seeing full page while emailing within a site, turn iPad to portrait mode, and try to finger-pinch touch the screen to see if that will bring the fuller page  into view. Other option is opening a second tab with same website and just go between tabs to reference material.
    7) finally, when roaming abroad recently, I had no problems using the wifi, but when trying to use the cellular data (using the roaming function) I could not get it to work? The ipad seemed to be connected to the network with no problems, but wouldn't actually update the emails? I tried turning it on and off, but that didn't make a difference. My kindle and mobile phone (both also on 3G ) worked great, it was just (as usual) the ipad playing up.
    If you were outside the US or Canada, my guess is the problem lies within the SIM card in your iPad. If you were outside North America, there are different band levels - I'm guessing you have a SIM thats locked to a particular provider. Band level frequencies differ per country/continent, so a SIM card that will work in Canada/US will not likely work in UK/Europe/Asia/Australia, etc. you will be able to get your emails again when back on a wifi network. Mobile phone may have a different type SIM card (GSM/HSPA) from your iPad SIM. Also, check your email settings.
    8) when wanting to alter part of a sentence, I can't always get the cursor in the right place? Sometimes it is simple the wrong line, but often it will only go at the end or start of a word and not where I want it. Is there any way of making it more exact? Again I never have a problem with moving the cursor on windows, either by mouse or on the touch screen function on windows 7. Any ideas? As after pressing the screen multiple times I just want to throw it out of the window!
    Moving the cursor on a sentence is a matter of putting your finger on the screen where you want it. It's exceptionally easy to do. I'm using the Notes app to write this whole segment and I just need to put my finger where I want to change things and presto it's ready for me to change where I want it.
    Here's a solution: sell your iPad (after you wipe your data off it) to someone who will appreciate it, and put your money towards the Windows Surface Tablet out later this year/early next year, where you can (reportedly) connect a mouse to it. It will have some of the Windows 7/8 functionality that you're more familiar with, or get a netbook.
    - Ceridwyn2

  • Problems with Photoshop CS2 I originally purchased this software several years ago. At time I was running Microsoft Windows XP. This computer recently was replaced with  a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few

    Problems with Photoshop CS2
    I originally purchased this software several years ago. At time I was running Microsoft Windows XP.
    This computer recently was replaced with a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few exceptions as follows;
    when the software comes up initially I get a message that says “could not complete your request because of program error”. Hitting OK allows me to continue using the software .
    When I try to activate a function using CTLR or ALT keys I get this message “required application failed to load and the product cannot continue. Please reinstall the application”. This causes the application to abort.
    Reloading my CS2 continues to generate the same messages when I depress the CTLR or ALT keys.

    Your original copy is obsolete and Adobe is offering a free replacement you are entitled to. Download and use that and that should clear it up for you.
    https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Download this copy of CS2 and use the serial number provided next to the download link.

  • Problems with text in iWeb publishing much larger, or smaller than in iWeb (it is insane)!

    More than a year ago I had a problem with my iWeb not publishing correctly: links to other websites would not open in a separate window as designed in iWeb. I got help from an AppleCare techie and after he did a lot of tests, he concluded I had a corrupted Domain file (which became apparent after I upgraded to OS Snow Leopard).  I don't remember if I discussed with this techie another problem I had been having for as long as I had used iWeb, and that was "exploding" text: certain words, often italicized, would be huge, after publishing, relative to the surrounding text.  Sometimes certain words, or sentences would be smaller than designed in iWeb.  Through trial and error I would sort of solve these problems by enlarging text boxes, or making the offending word or phrase one text point smaller.  Sometimes deleting the text box entirely, and starting over would work.  And then there are the weird things that happen when my wife opens my website in Internet Explorer: things that make no sense and seem to be totally out of my control.
    So, I've spent a long time rebuilding my website in this supposedly uncorrupted Domain file, and today I finally finished and published to my hard drive, checked it out, and the "exploding" text is there with a vengeance.  So much so that I may just stick with my original ("corrupted") Domain file, the text problem on this new one seems even worse than the old one.  Anyone had this problem?  I meant to ask this question years ago, but got a bit lazy.
    Another question is: I've heard Apple is going to discontinue iWeb.  Despite my problems with the program, I rely on it.  What are the options going to be for iWeb users?

    Well you heard wrong didn't you!
    Apple is discontinuing MobileMe, which is the hosting in favour of iCloud services which will not contain any hosting.
    iWeb is an app and as far as we know you can still continue to use it - it will still work so carry on using it if you are happy with it.
    If you want to look at other alternatives to iWeb, then others suggest RapidWeaver and Sandvox as being closer to iWeb - both are available via the Mac App store.
    Also Freeway Express and Flux 3 are worth looking at - more design freedom and you are not restricted to templates as with RapidWeaver.

  • Problem with textboxes in Flash CS5

    Hi, I am currently a Flash CS4 user and am trying Flash CS5 currently to see if it is worth it to pay for the upgrade. I currently have a problem with the use of textboxes in CS5 comparing with the previous version. When I try to change the texts of a text box using the following command in actionscript:
    showlmytext.text = "My string: " +String(somevariable);
    I would get weird misaligned text outputted in my textbox, which exact same code did not cause this problem on Flash CS4.
    Can somebody please tell me what is the problem and how can I fix it?
    Thanks

    Hi Mario,
    I hope you are well. My name is Sandi Langlotz.
    At my job at greenidea.com, here in SF; I am having difficulty with using Hebrew in the trial download of CS5 Flash. Russ Mumford my boss has also contacted you regarding our problem.
    Flash has a new TLF (Text Layout Format tool).  My difficulty has to do with text boxes that are formatted for Right to Left text, with Hebrew selected as the Locale. We are pasting from Microsoft Word.
    I hope  that you may have a suggestion, a referral  or a possible work around for me to try.
    I have tried Adobe Customer Service several times to no avail.
    Problem 1.
    The first sentence below, (in blue) is correct format for Hebrew. Hebrew reads from R to Left.
    When I paste the Hebrew text into the Flash animation, one of two things can happen;
    the punctuation is cut off of the left side completely; or it is pasted in to the Right side of the Text box, (at the wrong end of the sentence). 
    I have tried to click the cursor into the left in order to insert the punctuation mark; this works sometimes but often I am unable to click in to manually correct the problem. I don't understand why it is cutting it off, or why I am sometimes unable to click into the left side and insert the punctuation.
    Problem 2
    In the second paste (the 2nd bold sentence),  .CSO on the left side of the sentence is correct, as is the rest of the sentence.
    When I paste the text  into Flash from Word, Flash puts it in as reversed order. the word CSO. has the punctuation switched to the right (CSO.)  Flash reverses the order of the other characters in the sentence also (like in the 2nd black sentence).
    שולחן נקי הוא שולחן מאובטח.
    שולחן נקי הוא שולחן מאובטח
    מבוסס על רעיון ממגזיןCSO .
    .CSOןיזגממ ןויער לע ססובמ
    Adobe says it supports Right to Left text, but I can find no info on these two buggy problems. Do you have any idea what is wrong?
    Thank you ahead of time for any info or referrals you may suggest.
    Sandi Langlotz
    שולחן נקי הוא שולחן מאובטח.
    שולחן נקי הוא שולחן מאובטח
    מבוסס על רעיון ממגזיןCSO .
    .CSOןיזגממ ןויער לע ססובמ

  • Problem with SUBMIT report [ WITH SELECTION-TABLE ] or [ IN range ]

    Hello Everybody,
    I am trying to call transaction F.80 for mass reversal of FI documents by using SUBMIT sentence and its parameters like this:
      LOOP AT i_zfi013 INTO wa_zfi013.
        PERFORM llena_params USING 'BR_BELNR' 'S' 'I' 'EQ' wa_zfi013-num_doc ''.
    range_line-sign   = 'I'.
    range_line-option = 'EQ'.
    range_line-low    = wa_zfi013-num_doc.
    APPEND range_line TO range_tab.
    endloop.
    Line: -
          SUBMIT sapf080
            WITH br_bukrs-low = p_bukrs
            WITH SELECTION-TABLE it_params  [ same  problem with -  WITH BR_BELNR IN range_tab]
            WITH br_gjahr-low = p_an1
            WITH stogrd = '05'
            WITH testlauf = ''
            AND RETURN.
    My problem is that  when the report is executed the BR_BELNR only delete one document of the all the inputs in the selection criteria from the loop. if I add the statement [ VIA SELECTION-SCREEN] in the SUBMIT if open the multiple selection criteria in the screen I can check that all the documents are set in it from the ABAP code in the loop from it I just need to push F8 to copy them and run the program processing all the documents normally .
    Can some one help me with this? is there a way to execute the transaction BY the SUBMIT with the multiple selection criteria for the Document Number working well?
    Thank for you time and help.

    This is my code:
      TYPES: BEGIN OF T_ZFI013,
              BUKRS     TYPE BUKRS,
              GJAHR     TYPE GJAHR,
              MONAT     TYPE MONAT,
              ANLN1     TYPE ANLN1,
              ANLN2     TYPE ANLN2,
              NUM_DOC     TYPE BELNR_D,
              DATE     TYPE DATUM,
              TIME  TYPE UZEIT,
              USER     TYPE SYUNAME,
             END OF T_ZFI013.
       DATA: I_ZFI013  TYPE STANDARD TABLE OF T_ZFI013,
             WA_ZFI013 TYPE T_ZFI013,
      DATA: br_belnr       TYPE BELNR_D,
            rspar_tab  TYPE TABLE OF rsparams,
            rspar_line LIKE LINE OF rspar_tab,
            range_tab  LIKE RANGE OF br_belnr,
            range_line LIKE LINE OF range_tab."range_tab.
      LOOP AT i_zfi013 INTO wa_zfi013.
        range_line-sign   = 'I'.
        range_line-option = 'EQ'.
        range_line-low    = wa_zfi013-num_doc.
        APPEND range_line TO range_tab.
      ENDLOOP.
      SUBMIT sapf080
        WITH br_bukrs-low = p_bukrs
        WITH br_belnr IN range_tab
        WITH br_gjahr-low = p_an1
        WITH stogrd = '05'
        WITH testlauf = ''.
    This is the RANGE_TAB table before submit:
    1     I     EQ     1001xxxxxx
    2     I     EQ     1002xxxxxx
    3     I     EQ     1003xxxxxx
    4     I     EQ     1004xxxxxx
    5     I     EQ     1005xxxxxx
    6     I     EQ     1006xxxxxx
    7     I     EQ     1007xxxxxx
    8     I     EQ     1008xxxxxx
    I think this wont work for some reason so I will start to do this by a BDC.
    Many thanks for your help.

  • HT4644 I'm experiencing a similar problem with an LG Flatron monitor which my MBP no longer recognizes  I've tried installing the updates listed above but have not been succesful. Everytime I get a message saying that this software is not supported on my

    I'm experiencing a similar problem with an LG Flatron monitor which my MBP no longer recognizes.  I've tried installing all the updates listed above but have not been succesful. Everytime I get a message saying that this software is not supported on my system. Can anyone tell me why I can't install the updates?

    Hello Philly,
    I believe that when you reset your ipod(command given from the computer, right?)  touch WHILE the ipod was updating, It cleared the system in the middle of writing files, thus corrupting(equivalent of cutting of in the middle of a sentence) the basic running system.
    I suggest you go to an apple store and ask for a technical diagonosis in person. they may offer to help if the problem is fixable. If your ipod is still under warrenty, i would guess it would be free/low cost.
    ~Remember, I am just giving an educated guess on limited information

  • Problem with HP DeskJet 845c in 10.4 Tiger

    Recently I migrated an iBook G3 from Mac OS 9 to MacOS X (Tiger 10.4.10). And we also use a new MacBook.
    But there's a big problem with the *HP DeskJet 845c* Printer:
    - printing works with Word, but *doesn't with AppleWorks or Mail (2.1.1)*
    - I have the latest Updates and looked for the latest HP DeskJet software, but this is the newest, version 3.3
    - I spoke with HP support, but they said that this is a problem in OS X
    - until now in MacOS 9 the printer worked fine
    The problem is:
    - from Mail only the header will be printed, but not the message itself
    - from AppleWorks is ssems as if only the first "pixel-rows are printed from each line
    Any help?

    Hello, Same problem with HP Deskjet 895Cse. I had printer on my G4 tower running 10.3. My macbook pro was networked through the G4 to printer, all good. I just moved my printer and plugged in directly to macboook pro USB port................ Iregular printing. With normal size fonts, 12, just the top few pixels of each sentence gets printed. With larger fonts like 36 or 48, the print is pretty interesting, but not readable. Sometmes it just spits out pages with 1 sentence, top bit only, on each page. Appleworks, word & pdf's from preview, all print the same. HP alignment, HP test , HP clean all show normal. ?????????????????????

  • Problem with HP-DeskJet 1120c

    HP-DeskJet 1120c driver has a specific billbord option which caused the priter to split the image on two or more pages, even if we turn off this function. This thing appear only on Developer 6 under Windows 95
    Best regards
    Victor
    null

    Hello, Same problem with HP Deskjet 895Cse. I had printer on my G4 tower running 10.3. My macbook pro was networked through the G4 to printer, all good. I just moved my printer and plugged in directly to macboook pro USB port................ Iregular printing. With normal size fonts, 12, just the top few pixels of each sentence gets printed. With larger fonts like 36 or 48, the print is pretty interesting, but not readable. Sometmes it just spits out pages with 1 sentence, top bit only, on each page. Appleworks, word & pdf's from preview, all print the same. HP alignment, HP test , HP clean all show normal. ?????????????????????

  • Problem with HP Deskjet D1320

    HP Deskjet d1320, has always worked well, now whenever printing BLUE it comes out RED/PINK. All cleaning and test printouts appear normal. Replaced cartridges and cleaned again, still same results? Any ideas?
    Thank you

    Hello, Same problem with HP Deskjet 895Cse. I had printer on my G4 tower running 10.3. My macbook pro was networked through the G4 to printer, all good. I just moved my printer and plugged in directly to macboook pro USB port................ Iregular printing. With normal size fonts, 12, just the top few pixels of each sentence gets printed. With larger fonts like 36 or 48, the print is pretty interesting, but not readable. Sometmes it just spits out pages with 1 sentence, top bit only, on each page. Appleworks, word & pdf's from preview, all print the same. HP alignment, HP test , HP clean all show normal. ?????????????????????

  • Problems with Mail 2.1.3

    I've been having problems for a month now with Earthlink and my Mail 2.1.3 application within Tiger OS 10.4.11. My Mail application has trouble connecting to the internet and retrieving email. I've been on the phone a dozen times with Earthlink technical support to check that my POP, Network, and Account settings are all correct. They are now claiming that "my Mail program is corrupted". So I've done some homework in my "Missing Manual - Tiger Edition" book and tried things like tossing the Mail preferences in the Library, tossing the old Keychain files, etc.
    I understand there are actually 3 Preference files stored for the Mail app. Should I try to trash the other ones? Where would I find them?
    I can get connected to the internet via Earthlink, but then have problems with getting my Mail and getting the Mail app online. I've done the Network Diagnostics and get all green lights except for the last 2 which show up yellow when I'm having these issues. What does the yellow gumdrop or light mean?
    Do you think Earthlink may be making Tiger obsolete for users? Is there a fix or update for Mail 2.1.3 without upgrading the OS?
    Your assistance is greatly appreciated!
    Tom

    Hi Tom,
    I think Eaarthlink is in denial..
    https://discussions.apple.com/message/24973945#24973945

Maybe you are looking for

  • Error while transferring Vendor master from R/3 to SRM

    Hi, I have done the following. R/3 . 1. Vendor creation in Xk03 for the organisation SRM. 1.Created a vendor group in PPOCV_BBP Entered the following in BBPGETVD. 1. Logical system 2.Vendor 3.Purchase organisation. 4. tice mark in address comparion,

  • White Balance settings name "Cloudy" Italian version

    Hi, the White Balance "Cloudy" settings italian name is not "Nuvolo" but "Nuvoloso". Nuvolo is a forums slang words, it is non italian!!! Will You modify it?

  • Camera Raw won't open Canon5D mkII raw files

    Use windows XP 32 bit. Dual core processor with 4g ram.Cameraraw  opens Canon CR2 files from 1DmkIII, but not 5D mkII. Worked for about a month and stopped. Reloaded photoshop CS4 and loaded 5.5 update for Cameraraw. Still does not work, Have Creativ

  • 8700 keys are sticking

    I have an 8700 and the keys are sticking and I can not type iin my passwaord to get in. what can i do? I can be emailed at [email protected] 

  • Material master tables

    Hi, how can I understand what views are opened for materials using material master tables ? Regards