Hi...New to Badi

Hi ,
I am trying to learn about badi.  for this I have just searched the forum and find the link which explained with an example... but while I am doing it.. in implementation after writing the code,  syntax check is ok but while activating it is giving the error as follows.
Error: Class "ZCL_IM_MM_PURORDER" does not contain an interface  "ZIF_EX_BADI_EKKO".          
link which i have followed is http://www.allsaplinks.com/badi.html
Please tell where I am going wrong.
Regards
Ram

Hai Shri ram
Go through the following Steps for BADI Creation and using
Goto Tcode SE18 for BADI Definition Creation.
give definition Name : ZBADI_CUST--> Press F5 button for Creating the Definition.
Give Description for the BADi Definition : XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
In the Attributes tab you will find "TYPE" Tab
there you will check the Check Box as "Multiple" because this badi definition is active for multiple BADI Implementations
save & check the Badi Definition.
Click on "Interface" tab
Double Click on the Interface Name that is "ZIF_EX_BADI_CUST"
here the screen is take you to tcode SE24
here you will declare the methods
give method name as "GET_MATERIAL" as INSTANCE Level.
Click on Parameters Button just above your Method"GET_MATERIAL"
and Give Parameters as
P_MATNR IMPORT Type  MATNR press enter
X_MARA CHANGING      MARA  press enter
save check and activate your badi Definition.
Note : you just declare the method in BADI Definition Section you will write the Method Implementation
       in BADI IMPLEMENTATION Section.Because BADI's are pure Abstact class.
Goto Tcode SE19:
      give Implementation name as : ZBADI_CUST_IMPL and press "F5" for Creation
      it asks BADI Definition name as "ZBADI_CUST" just you create .
      and press enter
          and you give the BADI Implementation Description : XXXXXXXXXXXXXXXXXXXX
      save this Implementation
click on the Interface tab and double click on the Implementation Class as "ZCL_IM_BADI_CUST_IMPL".
     then you have the GET_MATERIAL Method . double click on the Method it opens the Code window for that method.
as looks like bellow.
method ZIF_EX_BADI_CUST~GET_METERIAL .
Here you will write the coding part.
if not p_matnr is initial.
  select single * from mara
                  into x_mara
                  where matnr = p_matnr.
endif.
endmethod.
save,check & activate
come back and activate again.
then you need to use this badi in SE38 program.
go through the following Code
REPORT  ZCUST_BADI1_IMPL_CALL.
TABLES : MARA.
*creatingthe BADI interface ref to following class
DATA : OBJ TYPE REF TO ZIF_EX_CUST_BADI1.
PARAMETERS : P_MATNR LIKE MARA-MATNR.
START-OF-SELECTION.
*passing the BADI interface ref var to following class method to get obj of BADI business add in class
CALL METHOD CL_EXITHANDLER=>GET_INSTANCE
EXPORTING
   EXIT_NAME                     =
   NULL_INSTANCE_ACCEPTED        = SEEX_FALSE
IMPORTING
   ACT_IMP_EXISTING              =
  CHANGING
    INSTANCE                      = OBJ
EXCEPTIONS
   NO_REFERENCE                  = 1
   NO_INTERFACE_REFERENCE        = 2
   NO_EXIT_INTERFACE             = 3
   CLASS_NOT_IMPLEMENT_INTERFACE = 4
   SINGLE_EXIT_MULTIPLY_ACTIVE   = 5
   CAST_ERROR                    = 6
   EXIT_NOT_EXISTING             = 7
   DATA_INCONS_IN_EXIT_MANAGEM   = 8
   others                        = 9
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
*calling the implementation class method via business add in class object
CALL METHOD OBJ->GET_MATERIAL
  EXPORTING
    P_MATNR = P_MATNR
  CHANGING
    X_MARA  = MARA.
WRITE :/ MARA-MATNR,MARA-MBRSH,MARA-MTART.
Regards
Sreeni

Similar Messages

  • Badi help need .. new to badi

    Hi ,
    In ECC 6.0 , Im creating custom badi 'zbadi' in se18 . Interface name : zbadi_inf ,
    impl class : zbadi_imp,
    method name : test ,
    variable is var type vbak-vbelnr which is exporting .
    In program I m calling this badi
    my code is :
    class cl_exithandler definition load. "Declaration
    data exit type ref to Zbadi_inF. "Interface reference
    DATA VAR TYPE MARA-MATNR VALUE 'SUNRISE'.
    start-of-selection.
    call method cl_exithandler=>get_instance "Factory method call
    EXporting "Method
    exit_name = u2019ZBADIu2019
    changing instance = exit.
    write:/'Please click here'.
    at line-selection.
    write:/ 'Original word: ',VAR.
    if not exit is initial.
    call method exit->TEST "Add-In call
    IMPORTING
    VAR = VAR.
    endif.
    write:/ 'Original word: ',VAR.
    The program is giving dump . Please tell me why is it giving dump .Im very new to BADIs .
    The excpetion raised is
    RAISE data_incons_in_exit_managem.
    I have just given a varible var which is exporting parameter in the method test in interface.
    I have activated all the interface and implemenations .

    HI.
    where are the badis and interface and classes getting stored .
    goto the table seoclass.
    pass class type as '0' for class
    and '1' for interface.
    Implementing BADI
    The use of object orientated code within SAP has lead to new method of enhancing standard SAP code called
    Business Add-Ins or BADI's for short. Although the implementation concept is based on classes, methods and
    inheritance you do not really have to understand this fully to implement a BADI. Simply think of methods
    as a function module with the same import and export parameters and follow the simple instructions below.
    Steps:
    1. Execute Business Add-In(BADI) transaction SE18
    2. Enter BADI name i.e. HRPBSGB_HESA_NISR and press the display
    button
    3. Select menu option Implementation->Create
    4. Give implementation a name such as Z_HRPBSGB_HESA_NISR
    5. You can now make any changes you require to the BADI within this
    implementation, for example choose the Interface tab
    6. Double click on the method you want to change, you can now enter
    any code you require.
    7. Please note to find out what import and export parameters a
    method has got return the original BADI definition
    (i.e. HRPBSGB_HESA_NISR) and double click on the method name
    for example within HRPBSGB_HESA_NISR contract is a method
    8. When changes have been made activate the implementation
    http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip
    http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    Regards.
    Kiran Sure

  • Want to modify GR/GI  SLIP  Field into change mode.new to badi

    Hi,
         I want to modify GR/GI  SLIP  Field into change mode , so my customer can change data whenever he wants.. This field  exist in     vl02n transaction.
            Right now it is in disabled mode   .I am new to badi , so please guide me .
    Regards,
    Ranu.
    Edited by: ranu sharma on Nov 4, 2009 8:16 AM

    Hi,
    Please note this is the client requirement to have the field editable, so please do not convey the edit entires in table to users, this is basically for our reference only,
    In this case, you'll have to use the user exits to make the field editable in SAP for users, kindly check the below user exits, and take help of delveloper on the same.
    Exit name     Description
    SDVFX001     User exit header line in delivery to accounting            
    V50Q0001     Delivery Monitor: User Exits for Filling Display Fields    
    V50S0001     User Exits for Delivery Processing                         
    V56TDLIF     Filter Delivery Items for Shipment                         
    Thanks & Regards,
    Rahul Verulkar

  • How to use BADI FI_AUTHORITY_ITEM (New to badi's)

    Hi all,
    I don't know if this is 100% FI (it is not for sure), but I believe that here is the best place to ask.
    I'm trying to had a new authorization check on FB03.
    The authorization check is regarding object F_BKPF_BLA (that exists, but is not checked on the standard call of FB03).
    I've discovered the BADI FI_AUTHORITY_ITEM, but now I have one question. How do I had this check here? Is it necessary to create an ABAP with an authorization check?
    Or is there any simplier solution?
    Thanks!

    In the meanwhile, I've done some changes to the badi and implement it.
    The problem is that, I can't even make a breackpoint in the method implemented.
    The code implemented was:
    method IF_EX_FI_AUTHORITY_ITEM~FI_AUTHORITY_ITEM.
      data: Doc_Type type bkpf-BLART.
      select BLART from bkpf into doc_type
      where BELNR = i_bseg-belnr.
      endselect.
      AUTHORITY-CHECK OBJECT 'F_BKPF_BLA'
              ID 'ACTVT' FIELD i_beract
              ID 'BRGRU' FIELD Doc_Type.
      IF sy-subrc NE 0.
        IF i_beract = '02'.
          AUTHORITY-CHECK OBJECT 'F_BKPF_BLA'
            ID 'ACTVT' FIELD '03'
            ID 'BRGRU' FIELD Doc_Type.
          IF sy-subrc NE 0.
            c_rcode = 4.
          ELSE.
            c_bmodz = 'A'.
          ENDIF.
        ELSE.
          c_rcode = 4.
        ENDIF.
      ENDIF.
    endmethod.
    In resume, it gets the document number and then it goes to BKPF to see the document type and checks if the user has the authorization using the object 'F_BKPF_BLA'.
    Why isn't it working?

  • New Domain, New Application, Bad Namespace, HELP!

    Hey guys,
    I created my own new domain and application. In this application I deployed portal
    tools(tools and toolSupport), but when I call the web application associated with
    tools I get an exception:
    Error while parsing uri /portalTools/application, path null, query string namespace=admin_main
    - Webflow XML does not exist, is not loaded properly, or you do not have a configuration-error-page
    defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The configuration-error-page
    node was not found in the webflow xml file. for webapp [tools], namespace [admin_main].
    While trying to display CONFIGURATION ERROR: [Exception[com.bea.p13n.appflow.exception.ConfigurationException:
    Bad Namespace - namespace [admin_main] is not available for webflow execution.
    Make sure the [admin_main.wf] file is deployed in web [tools].]],]

    Evaluation,
    Looks like you have not data sync'ed the webflow for your new application.
    You can do this either from the command line (sync script) or use the EBCC.
    Sincerely,
    Daniel Selman
    "Evaluation Customer" <[email protected]> wrote in message
    news:3c7fef21$[email protected]..
    >
    Hey guys,
    I created my own new domain and application. In this application Ideployed portal
    tools(tools and toolSupport), but when I call the web applicationassociated with
    tools I get an exception:
    Error while parsing uri /portalTools/application, path null, query stringnamespace=admin_main
    - Webflow XML does not exist, is not loaded properly, or you do not have aconfiguration-error-page
    defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configuration-error-page> node was not found in the webflow xml file. for webapp [tools, namespace[admin_main].
    While trying to display CONFIGURATION ERROR:[Exception[com.bea.p13n.appflow.exception.ConfigurationException:
    Bad Namespace - namespace [admin_main] is not available for webflowexecution.
    Make sure the [admin_main.wf] file is deployed in web [tools].]],]

  • How to keeps track of new coming bad blocks on a hdd

    I have some 2,5 hdd lying around and wanted to test them for bad blocks and found that I can use Badblocks for this.
    But how do I keep the "list" of bad blocks up-to-date if new bad blocks are detected, or is this not posseble?
    Solixxx
    Last edited by solixxx (2013-09-30 23:48:21)

    graysky wrote:You can detect and lock out bad ones... but the danger is not knowing which good blocks will go bad in the future.  I have a hdd in an old machine that has bad blocks on it... been running fine for 9+ months now after isolating them.
    Exactly :-)
    I've been using a drive with isolated bad blocks for over a year now, but I store only data I don't care that much about - I can re-download or recreate it.
    I thought you just wanted to list the bad blocks. If you're going to reformat the device, it is the mechanism of isolating the bad blocks I wrote about, so you should be OK.
    I think badblocks prevents the bad block from being used by the filesystem, but they still reside on the device, so if you run badblocks again, it should list both the old bad blocks and any new ones too.

  • New ipad bad wifi connection?

    Ive bought a new ipad today its gr8 apart from when i wish to connect to wifi
    It shows that I have connected to my private network but then iam unable to access the internet is this something im doing wrong?

    Hi and welcome...
    Not necessarily something you are doing wrong. Try restoring to default then restart your iPad.
    Tap Settings / General / Reset / Reset Network Settings.
    Now restart your iPad. Press and hold the Sleep/Wake button until the red slider appears. Slide your finger across the slider to turn off iPad. To turn iPad back on, press and hold the Sleep/Wake until the Apple logo appears.
    Carolyn

  • Bring files to new Mac - bad email address?

    Hi folks. I'm hoping someone can help me out here.
    I just got a new MacBook Pro, which I want to bring the music from my G5 over to.
    Now that seems to have worked ok, but now some songs require me to sign in, and thats ok, but it's asking for a password that goes with an old email address, which I no longer use, or have, so I don't remember the password, nor can I go online and fix pretty much for the same reasons.
    If I go online and try to fix it, it wants to send an email to the old email adress, which I don't get email from?
    What do I do?
    Skip

    Karl,
    Is your 'old' email address a dotMac address? My AppleID is tied to a dotMac email address for which the account has not been renewed, but my iTunes tracks still require that email address and password.
    If it's true that you don't recall the password you used for that iTunes Store based AppleID then I would take Timmy's suggestion and write to the iTunes Store support team.
    I have found them most helpful on every occasion I have needed their assistance.

  • New to Badi`s

    Hi all,
              Could any one of you help me out by providing a small BADI program tell me the basics of Badi ,
    Difference between a class,Interface,Instance and a Method.why do we use SE24 T code.
    Regards,
    Pradeep P

    BADI(Business Add-In) is the object oriented method of user exits...
    Each BAdI has a definition and more than one implementation. The definition means the methods(in class concept) that are used for performing various functions. The BAdI definition can be viewed in SE18 transaction(for standard ones) and user-defined BAdIs can be created in the same transaction as well.
    When you create a BAdI definition, an class interface will be automatically created and you can define your methods in the interface. The implementation of the methods can be done in SE19 transaction
    check this thread..very useful one
    badi's
    Check this thread for sample code for BADI implementation.
    BADI Implementations
    Check this thread to use BADI in our program
    how to use badi in our program

  • New problem - bad cracks during playback

    I'm getting back cracks and crackling during playback despite the fact that there is no obvious cause. The cracks happen when I use any effect (though my gut feeling tells me this isn't the underlying problem). I'm using UAD vst plugins but and Adobe effects but I am no where near being maxxed out, only using around 50-60% of my vst power. The cracks happen even when I use Audition's Studio Reverb or graphic eq.only, no vst.
    It sounds like a latency type of cracking or the type of cracking that happens when my plugins are maxxed out (nearly 100% on my meter) but as I said, that's not it (although it goes away when I remove all effects, even Audition effects).
    The strange thing is I am only working with 3 tracks!!!...2 guitars and vocal. I have many sessions with full band, easily 2 dozen tracks and not had this problem before. But with only 3 tracks...something is screwy.
    When I change the latency the cracking gets worse (currently it's at 1.5 seconds).
    Any ideas on how I can troubleshoot this??? My software is up to date and my system is virus checked. I'm also an experienced Audition user (years).
    Thanks for any ideas.

    Hey guys, my audio computer just developed this crackling on playback about 2 weeks ago.
    On mastered out audio files, the crackle is not there, but on playback on new projects (started over the last 2 weeks) there is crackle in the playback on all tracks (I get crackling on playback on my speakers and on my headphones).  Even individually, if I mute certain tracks.
    I found some weird points when playing with new projects:
    -I shut down the computer, and started Audition 2.0 again.  I started a new project @ 48000 Htz and 32 bit sampling.  And there was NO CRACKLING on playback (on speakers, on headphones, on mastered test audio files)
    -I went back to my problem projects with crackling playback and, yup, my playback had crackling on them
    -I mastered out my origional raw audio tracks (from the crackling project timeline) and put them on my new project timeline, and NO CRACKLING DURING PLAYBACK.... hmmmmmmm.
    I have no idea why it's doing this.
    But if your project is having playback issues.  Try a full shutdown/reboot, open a new project and do a test record to see if there is crackle.  If no crackle on playback, then go back to your crackling project and master out and re-import your raw audio tracks to your new project timeline
    If you guys have found another work-around, or a complete fix, post up and lemme know.

  • New Xorg bad

    It seems new xorg 7.3 is breaking my system here and there .
    1) My mouse has stopped working:http://bbs.archlinux.org/viewtopic.php?id=39494
    2) Java applications not working http://bbs.archlinux.org/viewtopic.php?id=39523
    This gives me a feeling that archlinux is sacrificing quality in the name of bleeding edge.:(

    brain0 wrote:For all of us who actually used it, it was fine. So, among the Arch devs, it was common knowledge that the new version is fine.
    First: thank you for your work as a developer. I really appreciate it.
    Second: The only issue I have encountered thus far after the Xorg upgrade is related to JAVA apps' assertion failures, and the posted workaround seems to be a viable [shot-term] solution until the offending JAVA apps are fixed.
    Now, to the meat: your post says that the new version of Xorg (and all related, updated components) is fine per testing done by those who participated in the testing phase. But the upgrade has obviously created an array of issues, even if the issues are not all direct bugs of Xorg (i.e., they may be issues with applications that use Xorg ... though the apps worked with previous Xorg versions), or the issues may "simply" require reconfiguring xorg.conf.
    So, with that in mind, do the developers have an obligation to more thoroughly document the potential issues that upgrading may cause? Or is it simply a matter of adopting the philosophy that issues not classified as technically "bugs", even though they may adversely impact users, do not warrant reporting?
    These questions are especially relevant when the issues affect such basic PC operations as JAVA applications, video display and input device functionality, all of which must have been encountered and noted during testing. The Arch News bulletin certainly fell short of this reporting:
    http://www.archlinux.org/news/363/
    X.org 7.3 hits [extra]
    After a testing period for over one month we made the decision to move X.org 7.3 to our stable package repositories. Thanks to all the testers and reporters who enabled us to wipe out most of the major issues.
    Please note that libgl-dri has been renamed to libgl since the deprecation of libgl-mesa happened a long time ago already. That means people packaging for the AUR should finally get rid of any hard dependencies on libgl-dri or else their packages will be left broken.
    That certainly paints a rosier picture than what users encountered after the upgrade. I don't see "beware, lots of JAVA apps will break" or "you may have to learn to configure xorg.conf all over again" in that news release.
    So, I'm just curious what your take is on providing a little more information when these big-package upgrades are pushed out so that users can make informed decisions about how to proceed (of course, making backups first is always good ... which I did).
    Thanks.

  • New Battery Bad?

    I just got a new battery for my Macbook on Saturday. I'm currently running on cycle 3, and the battery life it at 100%. However, for the past two cycles, the battery has only lasted about an hour and fifty minutes. The first time I charged it after getting the new battery, it lasted over three hours. What's going on?

    Check all processes in your activity monitor. There is a good chance you have a process running in the background eating up your CPU processes.
    When this happens on mine it is usually a rogue printer process.

  • [Problem disappeared in new kernel] Bad SSD performance

    Hello all, I'm an ex-gentoo user turned arch. Looking forward to it!
    Anyway, I have a brand new OCZ Vertex SSD -- theoretical 230MB/s read times. In the livecd installer, hdparm gets 210MB/s reads, pretty awesome. However, in my current installation, I am only getting 75MB/s.
    My kernel is 2.6.29, the livecd has 2.6.28. I checked, UDMA/133 is enabled on my drive. I (and some generous IRC users) have absolutely no idea what's happening here.
    Any help would be appreciated!
    [root@wakka jake]# hdparm -i /dev/sda
    /dev/sda:
    Model=OCZ-VERTEX, FwRev=1370, SerialNo=92M9W154QY80YY06496G
    Config={ HardSect NotMFM HdSw>15uSec Fixed DTR>10Mbs RotSpdTol>.5% }
    RawCHS=16383/16/63, TrkSize=0, SectSize=0, ECCbytes=12288
    BuffType=unknown, BuffSize=32767kB, MaxMultSect=16, MultSect=16
    CurCHS=16383/16/63, CurSects=16514064, LBA=yes, LBAsects=62533296
    IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
    PIO modes: pio0 pio1 pio2 pio3 pio4
    DMA modes: mdma0 mdma1 mdma2
    UDMA modes: udma0 udma1 udma2 udma3 udma4 udma5 *udma6
    AdvancedPM=no WriteCache=enabled
    Drive conforms to: Unspecified: ATA/ATAPI-5,6,7
    Last edited by wakkadojo (2009-06-17 13:40:38)

    I have been all over google and many other forums, there's really nothing on this. I'm almost certain it's an Arch linux problem of some sort.
    I just gave your suggestion a shot. Here's what we get:
    # hdparm -t -W 0 /dev/sda
    /dev/sda:
    setting drive write-caching to 0 (off)
    write-caching = 1 (on)
    Timing buffered disk reads: 220 MB in 3.02 seconds = 72.96 MB/sec
    So no improvement -- but then again it says it turns off write caching when it really does not.
    However, I would like to point out that it is probably not write caching that is causing this slowdown, since on the livecd write caching is enabled, and others have not posted anything about disabling write caching to improve ssd performance.
    Last edited by wakkadojo (2009-05-31 23:55:24)

  • New Iphone4 - bad password

    This seems to be a recurring problem for this model phone. I have not seen a solution in reviewing the other posts. My new Iphone4 is unable to access the home wifi even though other devices in the house do. It tells me the password is not correct.
    I have turned the At&t router/modem off for 5 minutes and the iphone off for 5 minutes. When I click on the wifi site it is not populated with addresses like my wife's 3g nor does it say "renew lease".
    Do I have to go into the router and change the password?

    WPA or WPA2 both should work fine although I prefer WPA2-AES. It's the most secure of the bunch. How many numbers are you using for a password? A good 8-12 character password is your best bet. A mixture of letters, cases, numbers, and special characters make a virtually unbreakable password. Something like Pas$worD for example.
    The other thing you should check is your router firmware. Older routers that have not been updated have problems with the latest encryption algorithms used with iOS 4.x. Update the router firmware if an update is available, if one is not and the router is old, plan on replacing it.

  • Replaced hard drive/ with new install, bad modification dates

    Does anyone know how to get rid of bad modification dates that appeared when system (10.3.9) was re-installed after replacement of hard drive on powerbook?
    Tech Tools Pro didn't fix it.
    The dates for Sherlock, Text Edit, DVD player, ical,isync (even explorer) all say April 1, 1976. That's April Fool's Day and I was 30 years younger, but .... Any ideas?
    Sharon

    Sharon Chard-Yaron...
    Something is odd here as a few weeks ago I was forced into a reformat and a reinstall of my Mac OS.
    I reformatted / partitioned / installed Mac OS 10.3.5(+) first, as it is where my Panther CD set starts from. However it prompted me to confirm that my dates was corrected before continuing with the install. It seemed rather serious that unpredictable results could happen if those dates was wrong.
    (+)(Later of course, I did update to 10.3.9 from my backup of download goodies and Software Update panel.)
    Anyway, my time and dates was messed up and I reset them from within that install.
    Now- did you get any time/date prompt during the install like I did?
    Mac OS 10 installs so many files that I feel it could be a disaster waiting for a time/date to happen on. Unless there is some gifted fix utility that I am not aware of, nothing short to re-doing everything would clear my conscience to a bug free install.
    ...Ron

Maybe you are looking for

  • IPod Nano 6g not syncing - Apple Mobile Device Support can't install

    i recently got iTunes working again on my computer. my grandfather wanted me to sync his old iPod Nano, so i did that and it worked fine. i then tried to sync my own iPod Nano 6g, and it gave me the error: "An iPod has been detected, but it could not

  • Image control on Forms for retreiving Image stored in tables

    Oracle 10 g XE is miising an easy to use Image add/show feature from a database table in it's application builder. Use of BLOB and BFile is not easily handled and neither it is covered well in the user guide. Can someone help me in some easy to do st

  • Error message when trying to sync music video

    I just got my new 80 GB iPod to finally work (another story there) but when it started to sync, I got a message that said it couldn't copy the one music video I purchased off of iTunes onto the iPod because it can't play on the iPod. I have the iPod

  • Results are different when printing from CS5 and CS4

    A file that printed fine with Photoshop CS 4 printed very dark when printed with CS5, with no changes made to the settings. Has anyone else had this problem?

  • BASH vulnerability in TE software

    https://tools.cisco.com/bugsearch/bug/CSCur05162 Does anyone else see some bad info on the above web page ...   Indicates that its fixed by but does not show what version ... seems lin TE 4.1.5 should be the fixed version The page for TC software see