Can't get user exit ICSV0008 to enable a new partner type to be used in CS

ICSV0008 components
EXIT_SAPLIPAR_003
EXIT_SAPLIPAR_004
EXIT_SAPLIPAR_005
I added code to all 3 exits in ICSV0008 as per the documentation that is attached to each module.  This code is saved and activated.  However, my new partner type is never shown in the F4 list of partner types when I try to set up a new partner function in Define Partner Determination Procedure in Cust Service.  I only see the standard SAP partner types.   I set breakpoints, and the code in all of the 3 user exits never even executes.
Can anyone explain precisely how and where this exit gets called?  Or perhaps provide any additional info?  The documentation attached to the user exit does not explain this.
Thanks in advance.
-Bill

Yes, I created a project in CMOD called ZPARTNER.  I activated this at the project level and it does show a status of Active.  Do I need to do something else so the my enhancement is enabled?

Similar Messages

  • Peirce College will not recognize FF-v4, only v3.6. How can I get the older v3.6 for my new HP Dv6 I am using for school now. My G60 worked well with the v3.6.1.

    This weekend I changed over from my HP-G60 which ran on Vista with Firefox 3.6.1 and my connection to Peirce College in Philadelphia was recognized and supported. They do not, as yet, support the 4.0 version. I downloaded your 4.0 this morning onto my new HP-Dv6, but I cannot use your browser to get to my classes online because they don't support the 4.0 version. It will only work if I use Internet Explorer 7 or 8. I need your version 3.6.1 to be made available to me, so I can continue on with my studies. A little background here...I am a baby boomer who is working on his bachelor degree in IT Networking Security. Please respond as soon as you can. Thank You, Ken DeWitt.

    Here it is:
    http://www.mozilla.com/en-US/firefox/all-older.html
    When you uninstall FF 4, do not select the option "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.

  • In howmany ways we can find the User-exits

    In howmany ways we can find the User-exits?

    Hi,
    Copy this code,execute and run this program.Now mention your tcode and it will give you the list of user-exits present in a Tcode.
    *& Report zuserexit
    *& This program helps find Exits for any given transaction
    *& This code is originally adopted from http://www.sap-img.com
    report zuserexit no standard page heading.
    *TABLES
    tables :
    tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    tstct.
    *INTERNAL TABLES AND STRUCTURES
    Internal table to hold Repository Objects
    data : jtab like tadir occurs 0 with header line.
    *Global variables
    data : field1(30).
    data : v_devclass like tadir-devclass.
    *SELECTION-SCREEN
    parameters : p_tcode like tstc-tcode obligatory.
    *START-OF-SELECTION
    START-OF-SELECTION.
    SELECT construct to get data for a given tcode
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
    SELECT construct to get program names
    select single * from tadir where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    Moving the dev. class to v_devclass if program is of type 1
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir where name = tstc-pgmna.
    If Program type = Function Group
    if trdir-subc eq 'F'.
    select single * from tfdir where pname = tstc-pgmna.
    SELECT construct to get Attributes for Function Modules
    select single * from enlfdir where funcname = tfdir-funcname.
    SELECT construct to get FM names
    select single * from tadir where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    Moving the dev. class to v_devclass if program is of type F
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    SELECT construct to get SAP enhancements for the dev. class
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object = 'SMOD'
    and devclass = v_devclass.
    SELECT construct to get t code texts
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    REPORT OUTPUT
    format color col_positive intensified off.
    Displaying t-code name & text
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    List headings
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    SELECT construct to get SAP Enhancements - Short Texts
    loop at jtab.
    select single * from modsapt where sprsl = sy-langu
    and name = jtab-obj_name.
    format color col_normal intensified off.
    Exit names & texts
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    No of Exits
    write:/ 'No of Exits:' ,
    sy-tfill.
    else.
    format color col_negative intensified on.
    If no exits found
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    If tcode doesn't exist
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    Call txn SMOD with selected Exit
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    Reward if helpful.
    Regards,
    Harini.S

  • Can't find user exit or enhancement at RGJVBR15

    Hi everyone,
    I need your help guys. Right now,i'm developed sapscript for billing statement (cash call and expenditure). I have finished the form but i have problem at print program RGJVBR15. This print program is called by RGJVBR10 (Tcode : GJ14 --> Hard Copy Billing).GJ 12 and GJ 13 is used to extract data that will be used by forms.
    There is statement like this in RGJVBR15 at subroutine CREATE_EXPENDITURE (Line 1421 in include file RGJBF_I1) :
    AT NEW C5_CURR. --> Group by funding currency
       PERFORM POPULATE_SPOOL_ID
    ENDAT.
      PERFORM F6100_PROC_...  -> This will be used to open form,write form (sapscript)
    AT END OF C5_CURR.
    ENDAT.
    The problem is that i want to change this logic. I want to change the standard logic (display report group by funding currency), i want to ignore this and instead using group currency. So there only one report produced with one currency only (if using standard logic there is more than 1 report based on funding currency). But i can't find user exit or enhancement in this SAP Standard Program. Is anyone know if there is user exit or enhancement in this program? I don't want to use implicit enhancement because it's will produce problem when client want to upgrade their system. Thank you.
    Best Regards,
    Satria

    hi,
    for tcode GJ14 user exits avaliables are
    Exit Name           Description
    JVA-IM-1             Joint Venture: Integration Manager Set Intercompany Lines
    JVA_IM_2            User Exit Splitting
    JVA_IM_3            User Exit Check Document
    regards,
    paras

  • In which transaction can we get User consolidation details

    Hi All,
    In which transaction can we get User maintenance, change user data, update user data,
    Accept suggestion, Change license data, and update license data details.....
    And in which table or tcode we get the SAP license details...
    Thanks
    Ram

    Hi,
    Chk the following tcodes.......
    ADS2KIP_PROF
    BORC1
    BIBS
    license----
    J1ILIC01
    J1ILIC02
    J1ILIC03
    J1ILIC04
    J1ILIC05
    LICENSE_ADMIN
    Regards,
    Deeba

  • Can we get user's phone number through coding

    HI, I want to know that, how can we get user's phone number through coding and is it possible to send sms to some number without concerning to user. I required this for developing the mobile tracker application which will detect that the phone is stolen.

    The developer forums are here: http://devforums.apple.com
    Documentation for iOS developers is here: http://developer.apple.com/devcenter/ios/index.action

  • My old ipod has lots of music on it this was connected to a computer that was stolen, I now have a new ipod thats all connected with music on to my replacement computer, how can i get my old ipod music onto my new library and new ipod

    my old ipod has lots of music on it this was connected to a computer that was stolen, I now have a new ipod thats all connected with music on to my replacement computer, how can i get my old ipod music onto my new library and new ipod

    Try these 2 User Tips...
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991

  • Oj4632 I can't get the paper device out of my new printer? locked in somehow.

    oj4632 I can't get the paper device out of my new printer? locked in somehow. very frustratied

    Set the System property "mail.mime.decodeparameters" to "true" to enable the RFC 2231 support.
    See the javadocs for the javax.mail.internet package for the list of properties.
    Yes, the FAQ entry should contain those details as well.

  • I can't get the iCloud Contacts and Calendar folders to appear in Outlook 2010 using the iCloud Control Panel.

    I can't get the iCloud Contacts and Calendar folders to appear in Outlook 2010 using the iCloud Control Panel.  Also the datafile share which ends in .aplzod is not created in Outlook.  The Contacts and Calendar are sent to iCloud (verified on iCloud.com) but the iCloud folders are not created in Outlook in the Contacts and Calendar navigation panes.   I get a message toward the end of the sync process indicating that there was an unspecified error.  I'm using the newest version of the iCloud Control Panel, the 32 bit version of Outlook 2010, Windows 7 64 bit, an iPhone 3GS, and the latest version of iTunes.  Any ideas how to complete the sync process to the end?

    Pretty much the same for me: Windows 7 64-bit, Outlook 2010, iCloud Control Panel 1.0.1, iPhone 3GS.  Error report at end of setup process is shown below, and has been emailed.  Any help please?
    Your setup couldn't be started because of an unexpected error.
    Error: 0x8004010F: ZebraBootstrap::ActivateDataFile: Could not create msgservice
    AppleOutlookDAVConfig version: 3.0.42.0
    Windows version (6.1.7601): Windows 7 Home Premium Edition Service Pack 1 (build 7601), 64-bit Local app data directory test: Pass Temp directory test: Pass Outlook version: 14 (14.0.6025.1000), x86 Outlook location (installed): C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE MAPI location: C:\Program Files (x86)\Common Files\SYSTEM\MSMAPI\1033\MSMAPI32.DLL
    MAPI logon succeeded
    Message Stores Table:
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
    Contents of C:\Program Files (x86)\Common Files\SYSTEM\MSMAPI\1033\mapisvc.inf
    <Not found>
    Contents of C:\Windows\system32\mapisvc.inf
    [Services]
    MSFAX XP=Fax Mail Transport
    [Default Services]
    MSFAX XP=Fax Mail Transport
    [MSFAX XPP]
    PR_PROVIDER_DLL_NAME=FXSXP.DLL
    PR_RESOURCE_TYPE=MAPI_TRANSPORT_PROVIDER
    PR_RESOURCE_FLAGS=STATUS_NO_DEFAULT_STORE
    PR_DISPLAY_NAME=Fax Mail Transport
    PR_PROVIDER_DISPLAY=Fax Mail Transport
    [MSFAX XP]
    PR_DISPLAY_NAME=Fax Mail Transport
    Providers=MSFAX XPP
    PR_SERVICE_DLL_NAME=FXSXP.DLL
    PR_SERVICE_SUPPORT_FILES=FXSXP.DLL
    PR_SERVICE_ENTRY_NAME=ServiceEntry
    PR_RESOURCE_FLAGS=SERVICE_SINGLE_COPY|SERVICE_NO_PRIMARY_IDENTITY
    HKLM\Software\Microsoft\Office\14.0\Access\Access Connectivity Engine\ISAM Formats\Outlook 9.0 HKLM\Software\Microsoft\Office\14.0\Access Connectivity Engine\ISAM Formats\Outlook 9.0 HKLM\Software\Microsoft\Office\14.0\OneNote\Outlook Add-in
      Message Classes
    HKLM\Software\Microsoft\Office\14.0\Outlook
      Dataviz
      InstallRoot
      Namespaces
        {0006F017-0000-0000-C000-000000000046}
          FolderTypes
            {00067800-0000-0000-C000-000000000046}
            {00067801-0000-0000-C000-000000000046}
            {00067802-0000-0000-C000-000000000046}
            {00067803-0000-0000-C000-000000000046}
            {00067804-0000-0000-C000-000000000046}
            {00067808-0000-0000-C000-000000000046}
            {00067828-0000-0000-C000-000000000046}
            {00067829-0000-0000-C000-000000000046}
            {0006782A-0000-0000-C000-000000000046}
          ViewTypes
            {00062000-0000-0000-C000-000000000046}
            {00062001-0000-0000-C000-000000000046}
            {00062002-0000-0000-C000-000000000046}
            {00062003-0000-0000-C000-000000000046}
            {00062004-0000-0000-C000-000000000046}
        {0006F018-0000-0000-C000-000000000046}
          FolderTypes
            {00067820-0000-0000-C000-000000000046}
            {00067821-0000-0000-C000-000000000046}
            {00067822-0000-0000-C000-000000000046}
            {00067823-0000-0000-C000-000000000046}
          ViewTypes
            {00062000-0000-0000-C000-000000000046}
            {00062001-0000-0000-C000-000000000046}
            {00062002-0000-0000-C000-000000000046}
            {00062003-0000-0000-C000-000000000046}
            {00062004-0000-0000-C000-000000000046}
      Operations
        1ImportFile
        2ExportFile
        3ExportDataLink
        4ImportVCard
        5ImportAccounts
        6ImportVcalendar
        7ImportRss
        8ExportRss
        9ImportCFL
        ImportEudora
      SchedulingInformation
        FreeBusySupport
      SearchTypes
        {00067A00-0000-0000-C000-000000000046}
        {00067A01-0000-0000-C000-000000000046}
        {00067A02-0000-0000-C000-000000000046}
        {00067A03-0000-0000-C000-000000000046}
        {00067A04-0000-0000-C000-000000000046}
        {00067A08-0000-0000-C000-000000000046}
        {00067A10-0000-0000-C000-000000000046}
        {00067A11-0000-0000-C000-000000000046}
        {00067A20-0000-0000-C000-000000000046}
      Setup
      UpgradePath
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
    HKLM\Software\Microsoft\Office\14.0\User Settings\Access_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Access
    HKLM\Software\Microsoft\Office\14.0\User Settings\Excel_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Excel
    HKLM\Software\Microsoft\Office\14.0\User Settings\Misc_SpsOutlookAddin\Create\Software\Microsoft\Office\Outlook
      Addins
        ColleagueImport.ColleagueImportAddin
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover
      Create
        Software
          Microsoft
            Office
              14.0
                Outlook
                  AutoDiscover
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Core
      Create
        Software
          Microsoft
            Internet Mail and News
              Mail
            MSDAIPP
            Shared Tools
              Outlook
                Journaling
                  Conversation
                  Document
                  E-mail Message
                  Fax
                  Letter
                  Meeting
                  Meeting Cancellation
                  Meeting Request
                  Meeting Response
                  Note
                  Phone Call
                  Remote Session
                  Task
                  Task Request
                  Task Response
            Web Service Providers
              FreeBusy
                office.microsoft.com
            Windows
              CurrentVersion
                Internet Settings
                  TemplatePolicies
                    High
                  Zones
                    4
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg
      Create
        Software
          Microsoft
            Windows
              Shell
                Associations
                  UrlAssociations
                    mapi
                      UserChoice
    HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector HKLM\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKLM\Software\Microsoft\Office\14.0\User Settings\PowerPoint_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft PowerPoint
    HKLM\Software\Microsoft\Office\14.0\User Settings\Word_Core\Create\Software\Microsoft\Shared Tools\Outlook
      Journaling
        Microsoft Word
    HKLM\Software\Microsoft\Office\8.0\Outlook
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-0000-0000000FF1CE}-C\Resources\OutlookMUI.msi
    HKLM\Software\Microsoft\Office\Delivery\SourceEngine\Downloads\{90140000-001A-04 09-0000-0000000FF1CE}-C\Resources\OutlookMUI.xml
    HKLM\Software\Microsoft\Office\Outlook
      Addins
        Apple.DAV.Addin
        BCSAddin.Connect
        Groove.OutlookProxyAddIn
        Microsoft.VbaAddinForOutlook.1
        OneNote.OutlookAddin
        OscAddin.Connect
        OutlookChangeNotifier.Connect
        Search.OutlookToolbar
        UmOutlookAddin.FormRegionAddin
      AutoConfigDomains
        hotmail.*
        live.be
        LIVE.CA
        LIVE.CL
        LIVE.CN
        LIVE.CO.IN
        LIVE.CO.KR
        LIVE.CO.UK
        LIVE.CO.ZA
        LIVE.COM
        LIVE.COM.AR
        LIVE.COM.AU
        LIVE.COM.MX
        LIVE.COM.MY
        LIVE.COM.PE
        LIVE.COM.PK
        LIVE.COM.PT
        LIVE.COM.SG
        LIVE.COM.VE
        LIVE.DE
        LIVE.DK
        LIVE.FR
        LIVE.HK
        LIVE.IE
        live.in
        LIVE.IT
        LIVE.JP
        LIVE.MA
        LIVE.NL
        LIVE.NO
        LIVE.PH
        LIVE.RU
        LIVE.SE
        livemail.com.br
        msn.*
        msnhotmail.com
        tw.live.com
        windowslive.com
      FormRegions
        IPM.Note.Microsoft.Exchange.Fax.UM.CA
        IPM.Note.Microsoft.Exchange.Voice
        IPM.Note.Microsoft.Exchange.Voice.UM
        IPM.Note.Microsoft.Exchange.Voice.UM.CA
        IPM.Note.Microsoft.Fax.CA
        IPM.Note.Microsoft.Voicemail
        IPM.Note.Microsoft.Voicemail.UM
        IPM.Note.Microsoft.Voicemail.UM.CA
        IPM.Note.Rpmsg.Microsoft.Voicemail.UM
        IPM.Note.Rpmsg.Microsoft.Voicemail.UM.CA
      Outlook 10 Accounts
        Categories
          {ED475418-B0D6-11D2-8C3B-00104B2A6676}
          {ED475419-B0D6-11D2-8C3B-00104B2A6676}
          {ED475420-B0D6-11D2-8C3B-00104B2A6676}
        Types
          {4DB5CBF0-3B77-4852-BC8E-BB81908861F3}
          {ED475411-B0D6-11D2-8C3B-00104B2A6676}
          {ED475412-B0D6-11D2-8C3B-00104B2A6676}
          {ED475414-B0D6-11D2-8C3B-00104B2A6676}
      SocialConnector
        SocialProviders
          OscAddin.SharePointProvider
    HKCU\Software\Microsoft\Office\14.0\Common\HelpViewer\Applications\OUTLOOK
      AdditionalCollections
        0
        1033
    HKCU\Software\Microsoft\Office\14.0\Common\Migration\Outlook
    HKCU\Software\Microsoft\Office\14.0\Outlook
      Addins
      AutoDiscover
        RedirectServers
      Display Types
        Balloons
      Journal
      Message
      Office Explorer
      Options
        Calendar
        MSHTML
          International
        ToDoBar
      Perf
        RoamingStreamsCache
          6BF937902986EF42A5D2882B309351BF
      Preferences
      Resiliency
        DisabledItems
      Search
        Catalog
      Setup
      SQM
      Today
        Folders
      UserInfo
    HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_AutoDiscover HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Core HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_Intl HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SearshShellReg HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialConnector HKCU\Software\Microsoft\Office\14.0\User Settings\Outlook_SocialProviderMOSS
    HKCU\Software\Microsoft\Office\8.0\Outlook
    HKCU\Software\Microsoft\Office\Outlook
      Addins
        AccessAddin.DC
        ColleagueImport.ColleagueImportAddin
        iTunesAddIn.CalendarHelper
      OMI Account Manager
      SocialConnector

  • After moving to iCloud I can only get my email through the cloud, no new emails are making it to my home computer. Does anyone have any advice on how to fix this issue?

    After moving to iCloud I can only get my email through the cloud, no new emails are making it to my home computer and .mac account. Does anyone have any advice on how to fix this issue?

    Welcome to the Apple Community.
    Which OS are you using.

  • Can't get adobe reader to install on my new laptop with windows 8

    I can't get adobe reader to install onto my new laptop with windows 8. Basically what happens is that I start the download from the adobe screen by clicking the yellow download button, then I click run (I've also tried save and run), then I allow the program to make changes to my hard drive, and then finally a blank grey box appears in the in the middle of the screen, titled "adobe reader installer". After this box appears nothing else happens. I've let it sit for at least 30 minutes and still nothing. I've also disabled my pop up blocker, and set the security settings to default as suggested in other posts. Unfortunately this is the only pdf program that works for the site we have to use to write contracts, so I need to get this figured out asap. Thanks in advance for any help and advice.

    Try installing from http://get.adobe.com/reader/enterprise

  • One laptop died.  I have a new laptop now.  How can I get my Ipod song list on the new laptop without downloading each c.d.?

    My first laptop died.  I have a new laptop now.  How can I get my Ipod song list on the new laptop without downloading each c.d.?

    See this older post from another forum member Zevoneer covering the different ways to copy content from your iPod to your PC.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How can I get my old iTunes music onto my new computer without access to my old computer? I left my previous job and forgot to transfer my music. I bought iTunes match and it shows my old Mac as a device, but I cannot get the music off it.

    How can I get my old iTunes music onto my new computer without access to my old computer? I left my previous job and forgot to transfer my music. I bought iTunes match and it shows my old Mac as a device, but I cannot access any of the old music. All I can find are what was on my iPhone, but that's not what I want. I need all my old music from my old Mac, which has been wiped clean by IT at my old job. BUT, I did have iCloud at that time and I thought all my music would be accessible through it. I don't understand the Cloud! And I'm thinking spending $24.99 on iTunes Match was a waste of money because I still can't access my old music.

    When you are done with this issue, consider the computer back at the office may still
    have access to your iTunes account, and it should be de-auhorized. You can do that
    remotely, but be sure you carefully do not mess up your other computer iTunes libraries.
    Good luck & happy computing!

  • How can i get my music from iphone onto a new pc

    how can i get my music from iphone onto a new pc . i have A NEW IPAD I WANT TO TRANSFER THE MUSIC ONTO

    When connected to your computer's iTunes you can use File > Transfer Purchases to copy over any music (and other content) that you've bought from Apple. For music that you've copied from your own CDs or bought from other download sites then is it not already on your computer and/or on a backup that you can copy onto your computer ? If not then you will need to find a third-party program to copy them off the phone.
    And there is no need to SHOUT.

  • My old computer had itunes and downloaded songs that I put on my ipod. My old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out and will not activate. How can I get access to my old songs on new computer.

    My old computer had itunes and downloaded songs that I put on my ipod. Well, my old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out years ago and will not activate. I now have a new computer and iPod and I have an iTunes account on my iPhone5. How can I get access to my old songs on new computer? Are they lost for good? I have no info about my old computer and old account.

    Downloading past purchases from the App Store ... - Support - Apple

Maybe you are looking for

  • Error while opening a module(detailed)

    I have my servlet class in <b>d:\krisp\programs\exam\xxx.class</b>           At first, things were somewhat fine. My module got deployed successfully. Usually, the names of all servlet classes must be shown when we click the <i><b>Servlet</b></i>(the

  • Ipod will not be recognized and is screwing with window xp

    One day my iPod reseted itself when my computer crashed, and when the ipod turned back on it deleted everything on it and went to "chose language". Windows will not recognize ipod most of the time (sometimes randomly sees it in explorer, but I can't

  • Dialog Instances Java are not up after System Copy NW2004s SR2 ABAP+JAVA

    Hello guys, I have just  performed a system copy of our BW system (douple stack NW2004s) wich consists from CI and 2 DIs. First I  made an export using SAPINST (Software from SAP_BUSINESS_SUITE_2005_SR2 for sparc solaris), where I choosed in SAP Inst

  • How to identify when shd i go for lis nor for lo

    hi all, Can anyone explain me with a scenario to identify when shd we go for LIS extraction and we shd we opt for LO extraction. thanxs hari

  • JXDatePicker - could not find the main class?

    Hi all, I am trying to play with the JXDatePicker swinglabs. I wrote this trivial code: import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JFrame; import javax.swing.JLabel; impor